mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 00:00:52 +07:00
12 lines
260 B
Plaintext
12 lines
260 B
Plaintext
|
#!/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
|