diff options
author | Leah Rowe <leah@libreboot.org> | 2025-05-27 10:11:42 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-05-27 10:11:42 +0100 |
commit | dc6996252a0f516add85e0cbcf1693bfa80f8c99 (patch) | |
tree | 5bf02cd4fa7edb2a5956763f663dc426b758f863 /include/rom.sh | |
parent | b77154640de6442b4180cb65e3851d1ae9f78918 (diff) |
put coreboot utils in elf/coreboot/TREE
not elf/UTIL/TREE
This way, they are automatically deleted when a tree
has to be re-built.
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include/rom.sh')
-rw-r--r-- | include/rom.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/rom.sh b/include/rom.sh index e8caf024..c1b78c75 100644 --- a/include/rom.sh +++ b/include/rom.sh @@ -56,10 +56,10 @@ corebootpremake() check_coreboot_util() { - [ "$badhash" = "y" ] && x_ rm -f "elf/$1/$tree/$1" - e "elf/$1/$tree/$1" f && return 0 + [ "$badhash" = "y" ] && x_ rm -f "elf/coreboot/$tree/$1" + e "elf/coreboot/$tree/$1" f && return 0 - utilelfdir="elf/$1/$tree" + utilelfdir="elf/coreboot/$tree" utilsrcdir="src/coreboot/$tree/util/$1" utilmode="" && [ -n "$mode" ] && utilmode="clean" @@ -85,7 +85,7 @@ mkcorebootbin() displaymode="${initmode##*_}" [ "$displaymode" = "$initmode" ] && displaymode="" # "normal" config initmode="${initmode%%_*}" - cbfstool="elf/cbfstool/$tree/cbfstool" + cbfstool="elf/coreboot/$tree/cbfstool" [ -z "$payload_uboot" ] || [ "$payload_uboot" = "amd64" ] || \ [ "$payload_uboot" = "i386" ] || [ "$payload_uboot" = "arm64" ] \ |