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"
|
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"
|
2020-10-24 14:53:57 +02:00
|
|
|
airootfs_image_type="squashfs"
|
2020-12-29 21:30:55 +01:00
|
|
|
airootfs_image_tool_options=('-comp' 'xz' '-Xbcj' 'x86' '-b' '1M' '-Xdict-size' '1M')
|
2020-11-14 10:43:13 +01:00
|
|
|
file_permissions=(
|
|
|
|
["/etc/shadow"]="0:0:400"
|
|
|
|
)
|