livecd-rootfs:master-bump-armhf-uefi-disk-image-size

Last commit made on 2021-11-23
Get this branch:
git clone -b master-bump-armhf-uefi-disk-image-size https://git.launchpad.net/livecd-rootfs
Members of Ubuntu Core Development Team can upload to this branch. Log in for directions.

Branch merges

Branch information

Name:
master-bump-armhf-uefi-disk-image-size
Repository:
lp:livecd-rootfs

Recent commits

1a7e9ca... by Thomas Bechtold

Bump UEFI disk image size for armhf to 3.5 GB

Current jammy builds fail with:
dpkg: error processing archive /var/cache/\
  apt/archives/grub-common_2.04-1ubuntu48_armhf.deb (--unpack):
cannot copy extracted data for './usr/share/grub/unicode.pf2' \
  to '/usr/share/grub/unicode.pf2.dpkg-new': \
  failed to write (No space left on device)

55a5424... by Brian Murray

releasing package livecd-rootfs version 2.746

e5beee3... by Brian Murray

Add the capability to build an ISO image for the Intel IoT project. Additionally, stop using universe with the project given that the kernel is now in main.

568e761... by Steve Langasek

releasing package livecd-rootfs version 2.745

0a699ea... by Steve Langasek

Changelog

04c4a14... by Erich Eickmeyer

Remove fonts and publishing tasks form ubuntustudio

2342c3d... by Didier Roche-Tolomelli

releasing package livecd-rootfs version 2.744

6a05e7f... by Didier Roche-Tolomelli

Install desired already seeded snap in wsl.

As wsl is an image target of ubuntu-cpc, the base seed is hardcoded to
ubuntu-server instead of wsl one. For now, add it, as for the other
cpc images, in hooks.

e0b79f1... by Thomas Bechtold

debian/changelog entry

af888e2... by Thomas Bechtold

magic-proxy: fix exception handling for URLError LP:#1946520

A urllib.error.URLError.reason variable can either be a string or
another Exception[0]. In case it's another exception, the current code
fails because the exception is passed into send_error() which tries
call html.escape() on the Exception. That fails because the Exception
is not a string. Converting the Exception to a string fixes this.

This fixes:

AttributeError: 'TimeoutError' object has no attribute 'replace'

[0]
https://docs.python.org/3/library/urllib.error.html#urllib.error.URLError.reason