25 lines
714 B
Plaintext
25 lines
714 B
Plaintext
|
#
|
||
|
# SPDX-License-Identifier: GPL-2.0
|
||
|
#
|
||
|
# Copyright (c) 2013-2023 Igor Pecovnik, igor@armbian.com
|
||
|
#
|
||
|
# This file is a part of the Armbian Build Framework
|
||
|
# https://github.com/armbian/build/
|
||
|
#
|
||
|
ATF_PLAT="sun50i_a64"
|
||
|
source "${BASH_SOURCE%/*}/include/sunxi64_common.inc"
|
||
|
OVERLAY_PREFIX='sun50i-a64'
|
||
|
[[ -z $CPUMIN ]] && CPUMIN=480000
|
||
|
[[ -z $CPUMAX ]] && CPUMAX=1010000
|
||
|
GOVERNOR=performance
|
||
|
ASOUND_STATE='asound.state.pinebook-next'
|
||
|
|
||
|
family_tweaks_s() {
|
||
|
# add bluetooth firmware for 8723cs + sysrq fix
|
||
|
if [[ $BOARD == pinebook-a64 ]]; then
|
||
|
cp -R $SRC/packages/blobs/rtl8723bt_fw/* $SDCARD/lib/firmware/rtl_bt/
|
||
|
touch $SDCARD/etc/sysctl.d/sysrq.conf
|
||
|
echo "kernel.sysrq = 0" >> $SDCARD/etc/sysctl.d/sysrq.conf
|
||
|
fi
|
||
|
}
|