Imported 2.654

No reason for CPC update specified.
This commit is contained in:
CloudBuilder 2020-03-14 02:18:48 +00:00
parent a86ba9bc93
commit 11b039f3a9
2 changed files with 13 additions and 1 deletions

7
debian/changelog vendored
View File

@ -1,3 +1,10 @@
livecd-rootfs (2.654) focal; urgency=medium
* Only install oem-20.04 kernel flavour on amd64, as it doesn't exist on
other arches.
-- Dimitri John Ledkov <xnox@ubuntu.com> Fri, 13 Mar 2020 20:20:13 +0000
livecd-rootfs (2.653) focal; urgency=medium
* Stop trying to extract autoinstall config during boot, subiquity will do

View File

@ -581,7 +581,12 @@ case $PROJECT in
LIVE_TASK='ubuntu-live'
add_task install minimal standard ubuntu-desktop
add_task live ubuntu-desktop-minimal-default-languages ubuntu-desktop-default-languages
KERNEL_FLAVOURS='generic oem-20.04'
KERNEL_FLAVOURS='generic'
case $ARCH in
amd64)
KERNEL_FLAVOURS='generic oem-20.04'
;;
esac
;;
esac
;;