leo: update leoupdate

Change the script to include the main ramdisk that is created by the compilation, unless if someone has their own initrd.gz in the repo, it will ignore it

Change-Id: I8847c0890124d64e1de98f02f39f38f3a3062c43
This commit is contained in:
Arif Ali 2011-09-28 01:05:04 +01:00
parent 89a9087eef
commit c5217ce25f
1 changed files with 3 additions and 0 deletions

View File

@ -22,6 +22,9 @@ cd "$LOC"/temp
rm -rf "$LOC"/temp/boot.img
rm -rf "$LOC"/temp/boot
cp -a "$LOC"/boot "$LOC"/temp/boot
if [[ ! -e "$LOC"/temp/boot/initrd.gz ]] ; then
cp -a "$LOC"/ramdisk.img "$LOC"/temp/boot/initrd.gz
fi
rm -rf "$LOC"/$TARGET_PRODUCT-ota-$TARGET_BUILD_VARIANT.$USER.zip
zip -9yr "$LOC"/$TARGET_PRODUCT-ota-$TARGET_BUILD_VARIANT.$USER.zip * > /dev/null
cd "$LOC"