Stop building per-pi-flavor images and only build a pi generic image for core18. (LP: #1861520)

sil2100/appliance-images 2.525.40
Steve Langasek 5 years ago
parent e2dd084fe0
commit d516e68807

7
debian/changelog vendored

@ -1,3 +1,10 @@
livecd-rootfs (2.525.40) bionic; urgency=medium
* Stop building per-pi-flavor images and only build a pi generic image for
core18. (LP: #1861520)
-- Łukasz 'sil2100' Zemczak <lukasz.zemczak@ubuntu.com> Fri, 31 Jan 2020 16:57:01 +0100
livecd-rootfs (2.525.39) bionic; urgency=medium
* Ensure seed partition is mounted on no-cloud images which use system-boot

@ -182,12 +182,10 @@ case $IMAGEFORMAT in
MODEL=pc-i386 ;;
arm64+snapdragon)
MODEL=dragonboard ;;
armhf+raspi2)
MODEL=pi2 ;;
armhf+raspi3|arm64+raspi3)
MODEL=pi3 ;;
armhf+cm3)
MODEL=cm3 ;;
armhf+raspi3)
MODEL=pi ;;
arm64+raspi3)
MODEL=pi-arm64 ;;
armhf+imx6)
MODEL=nitrogen6x ;;
*)
@ -240,6 +238,14 @@ case $IMAGEFORMAT in
else
# classic images
# Certain models have different names but are built from the same source gadget tree
case $MODEL in
pi-arm64|pi)
# XXX: Temporarily this is still built from the pi3 tree,
# but eventually we'll use the pi one.
MODEL=pi3 ;;
esac
UBUNTU_IMAGE_ARGS="$UBUNTU_IMAGE_ARGS${PROPOSED:+ --with-proposed}"
UBUNTU_IMAGE_ARGS="$UBUNTU_IMAGE_ARGS${EXTRA_PPAS:+ --extra-ppas \"$EXTRA_PPAS\"}"

Loading…
Cancel
Save