diff options
author | Steve Kipisz <s-kipisz2@ti.com> | 2013-03-02 08:55:27 -0600 |
---|---|---|
committer | Franklin S. Cooper Jr <fcooper@ti.com> | 2013-03-20 12:43:15 -0500 |
commit | c5878e4113cf6428ae16ca20137c603b931bd780 (patch) | |
tree | 81fd66978b3abc9844e4a17c925b21f1bae7ef0c /include | |
parent | b94c42dd9075a89941f4ad53e66422a04c67093e (diff) |
am335x_evm:Add USB SPL restore flash option
This patch adds a build target to build restore flash images
that use a debrick script to restore flash over USB.
Signed-off-by: Steve Kipisz <s-kipisz2@ti.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/am335x_evm.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/configs/am335x_evm.h b/include/configs/am335x_evm.h index fbfd59d663b..7752ca99939 100644 --- a/include/configs/am335x_evm.h +++ b/include/configs/am335x_evm.h @@ -148,6 +148,7 @@ #endif +#ifndef CONFIG_RESTORE_FLASH #define CONFIG_BOOTCOMMAND \ "mmc dev ${mmcdev}; if mmc rescan; then " \ "echo SD/MMC found on device ${mmcdev};" \ @@ -170,6 +171,20 @@ "run nandboot;" \ "fi;" \ +#else + +#undef CONFIG_BOOTDELAY +#define CONFIG_BOOTDELAY 0 + +#define CONFIG_BOOTCOMMAND \ + "setenv autoload no; " \ + "setenv ethact usb_ether; " \ + "dhcp; " \ + "if tftp 80000000 debrick.scr; then " \ + "source 80000000; " \ + "fi" +#endif + /* Clock Defines */ #define V_OSCK 24000000 /* Clock output from T2 */ #define V_SCLK (V_OSCK) |