mirror of
https://git.suyu.dev/suyu/suyu-os
synced 2024-11-21 06:26:11 -07:00
2dc0dcc04e
- use gamemode - rebranded bootloader to suyuOS - included lastest source code - include user suyu This project is officially made BUT NOT OFFICIALLY SUPPORTED
29 lines
1 KiB
Bash
29 lines
1 KiB
Bash
#!/usr/bin/env bash
|
|
# shellcheck disable=SC2034
|
|
|
|
iso_name="archlinux"
|
|
iso_label="ARCH_$(date --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" +%Y%m)"
|
|
iso_publisher="Arch Linux <https://archlinux.org>"
|
|
iso_application="Arch Linux Live/Rescue DVD"
|
|
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="squashfs"
|
|
airootfs_image_tool_options=('-comp' 'xz' '-Xbcj' 'x86' '-b' '1M' '-Xdict-size' '1M')
|
|
bootstrap_tarball_compression=(gzip -cn9)
|
|
file_permissions=(
|
|
["/etc/shadow"]="0:0:400"
|
|
["/root"]="0:0:750"
|
|
["/root/.automated_script.sh"]="0:0:755"
|
|
["/root/.gnupg"]="0:0:700"
|
|
["/usr/local/bin/choose-mirror"]="0:0:755"
|
|
["/usr/local/bin/Installation_guide"]="0:0:755"
|
|
["/usr/local/bin/livecd-sound"]="0:0:755"
|
|
["/etc/shadow"]="0:0:0400"
|
|
["/etc/gshadow"]="0:0:0400"
|
|
)
|