diff options
author | Leah Rowe <leah@libreboot.org> | 2024-11-20 01:19:27 +0000 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2024-11-20 01:19:27 +0000 |
commit | eb14a176bc8e2b943ab0e36159fd86b4a556708e (patch) | |
tree | 18ce50db3ffb9690a1a04f19678c223a8099c24c /include | |
parent | 279e69172f724eab326b52f0aa2c64003c4e1f7f (diff) |
Only boot 32-bit u-boot from grub, 64 from seabios
For some reason, 32-bit U-Boot only works when executed from
GRUB, but not SeaBIOS; 64-bit U-Boot only works from SeaBIOS!
This will have to be investigated. Standalone U-Boot, where
U-Boot is the primary payload, has not yet been tested in
Libreboot, and will not be provided for some time due to
stability concerns. More testing is needed!
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/rom.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/rom.sh b/include/rom.sh index 808f83a4..96c7081a 100644 --- a/include/rom.sh +++ b/include/rom.sh @@ -187,8 +187,9 @@ add_uboot() [ "$payload_uboot_amd64" = "y" ]; then ubcbfsargs="-l 0x1110000 -e 0x1110000" # 64-bit and 32-bit # on 64-bit, 0x1120000 is the SPL, and stub before that - ubpath="img/u-boot" + ubpath="img/u-boot" # 64-bit ubtarget="amd64coreboot" + [ "$payload_uboot_i386" = "y" ] && ubpath="u-boot" # 32-bit [ "$payload_uboot_i386" = "y" ] && ubtarget="i386coreboot"; : fi |