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