mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-11 05:52:36 +02:00
use correct memtest86plus path in script/roms
the previous change makes memtest.bin get cached in elf/ but the path was being prefixed with src/ by script/roms do away with the prefix Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
+2
-2
@@ -215,7 +215,7 @@ build_payloads()
|
||||
[ -f "$cbfstool" ] || x_ ./update trees -b coreboot utils $tree
|
||||
|
||||
mt86bin="elf/memtest86plus/memtest.bin"
|
||||
[ "$payload_memtest" != "y" ] || [ -f "src/$mt86bin" ] || \
|
||||
[ "$payload_memtest" != "y" ] || [ -f "$mt86bin" ] || \
|
||||
x_ ./update trees -b memtest86plus
|
||||
|
||||
[ "$payload_seabios" = "y" ] && x_ ./update trees -b seabios
|
||||
@@ -283,7 +283,7 @@ build_roms()
|
||||
x_ cp "$_cbrom" "$cbrom"
|
||||
|
||||
[ "$payload_memtest" != "y" ] || x_ "$cbfstool" "$cbrom" add-payload \
|
||||
-f "src/$mt86bin" -n img/memtest -c lzma
|
||||
-f "$mt86bin" -n img/memtest -c lzma
|
||||
[ "$payload_seabios" = "y" ] && build_seabios_roms
|
||||
[ "$payload_grub" != "y" ] || x_ build_grub_roms "$cbrom" "grub"
|
||||
[ "$payload_uboot" = "y" ] || return 0
|
||||
|
||||
Reference in New Issue
Block a user