mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-02-23 18:33:15 +07:00
12 lines
260 B
Bash
12 lines
260 B
Bash
#!/bin/bash
|
|
|
|
# shellcheck disable=SC2154
|
|
if [ "$PLATFORM_FAMILY" != "SYNOPLAT_F_X86_64" ]; then
|
|
SkipThisProject
|
|
return
|
|
fi
|
|
|
|
if [ -e "tools/power/x86/turbostat/turbostat" ]; then
|
|
install -Dm755 tools/power/x86/turbostat/turbostat "${TmpInstDir}"/turbostat
|
|
fi
|