diff options
-rwxr-xr-x | build.sh | 2 | ||||
-rwxr-xr-x | install.sh | 6 |
2 files changed, 4 insertions, 4 deletions
@@ -24,6 +24,6 @@ sh mod.sh sh config.sh sh source.sh -grub-install --target=x86_64-efi --efi-directory=/efi --bootloader-id=GRUB +grub-install --target=x86_64-efi --efi-directory=/boot --bootloader-id=GRUB grub-mkconfig -o /boot/grub/grub.cfg mkinitcpio -P @@ -35,8 +35,8 @@ if [ ! -e installed ]; then mkfs.ext4 /dev/Crypt/root mount /dev/Crypt/root /mnt - mkdir /mnt/efi - mount ${PART}1 /mnt/efi + mkdir /mnt/boot + mount ${PART}1 /mnt/boot swapon /dev/Crypt/swap pacstrap /mnt base || exit 1 @@ -47,7 +47,7 @@ if [ ! -e installed ]; then else cryptsetup open ${PART}2 cryptlvm mount /dev/Crypt/root /mnt - mount ${PART}1 /mnt/efi + mount ${PART}1 /mnt/boot fi sudo install -d /mnt/root/dotfiles cp -r . /mnt/root/dotfiles |