31 lines
907 B
Plaintext
31 lines
907 B
Plaintext
|
|
source "${BASH_SOURCE%/*}/include/sunxi_common.inc"
|
||
|
|
|
||
|
|
if [[ -z ${OVERLAY_PREFIX} ]]; then
|
||
|
|
OVERLAY_PREFIX='sun8i-h3'
|
||
|
|
fi
|
||
|
|
|
||
|
|
[[ -z $CPUMIN ]] && CPUMIN=480000
|
||
|
|
[[ -z $CPUMAX ]] && CPUMAX=1400000
|
||
|
|
|
||
|
|
family_tweaks_s()
|
||
|
|
{
|
||
|
|
|
||
|
|
if [[ -f $SDCARD/lib/systemd/system/ap6212-bluetooth.service ]]; then
|
||
|
|
|
||
|
|
# install and enable Bluetooth
|
||
|
|
chroot $SDCARD /bin/bash -c "apt-get -y -qq install rfkill bluetooth bluez bluez-tools >/dev/null 2>&1"
|
||
|
|
chroot $SDCARD /bin/bash -c "systemctl --no-reload enable ap6212-bluetooth.service >/dev/null 2>&1"
|
||
|
|
fi
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
family_tweaks_bsp()
|
||
|
|
{
|
||
|
|
|
||
|
|
if [[ $BOARD == orangepizeroplus2h3 ]]; then
|
||
|
|
|
||
|
|
install -m 755 $EXTER/packages/blobs/bt/brcm_patchram_plus/brcm_patchram_plus_$ARCH $destination/usr/bin/brcm_patchram_plus
|
||
|
|
cp $EXTER/packages/bsp/sunxi/ap6212-bluetooth.service $destination/lib/systemd/system/
|
||
|
|
fi
|
||
|
|
}
|