]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
nitrogen6x: config: expose SATA, then MMC over USB
authorEric Nelson <eric.nelson@boundarydevices.com>
Thu, 2 Oct 2014 19:16:44 +0000 (12:16 -0700)
committerStefano Babic <sbabic@denx.de>
Mon, 6 Oct 2014 15:57:23 +0000 (17:57 +0200)
If no boot script was found, expose internal storage over the
USB mass storage gadget to allow easy programming.

This is especially useful when SD cards are inaccessible or when
loading SATA drives.

More details are available in this blog post:
        http://boundarydevices.com/u-boot-usb-mass-storage-gadget/

Signed-off-by: Eric Nelson <eric.nelson@boundarydevices.com>
include/configs/nitrogen6x.h

index 3c2444359264799cc27093557ebeceffd97413d9..b31b92291d33cd074ce9c3b0a5b3cbc452a974ce 100644 (file)
 #endif
 
 #define CONFIG_DRIVE_TYPES CONFIG_DRIVE_SATA CONFIG_DRIVE_MMC CONFIG_DRIVE_USB
+#define CONFIG_UMSDEVS CONFIG_DRIVE_SATA CONFIG_DRIVE_MMC
 
 #if defined(CONFIG_SABRELITE)
 #define CONFIG_EXTRA_ENV_SETTINGS \
 #else
 #define CONFIG_EXTRA_ENV_SETTINGS \
        "bootdevs=" CONFIG_DRIVE_TYPES "\0" \
+       "umsdevs=" CONFIG_UMSDEVS "\0" \
        "console=ttymxc1\0" \
        "clearenv=if sf probe || sf probe || sf probe 1 ; then " \
                "sf erase 0xc0000 0x2000 && " \
                "echo ; echo 6x_bootscript not found ; " \
                "echo ; echo serial console at 115200, 8N1 ; echo ; " \
                "echo details at http://boundarydevices.com/6q_bootscript ; " \
-               "setenv stdout serial\0" \
+               "setenv stdout serial;" \
+               "setenv stdin serial,usbkbd;" \
+               "for dtype in ${umsdevs} ; do " \
+                       "if itest.s sata == ${dtype}; then " \
+                               "initcmd='sata init' ;" \
+                       "else " \
+                               "initcmd='mmc rescan' ;" \
+                       "fi; " \
+                       "for disk in 0 1 ; do " \
+                               "if $initcmd && $dtype dev $disk ; then " \
+                                       "setenv stdout serial,vga; " \
+                                       "echo expose ${dtype} ${disk} " \
+                                               "over USB; " \
+                                       "ums 0 $dtype $disk ;" \
+                               "fi; " \
+               "       done; " \
+               "done ;" \
+               "setenv stdout serial,vga; " \
+               "echo no block devices found;" \
+               "\0" \
        "initrd_high=0xffffffff\0" \
        "upgradeu=for dtype in ${bootdevs}" \
                "; do " \