blob: 8eea94f4af90b5de59c9e44f8a23f610065d6052 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#! /bin/bash
echo "PACMAN"
pacman-db-upgrade
pacman -Syu
pacman -S --noconfirm grub efibootmgr mkinitcpio linux linux-firmware
echo "GRUB"
grub-install --target=x86_64-efi --efi-directory=/boot --bootloader-id=grub_uefi --recheck
grub-mkconfig -o /boot/grub/grub.cfg
|