diff options
author | Leah Rowe <leah@libreboot.org> | 2024-12-08 18:04:51 +0000 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2024-12-08 18:04:51 +0000 |
commit | e3b77b132e6b5981c09bc1ce282afaae64058ab3 (patch) | |
tree | 377d8d7d28239149e01e163a4912109f12651f15 | |
parent | e80261dd5451c7a0d16e34b11bb3b7ce07364b51 (diff) |
fix the stupidest bug ever20241206rev1
no context given, but every rom needs to be re-built.
Signed-off-by: Leah Rowe <leah@libreboot.org>
-rw-r--r-- | include/rom.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rom.sh b/include/rom.sh index f86e5e1a..a7e920e0 100644 --- a/include/rom.sh +++ b/include/rom.sh @@ -214,7 +214,7 @@ add_uboot() ubootelf="$ubdir/u-boot-x86-with-spl.bin" # EFI-compatible [ -f "$ubootelf" ] || $err "cb/$ubtarget: Can't find u-boot" - cbfs "$tmprom" "$ubootelf" "$ubpath" $ubcbfsargs; cprom + cbfs "$tmprom" "$ubootelf" "$ubpath" $ubcbfsargs } cprom() |