From 296026b66717f90374d112dc7097f76781cf1c50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20unbrot=20P=C3=A4tzold?= Date: Mon, 27 Apr 2026 16:45:16 +0200 Subject: [PATCH] Set GPT partition name to anacondainstall for OEMDRV partition Co-Authored-By: Claude Sonnet 4.6 --- system_setup/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system_setup/install.sh b/system_setup/install.sh index f0c5a5f..6496b26 100755 --- a/system_setup/install.sh +++ b/system_setup/install.sh @@ -392,7 +392,7 @@ fi # ── Create OEMDRV partition ─────────────────────────────────────────────────── info "Creating new OEMDRV partition (${OEMDRV_START}–${OEMDRV_END} MiB) on $WORK_DISK..." -printf 'Yes\n' | parted "$WORK_DISK" mkpart primary btrfs "${OEMDRV_START}MiB" "${OEMDRV_END}MiB" \ +printf 'Yes\n' | parted "$WORK_DISK" mkpart anacondainstall btrfs "${OEMDRV_START}MiB" "${OEMDRV_END}MiB" \ || die "parted mkpart failed. Check that the target area is free space on $WORK_DISK." partprobe "$WORK_DISK"