You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
local install_grub_cmdline="grub-install --target=${UEFI_GRUB_TARGET} --no-nvram --removable"# nvram is global to the host, even across chroot. take care.
74
+
local install_grub_cmdline="grub-install --target=${UEFI_GRUB_TARGET} --efi-directory=${UEFI_MOUNT_POINT} --no-nvram --removable"# nvram is global to the host, even across chroot. take care.
GRUB_TIMEOUT_STYLE=menu # Show the menu with Kernel options (Armbian or -generic)...
125
134
GRUB_TIMEOUT=${UEFI_GRUB_TIMEOUT} # ... for ${UEFI_GRUB_TIMEOUT} seconds, then boot the Armbian default.
126
135
GRUB_DISTRIBUTOR="${UEFI_GRUB_DISTRO_NAME}" # On GRUB menu will show up as "Armbian GNU/Linux" (will show up in some UEFI BIOS boot menu (F8?) as "armbian", not on others)
136
+
GRUB_DISABLE_OS_PROBER=false # Have to be explicit about enabling os-prober
127
137
GRUB_GFXMODE=1024x768
128
138
GRUB_GFXPAYLOAD=keep
139
+
GRUB_DISABLE_UUID=false # Be explicit about wanting UUID
140
+
GRUB_DISABLE_LINUX_UUID=false # Be explicit about wanting UUID
129
141
grubCfgFrag
130
142
131
143
if [[ "a${UEFI_GRUB_DISABLE_OS_PROBER}"!="a" ]];then
0 commit comments