From: Michael Lauer Date: Mon, 18 Jul 2005 22:11:57 +0000 (+0000) Subject: zaurus-updater: recognize zimage.bin for tosa X-Git-Tag: Release-2010-05/1~9453^2~4124^2~8^2~1 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6fbd7684be0328ec9e37fd923438d739c7b2ca69;p=openembedded.git zaurus-updater: recognize zimage.bin for tosa --- 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;;