2020-08-12 16:42:02 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# shellcheck disable=SC2034
|
|
|
|
|
|
|
|
iso_name="archlinux-baseline"
|
2023-01-28 18:54:32 +00:00
|
|
|
iso_label="ARCH_$(date --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" +%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"
|
2023-01-28 18:54:32 +00:00
|
|
|
iso_version="$(date --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" +%Y.%m.%d)"
|
2020-08-12 16:42:02 +00:00
|
|
|
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'
|
2022-06-10 05:37:50 +00:00
|
|
|
'uefi-ia32.grub.esp' 'uefi-x64.grub.esp'
|
|
|
|
'uefi-ia32.grub.eltorito' 'uefi-x64.grub.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"
|
2023-03-17 17:00:25 +00:00
|
|
|
airootfs_image_tool_options=('-zlzma,109' -E 'ztailpacking,fragments,dedupe')
|
2020-11-14 09:43:13 +00:00
|
|
|
file_permissions=(
|
|
|
|
["/etc/shadow"]="0:0:400"
|
|
|
|
)
|