From 6d954c975d5a42ac8b7b539867a92b82760e2880 Mon Sep 17 00:00:00 2001 From: Utkarsh Gupta Date: Thu, 12 Feb 2026 01:41:06 +0530 Subject: [PATCH 1/2] Rename ISO_STATUS to BUILD_TYPE for image builds --- live-build/auto/config | 2 +- live-build/gen-iso-ids | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/live-build/auto/config b/live-build/auto/config index f7739672..638e4c87 100755 --- a/live-build/auto/config +++ b/live-build/auto/config @@ -1700,7 +1700,7 @@ EOF fi if [ "${MAKE_ISO}" = "yes" ]; then - # XXX should pass --iso-status here. + # XXX should pass --build-type here. /usr/share/livecd-rootfs/live-build/gen-iso-ids \ --project $PROJECT ${SUBPROJECT:+--subproject $SUBPROJECT} \ --arch $ARCH ${SUBARCH:+--subarch $SUBARCH} ${NOW+--serial $NOW} \ diff --git a/live-build/gen-iso-ids b/live-build/gen-iso-ids index 6f9d57b0..c39f80bd 100755 --- a/live-build/gen-iso-ids +++ b/live-build/gen-iso-ids @@ -59,7 +59,7 @@ def make_disk_info( subarch: str, capproject: str, subproject: str, - iso_status: str, + build_type: str, serial: str, ) -> str: # os-release VERSION is _almost_ what goes into .disk/info... @@ -82,7 +82,7 @@ def make_disk_info( if subarch: fullarch += "+" + subarch - return f"{capproject}{capsubproject} {version} - {iso_status} {fullarch} ({serial})" + return f"{capproject}{capsubproject} {version} - {build_type} {fullarch} ({serial})" def make_vol_id(os_release: dict[str, str], arch: str, capproject: str) -> str: @@ -146,7 +146,7 @@ def make_vol_id(os_release: dict[str, str], arch: str, capproject: str) -> str: default=time.strftime("%Y%m%d"), ) @click.option( - "--iso-status", + "--build-type", type=str, default="Daily", ) @@ -162,7 +162,7 @@ def main( arch: str, subarch: str, serial: str, - iso_status: str, + build_type: str, output_dir: pathlib.Path, ): output_dir.mkdir(exist_ok=True) @@ -177,7 +177,7 @@ def main( subarch, capproject, subproject, - iso_status, + build_type, serial, ) print(f"disk_info: {disk_info!r}") From 7f1c505f20de8d9fc0cbf7cd178cf07a31f6bf43 Mon Sep 17 00:00:00 2001 From: Utkarsh Gupta Date: Thu, 12 Feb 2026 01:41:28 +0530 Subject: [PATCH 2/2] Update d/ch for 26.04.16 release --- debian/changelog | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/debian/changelog b/debian/changelog index a0897e14..e705ee0a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +livecd-rootfs (26.04.16) resolute; urgency=medium + + * Rename ISO_STATUS to BUILD_TYPE for image builds. + + -- Utkarsh Gupta Thu, 12 Feb 2026 01:41:11 +0530 + livecd-rootfs (26.04.15) resolute; urgency=medium [ Matthew Hagemann ]