diff --git a/debian/changelog b/debian/changelog index f04511c0..592dc187 100644 --- a/debian/changelog +++ b/debian/changelog @@ -12,6 +12,10 @@ livecd-rootfs (24.04.7) UNRELEASED; urgency=medium [ Simon Poirier ] * add systemd-resolved back to buildd images. LP: #2007419. + [ Steve Langasek ] + * live-build/functions: add additional debugging to mount_image() on + failure since we again have loop partitions failing to be block devices. + -- Dave Jones Mon, 02 Oct 2023 15:46:06 +0100 livecd-rootfs (24.04.6) noble; urgency=medium diff --git a/live-build/functions b/live-build/functions index 6f631b8c..cb6abd7b 100644 --- a/live-build/functions +++ b/live-build/functions @@ -73,6 +73,7 @@ mount_image() { rootfs_dev_mapper="${loop_device}p${rootpart}" if [ ! -b "${rootfs_dev_mapper}" ]; then echo "${rootfs_dev_mapper} is not a block device"; + ls -l ${loop_device}p* exit 1 fi