mirror of
https://git.launchpad.net/livecd-rootfs
synced 2026-04-12 12:01:02 +00:00
Make sure to produce a manifest for all images (LP: #2147522)
This commit is contained in:
parent
34ed622949
commit
f340ef5416
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,3 +1,9 @@
|
|||||||
|
livecd-rootfs (26.04.29) UNRELEASED; urgency=medium
|
||||||
|
|
||||||
|
* Make sure to produce a manifest for all images (LP: #2147522)
|
||||||
|
|
||||||
|
-- Florent 'Skia' Jacquet <skia@ubuntu.com> Wed, 08 Apr 2026 14:00:47 +0200
|
||||||
|
|
||||||
livecd-rootfs (26.04.28) resolute; urgency=medium
|
livecd-rootfs (26.04.28) resolute; urgency=medium
|
||||||
|
|
||||||
* Switch arm64 mirror from ports to archive. (LP: #2147101)
|
* Switch arm64 mirror from ports to archive. (LP: #2147101)
|
||||||
|
|||||||
@ -559,13 +559,16 @@ fi
|
|||||||
# Create manifest unconditionally (needed for both ISO and non-ISO builds).
|
# Create manifest unconditionally (needed for both ISO and non-ISO builds).
|
||||||
if [ -e "binary/$INITFS/filesystem.manifest" ]; then
|
if [ -e "binary/$INITFS/filesystem.manifest" ]; then
|
||||||
ln "binary/$INITFS/filesystem.manifest" "$PREFIX.manifest"
|
ln "binary/$INITFS/filesystem.manifest" "$PREFIX.manifest"
|
||||||
chmod 644 "$PREFIX.manifest"
|
elif [ -e "binary/$INITFS/filesystem.packages" ]; then
|
||||||
fi
|
# '--initramfs none' produces different manifest names.
|
||||||
# '--initramfs none' produces different manifest names.
|
|
||||||
if [ -e "binary/$INITFS/filesystem.packages" ]; then
|
|
||||||
ln "binary/$INITFS/filesystem.packages" "$PREFIX.manifest"
|
ln "binary/$INITFS/filesystem.packages" "$PREFIX.manifest"
|
||||||
chmod 644 "$PREFIX.manifest"
|
elif [ -n "$PASSES" ]; then
|
||||||
|
# For layered images, keep the manifest of the last pass
|
||||||
|
for _PASS in $PASSES; do
|
||||||
|
ln -f "${CASPER_DIR}/$_PASS.manifest.full" "$PREFIX.manifest"
|
||||||
|
done
|
||||||
fi
|
fi
|
||||||
|
chmod 644 "$PREFIX.manifest"
|
||||||
# Since snaps are now Ubuntu first-class citizen, so always try fetching the
|
# Since snaps are now Ubuntu first-class citizen, so always try fetching the
|
||||||
# list of seeded snaps into the manifest. In case of layered images we skip
|
# list of seeded snaps into the manifest. In case of layered images we skip
|
||||||
# this step, as we assume they're doing it on their own at some earlier stage.
|
# this step, as we assume they're doing it on their own at some earlier stage.
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user