diff options
author | Leah Rowe <leah@libreboot.org> | 2024-06-27 01:56:24 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2024-06-27 02:05:29 +0100 |
commit | 7f7b640d3adc40265383c7138f78621612824972 (patch) | |
tree | 3c991ffbdb57e807a56eca4fd2595819f49d8faf /script | |
parent | 1ab9189cbd3592f009140e03097cf75dd67504c3 (diff) |
roms: re-add compression of coreboot images
i accidentally removed this feature, during prior cleanup.
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script')
-rwxr-xr-x | script/roms | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/script/roms b/script/roms index 72cb4fc2..63a4921b 100755 --- a/script/roms +++ b/script/roms @@ -56,7 +56,8 @@ main() [ -n "$ser" ] && mkserprogfw "$ser" "$x" [ -z "$ser" ] && [ -d "config/coreboot/$x/config" ] && \ configure_target "$x" && build_roms && \ - [ -d "bin/$board" ] && targets="$targets, $x"; continue + [ -d "bin/$board" ] && targets="$targets, $x" && \ + [ "$XBMK_RELEASE" = "y" ] && mkrom_tarball "bin/$x" done [ -n "$ser" ] && [ "$XBMK_RELEASE" = "y" ] && \ |