Rename ISO_STATUS to BUILD_TYPE for image builds

This commit is contained in:
Utkarsh Gupta 2026-02-12 01:41:06 +05:30
parent 73035c0b19
commit 6d954c975d
2 changed files with 6 additions and 6 deletions

View File

@ -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} \

View File

@ -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}")