From 4cf628054fdb4621bf81965d63fdef2a254cfd4f Mon Sep 17 00:00:00 2001 From: eichehome Date: Wed, 19 Jul 2023 19:27:03 +0200 Subject: [PATCH] =?UTF-8?q?Kommentare=20zu=20der=20Erstellung=20der=20Part?= =?UTF-8?q?itionen=20hinzugef=C3=BCgt.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- install.uefi | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install.uefi b/install.uefi index c46c19d..e75e913 100644 --- a/install.uefi +++ b/install.uefi @@ -78,9 +78,12 @@ USR="15G" #Discoverable Partitions Specification sgdisk -og "${DRIVE}" +# Create EFI System Partition sgdisk -n 0:0:+"${ESP}" -t 0:c12a7328-f81f-11d2-ba4b-00a0c93ec93b -c 0:"EFI System Partition" "${DRIVE}" #sgdisk -n 0:0:+512M -t 0:ef00 -c 0:ESP "${DRIVE}" +# Create usr-Partition sgdisk -n 0:0:+"${USR}" -t 0:8484680c-9521-48c6-9c11-b0720656f69e -c 0:"Usr-Partition" "${DRIVE}" +# Create Root-Partition sgdisk -n 0:0:0 -t 0:4f68bce3-e8cd-4db1-96e7-fbcaf984b709 -c 0:"System Root" "${DRIVE}"