diff options
author | Leah Rowe <leah@libreboot.org> | 2023-10-10 06:31:26 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2023-10-10 06:31:26 +0100 |
commit | 067a358d4d2e4b6035cef51773b3d1da3f9b2aa3 (patch) | |
tree | a8ce3a88bc2841d961897dfab1889fa3186a278c /script/update/project/trees | |
parent | 13c58200a4a682a63806a5e6a97c555a77284ddf (diff) |
fix warning about coreboot elf/ vs bin/
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script/update/project/trees')
-rwxr-xr-x | script/update/project/trees | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/update/project/trees b/script/update/project/trees index 97b12954..8d0a441a 100755 --- a/script/update/project/trees +++ b/script/update/project/trees @@ -90,7 +90,7 @@ build_targets() [ $# -gt 0 ] && targets=$@ [ -z "${mode}" ] && x_ mkdir -p "${elfdir}/" - if [ "${project}" != "coreboot" ]; then + if [ "${project}" = "coreboot" ]; then printf "DO NOT flash coreboot images under elf/. Use ROMs" printf "under bin/. The elf/ ones DO NOT contain payloads" printf "will brick your machine.\n" > \ |