From 6e9917f1eb670fdf455459fe9aeeecf239d6b047 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Paul=20H=C3=A4nsch?= Date: Mon, 19 Jan 2026 05:41:36 +0100 Subject: [PATCH] iso filesystem label for live medium --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c450a3f..d79bf0b 100644 --- a/Makefile +++ b/Makefile @@ -23,6 +23,8 @@ ROOT_MB := 895 fstype := ext4 +ISOLABEL := Blast + config.mk: cp "config.example" "$@" @@ -189,7 +191,7 @@ else ifeq "${ARCH}" "i386" PACKAGES += linux-image-686 endif -export SOURCES SYSROOT CFGROOT VOLUME PBOOT PROOT SQUASH ARCH KEYRING BOOTSTRAP ISOROOT ISO +export SOURCES SYSROOT CFGROOT VOLUME PBOOT PROOT SQUASH ARCH KEYRING BOOTSTRAP ISOROOT ISO ISOLABEL sys_root_${release}_${ARCH}/: btrfs subvol create "$@" || mkdir "$@" @@ -330,7 +332,7 @@ _format_boot: ${PBOOT} _format: _format_root _format_boot _iso_image: ${ISOROOT} - grub-mkrescue --compress=xz -o "$${ISO}" "$${ISOROOT}" + grub-mkrescue --compress=xz -volid "$${ISOLABEL}" -o "$${ISO}" "$${ISOROOT}" .PHONY: _syslinux_efi32 _syslinux_efi64 _syslinux_bios .PHONY: _grub_efi32 _grub_efi64 -- 2.39.5