grub2: update to newer grub2 2.06 version

In UEFI case the lower RAM will not be used for internal allocation, which
should prevent overrides in the former legacy BDA (first page).

Issue #4426
This commit is contained in:
Alexander Boettcher 2022-07-11 09:28:54 +02:00 committed by Christian Helmuth
parent d5b1d9466a
commit 97d7d4b49d
3 changed files with 2 additions and 5 deletions

View File

@ -1 +1 @@
856f9946a1482cbebc519818e3e4736bcd11e5e4
f15e84afbb47b892ed26a5ae56f5bb038777a3c0

View File

@ -3,7 +3,7 @@ VERSION := git
DOWNLOADS := g2fg.git
URL(g2fg) := https://github.com/alex-ab/g2fg.git
REV(g2fg) := a0c3164b6b23afb25119f2be8c3b7490c1dcb9e2
REV(g2fg) := 7da0601946bd2bb75f4e9c3b56cb18e44b2997a1
DIR(g2fg) := boot
default: $(DOWNLOADS)

View File

@ -13,9 +13,6 @@ proc install_iso_bootloader_to_run_dir { } {
exec mkdir -p [run_dir]/boot/grub/i386-pc
exec cp $grub2_path/boot/grub2/eltorito.img [run_dir]/boot/grub/i386-pc/.
foreach file [glob -nocomplain $grub2_path/boot/grub2/\*.mod] {
exec cp $file [run_dir]/boot/grub/i386-pc/[file tail $file]
}
exec cp [genode_dir]/tool/boot/bender [run_dir]/boot/bender
}