55a1b132a0
Now that xz 5.4 is out and erofs-utils is built with LZMA support, it is possible to compress the EROFS image with LZMA for higher compression. `mkfs.erofs` trows a few warnings about using experimental features, but they should not be an issue. Nothing changes for the releng profile, for now at least.
21 lines
614 B
Bash
21 lines
614 B
Bash
#!/usr/bin/env bash
|
|
# shellcheck disable=SC2034
|
|
|
|
iso_name="archlinux-baseline"
|
|
iso_label="ARCH_$(date +%Y%m)"
|
|
iso_publisher="Arch Linux <https://archlinux.org>"
|
|
iso_application="Arch Linux baseline"
|
|
iso_version="$(date +%Y.%m.%d)"
|
|
install_dir="arch"
|
|
buildmodes=('iso')
|
|
bootmodes=('bios.syslinux.mbr' 'bios.syslinux.eltorito'
|
|
'uefi-ia32.grub.esp' 'uefi-x64.grub.esp'
|
|
'uefi-ia32.grub.eltorito' 'uefi-x64.grub.eltorito')
|
|
arch="x86_64"
|
|
pacman_conf="pacman.conf"
|
|
airootfs_image_type="erofs"
|
|
airootfs_image_tool_options=('-zlzma,9' -E ztailpacking)
|
|
file_permissions=(
|
|
["/etc/shadow"]="0:0:400"
|
|
)
|