diff options
author | Hannes Petermaier <oe5hpm@oevsv.at> | 2015-04-24 14:49:39 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-05-08 17:24:17 -0400 |
commit | 5094befd84de1fe6ffbe515d8efe2f19963a17f5 (patch) | |
tree | 66eb232657f034a4feaf57c8eba256e937ed8ca9 /include/configs/kwb.h | |
parent | 4e2a341566ee53963b343d1f06c53bfb02d3d291 (diff) | |
download | u-boot-5094befd84de1fe6ffbe515d8efe2f19963a17f5.tar.gz |
board/BuR/common: rename "usbupdate" environment to "usbscript"
usbupdate in real does allways load some script from usb-storage and execute
it, on all B&R targets.
So we do following 2 things:
- rename it to what it really does
- move it from boards to common environment
Signed-off-by: Hannes Petermaier <oe5hpm@oevsv.at>
Diffstat (limited to 'include/configs/kwb.h')
-rw-r--r-- | include/configs/kwb.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/include/configs/kwb.h b/include/configs/kwb.h index 7798b8001d..d1c745e6ab 100644 --- a/include/configs/kwb.h +++ b/include/configs/kwb.h @@ -80,10 +80,6 @@ BUR_COMMON_ENV \ "run loadromfs; " \ "tftp ${loadaddr} arimg && go ${loadaddr}; " \ "puts 'networkboot failed!';\0" \ -"usbupdate=echo updating u-boot from usb ...; " \ - "usb start; " \ - "fatload usb 0 0x80000000 updateubootusb.img && source; " \ - "puts 'usbupdate failed!'\0" \ "netscript=echo running script from network (tftp) ...; " \ "tftp 0x80000000 netscript.img && source; " \ "puts 'netscript load failed!'\0" \ @@ -101,7 +97,7 @@ BUR_COMMON_ENV \ #endif /* !CONFIG_SPL_BUILD*/ #define CONFIG_BOOTCOMMAND \ - "run usbupdate;" + "run usbscript;" #define CONFIG_BOOTDELAY 0 /* undefine command which we not need here */ |