diff options
author | Leah Rowe <leah@libreboot.org> | 2023-10-05 23:50:31 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2023-10-06 01:16:39 +0100 |
commit | 176722a841e59f4a6664bad45dc9344364a4a166 (patch) | |
tree | 33317d5e0966c4b5ffe1b2f0392233a4ccc52da4 /script/build/boot/roms | |
parent | 9d419e77a0621ddf8398edecb40ddedc3388dc42 (diff) |
unify handle/make/* into build/project/trees
Just one script.
Just one.
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script/build/boot/roms')
-rwxr-xr-x | script/build/boot/roms | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/script/build/boot/roms b/script/build/boot/roms index f9634ce6..9736ee7f 100755 --- a/script/build/boot/roms +++ b/script/build/boot/roms @@ -128,7 +128,7 @@ prepare_target() memtest_bin="memtest86plus/build${arch#*_}/memtest.bin" [ "${payload_memtest}" != "y" ] || [ -f "${memtest_bin}" ] || \ - x_ ./handle make file -b ${memtest_bin%/*} + x_ ./build project trees -b ${memtest_bin%/*} x_ rm -f "${romdir}/"* @@ -145,7 +145,7 @@ build_dependency_seabios() || [ ! -f elf/seabios/default/libgfxinit/bios.bin.elf ] \ || [ ! -f elf/seabios/default/vgarom/bios.bin.elf ] \ || [ ! -f elf/seabios/default/normal/bios.bin.elf ]; then - x_ ./handle make config -b seabios + x_ ./build project trees -b seabios fi } @@ -173,7 +173,7 @@ build_dependency_uboot() { [ "${payload_uboot}" = "y" ] || return 0 - x_ ./handle make config -b u-boot ${board} + x_ ./build project trees -b u-boot ${board} ubdir="elf/u-boot/${board}/${uboot_config}" ubootelf="${ubdir}/u-boot.elf" [ ! -f "${ubootelf}" ] && [ -f "${ubdir}/u-boot.bin" ] && \ @@ -210,7 +210,7 @@ build_roms() "${cbcfg}" "${board}" "${displaymode}" "${initmode}" \ 1>&2 && return 0 - x_ ./handle make config -b coreboot ${board} + x_ ./build project trees -b coreboot ${board} _cbrom="elf/coreboot/${board}/${initmode}_${displaymode}" [ "${initmode}" = "normal" ] && \ |