* Add support for two dedicated package lists for BOARD and FAMILY - PACKAGE_LIST_BOARD - PACKAGE_LIST_FAMILY * Add some info about recently added features to the README.md
18 lines
577 B
Plaintext
18 lines
577 B
Plaintext
source "${BASH_SOURCE%/*}/include/sunxi_common.inc"
|
|
OVERLAY_PREFIX='sun7i-a20'
|
|
[[ -z $CPUMIN ]] && CPUMIN=480000
|
|
[[ -z $CPUMAX ]] && CPUMAX=1010000
|
|
|
|
family_tweaks_bsp_s()
|
|
{
|
|
if [[ $BOARD == olimex-som204-a20 ]]; then
|
|
|
|
# BT
|
|
install -m 755 $SRC/packages/bsp/olinuxino/usr/bin/rtk_hciattach $destination/usr/bin
|
|
cp $SRC/packages/bsp/olinuxino/lib/systemd/system/olinuxino-bluetooth.service $destination/lib/systemd/system
|
|
# Copy fbdev configuration
|
|
cp $SRC/packages/bsp/olinuxino/etc/X11/xorg.conf.d/02-olinuxino-hdmi-fbdev.conf $destination/etc/X11/xorg.conf.d/
|
|
|
|
fi
|
|
}
|