You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
723 B
Bash
21 lines
723 B
Bash
#!/usr/bin/env bash
|
|
# shellcheck disable=SC2034
|
|
|
|
iso_name="archlinux-baseline"
|
|
iso_label="ARCH_$(date --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" +%Y%m)"
|
|
iso_publisher="Arch Linux <https://archlinux.org>"
|
|
iso_application="Arch Linux baseline"
|
|
iso_version="$(date --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" +%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,109' -E 'ztailpacking,fragments,dedupe')
|
|
file_permissions=(
|
|
["/etc/shadow"]="0:0:400"
|
|
)
|