summaryrefslogtreecommitdiff
path: root/script/build
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2023-09-30 12:51:40 +0100
committerLeah Rowe <leah@libreboot.org>2023-09-30 12:51:40 +0100
commitdf7305a5d9c64e2394acf488b23e0ab55aaefa47 (patch)
tree3ce4f3a4c24a9a3f19fec5bf7a2fe6198a9570f6 /script/build
parentb3e69cd9ac79b35ba59204ce0143efc8405b3c08 (diff)
build/boot/roms: support "all" if argument passed
e.g. -k ukqwerty previously, this would not work: ./build boot roms -k ukqwerty all only this would work: ./build boot roms all this patch fixes the bug. Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script/build')
-rwxr-xr-xscript/build/boot/roms2
1 files changed, 2 insertions, 0 deletions
diff --git a/script/build/boot/roms b/script/build/boot/roms
index 53b4bf2d..7ea64f66 100755
--- a/script/build/boot/roms
+++ b/script/build/boot/roms
@@ -37,6 +37,8 @@ main()
-k)
opts="${opts} -k ${2}"
shift ;;
+ all)
+ firstoption="all" ;;
*)
boards="${boards} ${1} " ;;
esac