mirror of
https://github.com/armbian/build
synced 2025-09-24 19:47:06 +07:00
* Disable DE2 in u-boot to improve EDID detection * Remove deprecated patches * Define BOOTBRANCH in top level Signed-off-by: Igor Pecovnik <igor.pecovnik@gmail.com>
19 lines
554 B
Plaintext
19 lines
554 B
Plaintext
ATF_PLAT="sun50i_a64"
|
|
source "${BASH_SOURCE%/*}/include/sunxi64_common.inc"
|
|
OVERLAY_PREFIX='sun50i-a64'
|
|
BOOTENV_FILE='sun50iw1-next.txt'
|
|
[[ -z $CPUMIN ]] && CPUMIN=480000
|
|
[[ -z $CPUMAX ]] && CPUMAX=1010000
|
|
GOVERNOR=ondemand
|
|
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
|
|
}
|