Archived
1
1

fix mountpoint boot partition

This commit is contained in:
Mats van Reenen
2022-09-10 17:33:56 +02:00
committed by GitHub
parent 9afc217f13
commit 87b7cc97a5

View File

@@ -101,8 +101,8 @@ run "create root btrfs subvolume" "btrfs subvolume create /mnt/@"
run "create home btrfs subvolume" "btrfs subvolume create /mnt/@home"
run "unmount btrfs" "umount /mnt"
run "mount root subvolume" "mount -o subvol=@ /dev/mapper/cryptroot /mnt"
run "make root directorys" "mkdir -p /mnt/boot/efi /mnt/home"
run "mount boot partition" "mount ${DISK}1 /mnt/boot/efi"
run "make root directorys" "mkdir -p /mnt/boot /mnt/home"
run "mount boot partition" "mount ${DISK}1 /mnt/boot"
run "mount home subvolume" "mount -o subvol=@home /dev/mapper/cryptroot /mnt/home"
run "enable swap" "swapon ${DISK}2"