From df7305a5d9c64e2394acf488b23e0ab55aaefa47 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Sat, 30 Sep 2023 12:51:40 +0100 Subject: 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 --- script/build/boot/roms | 2 ++ 1 file changed, 2 insertions(+) (limited to 'script/build') 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 -- cgit v1.2.1