configs/baseline/profiledef.sh: compress more

* Use LZMA extreme compression level,
* enable experimental compressed fragments feature to create a smaller image,
* enable experimental data deduplication.

This decreases the baseline profile's `airootfs.erofs` size by about ~16 MiB.
This commit is contained in:
nl6720 2023-03-17 19:00:25 +02:00
parent 5c36c85bd5
commit 20fc8030a3
No known key found for this signature in database
GPG Key ID: 5CE88535E188D369
2 changed files with 4 additions and 1 deletions

View File

@ -11,6 +11,9 @@ Added
Changed Changed
------- -------
- Increase EROFS compression for the baseline profile by using an extreme LZMA compression level and enabling the
experimental compressed fragments and data deduplication features.
Deprecated Deprecated
---------- ----------

View File

@ -14,7 +14,7 @@ bootmodes=('bios.syslinux.mbr' 'bios.syslinux.eltorito'
arch="x86_64" arch="x86_64"
pacman_conf="pacman.conf" pacman_conf="pacman.conf"
airootfs_image_type="erofs" airootfs_image_type="erofs"
airootfs_image_tool_options=('-zlzma,9' -E ztailpacking) airootfs_image_tool_options=('-zlzma,109' -E 'ztailpacking,fragments,dedupe')
file_permissions=( file_permissions=(
["/etc/shadow"]="0:0:400" ["/etc/shadow"]="0:0:400"
) )