diff options
author | Robie Basak <robie.basak@ubuntu.com> | 2012-02-16 09:02:17 -0700 |
---|---|---|
committer | John Rigby <john.rigby@linaro.org> | 2012-04-23 07:48:50 -0600 |
commit | 16310362717260c85ec97757b8f7c7b08fdc0cdd (patch) | |
tree | 969893cd2351cf2032334684da4b90cbd2cafe21 | |
parent | 06fb24617b1453ac0a8f35ca0b989ef50e9b1669 (diff) | |
download | u-boot-linaro-stable-16310362717260c85ec97757b8f7c7b08fdc0cdd.tar.gz |
OMAP4: Force PXE booting when booting via spl-usb
So we don't use boot script on MMC/SD card.
Signed-off-by: John Rigby <john.rigby@linaro.org>
-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 cf3dbf220..2e2af1a4a 100644 --- a/include/configs/omap4_common.h +++ b/include/configs/omap4_common.h @@ -173,6 +173,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 \ "if mmc rescan ${mmcdev}; then " \ "if run loadbootscript; then " \ @@ -189,6 +198,7 @@ "pxe get;" \ "pxe boot;" \ "fi" +#endif #define CONFIG_AUTO_COMPLETE 1 |