Import patches-unapplied version 2.100 to ubuntu/raring-proposed

Imported using git-ubuntu import.

Changelog parent: 5d6be2b8a3

New changelog entries:
  * clean up the userdata dir
  * move the tarball around instead of copying it
  * fix quoting of abootimg call harder
impish
Oliver Grawert 12 years ago committed by usd-importer
parent 5d6be2b8a3
commit 0392f3aa20

8
debian/changelog vendored

@ -1,3 +1,11 @@
livecd-rootfs (2.100) raring; urgency=low
* clean up the userdata dir
* move the tarball around instead of copying it
* fix quoting of abootimg call harder
-- Oliver Grawert <ogra@ubuntu.com> Mon, 19 Nov 2012 19:48:42 +0100
livecd-rootfs (2.99) raring; urgency=low livecd-rootfs (2.99) raring; urgency=low
* fix quoting in abootimg call for nexus7 * fix quoting in abootimg call for nexus7

@ -378,12 +378,13 @@ if [ "$SUBARCH" = "ac100" ] || [ "$SUBARCH" = "nexus7" ]; then
if [ "$SUBARCH" = "nexus7" ]; then if [ "$SUBARCH" = "nexus7" ]; then
# adjust the bootimg cmdline parameters # adjust the bootimg cmdline parameters
Chroot chroot "abootimg -u /boot/installer-${KVERS}.img -c \"cmdline=root=/dev/mmcblk0p9 ro console=tty1 fbcon=rotate:1 quiet splash\"" Chroot chroot "abootimg -u /boot/installer-${KVERS}.img -c 'cmdline=root=/dev/mmcblk0p9 ro console=tty1 fbcon=rotate:1 quiet splash'"
# roll the android rootfs images # roll the android rootfs images
mkdir -p userdata mkdir -p userdata
cp $PREFIX.rootfs.tar.gz userdata/rootfs.tar.gz mv $PREFIX.rootfs.tar.gz userdata/rootfs.tar.gz
make_ext4fs -l 6G -s $PREFIX.img-$FLAVOUR userdata/ make_ext4fs -l 6G -s $PREFIX.img-$FLAVOUR userdata/
mv userdata/rootfs.tar.gz $PREFIX.rootfs.tar.gz
ln -sf "$PREFIX.img-$FLAVOUR" "$PREFIX.img" ln -sf "$PREFIX.img-$FLAVOUR" "$PREFIX.img"
fi fi

@ -7,3 +7,4 @@ lb clean noauto "$@"
rm -rf config rm -rf config
rm -f binary.manifest binary.manifest-desktop binary.log rm -f binary.manifest binary.manifest-desktop binary.log
rm -f livecd.* rm -f livecd.*
rm -rf userdata

Loading…
Cancel
Save