From 8001040b42e08a29a9a0d39261ef8293e37e8610 Mon Sep 17 00:00:00 2001 From: Oliver Grawert Date: Thu, 28 Mar 2013 18:49:09 +0100 Subject: [PATCH] make ubuntu-touch-android.sh also create $subarch-system.img $subarch-recovery.img and $subarch-boot.img --- debian/changelog | 7 +++++++ ubuntu-touch-android.sh | 3 +++ 2 files changed, 10 insertions(+) diff --git a/debian/changelog b/debian/changelog index e368ab2d..5a70ab4f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +livecd-rootfs (2.117) UNRELEASED; urgency=low + + * make ubuntu-touch-android.sh also create $subarch-system.img + $subarch-recovery.img and $subarch-boot.img + + -- Oliver Grawert Thu, 28 Mar 2013 18:47:06 +0100 + livecd-rootfs (2.116) raring; urgency=low * add new arg (-t) to enable Ubuntu Touch android cross builds which calls a diff --git a/ubuntu-touch-android.sh b/ubuntu-touch-android.sh index 0c0d83cb..ca039cd8 100755 --- a/ubuntu-touch-android.sh +++ b/ubuntu-touch-android.sh @@ -30,4 +30,7 @@ brunch $codename cd - cp $builddir/out/target/product/$codename/*-$codename.zip . +for image in system recovery boot; do + cp $builddir/out/target/product/$codename/$image.img ./$codename-$image.img +done rm -rf $buildir