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 /board/BuR | |
parent | 4e2a341566ee53963b343d1f06c53bfb02d3d291 (diff) |
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 'board/BuR')
-rw-r--r-- | board/BuR/kwb/board.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/BuR/kwb/board.c b/board/BuR/kwb/board.c index 6eed7e0d7f6..01dd1d9915b 100644 --- a/board/BuR/kwb/board.c +++ b/board/BuR/kwb/board.c @@ -214,8 +214,8 @@ int board_late_init(void) gpio_get_value(PUSH_KEY) && 1 == cnt) { lcd_position_cursor(1, 8); lcd_puts( - "updating U-BOOT from USB ... "); - setenv("bootcmd", "run usbupdate"); + "starting u-boot script from USB ... "); + setenv("bootcmd", "run usbscript"); cnt = 4; break; } else if ((!gpio_get_value(ESC_KEY) && |