diff options
| author | Leah Rowe <leah@libreboot.org> | 2023-09-30 12:51:40 +0100 | 
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2023-09-30 12:51:40 +0100 | 
| commit | df7305a5d9c64e2394acf488b23e0ab55aaefa47 (patch) | |
| tree | 3ce4f3a4c24a9a3f19fec5bf7a2fe6198a9570f6 /script/build/boot/roms | |
| parent | b3e69cd9ac79b35ba59204ce0143efc8405b3c08 (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/boot/roms')
| -rwxr-xr-x | script/build/boot/roms | 2 | 
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 | 
