Bluetooth fix for Udoo Neo and M4 updated firmware

This commit is contained in:
Igor Pecovnik 2016-03-07 19:52:28 +01:00
parent 01bbe8fe63
commit 91a4c04197
4 changed files with 4 additions and 1 deletions

Binary file not shown.

Binary file not shown.

View File

@ -64,7 +64,7 @@ install_board_specific (){
# Udoo
if [[ $BOARD == "udoo" ]] ; then
chroot $DEST/cache/sdcard /bin/bash -c "apt-get -y -qq remove lirc >/dev/null 2>&1"
sed 's/wlan0/wlan2/' -i $DEST/cache/sdcard/etc/network/interfaces.default
sed 's/wlan0/wlan2/' -i $DEST/cache/sdcard/etc/network/interfaces.bonding
@ -85,6 +85,9 @@ install_board_specific (){
# firmware for M4
mkdir -p $DEST/cache/sdcard/boot/bin/
cp $SRC/lib/bin/m4startup.fw* $DEST/cache/sdcard/boot/bin/
# fix for BT
cp $SRC/lib/bin/udoo-neo-debs/udooneo-bluetooth_1.2-1_armhf.deb /tmp
chroot $DEST/cache/sdcard /bin/bash -c "dpkg -i /tmp/udooneo-bluetooth_1.2-1_armhf.deb >/dev/null 2>&1"
fi