diff options
| author | Leah Rowe <leah@libreboot.org> | 2024-05-19 06:45:38 +0100 | 
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2024-05-19 06:45:38 +0100 | 
| commit | 1fe9c4b8991f3bff7532fd85f4fd9ece73044236 (patch) | |
| tree | 4ef2335ae7ccf6b8c70c344c336fc113d49bdbf8 /script/roms | |
| parent | cc7ed6926b2bf53468320e32c236f269838178fb (diff) | |
option.sh: mktar_release to mkrom_tarball
that's all it's used for, to compress the rom images
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script/roms')
| -rwxr-xr-x | script/roms | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/script/roms b/script/roms index e18bdf17..07b205e4 100755 --- a/script/roms +++ b/script/roms @@ -99,7 +99,7 @@ handle_serprog()  			done  	fi -	[ "$xbmk_release" = "y" ] && mktar_release "bin/serprog_$1"; return 0 +	[ "$xbmk_release" = "y" ] && mkrom_tarball "bin/serprog_$1"; return 0  }  build_rp2040_rom() @@ -148,7 +148,7 @@ handle_coreboot_target()  	[ -d "bin/${board}" ] || return 0  	[ "$xbmk_release" = "y" ] || targets="* bin/${board}\n${targets}" -	[ "$xbmk_release" = "y" ] && mktar_release "bin/$board" && \ +	[ "$xbmk_release" = "y" ] && mkrom_tarball "bin/$board" && \  	targets="* bin/${relname}_$board.tar.xz\n$targets"; return 0  } | 
