PortValhalla/scripts/Arch/Software/GRUB/install.sh

10 lines
233 B
Bash
Raw Normal View History

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 15:08:17 +00:00
. ../../../Common/Config/GRUB/setup.sh;
2023-04-01 11:01:04 +00:00
popd > /dev/null;