diff --git a/configs/rcn-ee_console_debian_testing_armhf.conf b/configs/rcn-ee_console_debian_testing_armhf.conf index 464fe8c0879244bd5785412d1cd4e4ab32fdcf47..41be8025590a722a55195042478f7ef1173894c2 100644 --- a/configs/rcn-ee_console_debian_testing_armhf.conf +++ b/configs/rcn-ee_console_debian_testing_armhf.conf @@ -17,7 +17,6 @@ hexedit hdparm hostapd i2c-tools initramfs-tools linux-base locales lowpan-tools lshw memtester nano openssh-server patch ppp read-edid rsync sudo systemd \ usb-modeswitch usbutils wget wireless-tools \ firmware-atheros firmware-brcm80211 firmware-libertas firmware-ralink firmware-realtek firmware-ti-connectivity firmware-zd1211" -#broken="wvdial" deb_exclude="" deb_components="main contrib non-free" deb_mirror="" diff --git a/tools/setup_sdcard.sh b/tools/setup_sdcard.sh index 54ad08cb93b7817e1aadec412bd7278b5b35ae8b..04463e95920a7ae5bccee4c275325cc22162a464 100755 --- a/tools/setup_sdcard.sh +++ b/tools/setup_sdcard.sh @@ -907,6 +907,9 @@ populate_rootfs () { if [ "x${bbb_flasher}" = "xenable" ] ; then echo "##enable BBB: eMMC Flasher:" >> ${wfile} echo "cmdline=init=/opt/scripts/tools/eMMC/init-eMMC-flasher-v3.sh" >> ${wfile} + elif [ "x${bbg_flasher}" = "xenable" ] ; then + echo "##enable BBG: eMMC Flasher:" >> ${wfile} + echo "cmdline=init=/opt/scripts/tools/eMMC/init-eMMC-flasher-v3-bbg.sh" >> ${wfile} else echo "##enable BBB: eMMC Flasher:" >> ${wfile} echo "##make sure, these tools are installed: dosfstools rsync" >> ${wfile} @@ -1326,6 +1329,9 @@ while [ ! -z "$1" ] ; do --bbb-flasher) bbb_flasher="enable" ;; + --bbg-flasher) + bbg_flasher="enable" + ;; --beagleboard.org-production) bborg_production="enable" ;;