mirror of
https://github.com/AuxXxilium/arc-addons.git
synced 2024-11-23 21:50:52 +07:00
51fcb044f6
Signed-off-by: AuxXxilium <info@auxxxilium.tech>
73 lines
2.1 KiB
Bash
Executable File
73 lines
2.1 KiB
Bash
Executable File
#!/usr/bin/env ash
|
|
#
|
|
# Copyright (C) 2023 AuxXxilium <https://github.com/AuxXxilium>
|
|
#
|
|
# This is free software, licensed under the MIT License.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
if [ "${1}" = "late" ]; then
|
|
echo "Installing cpufreqscalingscaling - ${1}"
|
|
mkdir -p "/tmpRoot/usr/arc/addons/"
|
|
cp -vf "${0}" "/tmpRoot/usr/arc/addons/"
|
|
|
|
cp -vf /usr/sbin/scaler.sh /tmpRoot/usr/sbin/scaler.sh
|
|
cp -vf /usr/sbin/unscaler.sh /tmpRoot/usr/sbin/unscaler.sh
|
|
cp -vf /usr/sbin/rescaler.sh /tmpRoot/usr/sbin/rescaler.sh
|
|
cp -vf /usr/bin/echo /tmpRoot/usr/bin/echo
|
|
|
|
if [ "${2}" = "userspace" ]; then
|
|
mkdir -p "/tmpRoot/usr/lib/systemd/system"
|
|
DEST="/tmpRoot/usr/lib/systemd/system/cpufreqscaling.service"
|
|
cat > ${DEST} <<EOF
|
|
[Unit]
|
|
Description=Enable CPU Freq scaling
|
|
DefaultDependencies=no
|
|
IgnoreOnIsolate=true
|
|
After=multi-user.target
|
|
|
|
[Service]
|
|
User=root
|
|
Restart=always
|
|
RestartSec=30
|
|
ExecStart=/usr/sbin/scaler.sh
|
|
|
|
[X-Synology]
|
|
Author=Virtualization Team
|
|
EOF
|
|
mkdir -vp /tmpRoot/usr/lib/systemd/system/multi-user.target.wants
|
|
ln -vsf /usr/lib/systemd/system/cpufreqscaling.service /tmpRoot/usr/lib/systemd/system/multi-user.target.wants/cpufreqscaling.service
|
|
else
|
|
mkdir -p "/tmpRoot/usr/lib/systemd/system"
|
|
DEST="/tmpRoot/usr/lib/systemd/system/cpufreqscaling.service"
|
|
cat > ${DEST} <<EOF
|
|
[Unit]
|
|
Description=Enable CPU Freq scaling
|
|
DefaultDependencies=no
|
|
IgnoreOnIsolate=true
|
|
After=multi-user.target
|
|
|
|
[Service]
|
|
User=root
|
|
Type=on-failure
|
|
Restart=always
|
|
RestartSec=5
|
|
RemainAfterExit=yes
|
|
ExecStart=/usr/sbin/rescaler.sh ${2}
|
|
|
|
[X-Synology]
|
|
Author=Virtualization Team
|
|
EOF
|
|
mkdir -vp /tmpRoot/usr/lib/systemd/system/multi-user.target.wants
|
|
ln -vsf /usr/lib/systemd/system/cpufreqscaling.service /tmpRoot/usr/lib/systemd/system/multi-user.target.wants/cpufreqscaling.service
|
|
fi
|
|
elif [ "${1}" = "uninstall" ]; then
|
|
echo "Installing cpufreqscalingscaling - ${1}"
|
|
|
|
rm -f "/tmpRoot/usr/lib/systemd/system/multi-user.target.wants/cpufreqscaling.service"
|
|
rm -f "/tmpRoot/usr/lib/systemd/system/cpufreqscaling.service"
|
|
|
|
rm -f /tmpRoot/usr/sbin/scaler.sh
|
|
rm -f /tmpRoot/usr/sbin/rescaler.sh
|
|
rm -f /tmpRoot/usr/sbin/unscaler.sh
|
|
fi |