diff options
-rw-r--r-- | include/configs/omap4_common.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/configs/omap4_common.h b/include/configs/omap4_common.h index 61a29707c..7bf1c1bd4 100644 --- a/include/configs/omap4_common.h +++ b/include/configs/omap4_common.h @@ -169,6 +169,15 @@ "ramdisk_addr_r=0x81600000\0" \ "pxefile_addr_r=0x86000000\0" +#ifdef CONFIG_SPL_USB +#define CONFIG_BOOTCOMMAND \ + "if usb start; then " \ + "set autoload no; "\ + "bootp; "\ + "pxe get;" \ + "pxe boot;" \ + "fi" +#else #define CONFIG_BOOTCOMMAND \ "mmc dev ${mmcdev}; if mmc rescan; then " \ "if run loadbootscript; then " \ @@ -185,6 +194,7 @@ "pxe get;" \ "pxe boot;" \ "fi" +#endif #define CONFIG_AUTO_COMPLETE 1 |