1f6d96325b
* Temporary drop or correct multiple packages that needed updates for x86_64. * Update volume service to deprecate hard coded paths. * system-utils and sleep to common packages. * Add weston kiosk.ini for future use. * Add DIRTY variable, if true it will not clean.
14 lines
326 B
Bash
14 lines
326 B
Bash
#!/bin/sh
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
# Copyright (C) 2021-present Fewtarius (https://github.com/fewtarius)
|
|
|
|
. /etc/profile
|
|
|
|
# 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
|
|
|
|
/usr/bin/overclock boot
|