mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-08-21 13:44:08 +00:00
Compare commits
10 Commits
ubuntu/mas
...
2.664.3
Author | SHA1 | Date | |
---|---|---|---|
|
e39a40e2a5 | ||
|
8284a1c680 | ||
|
54508e6583 | ||
|
e611dfc1c4 | ||
|
cd098e7c41 | ||
|
225f2fe504 | ||
|
0a2fbb8b99 | ||
|
54b8e73a15 | ||
|
2d5f9581db | ||
|
dc456c240d |
33
debian/changelog
vendored
33
debian/changelog
vendored
@ -1,3 +1,36 @@
|
||||
livecd-rootfs (2.664.3) focal; urgency=medium
|
||||
|
||||
[ Łukasz 'sil2100' Zemczak ]
|
||||
* Enable overrides of UC20 grade dangerous channels - as this is possible.
|
||||
(LP: #1879350)
|
||||
|
||||
[ Iain Lane ]
|
||||
* Hack seeding of linux kernel in ubuntustudio/focal
|
||||
ubuntustudio-default-settings in focal release has a Recommends to this
|
||||
kernel, which makes it impossible to update the kernel later on, since we
|
||||
would install the -updates and release kernel, which isn't allowed and
|
||||
causes FTBFS. Hack out the focal-release kernel and let the rest of the
|
||||
build process pull in the right one. (LP: #1884915)
|
||||
|
||||
-- Iain Lane <iain.lane@canonical.com> Tue, 21 Jul 2020 16:25:18 +0100
|
||||
|
||||
livecd-rootfs (2.664.2) focal; urgency=medium
|
||||
|
||||
* Revert of initramfs package removal in KVM image (LP: #1880170)
|
||||
|
||||
-- Phil Roche <phil.roche@canonical.com> Fri, 22 May 2020 13:03:20 +0100
|
||||
|
||||
livecd-rootfs (2.664.1) focal; urgency=medium
|
||||
|
||||
* Bump only the UC20 pc image to 8GB, and keep Pi images as small as possible.
|
||||
(LP: #1875430)
|
||||
* ubuntu-image: fix focal+ pi images for armhf to use pi-armhf model name.
|
||||
(LP: #1876358)
|
||||
* ubuntu-image: drop ubuntu-image dep on riscv64, as not installable yet.
|
||||
(LP: #1876359)
|
||||
|
||||
-- Dimitri John Ledkov <xnox@ubuntu.com> Fri, 01 May 2020 20:08:23 +0100
|
||||
|
||||
livecd-rootfs (2.664) focal; urgency=medium
|
||||
|
||||
[ Patrick Viafore ]
|
||||
|
2
debian/control
vendored
2
debian/control
vendored
@ -38,7 +38,7 @@ Depends: ${misc:Depends},
|
||||
squashfs-tools (>= 1:3.3-1),
|
||||
sudo,
|
||||
u-boot-tools [armhf arm64],
|
||||
ubuntu-image [!i386],
|
||||
ubuntu-image [!i386 !riscv64],
|
||||
python3-vmdkstream [amd64 i386],
|
||||
xz-utils,
|
||||
zerofree
|
||||
|
@ -359,8 +359,16 @@ case $IMAGEFORMAT in
|
||||
CHANNEL="${CHANNEL:-edge}"
|
||||
case $MODEL in
|
||||
pc-amd64|pc-i386)
|
||||
[ -z "${SUBARCH:-}" ] \
|
||||
&& UBUNTU_IMAGE_ARGS="$UBUNTU_IMAGE_ARGS --image-size 3700M"
|
||||
if [ -z "${SUBARCH:-}" ]; then
|
||||
case $SUITE in
|
||||
xenial|bionic)
|
||||
UBUNTU_IMAGE_ARGS="$UBUNTU_IMAGE_ARGS --image-size 3700M"
|
||||
;;
|
||||
*)
|
||||
UBUNTU_IMAGE_ARGS="$UBUNTU_IMAGE_ARGS --image-size 8G"
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
;;
|
||||
*) ;;
|
||||
esac
|
||||
@ -375,7 +383,9 @@ case $IMAGEFORMAT in
|
||||
UBUNTU_IMAGE_ARGS="$UBUNTU_IMAGE_ARGS -c $CHANNEL"
|
||||
;;
|
||||
*)
|
||||
UBUNTU_IMAGE_ARGS="--image-size 10G"
|
||||
if [ "${MODEL}" = "pi" ]; then
|
||||
MODEL=pi-armhf
|
||||
fi
|
||||
# Ubuntu Core 20
|
||||
# Currently uc20 assertions do not support global
|
||||
# channel overrides, instead we have per-channel models
|
||||
@ -386,6 +396,15 @@ case $IMAGEFORMAT in
|
||||
candidate|beta|edge|dangerous)
|
||||
MODEL="ubuntu-core-20-${MODEL#pc-}-${CHANNEL}"
|
||||
;;
|
||||
dangerous-*)
|
||||
# That being said, the dangerous grade *does*
|
||||
# support channel overrides, so we can use the
|
||||
# dangerous model assertion and override the channel
|
||||
# freely.
|
||||
MODEL="ubuntu-core-20-${MODEL#pc-}-dangerous"
|
||||
CHANNEL=${CHANNEL#dangerous-}
|
||||
UBUNTU_IMAGE_ARGS="$UBUNTU_IMAGE_ARGS -c $CHANNEL"
|
||||
;;
|
||||
*)
|
||||
echo "Unknown CHANNEL ${CHANNEL} specification for ${SUITE}"
|
||||
exit 1
|
||||
@ -669,6 +688,23 @@ case $PROJECT in
|
||||
|
||||
ubuntustudio-dvd)
|
||||
add_task install minimal standard ubuntustudio-desktop ubuntustudio-audio ubuntustudio-fonts ubuntustudio-graphics ubuntustudio-video ubuntustudio-publishing ubuntustudio-photography
|
||||
case $SUITE in
|
||||
focal)
|
||||
# ubuntustudio-default-settings in focal
|
||||
# release has a Recommends to this kernel,
|
||||
# which makes it impossible to update the
|
||||
# kernel later on, since we would install the
|
||||
# -updates and release kernel, which isn't
|
||||
# allowed and causes the squashfs to fail to
|
||||
# build. Hack out the focal-release kernel and
|
||||
# let the rest of the build process pull in the
|
||||
# right one. (See right below.)
|
||||
for package in linux-lowlatency linux-image-lowlatency linux-headers-lowlatency linux-image-5.4.0-26-lowlatency linux-headers-5.4.0-26-lowlatency; do
|
||||
sed -i "s/$/ -a --not -XFPackage ${package}/" \
|
||||
"config/package-lists/livecd-rootfs.list.chroot_install"
|
||||
done
|
||||
;;
|
||||
esac
|
||||
COMPONENTS='main restricted universe multiverse'
|
||||
case $ARCH in
|
||||
amd64|i386) KERNEL_FLAVOURS=lowlatency ;;
|
||||
|
@ -49,10 +49,6 @@ replace_kernel ${mount_d} "linux-kvm"
|
||||
chroot "${mount_d}" update-grub
|
||||
undivert_grub "${mount_d}"
|
||||
|
||||
# Remove initramfs for kvm image
|
||||
env DEBIAN_FRONTEND=noninteractive chroot "${mount_d}" apt-get \
|
||||
purge -y initramfs-tools busybox-initramfs
|
||||
|
||||
env DEBIAN_FRONTEND=noninteractive chroot "${mount_d}" rm \
|
||||
-rf /boot/initrd.img-* /boot/initrd.img
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user