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/tseries.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/tseries.h')
-rw-r--r-- | include/configs/tseries.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/configs/tseries.h b/include/configs/tseries.h index 115fd5b2d2..9218533388 100644 --- a/include/configs/tseries.h +++ b/include/configs/tseries.h @@ -140,7 +140,7 @@ "run mmcroot1; bootz ${loadaddr} - ${dtbaddr};\0" \ "defboot=ext4load mmc 0:2 ${loadaddr} /boot/PPTImage.md5 && run mmcboot1; " \ "ext4load mmc 0:1 ${dtbaddr} /$dtb && run mmcboot0; " \ - "run ramboot; run usbupdate;\0" \ + "run ramboot; run usbscript;\0" \ "bootlimit=1\0" \ "altbootcmd=run mmcboot0;\0" \ "upduboot=dhcp; " \ @@ -185,8 +185,6 @@ BUR_COMMON_ENV \ "then; else tftp ${dtbaddr} ${dtb}; fi;" \ "run mmcroot0; " \ "bootz ${loadaddr} ${ramaddr} ${dtbaddr}; fi;\0" \ -"usbupdate=echo Updating UBOOT from USB-Stick ...; " \ - "usb start && fatload usb 0 0x80000000 updateubootusb.img && source\0" \ "netupdate=echo Updating UBOOT from Network (TFTP) ...; " \ "setenv autoload 0; " \ "dhcp && tftp 0x80000000 updateUBOOT.img && source;\0" \ |