Reputation: 1011
If I use GRUB 2 on a GPT-enabled partition, how does the loader "know" where to find its configuration file and other second stage's files?
Note: I found some mentions about a configuration file which is located in the same folder as GRUB's EFI loader and contains a chained load of "primary" configuration file from the specified partition, but that definitely is not true; there is only one "something.efi" file.
Upvotes: 18
Views: 10633
Reputation: 3165
For an EFI image, I found that grub-install
or grub-mkimage
will always embed an early configuration into the resulting EFI binary, regardless of whether or not you have specified the --config FILE
option.
If you do not specify the --config FILE
option, it will try to embed /boot/grub/x86-64_efi/load.cfg
.
This early configuration file looks like this:
search.fs_uuid 8ef704aa-041d-443c-8ce6-71ac7e7f30da root hd0,gpt1
set prefix=($root)'/boot/grub'
configfile $prefix/grub.cfg # This line seems can be omitted, because
# it seems to be the default next action
uuid
means the UUID of the file system, not of partition. You can use blkid to list it.hd0,gpt1
is just a hint.set root=hd0,gpt1
This default behavior of auto embedding is different from BIOS mode. The latter by default only embeds a prefix string like (,gpt3)/boot
without bothering with search.uuid.
I also found that the Ubuntu 18.04 (Bionic Beaver) EFI image embedded an early configuration like build-efi-images
if [ -z "\$prefix" -o ! -e "\$prefix" ]; then
if ! search --file --set=root /.disk/info; then
search --file --set=root /.disk/mini-info
fi
set prefix=(\$root)/boot/grub
fi
if [ -e \$prefix/$platform/grub.cfg ]; then
source \$prefix/$platform/grub.cfg
elif [ -e \$prefix/grub.cfg ]; then
source \$prefix/grub.cfg
else
source \$cmdpath/grub.cfg
fi
The cmdpath
is the directory of the EFI binary, so it will fall back to the grub.cfg file in the same directory of the EFI binary, as you found.
Upvotes: 5
Reputation: 6234
There are actual several ways this can happen:
grub-mkimage
(called by grub-install
) execution time.The latter is probably the functionality you are really asking for, and it's a combination of the default configuration file name (grub.cfg
), the prefix (default /boot/grub
, but it can be explicitly specified to grub-mkimage
) and the GRUB partition name for the partition where the prefix is located.
If I run strings /boot/efi/EFI/debian/grubx64.efi | tail -1
on my current workstation, it prints out the stored value: (,gpt2)/boot/grub
, telling grubx64.efi
to look for its configuration file in /boot/grub on GPT partition 2. The bit before the comma (the GRUB disk device name) gets filled in at runtime based on which disk the grubx64.efi
image itself was loaded from.
Dynamically loaded modules will also be searched for under this location, but in an architecture/platform-specific directory - in this case /boot/grub/x86_64-efi
.
Upvotes: 18