2022-03-06 02:04:10 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# Copyright (C) 2021-present Fewtarius (https://github.com/fewtarius)
|
|
|
|
|
|
|
|
. /etc/profile
|
|
|
|
|
2022-03-09 02:50:59 +00:00
|
|
|
# If there is no defined overclock, make sure it's "off".
|
|
|
|
OVERCLOCK=$(get_setting system.overclock)
|
|
|
|
if [ -z ${OVERCLOCK} ]
|
|
|
|
then
|
|
|
|
set_setting system.overclock off
|
|
|
|
fi
|
|
|
|
|
2022-03-09 03:03:07 +00:00
|
|
|
/usr/bin/overclock boot
|