Add console-conf to UC24 extra snaps by default

This commit is contained in:
Łukasz 'sil2100' Zemczak 2024-04-08 16:26:15 +02:00
parent 7c9be14510
commit a907749a08
2 changed files with 11 additions and 1 deletions

7
debian/changelog vendored
View File

@ -1,3 +1,10 @@
livecd-rootfs (24.04.58) UNRELEASED; urgency=medium
* Add console-conf to UC24 extra snaps by default, as the models define
it as optional so we need to explicitly request it to be added.
-- Łukasz 'sil2100' Zemczak <lukasz.zemczak@ubuntu.com> Mon, 08 Apr 2024 16:24:38 +0200
livecd-rootfs (24.04.57) noble; urgency=medium
* Ensure the proper hooks are copied for Ubuntu MATE (LP: #2058161).

View File

@ -510,7 +510,10 @@ case $IMAGEFORMAT in
amd64+kassel)
EXTRA_SNAPS="$EXTRA_SNAPS core bluez alsa-utils"
;;
*) ;;
*)
# For all Ubuntu Core 24 reference images, add console-conf
EXTRA_SNAPS="$EXTRA_SNAPS console-conf"
;;
esac
for snap in $EXTRA_SNAPS; do
UBUNTU_IMAGE_ARGS="$UBUNTU_IMAGE_ARGS --extra-snaps $snap"