mirror of
https://github.com/AuxXxilium/arc-addons.git
synced 2024-11-23 21:50:52 +07:00
cpuinfo: more rewrite
Signed-off-by: AuxXxilium <info@auxxxilium.tech>
This commit is contained in:
parent
475c9d519c
commit
d37dd70251
@ -11,10 +11,12 @@ FAMILY=""
|
|||||||
SERIES="$(echo $(grep 'model name' /proc/cpuinfo 2>/dev/null | head -1 | cut -d: -f2))"
|
SERIES="$(echo $(grep 'model name' /proc/cpuinfo 2>/dev/null | head -1 | cut -d: -f2))"
|
||||||
CORES="$(grep 'cpu cores' /proc/cpuinfo 2>/dev/null | wc -l)"
|
CORES="$(grep 'cpu cores' /proc/cpuinfo 2>/dev/null | wc -l)"
|
||||||
SPEED="$(echo $(($(grep 'model name' /proc/cpuinfo 2>/dev/null | head -1 | cut -d: -f2 | awk '{print $NF}' | tr -d -c 0-9) * 10)))"
|
SPEED="$(echo $(($(grep 'model name' /proc/cpuinfo 2>/dev/null | head -1 | cut -d: -f2 | awk '{print $NF}' | tr -d -c 0-9) * 10)))"
|
||||||
[ -n "${SPEED}" ] && SPEED="$(echo $(grep 'cpu MHz' /proc/cpuinfo 2>/dev/null | head -1 | cut -d: -f2))"
|
if [ -z "${SPEED}" ] || [ ${SPEED} -eq 0 ]; then
|
||||||
while [ ${SPEED} -lt 1000 ]; do
|
SPEED="$(echo $(grep 'cpu MHz' /proc/cpuinfo 2>/dev/null | head -1 | cut -d: -f2))"
|
||||||
|
while [ ${SPEED} -lt 1000 ]; do
|
||||||
SPEED="$((${SPEED} * 10))"
|
SPEED="$((${SPEED} * 10))"
|
||||||
done
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
FILE_JS="/usr/syno/synoman/webman/modules/AdminCenter/admin_center.js"
|
FILE_JS="/usr/syno/synoman/webman/modules/AdminCenter/admin_center.js"
|
||||||
FILE_GZ="${FILE_JS}.gz"
|
FILE_GZ="${FILE_JS}.gz"
|
||||||
|
Loading…
Reference in New Issue
Block a user