diff options
author | Kamil Kaminski <kylek389@gmail.com> | 2016-03-09 12:54:05 -0600 |
---|---|---|
committer | Kamil Kaminski <kylek389@gmail.com> | 2016-03-09 12:54:05 -0600 |
commit | 4e2ad5091cdd7ff4fef531229c383f30dadea13e (patch) | |
tree | 3780e39389d33d36623e4caa1dd306f16a8f7ad4 | |
parent | 5aa9d330ea69964850c41ced64ade1df955acc2b (diff) | |
download | configs-4e2ad5091cdd7ff4fef531229c383f30dadea13e.tar.gz configs-4e2ad5091cdd7ff4fef531229c383f30dadea13e.tar.bz2 configs-4e2ad5091cdd7ff4fef531229c383f30dadea13e.zip |
add rog
-rwxr-xr-x | giga/boot/efi/loader/entries/arch.conf | 1 | ||||
-rw-r--r-- | rog.txt | 7 | ||||
-rwxr-xr-x | rog_efi.sh | 4 |
3 files changed, 12 insertions, 0 deletions
diff --git a/giga/boot/efi/loader/entries/arch.conf b/giga/boot/efi/loader/entries/arch.conf index 727332b..d901818 100755 --- a/giga/boot/efi/loader/entries/arch.conf +++ b/giga/boot/efi/loader/entries/arch.conf @@ -1,4 +1,5 @@ title Arch Linux linux EFI/archlinux/vmlinuz-arch.efi +initrd EFI/archlinux/intel-ucode.img initrd EFI/archlinux/initramfs-arch.img options root=PARTUUID="30c852bd-3a95-4333-ad8d-edfcad8b90ef" rw rootfstype=btrfs add_efi_memmap @@ -0,0 +1,7 @@ +- pacman -S prebootloader gummiboot + -> rm -rf /boot/EFI # i think gummiboot wants work on /boot/EFI instead of /boot/efi/EFI, tl;dr it missdetects +- cp /usr/lib/gummiboot/gummibootx64.efi /boot/efi/EFI/preloader/loader.efi + +- add /boot/efi/EFI/preloader/PreLoader.efi to NVRAM + -> # efibootmgr -w -c -d /dev/sdb1 -p 1 -L "PreLoader" -l '\EFI\preloader\PreLoader.efi' + diff --git a/rog_efi.sh b/rog_efi.sh new file mode 100755 index 0000000..e9bc8ff --- /dev/null +++ b/rog_efi.sh @@ -0,0 +1,4 @@ +#!/bin/bash + +efibootmgr -w -c -d /dev/sdb1 -p 1 -L "PreLoader" -l '\EFI\preloader\PreLoader.efi' + |