mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-08-20 05:04:06 +00:00
Compare commits
12 Commits
ubuntu/mas
...
2.742.5
Author | SHA1 | Date | |
---|---|---|---|
|
bc256f7b74 | ||
|
8076e122c5 | ||
|
d5b6e93e14 | ||
|
7bb7005712 | ||
|
bccc9437a0 | ||
|
e7d06dede2 | ||
|
28c85b9703 | ||
|
a093a293aa | ||
|
bfeba29863 | ||
|
c42513a609 | ||
|
36cd65e112 | ||
|
408045732e |
36
debian/changelog
vendored
36
debian/changelog
vendored
@ -1,3 +1,39 @@
|
||||
livecd-rootfs (2.742.5) impish; urgency=medium
|
||||
|
||||
* Split UEFI image out of `disk-image` series file into
|
||||
`disk-image-uefi`. (LP: #1961760)
|
||||
|
||||
-- Ivan Kapelyukhin <ivan.kapelyukhin@canonical.com> Thu, 03 Mar 2022 15:53:10 +0100
|
||||
|
||||
livecd-rootfs (2.742.4) impish; urgency=medium
|
||||
|
||||
* Unset `initrdless_boot_fallback_triggered` in /boot/grub/grubenv instead
|
||||
of setting it to 0 when the fallback is not triggered to prevent integrity
|
||||
monitoring errors on GCE. (LP: #1960564)
|
||||
|
||||
-- Ivan Kapelyukhin <ivan.kapelyukhin@canonical.com> Mon, 14 Feb 2022 21:24:22 +0100
|
||||
|
||||
livecd-rootfs (2.742.3) impish; urgency=medium
|
||||
|
||||
* Add sleep due to e2fsck error in umount_partition. LP: #1960537
|
||||
|
||||
-- Brian Murray <brian@ubuntu.com> Thu, 10 Feb 2022 15:28:29 -0800
|
||||
|
||||
livecd-rootfs (2.742.2) impish; urgency=medium
|
||||
|
||||
* Bump UEFI disk image size for armhf to 3.5 GB (LP: #1953609)
|
||||
Current builds are failing because the disk size is not big enough.
|
||||
This a backport from jammy and upstream livecd-rootfs:ubuntu/master.
|
||||
|
||||
-- Phil Roche <phil.roche@canonical.com> Wed, 08 Dec 2021 11:24:18 +0000
|
||||
|
||||
livecd-rootfs (2.742.1) impish; urgency=medium
|
||||
|
||||
[ Thomas Bechtold ]
|
||||
* magic-proxy: fix exception handling for URLError LP: #1946520
|
||||
|
||||
-- Brian Murray <brian@ubuntu.com> Thu, 18 Nov 2021 15:17:05 -0800
|
||||
|
||||
livecd-rootfs (2.742) impish; urgency=medium
|
||||
|
||||
[ Brian Murray ]
|
||||
|
@ -234,6 +234,8 @@ umount_partition() {
|
||||
mount --make-private $mountpoint
|
||||
umount $mountpoint
|
||||
udevadm settle
|
||||
# workaround for LP: 1960537
|
||||
sleep 30
|
||||
|
||||
if [ -n "${rootfs_dev_mapper}" -a -b "${rootfs_dev_mapper}" ]; then
|
||||
# buildd's don't have /etc/mtab symlinked
|
||||
@ -1135,7 +1137,7 @@ if [ -n "${have_grubenv}" ]; then
|
||||
if [ -n "${initrdfail}" ]; then
|
||||
set initrdless_boot_fallback_triggered="${initrdfail}"
|
||||
else
|
||||
set initrdless_boot_fallback_triggered=0
|
||||
unset initrdless_boot_fallback_triggered
|
||||
fi
|
||||
save_env initrdless_boot_fallback_triggered
|
||||
fi
|
||||
|
@ -21,6 +21,11 @@ case ${PROJECT:-} in
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ "$ARCH" = "armhf" ]; then
|
||||
# bump to 3.5G (3584*1024**2); Since Impish and Jammy armhf need more then the default 2.2G
|
||||
IMAGE_SIZE=3758096384
|
||||
fi
|
||||
|
||||
# Change image size for preinstalled generic images & all preinstalled riscv64 images
|
||||
if [ -n "${SUBARCH:-}" ]; then
|
||||
if [ "${SUBARCH:-}" = "generic" ] || [ "$ARCH" = "riscv64" ]; then
|
||||
|
@ -1,5 +1,5 @@
|
||||
depends disk-image-uefi
|
||||
base/disk-image.binary
|
||||
base/disk-image-uefi.binary
|
||||
base/disk-image-ppc64el.binary
|
||||
provides livecd.ubuntu-cpc.ext4
|
||||
provides livecd.ubuntu-cpc.initrd-generic
|
||||
|
@ -0,0 +1,8 @@
|
||||
base/disk-image-uefi.binary
|
||||
provides livecd.ubuntu-cpc.ext4
|
||||
provides livecd.ubuntu-cpc.initrd-generic
|
||||
provides livecd.ubuntu-cpc.initrd-generic-lpae
|
||||
provides livecd.ubuntu-cpc.kernel-generic
|
||||
provides livecd.ubuntu-cpc.kernel-generic-lpae
|
||||
provides livecd.ubuntu-cpc.manifest
|
||||
provides livecd.ubuntu-cpc.filelist
|
@ -883,8 +883,10 @@ class ProxyingHTTPRequestHandler(http.server.BaseHTTPRequestHandler):
|
||||
self.__send_response(e)
|
||||
except urllib.error.URLError as e:
|
||||
self.log_message(
|
||||
"urlopen() failed for {} with {}".format(uri, e.reason))
|
||||
self.send_error(501, e.reason)
|
||||
"urlopen() failed for {} with {}".format(uri, str(e.reason)))
|
||||
# URLError.reason can either be a string or another Exception
|
||||
# So do convert it to a string before sending the error (LP: #1946520)
|
||||
self.send_error(501, str(e.reason))
|
||||
|
||||
|
||||
def __get_host_path(self):
|
||||
|
Loading…
x
Reference in New Issue
Block a user