Compare commits

..

6 Commits

Author SHA1 Message Date
Dan Bungert
2aeaaf1815 releasing package livecd-rootfs version 25.10.19 2025-09-09 16:54:54 -06:00
Dan Bungert
ecaaf04844 Merge remote-tracking branch 'dlalaj/fix-buildd-imagesize' into ubuntu/master 2025-09-09 16:52:30 -06:00
Dan Bungert
ca14094b7d releasing package livecd-rootfs version 25.10.18 2025-09-09 07:15:49 -06:00
Dan Bungert
3ced68dee6 desktop: use dracut 2025-09-08 17:01:45 -06:00
Denis Lalaj
eda621a927 Add debian/changelog entry 2025-09-05 12:10:18 -07:00
Denis Lalaj
12c92b2cbf fix(buildd): Increase default image size for buildd
Builds for buildd questing are failing due to the increasing pkg sizes,
this calls for an adjustment of the default image size
2025-09-05 12:10:13 -07:00
4 changed files with 18 additions and 2 deletions

12
debian/changelog vendored
View File

@ -1,3 +1,15 @@
livecd-rootfs (25.10.19) questing; urgency=medium
* Increase default image size for buildd.
-- Denis Lalaj <denis.lalaj@canonical.com> Tue, 09 Sep 2025 16:53:52 -0600
livecd-rootfs (25.10.18) questing; urgency=medium
* desktop: use dracut
-- Dan Bungert <daniel.bungert@canonical.com> Mon, 08 Sep 2025 17:00:46 -0600
livecd-rootfs (25.10.17) questing; urgency=medium livecd-rootfs (25.10.17) questing; urgency=medium
[ Tim Andersson ] [ Tim Andersson ]

View File

@ -844,6 +844,7 @@ case $PROJECT in
HAS_DEFAULT_LANGUAGES=yes HAS_DEFAULT_LANGUAGES=yes
LANGUAGE_BASE=desktop LANGUAGE_BASE=desktop
KERNEL_FLAVOURS='generic-hwe-24.04' KERNEL_FLAVOURS='generic-hwe-24.04'
NEEDS_DRACUT=yes
case $SUBARCH in case $SUBARCH in
nvidia) nvidia)

View File

@ -137,7 +137,9 @@ EOF
disk_image=binary/boot/disk-uefi.ext4 disk_image=binary/boot/disk-uefi.ext4
create_empty_disk_image "${disk_image}" # Adjust the image size to accomodate increasing package sizes
size=$(( imagesize*115/100 ))
create_empty_disk_image "${disk_image}" "${size}"
create_partitions "${disk_image}" create_partitions "${disk_image}"
mount_image "${disk_image}" 1 mount_image "${disk_image}" 1

View File

@ -33,7 +33,8 @@ clean_loops() {
create_empty_disk_image() { create_empty_disk_image() {
# Prepare an empty disk image # Prepare an empty disk image
dd if=/dev/zero of="$1" bs=1 count=0 seek="${imagesize}" size=${2:-$imagesize}
dd if=/dev/zero of="$1" bs=1 count=0 seek="${size}"
} }
create_manifest() { create_manifest() {