Only install oem-20.04 kernel flavour on amd64, as it doesn't exist on other arches.

rcj/test
Dimitri John Ledkov 5 years ago
parent 299b6c51c9
commit 910310dbbb

7
debian/changelog vendored

@ -1,3 +1,10 @@
livecd-rootfs (2.654) UNRELEASED; 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:17:46 +0000
livecd-rootfs (2.653) focal; urgency=medium livecd-rootfs (2.653) focal; urgency=medium
* Stop trying to extract autoinstall config during boot, subiquity will do * Stop trying to extract autoinstall config during boot, subiquity will do

@ -581,7 +581,12 @@ case $PROJECT in
LIVE_TASK='ubuntu-live' LIVE_TASK='ubuntu-live'
add_task install minimal standard ubuntu-desktop add_task install minimal standard ubuntu-desktop
add_task live ubuntu-desktop-minimal-default-languages ubuntu-desktop-default-languages 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 esac
;; ;;

Loading…
Cancel
Save