mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-05-07 08:51:50 +00:00
Merge branch 'live-server-kernel-futzing' into ubuntu/master
This commit is contained in:
commit
d5b4aed656
5
debian/changelog
vendored
5
debian/changelog
vendored
@ -1,6 +1,11 @@
|
|||||||
livecd-rootfs (2.550) UNRELEASED; urgency=medium
|
livecd-rootfs (2.550) UNRELEASED; urgency=medium
|
||||||
|
|
||||||
* Fix typo preventing builds of ubuntu-core images.
|
* Fix typo preventing builds of ubuntu-core images.
|
||||||
|
* Changes to kernel handling for live-server: do not include kernel/initrd
|
||||||
|
in filesystem.squashfs but rather install it in a throwaway layer on top
|
||||||
|
of installer.squashfs and fish kernel, initrd and modules out of that with
|
||||||
|
an initrd hook that records kernel metapackage name in /run and mounts
|
||||||
|
/lib/modules from a squashfs on the ISO.
|
||||||
|
|
||||||
-- Michael Hudson-Doyle <michael.hudson@ubuntu.com> Wed, 12 Dec 2018 15:09:28 +1300
|
-- Michael Hudson-Doyle <michael.hudson@ubuntu.com> Wed, 12 Dec 2018 15:09:28 +1300
|
||||||
|
|
||||||
|
@ -145,20 +145,15 @@ case $IMAGEFORMAT in
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
plain)
|
plain)
|
||||||
INITRAMFS_TYPE=none
|
|
||||||
case $PROJECT:${SUBPROJECT:-} in
|
case $PROJECT:${SUBPROJECT:-} in
|
||||||
ubuntu-server:live)
|
ubuntu-server:live)
|
||||||
# Stop lb installing casper into filesystem.squashfs
|
|
||||||
# by skipping lb_chroot_live-packages.
|
|
||||||
skip_lb_stage chroot_live-packages
|
|
||||||
INITRAMFS_TYPE=auto
|
|
||||||
touch config/universe-enabled
|
touch config/universe-enabled
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
PREINSTALLED=true
|
PREINSTALLED=true
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
OPTS="${OPTS:+$OPTS }--initramfs $INITRAMFS_TYPE --chroot-filesystem $IMAGEFORMAT"
|
OPTS="${OPTS:+$OPTS }--initramfs none --chroot-filesystem $IMAGEFORMAT"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
ubuntu-image)
|
ubuntu-image)
|
||||||
@ -519,9 +514,6 @@ case $PROJECT in
|
|||||||
add_task install standard
|
add_task install standard
|
||||||
add_task install server
|
add_task install server
|
||||||
LIVE_TASK='cloud-image'
|
LIVE_TASK='cloud-image'
|
||||||
case $ARCH in
|
|
||||||
amd64) add_package live linux-signed-generic ;;
|
|
||||||
esac
|
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
COMPONENTS='main'
|
COMPONENTS='main'
|
||||||
@ -837,8 +829,6 @@ case $ARCH in
|
|||||||
esac
|
esac
|
||||||
|
|
||||||
case $PROJECT:${SUBPROJECT:-} in
|
case $PROJECT:${SUBPROJECT:-} in
|
||||||
ubuntu-server:live)
|
|
||||||
;;
|
|
||||||
ubuntu-server:*|ubuntu-base:*|ubuntu-touch:*|ubuntu-touch-custom:*)
|
ubuntu-server:*|ubuntu-base:*|ubuntu-touch:*|ubuntu-touch-custom:*)
|
||||||
OPTS="${OPTS:+$OPTS }--linux-packages=none --initramfs=none"
|
OPTS="${OPTS:+$OPTS }--linux-packages=none --initramfs=none"
|
||||||
KERNEL_FLAVOURS=none
|
KERNEL_FLAVOURS=none
|
||||||
|
@ -24,13 +24,14 @@ fi
|
|||||||
. config/functions
|
. config/functions
|
||||||
. config/common
|
. config/common
|
||||||
|
|
||||||
SQUASH_ROOT=binary/boot/squashfs.dir
|
FILESYSTEM_ROOT=binary/boot/squashfs.dir
|
||||||
|
INSTALLER_ROOT=binary/boot/installer.squashfs.dir
|
||||||
OVERLAY_ROOT=binary/overlay
|
OVERLAY_ROOT=binary/overlay
|
||||||
|
|
||||||
mkdir -p "$OVERLAY_ROOT"
|
mkdir -p "$INSTALLER_ROOT" "$OVERLAY_ROOT"
|
||||||
|
|
||||||
# Create an installer squashfs layer
|
# Create an installer squashfs layer
|
||||||
mount_overlay "$SQUASH_ROOT/" "$OVERLAY_ROOT/" "$SQUASH_ROOT/"
|
mount_overlay "$FILESYSTEM_ROOT/" "$OVERLAY_ROOT/" "$INSTALLER_ROOT/"
|
||||||
|
|
||||||
setup_mountpoint binary/boot/squashfs.dir
|
setup_mountpoint binary/boot/squashfs.dir
|
||||||
|
|
||||||
@ -40,8 +41,8 @@ setup_mountpoint binary/boot/squashfs.dir
|
|||||||
# It would be better to have this in ../includes.binary/overlay but
|
# It would be better to have this in ../includes.binary/overlay but
|
||||||
# you can't have backslashes in filenames in bzr branches!
|
# you can't have backslashes in filenames in bzr branches!
|
||||||
DEVICE_UNIT_NAME='dev-disk-by\x2duuid-00c629d6\x2d06ab\x2d4dfd\x2db21e\x2dc3186f34105d.device'
|
DEVICE_UNIT_NAME='dev-disk-by\x2duuid-00c629d6\x2d06ab\x2d4dfd\x2db21e\x2dc3186f34105d.device'
|
||||||
mkdir -p "$SQUASH_ROOT/etc/systemd/system/$DEVICE_UNIT_NAME.d"
|
mkdir -p "$INSTALLER_ROOT/etc/systemd/system/$DEVICE_UNIT_NAME.d"
|
||||||
cat > "$SQUASH_ROOT/etc/systemd/system/$DEVICE_UNIT_NAME.d/override.conf" <<EOF
|
cat > "$INSTALLER_ROOT/etc/systemd/system/$DEVICE_UNIT_NAME.d/override.conf" <<EOF
|
||||||
[Unit]
|
[Unit]
|
||||||
JobRunningTimeoutSec=0s
|
JobRunningTimeoutSec=0s
|
||||||
EOF
|
EOF
|
||||||
@ -50,22 +51,19 @@ EOF
|
|||||||
|
|
||||||
# Install any requirements for the installer, for things we don't want
|
# Install any requirements for the installer, for things we don't want
|
||||||
# to see on the installed system
|
# to see on the installed system
|
||||||
chroot $SQUASH_ROOT apt-get update
|
chroot $INSTALLER_ROOT apt-get update
|
||||||
chroot $SQUASH_ROOT apt-get -y install user-setup curtin lupin-casper
|
chroot $INSTALLER_ROOT apt-get -y install user-setup curtin lupin-casper
|
||||||
|
|
||||||
# For bug #1743643 "Install to dirty disk with swap fails" remove the
|
# For bug #1743643 "Install to dirty disk with swap fails" remove the
|
||||||
# "helpful" casper script that mounts any swap partitions it finds.
|
# "helpful" casper script that mounts any swap partitions it finds.
|
||||||
rm -f $SQUASH_ROOT/usr/share/initramfs-tools/scripts/casper-bottom/*swap
|
rm -f $INSTALLER_ROOT/usr/share/initramfs-tools/scripts/casper-bottom/*swap
|
||||||
|
|
||||||
# Installing casper means we need a new initramfs
|
|
||||||
UPDATE_INITRAMFS_OPTIONS=CASPER_GENERATE_UUID=1 recreate_initramfs $SQUASH_ROOT
|
|
||||||
|
|
||||||
# Don't let cloud-init run in the live session.
|
# Don't let cloud-init run in the live session.
|
||||||
touch $SQUASH_ROOT/etc/cloud/cloud-init.disabled
|
touch $INSTALLER_ROOT/etc/cloud/cloud-init.disabled
|
||||||
|
|
||||||
# Do the snap seeding dance.
|
# Do the snap seeding dance.
|
||||||
chroot $SQUASH_ROOT mkdir -p /var/lib/snapd/seed/snaps /var/lib/snapd/seed/assertions
|
chroot $INSTALLER_ROOT mkdir -p /var/lib/snapd/seed/snaps /var/lib/snapd/seed/assertions
|
||||||
chroot $SQUASH_ROOT sh -c '
|
chroot $INSTALLER_ROOT sh -c '
|
||||||
set -x;
|
set -x;
|
||||||
cd /var/lib/snapd/seed;
|
cd /var/lib/snapd/seed;
|
||||||
sudo SNAPPY_STORE_NO_CDN=1 snap download core;
|
sudo SNAPPY_STORE_NO_CDN=1 snap download core;
|
||||||
@ -89,10 +87,7 @@ snaps:
|
|||||||
EOF
|
EOF
|
||||||
'
|
'
|
||||||
|
|
||||||
teardown_mountpoint "$SQUASH_ROOT"
|
teardown_mountpoint "$INSTALLER_ROOT"
|
||||||
|
|
||||||
# Then unmount the overlay
|
|
||||||
umount "$SQUASH_ROOT"
|
|
||||||
|
|
||||||
squashfs_f="${PWD}/livecd.${PROJECT}.installer.squashfs"
|
squashfs_f="${PWD}/livecd.${PROJECT}.installer.squashfs"
|
||||||
|
|
||||||
|
91
live-build/ubuntu-server/hooks/033-kernel-bits.binary
Normal file
91
live-build/ubuntu-server/hooks/033-kernel-bits.binary
Normal file
@ -0,0 +1,91 @@
|
|||||||
|
#!/bin/bash -eux
|
||||||
|
# vi: ts=4 noexpandtab
|
||||||
|
#
|
||||||
|
# Generate a squashfs root and manifest
|
||||||
|
|
||||||
|
echo "033-kernel-bits.binary"
|
||||||
|
|
||||||
|
case ${IMAGE_TARGETS-} in
|
||||||
|
""|*squashfs*)
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "Skipping squashfs build"
|
||||||
|
exit 0
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -n "${SUBARCH-}" ]; then
|
||||||
|
echo "Skipping rootfs build for subarch flavor build"
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
. config/functions
|
||||||
|
. config/common
|
||||||
|
|
||||||
|
INSTALLER_ROOT=binary/boot/installer.squashfs.dir
|
||||||
|
|
||||||
|
KERNEL_BITS_ROOT=binary/boot/kernel-bits.dir
|
||||||
|
KERNEL_BITS_OVERLAY=binary/boot/overlay-kernel-bits
|
||||||
|
|
||||||
|
#variants='ga hwe'
|
||||||
|
variants='ga'
|
||||||
|
|
||||||
|
for variant in $variants; do
|
||||||
|
if [ "$variant" = "ga" ]; then
|
||||||
|
kernel_metapkg=linux-generic
|
||||||
|
flavor=generic
|
||||||
|
elif [ "$variant" = "hwe" ]; then
|
||||||
|
kernel_metapkg=linux-generic-hwe-$(lsb_release -sc)
|
||||||
|
flavor=generic-hwe
|
||||||
|
else
|
||||||
|
echo "bogus variant: $variant"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Make preparations
|
||||||
|
mkdir -p $KERNEL_BITS_ROOT $KERNEL_BITS_OVERLAY
|
||||||
|
mount_overlay "$INSTALLER_ROOT/" "$KERNEL_BITS_OVERLAY/" "$KERNEL_BITS_ROOT/"
|
||||||
|
setup_mountpoint $KERNEL_BITS_ROOT
|
||||||
|
|
||||||
|
# Our initramfs hook implements a kind of extreme version of
|
||||||
|
# cloud-initramfs-copymods, so remove that and prevent duelling hooks
|
||||||
|
env DEBIAN_FRONTEND=noninteractive chroot $KERNEL_BITS_ROOT apt-get -y remove cloud-initramfs-copymods ubuntu-server || true
|
||||||
|
|
||||||
|
# Configure initramfs creation
|
||||||
|
mkdir -p "$KERNEL_BITS_ROOT"/etc/initramfs-tools/conf.d/
|
||||||
|
if [ -n "$LB_INITRAMFS_COMPRESSION" ]; then
|
||||||
|
echo "COMPRESS=$LB_INITRAMFS_COMPRESSION" > "$KERNEL_BITS_ROOT"/etc/initramfs-tools/conf.d/livecd-rootfs.conf
|
||||||
|
fi
|
||||||
|
echo "CASPER_GENERATE_UUID=1" > "$KERNEL_BITS_ROOT"/etc/initramfs-tools/conf.d/casper.conf
|
||||||
|
|
||||||
|
# Add a hook to record which kernel was booted and mount the
|
||||||
|
# modules.squashfs created below.
|
||||||
|
cat <<EOF > "$KERNEL_BITS_ROOT"/etc/initramfs-tools/scripts/init-bottom/live-server
|
||||||
|
#!/bin/sh
|
||||||
|
case \$1 in
|
||||||
|
prereqs) exit 0;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
echo ${kernel_metapkg} > /run/kernel-meta-package
|
||||||
|
mkdir -p \$rootmnt/lib/modules
|
||||||
|
mount \$rootmnt/cdrom/casper/extras/modules.squashfs-$flavor \$rootmnt/lib/modules
|
||||||
|
EOF
|
||||||
|
chmod +x "$KERNEL_BITS_ROOT"/etc/initramfs-tools/scripts/init-bottom/live-server
|
||||||
|
|
||||||
|
# Install the kernel!
|
||||||
|
env DEBIAN_FRONTEND=noninteractive chroot $KERNEL_BITS_ROOT apt-get -y install ${kernel_metapkg}
|
||||||
|
|
||||||
|
# Fish out generated kernel image and initrd
|
||||||
|
mv "$KERNEL_BITS_ROOT"/boot/initrd.img-* ${PWD}/livecd.${PROJECT}.initrd-$flavor
|
||||||
|
mv "$KERNEL_BITS_ROOT"/boot/vmlinu?-* ${PWD}/livecd.${PROJECT}.kernel-$flavor
|
||||||
|
|
||||||
|
# Create squashfs containing all the modules
|
||||||
|
modules_squashfs_path="${PWD}/livecd.${PROJECT}.modules.squashfs-$flavor"
|
||||||
|
(cd "$KERNEL_BITS_ROOT/lib/modules" &&
|
||||||
|
mksquashfs . $modules_squashfs_path -no-progress -xattrs -comp xz)
|
||||||
|
|
||||||
|
# And clean up
|
||||||
|
teardown_mountpoint $KERNEL_BITS_ROOT
|
||||||
|
umount $KERNEL_BITS_ROOT
|
||||||
|
rm -rf $KERNEL_BITS_ROOT $KERNEL_BITS_OVERLAY
|
||||||
|
done
|
Loading…
x
Reference in New Issue
Block a user