diff options
author | Wolfgang Denk <wd@pollux.denx.de> | 2006-07-19 14:40:43 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@pollux.denx.de> | 2006-07-19 14:40:43 +0200 |
commit | c786f427f9cbccb64a28020e28458895e39df43a (patch) | |
tree | 588fc9364ecad9ec42bdaba70e3273a20a52b96d /board | |
parent | d053ce62cd7cc7cefc24cfba9ffa49124a3ff4f8 (diff) | |
download | u-boot-imx-c786f427f9cbccb64a28020e28458895e39df43a.zip u-boot-imx-c786f427f9cbccb64a28020e28458895e39df43a.tar.gz u-boot-imx-c786f427f9cbccb64a28020e28458895e39df43a.tar.bz2 |
Adjust filenames for USB update images on TRAB board.
During an automatic update via USB stick, U-Boot searches for
images with the name "firmware.img" and "kernel.img". This names
are now changed to "firmw_01.img" and "kernl_01.img". This is done,
to prevent updates of new boards (with the new macronics "c" step
flashes) with old, incompatible firmware or kernel versions.
Patch by Martin Krause, 21 Jun 2006
Diffstat (limited to 'board')
-rw-r--r-- | board/trab/auto_update.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/board/trab/auto_update.c b/board/trab/auto_update.c index 442c555..d2c8d44 100644 --- a/board/trab/auto_update.c +++ b/board/trab/auto_update.c @@ -57,9 +57,9 @@ * valid then run it. * 2) if preinst.img is found load it into memory. If it is * valid then run it. Update the EEPROM. - * 3) if firmware.img is found load it into memory. If it is valid, + * 3) if firmw_01.img is found load it into memory. If it is valid, * burn it into FLASH and update the EEPROM. - * 4) if kernel.img is found load it into memory. If it is valid, + * 4) if kernl_01.img is found load it into memory. If it is valid, * burn it into FLASH and update the EEPROM. * 5) if app.img is found load it into memory. If it is valid, * burn it into FLASH and update the EEPROM. @@ -81,8 +81,8 @@ /* possible names of files on the USB stick. */ #define AU_PREPARE "prepare.img" #define AU_PREINST "preinst.img" -#define AU_FIRMWARE "firmware.img" -#define AU_KERNEL "kernel.img" +#define AU_FIRMWARE "firmw_01.img" +#define AU_KERNEL "kernl_01.img" #define AU_APP "app.img" #define AU_DISK "disk.img" #define AU_POSTINST "postinst.img" |