From 10a2d63e088b7a43b0dbecccf062ca3c06fdbe5e Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Thu, 3 Nov 2022 13:27:24 -0400 Subject: [PATCH] Add instructions to run HOS from GRUB --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 03a4d7e..7514e27 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,20 @@ To install HOS to an EFI partition, follow these steps: efibootmgr -o 2,0,6,5 +At this point you should be able to boot HOS from your EFI boot selection menu. +If you use GRUB, you can optionally create a GRUB boot entry to load HOS.EFI +with an entry like this: + + menuentry 'HOS' { + insmod part_gpt + insmod chain + set root='(hd0,gpt1)' + chainloader /EFI/HOS.EFI + } + +Just update the root setting for the correction location to your system's EFI +partition. + == VirtualBox To create a VM in VirtualBox: