mirror of
https://github.com/AuxXxilium/arc-addons.git
synced 2024-11-23 21:50:52 +07:00
cpufreqscaling: call the correct boot script if userspace is selected
Signed-off-by: AuxXxilium <info@auxxxilium.tech>
This commit is contained in:
parent
9a72ba9153
commit
a6ed890b67
@ -63,12 +63,21 @@ fi
|
|||||||
fi
|
fi
|
||||||
echo "insert scaling... task to esynoscheduler.db"
|
echo "insert scaling... task to esynoscheduler.db"
|
||||||
export LD_LIBRARY_PATH=/tmpRoot/bin:/tmpRoot/lib
|
export LD_LIBRARY_PATH=/tmpRoot/bin:/tmpRoot/lib
|
||||||
/tmpRoot/bin/sqlite3 /tmpRoot/usr/syno/etc/esynoscheduler/esynoscheduler.db <<EOF
|
if [ "${2}" = "userspace" ]; then
|
||||||
|
/tmpRoot/bin/sqlite3 /tmpRoot/usr/syno/etc/esynoscheduler/esynoscheduler.db <<EOF
|
||||||
|
DELETE FROM task WHERE task_name LIKE 'Rescaler';
|
||||||
|
INSERT INTO task VALUES('Rescaler', '', 'bootup', '', 1, 0, 0, 0, '', 0, '/usr/sbin/scaler.sh', 'script', '{}', '', '', '{}', '{}');
|
||||||
|
DELETE FROM task WHERE task_name LIKE 'Unscaler';
|
||||||
|
INSERT INTO task VALUES('Unscaler', '', 'shutdown', '', 0, 0, 0, 0, '', 0, '/usr/sbin/unscaler.sh', 'script', '{}', '', '', '{}', '{}');
|
||||||
|
EOF
|
||||||
|
else
|
||||||
|
/tmpRoot/bin/sqlite3 /tmpRoot/usr/syno/etc/esynoscheduler/esynoscheduler.db <<EOF
|
||||||
DELETE FROM task WHERE task_name LIKE 'Rescaler';
|
DELETE FROM task WHERE task_name LIKE 'Rescaler';
|
||||||
INSERT INTO task VALUES('Rescaler', '', 'bootup', '', 1, 0, 0, 0, '', 0, '/usr/sbin/rescaler.sh ${2}', 'script', '{}', '', '', '{}', '{}');
|
INSERT INTO task VALUES('Rescaler', '', 'bootup', '', 1, 0, 0, 0, '', 0, '/usr/sbin/rescaler.sh ${2}', 'script', '{}', '', '', '{}', '{}');
|
||||||
DELETE FROM task WHERE task_name LIKE 'Unscaler';
|
DELETE FROM task WHERE task_name LIKE 'Unscaler';
|
||||||
INSERT INTO task VALUES('Unscaler', '', 'shutdown', '', 0, 0, 0, 0, '', 0, '/usr/sbin/unscaler.sh', 'script', '{}', '', '', '{}', '{}');
|
INSERT INTO task VALUES('Unscaler', '', 'shutdown', '', 0, 0, 0, 0, '', 0, '/usr/sbin/unscaler.sh', 'script', '{}', '', '', '{}', '{}');
|
||||||
EOF
|
EOF
|
||||||
|
fi
|
||||||
elif [ "${1}" = "uninstall" ]; then
|
elif [ "${1}" = "uninstall" ]; then
|
||||||
echo "Installing cpufreqscalingscaling - ${1}"
|
echo "Installing cpufreqscalingscaling - ${1}"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user