2023-04-01 11:01:04 +00:00
|
|
|
#!/bin/bash
|
|
|
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
|
|
|
|
|
|
|
EFI_BOOT_DIR="${EFI_BOOT_DIR:-"/boot"}";
|
|
|
|
BOOTLOADER_ID=${BOOTLOADER_ID:-"GRUB"};
|
2023-04-01 12:21:30 +00:00
|
|
|
pacman --noconfirm -Syu grub efibootmgr;
|
2023-04-01 13:15:15 +00:00
|
|
|
. ../../Common/GRUB/setup.sh;
|
2023-04-01 11:01:04 +00:00
|
|
|
|
|
|
|
popd > /dev/null;
|