diff options
| author | Leah Rowe <leah@libreboot.org> | 2024-06-06 21:45:53 +0100 | 
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2024-06-06 21:51:37 +0100 | 
| commit | c0822ac458fc7b0f2630c1cff208bd5066efbc6b (patch) | |
| tree | 146d96acaffa1c1288598481ae37420dbed436ee /script | |
| parent | d1ba085153efadaef9bc124efd043c06658ab969 (diff) | |
put coreboot utils in elf/, not cbutils/
one directory per util, under elf/
e.g. elf/cbfstool/
further split by tree name, e.g.:
elf/cbfstool/default/
elf/cbfstool/foo/
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script')
| -rwxr-xr-x | script/roms | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/script/roms b/script/roms index f6c322e1..79b716ff 100755 --- a/script/roms +++ b/script/roms @@ -209,7 +209,7 @@ build_payloads()  	romdir="bin/$board"  	cbdir="src/coreboot/$board"  	[ "$board" = "$tree" ] || cbdir="src/coreboot/$tree" -	cbfstool="cbutils/$tree/cbfstool" +	cbfstool="elf/cbfstool/$tree/cbfstool"  	cbrom="$cbdir/build/coreboot.rom"  	[ -f "$cbfstool" ] || x_ ./update trees -b coreboot utils $tree | 
