diff options
author | Michael Lauer <mickey@vanille-media.de> | 2005-07-18 22:11:57 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-07-18 22:11:57 +0000 |
commit | 6fbd7684be0328ec9e37fd923438d739c7b2ca69 (patch) | |
tree | fc55ba86a00ee285f110a610d32f7045e010e828 /packages/zaurus-updater/tosa | |
parent | 1c87ee48b7a6e4adea79103d960194cd63519da5 (diff) |
zaurus-updater: recognize zimage.bin for tosa
Diffstat (limited to 'packages/zaurus-updater/tosa')
-rw-r--r-- | packages/zaurus-updater/tosa/updater.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/zaurus-updater/tosa/updater.sh b/packages/zaurus-updater/tosa/updater.sh index e22edbf19a..5adfa97a1e 100644 --- a/packages/zaurus-updater/tosa/updater.sh +++ b/packages/zaurus-updater/tosa/updater.sh @@ -67,7 +67,7 @@ then ./consolescroll fi -for TARGETFILE in zImage zimage ZIMAGE initrd.bin INITRD.BIN mversion.bin MVERSION.BIN +for TARGETFILE in zImage zimage.bin ZIMAGE initrd.bin INITRD.BIN mversion.bin MVERSION.BIN do if [ -e $TARGETFILE ] then @@ -78,8 +78,8 @@ do #echo $TARGETFILE':'$DATASIZE'bytes' TARGETTYPE=Invalid case "$TARGETFILE" in -## zImage) TARGETTYPE=Kernel;; - zimage) TARGETTYPE=Kernel;; + zImage) TARGETTYPE=Kernel;; + zimage.bin) TARGETTYPE=Kernel;; ZIMAGE) TARGETTYPE=Kernel;; initrd.bin) TARGETTYPE=RoFs;; INITRD.BIN) TARGETTYPE=RoFs;; |