mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-23 21:00:50 +07:00
5fa3ea047a
Signed-off-by: AuxXxilium <info@auxxxilium.tech>
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
|