mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-10 12:47:30 +00:00
Imported 2.554
No reason for CPC update specified.
This commit is contained in:
parent
3298cbd5e3
commit
98204e9eef
8
debian/changelog
vendored
8
debian/changelog
vendored
@ -1,3 +1,11 @@
|
||||
livecd-rootfs (2.554) disco; urgency=medium
|
||||
|
||||
* Default to IMAGEFORMAT=ubuntu-image for raspi3 ubuntu-cpc builds.
|
||||
* Rename the resulting raspi3 image file to *.disk1.img.xz to be compatible
|
||||
with how raspi2 images are provided.
|
||||
|
||||
-- Łukasz 'sil2100' Zemczak <lukasz.zemczak@ubuntu.com> Wed, 09 Jan 2019 10:34:59 +0100
|
||||
|
||||
livecd-rootfs (2.553) disco; urgency=medium
|
||||
|
||||
* Add a LXD image to builds for the buildd subproject.
|
||||
|
@ -43,8 +43,11 @@ if [ "${IMAGEFORMAT:-}" = "ubuntu-image" ]; then
|
||||
# XXX: currently we only have one image generated, but really
|
||||
# we should be supporting more than one for models that
|
||||
# define those.
|
||||
mv output/*.img "$PREFIX".img
|
||||
xz -0 -T4 "$PREFIX".img
|
||||
# Also, we use the .disk1.img suffix so that the resulting
|
||||
# image path is compatible with how raspi2 images are consumed
|
||||
# by cdimage.
|
||||
mv output/*.img "$PREFIX".disk1.img
|
||||
xz -0 -T4 "$PREFIX".disk1.img
|
||||
mv output/filesystem.manifest "$PREFIX".manifest
|
||||
fi
|
||||
|
||||
|
@ -109,7 +109,12 @@ add_binary_hook ()
|
||||
if [ -z "${IMAGEFORMAT:-}" ]; then
|
||||
case $PROJECT:${SUBPROJECT:-} in
|
||||
ubuntu-cpc:*)
|
||||
IMAGEFORMAT=ext4
|
||||
if [ "$SUBARCH" = "raspi3" ]; then
|
||||
# For now only raspi3, but others are soon to follow
|
||||
IMAGEFORMAT=ubuntu-image
|
||||
else
|
||||
IMAGEFORMAT=ext4
|
||||
fi
|
||||
;;
|
||||
ubuntu-server:live)
|
||||
IMAGEFORMAT=plain
|
||||
|
Loading…
x
Reference in New Issue
Block a user