configs/*/profiledef.sh: set bootstrap_tarball_compression
* bootstrap will use .tar.zst with `zstd -c -T0 --long -19`, * releng will retain .tar.gz with `gzip -cn9` for now. This will later be changed as part of https://gitlab.archlinux.org/archlinux/archiso/-/issues/130.
This commit is contained in:
parent
3b3984b484
commit
4df7306924
3 changed files with 3 additions and 1 deletions
|
@ -10,7 +10,7 @@ Added
|
|||
|
||||
- Add a man page for ``mkarchiso``.
|
||||
- Implement configurable bootstrap tarball compression. It is configured in ``profiledef.sh`` using a bash array called
|
||||
``bootstrap_tarball_compression``.
|
||||
``bootstrap_tarball_compression``. baseline tarball now uses zstd compression while releng remains with gzip for now.
|
||||
|
||||
Changed
|
||||
-------
|
||||
|
|
|
@ -15,6 +15,7 @@ arch="x86_64"
|
|||
pacman_conf="pacman.conf"
|
||||
airootfs_image_type="erofs"
|
||||
airootfs_image_tool_options=('-zlzma,109' -E 'ztailpacking,fragments,dedupe')
|
||||
bootstrap_tarball_compression=(zstd -c -T0 --long -19)
|
||||
file_permissions=(
|
||||
["/etc/shadow"]="0:0:400"
|
||||
)
|
||||
|
|
|
@ -15,6 +15,7 @@ arch="x86_64"
|
|||
pacman_conf="pacman.conf"
|
||||
airootfs_image_type="squashfs"
|
||||
airootfs_image_tool_options=('-comp' 'xz' '-Xbcj' 'x86' '-b' '1M' '-Xdict-size' '1M')
|
||||
bootstrap_tarball_compression=(gzip -cn9)
|
||||
file_permissions=(
|
||||
["/etc/shadow"]="0:0:400"
|
||||
["/root"]="0:0:750"
|
||||
|
|
Loading…
Add table
Reference in a new issue