NOTE: This was unintentionally squashed so some details were lost * Major updates to build_linux to support the current archiso scripts * Most customize_airootfs.sh code has been moved elsewhere * Using static files or links where possible * Generating other files as needed in build_linux * Syslinux configuration has been simplified * Dropped i3 * Dropped rxvt-unicode in favor of termite * Font rendering broke one too many times * Dropped NetworkManager in favor of iwd/systemd-networkd
18 lines
552 B
Bash
18 lines
552 B
Bash
#!/usr/bin/env bash
|
|
# shellcheck disable=SC2034
|
|
|
|
iso_name="KIT_NAME_SHORT-Linux"
|
|
iso_label="KIT_NAME_SHORT_LINUX"
|
|
iso_publisher="SUPPORT_URL"
|
|
iso_application="KIT_NAME_FULL Linux Environment"
|
|
iso_version="$(date +%Y-%m-%d)"
|
|
install_dir="arch"
|
|
bootmodes=('bios.syslinux.mbr' 'bios.syslinux.eltorito' 'uefi-x64.systemd-boot.esp' 'uefi-x64.systemd-boot.eltorito')
|
|
arch="x86_64"
|
|
pacman_conf="pacman.conf"
|
|
file_permissions=(
|
|
["/etc/shadow"]="0:0:0400"
|
|
["/etc/gshadow"]="0:0:0400"
|
|
["/etc/skel/.ssh"]="0:0:0700"
|
|
["/etc/skel/.ssh/id_rsa"]="0:0:0600"
|
|
)
|