18 lines
358 B
Text
18 lines
358 B
Text
|
#!/bin/sh
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
# Copyright (C) 2021-present Fewtarius (https://github.com/fewtarius)
|
||
|
|
||
|
. /etc/profile
|
||
|
|
||
|
OVERCLOCK=$(get_setting system.overclock)
|
||
|
if [ -z ${OVERCLOCK} ]
|
||
|
then
|
||
|
set_setting system.overclock off
|
||
|
fi
|
||
|
/usr/bin/overclock ${OVERCLOCK}
|
||
|
|
||
|
if [ -d "/storage/.config/system/configs" ]
|
||
|
then
|
||
|
EXCLUDE="--exclude=configs"
|
||
|
fi
|