Imported 23.10.36 from mantic-release pocket.

No reason for CPC update specified.
This commit is contained in:
CloudBuilder 2023-09-13 14:51:09 +00:00
parent 18f51b8130
commit b1a110175f
5 changed files with 16 additions and 7 deletions

9
debian/changelog vendored
View File

@ -1,3 +1,12 @@
livecd-rootfs (23.10.36) mantic; urgency=medium
* Since we restored the minimal layer, we also need to adjust all hook
conditionals to use the minimal.standard layer name instead of standard.
* 020-ubuntu-live.binary hook: make sure the kernel and initrd artifacts are
named correctly.
-- Łukasz 'sil2100' Zemczak <lukasz.zemczak@ubuntu.com> Wed, 13 Sep 2023 11:43:22 +0200
livecd-rootfs (23.10.35) mantic; urgency=medium
* Restore a desktop minimal layer and use if by default (ffe lp: #2034261)

View File

@ -3,7 +3,7 @@
set -eu
case ${PASS:-} in
standard)
minimal.standard)
;;
*)
exit 0

View File

@ -3,7 +3,7 @@
set -eux
case ${PASS:-} in
standard.enhanced-secureboot)
minimal.standard.enhanced-secureboot)
;;
*)
exit 0

View File

@ -7,7 +7,7 @@
set -eux
case ${PASS:-} in
standard.live)
minimal.standard.live)
;;
*)
exit 0
@ -21,6 +21,6 @@ fi
. config/binary
. config/functions
mv chroot/boot/initrd.img-* ${PWD}/livecd.${PROJECT}.initrd-generic-hwe
mv chroot/boot/vmlinu?-* ${PWD}/livecd.${PROJECT}.kernel-generic-hwe
chmod a+r ${PWD}/livecd.${PROJECT}.initrd-generic-hwe ${PWD}/livecd.${PROJECT}.kernel-generic-hwe
mv chroot/boot/initrd.img-* ${PWD}/livecd.${PROJECT}.initrd-generic
mv chroot/boot/vmlinu?-* ${PWD}/livecd.${PROJECT}.kernel-generic
chmod a+r ${PWD}/livecd.${PROJECT}.initrd-generic ${PWD}/livecd.${PROJECT}.kernel-generic

View File

@ -3,7 +3,7 @@
set -eu
case ${PASS:-} in
standard.live)
minimal.standard.live)
;;
*)
exit 0