Import patches-unapplied version 2.359 to ubuntu/xenial-proposed

Imported using git-ubuntu import.

Changelog parent: fc5a8afdab

New changelog entries:
  * ubuntu-cpc:
    - add devpts-live to hook builds
    - add logic to settle the disks after UEFI builds
impish 2.359
Ben Howard 9 years ago committed by usd-importer
parent fc5a8afdab
commit 197a5ea751

8
debian/changelog vendored

@ -1,3 +1,11 @@
livecd-rootfs (2.359) xenial; urgency=medium
* ubuntu-cpc:
- add devpts-live to hook builds
- add logic to settle the disks after UEFI builds
-- Ben Howard <ben.howard@ubuntu.com> Mon, 23 Nov 2015 09:34:57 -0700
livecd-rootfs (2.358) xenial; urgency=medium livecd-rootfs (2.358) xenial; urgency=medium
* Fix typo in ubuntu-cpc preventing non-intel builds. * Fix typo in ubuntu-cpc preventing non-intel builds.

@ -46,6 +46,7 @@ mount_partition() {
mount "$partition" "$mountpoint" mount "$partition" "$mountpoint"
mount --bind /dev "$mountpoint/dev" mount --bind /dev "$mountpoint/dev"
mount devpts-live -t devpts "$mountpoint/dev/pts"
mount proc-live -t proc "$mountpoint/proc" mount proc-live -t proc "$mountpoint/proc"
mount sysfs-live -t sysfs "$mountpoint/sys" mount sysfs-live -t sysfs "$mountpoint/sys"
mv "$mountpoint/etc/resolv.conf" resolv.conf.tmp mv "$mountpoint/etc/resolv.conf" resolv.conf.tmp
@ -58,6 +59,7 @@ umount_partition() {
mv resolv.conf.tmp "$mountpoint/etc/resolv.conf" mv resolv.conf.tmp "$mountpoint/etc/resolv.conf"
umount "$mountpoint/proc" umount "$mountpoint/proc"
umount "$mountpoint/sys" umount "$mountpoint/sys"
umount "$mountpoint/dev/pts"
umount "$mountpoint/dev" umount "$mountpoint/dev"
umount "$mountpoint" umount "$mountpoint"
} }

@ -116,7 +116,11 @@ EOF
chroot mountpoint apt-get -y update chroot mountpoint apt-get -y update
rm mountpoint/tmp/device.map rm mountpoint/tmp/device.map
sync
umount mountpoint/boot/efi umount mountpoint/boot/efi
sleep 5
udevadm settle
mount
umount_partition mountpoint umount_partition mountpoint
rmdir mountpoint rmdir mountpoint
} }

Loading…
Cancel
Save