You've already forked archiso-t2
mirror of
https://github.com/t2linux/archiso-t2.git
synced 2026-04-30 13:49:56 -07:00
24 lines
768 B
Bash
24 lines
768 B
Bash
#!/usr/bin/env bash
|
|
# shellcheck disable=SC2034
|
|
|
|
iso_name="archlinux-t2"
|
|
iso_label="ARCH_$(date +%Y%m)_t2"
|
|
iso_publisher="t2linux <https://t2linux.org>"
|
|
iso_application="Arch Linux Live/Rescue CD for Macs with T2 security chip"
|
|
iso_version="$(date +%Y.%m.%d)-t2"
|
|
install_dir="arch"
|
|
buildmodes=('iso')
|
|
bootmodes=('uefi-x64.grub.esp' 'uefi-x64.grub.eltorito')
|
|
arch="x86_64"
|
|
pacman_conf="pacman.conf"
|
|
airootfs_image_type="squashfs"
|
|
airootfs_image_tool_options=('-comp' 'xz' '-Xbcj' 'x86' '-b' '1M' '-Xdict-size' '1M')
|
|
file_permissions=(
|
|
["/etc/shadow"]="0:0:400"
|
|
["/root"]="0:0:750"
|
|
["/root/.automated_script.sh"]="0:0:755"
|
|
["/usr/local/bin/choose-mirror"]="0:0:755"
|
|
["/usr/local/bin/Installation_guide"]="0:0:755"
|
|
["/usr/local/bin/livecd-sound"]="0:0:755"
|
|
)
|