diff --git a/boards.sh b/boards.sh index a53f650cf..488bb5a91 100644 --- a/boards.sh +++ b/boards.sh @@ -61,6 +61,7 @@ install_board_specific (){ if [[ $BOARD == "odroid" ]] ; then if [ -f $DEST/cache/sdcard/etc/inittab ]; then sed -e "s/ttyS0/ttySAC2/g" -i $DEST/cache/sdcard/etc/inittab; fi echo "blacklist ina231_sensor" > $DEST/cache/sdcard/etc/modprobe.d/blacklist-odroid.conf + chroot $DEST/cache/sdcard /bin/bash -c "apt-get -y -qq remove lirc && apt-get -y -qq autoremove" fi # Udoo diff --git a/config/boot-odroid.ini b/config/boot-odroid.ini index 6204bfc42..fd80691e2 100644 --- a/config/boot-odroid.ini +++ b/config/boot-odroid.ini @@ -10,7 +10,10 @@ setenv macaddr "00:1e:06:61:7a:55 #------------------------------------------------------------------------------------------------------ # Basic Ubuntu Setup. Don't touch unless you know what you are doing. # -------------------------------- -setenv bootrootfs "console=tty1 loglevel=1 console=ttySAC2,115200n8 root=/dev/mmcblk0p2 rootwait ro fsck.repair=yes" +setenv bootrootfs "console=tty1 loglevel=1 root=/dev/mmcblk0p2 rootwait ro fsck.repair=yes" + +# boot parameter for serial console +# console=ttySAC2,115200n8 # boot commands setenv bootcmd "fatload mmc 0:1 0x40008000 zImage; fatload mmc 0:1 0x44000000 dtb/exynos5422-odroidxu3.dtb; bootz 0x40008000 0x44000000" diff --git a/configuration.sh b/configuration.sh index eab121955..d7cb52a01 100644 --- a/configuration.sh +++ b/configuration.sh @@ -254,7 +254,7 @@ LINUXFAMILY="odroid" BOOTSIZE="16" BOOTCONFIG="odroid_config" - MODULES="ethernet wlan_8723bs bonding" + MODULES="bonding" MODULES_NEXT="" ;;