diff options
author | Max Rees <maxcrees@me.com> | 2020-04-12 21:25:56 -0500 |
---|---|---|
committer | Max Rees <maxcrees@me.com> | 2020-04-12 21:25:56 -0500 |
commit | 330123b2196e963afbfeac3c2fa23ffda947bd88 (patch) | |
tree | 806e5ba1bf4b6bb5736b83156c0517852624ec25 /post/arch | |
parent | 8dabe8373558c656a84eb921694e57f967408da0 (diff) | |
download | image-330123b2196e963afbfeac3c2fa23ffda947bd88.tar.gz image-330123b2196e963afbfeac3c2fa23ffda947bd88.tar.bz2 image-330123b2196e963afbfeac3c2fa23ffda947bd88.tar.xz image-330123b2196e963afbfeac3c2fa23ffda947bd88.zip |
x86_64: include all_video.mod for UEFI video support
This should generally fix the "blind boot" issue that folks have been
presenting in the support channel.
Diffstat (limited to 'post/arch')
-rwxr-xr-x | post/arch/x86_64.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/post/arch/x86_64.sh b/post/arch/x86_64.sh index 3117f86..04d0f6d 100755 --- a/post/arch/x86_64.sh +++ b/post/arch/x86_64.sh @@ -5,10 +5,10 @@ if ! type grub-mkimage>/dev/null; then printf "If you don't have one, this will fail!\n" else printf '\033[01;32m * \033[37mInstalling GRUB...\033[00;39m\n' - grub-mkimage -c x86/early.cfg64 -v -p boot -o grubcore-stage1.img -O i386-pc biosdisk boot btrfs datetime disk ext2 gfxmenu help iso9660 jfs linux ls luks lvm memdisk nilfs2 normal part_gpt part_msdos png scsi search xfs reboot gfxterm gfxterm_background gfxterm_menu + grub-mkimage -c x86/early.cfg64 -v -p boot -o grubcore-stage1.img -O i386-pc biosdisk boot btrfs datetime disk ext2 gfxmenu help iso9660 jfs linux ls luks lvm memdisk nilfs2 normal part_gpt part_msdos png scsi search xfs reboot gfxterm gfxterm_background gfxterm_menu all_video cat /usr/lib/grub/i386-pc/cdboot.img grubcore-stage1.img > cdroot-x86_64/boot/grubcore.img - grub-mkimage -c x86/early.cfg64 -v -p boot -o x86/efi64.exe -O x86_64-efi boot btrfs datetime disk ext2 gfxmenu help iso9660 jfs ls luks lvm memdisk nilfs2 normal part_gpt part_msdos png scsi search xfs linux reboot gfxterm gfxterm_background gfxterm_menu + grub-mkimage -c x86/early.cfg64 -v -p boot -o x86/efi64.exe -O x86_64-efi boot btrfs datetime disk ext2 gfxmenu help iso9660 jfs ls luks lvm memdisk nilfs2 normal part_gpt part_msdos png scsi search xfs linux reboot gfxterm gfxterm_background gfxterm_menu all_video fi cp x86/grub.cfg64 cdroot-x86_64/boot/grub.cfg |