2020-08-12 16:42:02 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# shellcheck disable=SC2034
|
|
|
|
|
|
|
|
iso_name="archlinux-baseline"
|
|
|
|
iso_label="ARCH_$(date +%Y%m)"
|
2020-12-26 18:11:06 +00:00
|
|
|
iso_publisher="Arch Linux <https://archlinux.org>"
|
2020-08-12 16:42:02 +00:00
|
|
|
iso_application="Arch Linux baseline"
|
|
|
|
iso_version="$(date +%Y.%m.%d)"
|
|
|
|
install_dir="arch"
|
2021-05-09 09:30:06 +00:00
|
|
|
buildmodes=('iso')
|
2022-05-25 14:52:22 +00:00
|
|
|
bootmodes=('bios.syslinux.mbr' 'bios.syslinux.eltorito'
|
|
|
|
'uefi-ia32.grub.esp' 'uefi-x64.systemd-boot.esp'
|
|
|
|
'uefi-ia32.grub.eltorito' 'uefi-x64.systemd-boot.eltorito')
|
2020-08-12 16:42:02 +00:00
|
|
|
arch="x86_64"
|
|
|
|
pacman_conf="pacman.conf"
|
2021-03-14 19:13:02 +00:00
|
|
|
airootfs_image_type="erofs"
|
|
|
|
airootfs_image_tool_options=('-zlz4hc,12')
|
2020-11-14 09:43:13 +00:00
|
|
|
file_permissions=(
|
|
|
|
["/etc/shadow"]="0:0:400"
|
|
|
|
)
|