This commit is contained in:
Your Name 2024-02-03 23:37:12 -07:00
parent c925aa77f8
commit 4ef900c835

View File

@ -469,8 +469,8 @@ initialize-disk() {
parted -a optimal /dev/$HARD_DISK mkpart primary fat32 1MiB 200MiB
parted -a optimal /dev/$HARD_DISK mkpart primary ext3 200MiB $ROOT_PARTITION_SIZE
parted -a optimal /dev/$HARD_DISK set 1 esp on
parted -a optimal /dev/$HARD_DISK mkpart P2 ext3 $ROOT_PARTITION_SIZE $(cat /proc/meminfo | head -1 | cut -d ':' -f2 | sed 's/ //g')
parted -a optimal /dev/$HARD_DISK mkpart P2 ext3 $(cat /proc/meminfo | head -1 | cut -d ':' -f2 | sed 's/ //g') 100%
parted -a optimal /dev/$HARD_DISK mkpart swap ext3 $ROOT_PARTITION_SIZE $(cat /proc/meminfo | head -1 | cut -d ':' -f2 | sed 's/ //g')
parted -a optimal /dev/$HARD_DISK mkpart home ext3 $(cat /proc/meminfo | head -1 | cut -d ':' -f2 | sed 's/ //g') 100%
partitionDetection
echo
echo "Formatting....."