--- elwix/install2uboot.sh 2014/01/20 08:53:13 1.1.2.1 +++ elwix/install2uboot.sh 2014/01/20 13:15:46 1.1.2.2 @@ -5,7 +5,7 @@ # (C) AITNET ltd - Sofia/Bulgaria # by Michael Pounov # -# $Id: install2uboot.sh,v 1.1.2.1 2014/01/20 08:53:13 misho Exp $ +# $Id: install2uboot.sh,v 1.1.2.2 2014/01/20 13:15:46 misho Exp $ # [ -r ./config/rc.elwix ] && . ./config/rc.elwix @@ -26,12 +26,29 @@ fi ### main() -if [ -z "$1" -o ! -r "$1" ]; then +if [ -z "$1" ]; then echo - echo "Error:: ELWIX image file '$1' not found!" + echo "Error:: ELWIX u-boot option not found ..." echo exit 2 fi +case $1 in + kernel) + oldlzma e ${KERNEL} ${REL}/kernel.lzma + uboot_mkimage -A ${TARGET} -O linux -T kernel -C ${UB_COMPRESS} -n ELWIX \ + -a ${UB_LOADADDR} -e ${UB_ENTRYADDR} -d ${REL}/kernel.lzma \ + ${REL}/kernel.lzma.uImage + ;; + kernel_rootfs) + oldlzma e ${KERNEL_ROOTFS} ${REL}/kernel_rootfs.lzma + uboot_mkimage -A ${TARGET} -O linux -T kernel -C ${UB_COMPRESS} -n ELWIX_ROOTFS \ + -a ${UB_LOADADDR} -e ${UB_ENTRYADDR} -d ${REL}/kernel_rootfs.lzma \ + ${REL}/kernel_rootfs.lzma.uImage + ;; + *) + echo "Option $1 not supported at this moment" + ;; +esac echo "ELWIX u-boot image $1 complete."