You've already forked EndeavourOS-ISO-t2
mirror of
https://github.com/t2linux/EndeavourOS-ISO-t2.git
synced 2026-04-30 13:51:13 -07:00
31 lines
926 B
Bash
31 lines
926 B
Bash
#!/usr/bin/env bash
|
|
# shellcheck disable=SC2034
|
|
|
|
iso_name="EndeavourOS_Titan"
|
|
iso_label="EOS_$(date +%Y%m)"
|
|
iso_publisher="EndeavourOS <https://endeavouros.com>"
|
|
iso_application="EndeavourOS Live/Rescue CD"
|
|
iso_version="$(date --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" +%Y.%m.%d)"
|
|
install_dir="arch"
|
|
buildmodes=('iso')
|
|
quiet="n"
|
|
work_dir="work"
|
|
out_dir="out"
|
|
bootmodes=('bios.syslinux' 'uefi.systemd-boot')
|
|
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"
|
|
["/etc/gshadow"]="0:0:400"
|
|
["/root"]="0:0:750"
|
|
["/root/.automated_script.sh"]="0:0:755"
|
|
["/etc/sudoers.d"]="0:0:750"
|
|
["/etc/sudoers.d/g_wheel"]="0:0:440"
|
|
["/usr/bin/intel-legacy-gpu-installer"]="0:0:755"
|
|
["/usr/bin/broadcom-wl_detect.sh"]="0:0:755"
|
|
["/usr/bin/broadcom-wl_enable.sh"]="0:0:755"
|
|
|
|
)
|