From ba1b6576243e40eb1845a62172fb45628e9a8a2a Mon Sep 17 00:00:00 2001 From: Ben Howard Date: Sun, 7 Feb 2016 17:02:25 -0700 Subject: [PATCH] ubuntu-cpc: fix hooks/032-disk-image.binary call to create_empty_partition, which requires five args due to "-u" --- debian/changelog | 8 ++++++-- live-build/ubuntu-cpc/hooks/032-disk-image.binary | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index ac857c83..da76cf5b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -livecd-rootfs (2.376) UNRELEASED; urgency=medium +livecd-rootfs (2.376ubuntu1) UNRELEASED; urgency=medium [ Michael Terry ] * Change real name for phablet user to "Ubuntu" in ubuntu-touch. @@ -21,7 +21,11 @@ livecd-rootfs (2.376) UNRELEASED; urgency=medium * Refactor ubuntu-cpc hooks to allow us to handle images where the root partition should not be partition 1. - -- Ɓukasz 'sil2100' Zemczak Thu, 04 Feb 2016 17:31:18 +0100 + [ Ben Howard ] + * ubuntu-cpc: fix hooks/032-disk-image.binary call to + create_empty_partition, which requires five args due to "-u" + + -- Ben Howard Sun, 07 Feb 2016 16:59:41 -0700 livecd-rootfs (2.375) xenial; urgency=medium diff --git a/live-build/ubuntu-cpc/hooks/032-disk-image.binary b/live-build/ubuntu-cpc/hooks/032-disk-image.binary index 6597832d..bad86fa6 100755 --- a/live-build/ubuntu-cpc/hooks/032-disk-image.binary +++ b/live-build/ubuntu-cpc/hooks/032-disk-image.binary @@ -49,7 +49,7 @@ if [ -n "$BOOTPART_START" ]; then ROOTPART=2 ROOTPART_START="$BOOTPART_END" ROOT_BOOTABLE= - create_empty_partition "$disk_image" 1 "$BOOTPART_START" "$BOOTPART_END" 1 + create_empty_partition "$disk_image" 1 "$BOOTPART_START" "$BOOTPART_END" 1 "$ROOT_BOOTABLE" fi create_empty_partition "${disk_image}" "$ROOTPART" "$ROOTPART_START" -1 $ROOT_BOOTABLE