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>
This commit is contained in:
Leah Rowe
2024-05-19 06:45:38 +01:00
parent cc7ed6926b
commit 1fe9c4b899
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -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
}