Merge lp:~sil2100/livecd-rootfs/xenial-ui-support-and-core-suite

core-include-dmsetup
Steve Langasek 6 years ago
commit 1ed68b0b6d

10
debian/changelog vendored

@ -1,3 +1,13 @@
livecd-rootfs (2.408.39) UNRELEASED; urgency=medium
* Backport support for building ubuntu-core images with ubuntu-image (using
IMAGEFORMAT=ubuntu-image).
* Decide what model assertion series to fetch depending on the suite. Use 16
for xenial and 18 for other series (bionic+). This enables core18 image
builds (LP: #1799736).
-- Łukasz 'sil2100' Zemczak <lukasz.zemczak@ubuntu.com> Thu, 04 Oct 2018 19:30:17 +0200
livecd-rootfs (2.408.38) xenial; urgency=medium livecd-rootfs (2.408.38) xenial; urgency=medium
* ubuntu-cpc: Handle a pre-existing /lib/modules in 030-root-tarball.hook * ubuntu-cpc: Handle a pre-existing /lib/modules in 030-root-tarball.hook

2
debian/control vendored

@ -30,7 +30,9 @@ Depends: ${misc:Depends},
python3-software-properties, python3-software-properties,
qemu-utils, qemu-utils,
rsync, rsync,
snapd,
squashfs-tools (>= 1:3.3-1), squashfs-tools (>= 1:3.3-1),
ubuntu-image,
vmdk-stream-converter [amd64 i386], vmdk-stream-converter [amd64 i386],
xz-utils, xz-utils,
zerofree zerofree

@ -10,6 +10,28 @@ Arguments "${@}"
Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source
Set_defaults Set_defaults
if [ -z "${PROJECT:-}" ]; then
echo "PROJECT environment variable has to be set" >&2
exit 1
fi
. config/functions
# Link output files somewhere BuildLiveCD will be able to find them.
PREFIX="livecd.$PROJECT${SUBARCH:+-$SUBARCH}"
if [ "${IMAGEFORMAT:-}" = "ubuntu-image" ]; then
# Use ubuntu-image instead of live-build
CHANNEL="${CHANNEL:-edge}"
env SNAPPY_STORE_NO_CDN=1 \
ubuntu-image -c "$CHANNEL" $UBUNTU_IMAGE_ARGS \
-o "$PREFIX".img "$PREFIX".model-assertion
xz -0 -T4 "$PREFIX".img
mv seed.manifest "$PREFIX".manifest
exit 0
fi
# Setup cleanup function # Setup cleanup function
Setup_cleanup Setup_cleanup
@ -350,9 +372,6 @@ else
exit 1 exit 1
fi fi
# Link output files somewhere BuildLiveCD will be able to find them.
PREFIX="livecd.$PROJECT${SUBARCH:+-$SUBARCH}"
case $LB_INITRAMFS in case $LB_INITRAMFS in
casper) casper)
INITFS="casper" INITFS="casper"

@ -96,6 +96,7 @@ LIVE_TASK=
PREINSTALLED=false PREINSTALLED=false
PREINSTALL_POOL= PREINSTALL_POOL=
PREINSTALL_POOL_SEEDS= PREINSTALL_POOL_SEEDS=
PREFIX="livecd.$PROJECT${SUBARCH:+-$SUBARCH}"
CHROOT_HOOKS= CHROOT_HOOKS=
BINARY_HOOKS= BINARY_HOOKS=
@ -144,6 +145,53 @@ case $IMAGEFORMAT in
PREINSTALLED=true PREINSTALLED=true
;; ;;
ubuntu-image)
case "$ARCH+${SUBARCH:-}" in
amd64+*)
MODEL=pc-amd64 ;;
i386+*)
MODEL=pc-i386 ;;
arm64+snapdragon)
MODEL=dragonboard ;;
armhf+raspi2)
MODEL=pi2 ;;
armhf+raspi3)
MODEL=pi3 ;;
armhf+cm3)
MODEL=cm3 ;;
*)
echo "Model $ARCH+${SUBARCH:-} unknown to livecd-rootfs" >&2
exit 1
;;
esac
case $MODEL in
pc-amd64|pc-i386)
UBUNTU_IMAGE_ARGS="--image-size 3700M" ;;
*)
UBUNTU_IMAGE_ARGS="" ;;
esac
case $SUITE in
xenial)
# Ubuntu Core 16
;;
*)
# Ubuntu Core 18
MODEL="ubuntu-core-18-${MODEL#pc-}" ;;
esac
echo "IMAGEFORMAT=$IMAGEFORMAT" >> config/common
echo "UBUNTU_IMAGE_ARGS=\"$UBUNTU_IMAGE_ARGS\"" >> config/common
# Store model assertion in top dir to get it picked up later as a build artifact
env SNAPPY_STORE_NO_CDN=1 snap known --remote model series=16 model="$MODEL" brand-id=canonical > "$PREFIX".model-assertion
echo "Configured ubuntu-image for the following model assertion:"
cat "$PREFIX".model-assertion
echo "----------------------------------------------------------"
# Fake finished configuration for lb build
mkdir -p .build
touch .build/config
exit 0
;;
none) none)
OPTS="${OPTS:+$OPTS }--chroot-filesystem $IMAGEFORMAT" OPTS="${OPTS:+$OPTS }--chroot-filesystem $IMAGEFORMAT"
;; ;;

Loading…
Cancel
Save