diff options
author | Peter Korsgaard <peter@korsgaard.com> | 2016-01-17 18:23:44 +0100 |
---|---|---|
committer | Luka Perkov <luka.perkov@sartura.hr> | 2016-03-14 23:29:36 +0100 |
commit | a807369eded75b34f5184552dab00ff73e7ca3bc (patch) | |
tree | 125203f4712545148fd064392de7e4a8b4cdcbf2 | |
parent | 1011226d733f3e0e78485e93681f71e9f66c836e (diff) | |
download | u-boot-imx-a807369eded75b34f5184552dab00ff73e7ca3bc.zip u-boot-imx-a807369eded75b34f5184552dab00ff73e7ca3bc.tar.gz u-boot-imx-a807369eded75b34f5184552dab00ff73e7ca3bc.tar.bz2 |
ARM: sheevaplug: drop unneded 'usb start' from boot command
The default bootcommand executes x_bootcmd_usb AFTER loading a kernel from
nand and just before executing it, which only slows down boot without adding
any functionality - So drop it.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | include/configs/sheevaplug.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/sheevaplug.h b/include/configs/sheevaplug.h index 8110f83..c529636 100644 --- a/include/configs/sheevaplug.h +++ b/include/configs/sheevaplug.h @@ -60,7 +60,7 @@ */ #define CONFIG_BOOTCOMMAND "${x_bootcmd_kernel}; " \ "setenv bootargs ${x_bootargs} ${x_bootargs_root}; " \ - "${x_bootcmd_usb}; bootm 0x6400000;" + "bootm 0x6400000;" #define CONFIG_MTDPARTS \ "orion_nand:512K(uboot)," \ |