diff options
author | Leah Rowe <leah@libreboot.org> | 2023-03-25 16:43:24 +0000 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2023-03-25 16:43:46 +0000 |
commit | 883967160c4cfec3387a7406f29438752e2ad9b2 (patch) | |
tree | 8b87d8ac1e7dd809c2b716a67f4b65c89bc69ab6 | |
parent | da6bf57a3f57f2625a4903cafb5cfd10ea4a1dae (diff) |
build/boot/roms: bugfix: unitialised variable
When using e.g. -p grub in build/boot/roms, it will
error out. This patch fixes that.
E.g.
./build boot roms t440pmrc_12mb -p grub
Seldom used feature and it was overlooked. Most people
won't use the option that triggered the error.
-rwxr-xr-x | resources/scripts/build/boot/roms | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/resources/scripts/build/boot/roms b/resources/scripts/build/boot/roms index 7f4e8422..4a34f619 100755 --- a/resources/scripts/build/boot/roms +++ b/resources/scripts/build/boot/roms @@ -29,6 +29,7 @@ set -u -e projectname="$(cat projectname)" +opts="" listboards() { for boarddir in resources/coreboot/*; do |