├── .github └── workflows │ └── build.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── iso ├── .gitignore ├── airootfs │ ├── etc │ │ ├── X11 │ │ │ └── xorg.conf.d │ │ │ │ └── 30-touchpad.conf │ │ ├── group │ │ ├── gshadow │ │ ├── hostname │ │ ├── locale.conf │ │ ├── localtime │ │ ├── makepkg.conf │ │ ├── mkinitcpio.conf.d │ │ │ └── archiso.conf │ │ ├── mkinitcpio.d │ │ │ └── linux.preset │ │ ├── modprobe.d │ │ │ └── broadcom-wl.conf │ │ ├── motd │ │ ├── pacman.d │ │ │ └── hooks │ │ │ │ ├── 40-locale-gen.hook │ │ │ │ ├── uncomment-mirrors.hook │ │ │ │ └── zzzz99-remove-custom-hooks-from-airootfs.hook │ │ ├── passwd │ │ ├── resolv.conf │ │ ├── sddm.conf.d │ │ │ └── autologin.conf │ │ ├── shadow │ │ ├── ssh │ │ │ └── sshd_config │ │ ├── sudoers.d │ │ │ └── g_wheel │ │ ├── systemd │ │ │ ├── journald.conf.d │ │ │ │ └── volatile-storage.conf │ │ │ ├── logind.conf.d │ │ │ │ └── do-not-suspend.conf │ │ │ ├── network │ │ │ │ ├── 20-ethernet.network │ │ │ │ ├── 20-wlan.network │ │ │ │ └── 20-wwan.network │ │ │ ├── system-generators │ │ │ │ └── systemd-gpt-auto-generator │ │ │ └── system │ │ │ │ ├── cloud-init.target.wants │ │ │ │ ├── cloud-config.service │ │ │ │ ├── cloud-final.service │ │ │ │ ├── cloud-init-local.service │ │ │ │ └── cloud-init.service │ │ │ │ ├── dbus-org.freedesktop.ModemManager1.service │ │ │ │ ├── dbus-org.freedesktop.network1.service │ │ │ │ ├── dbus-org.freedesktop.resolve1.service │ │ │ │ ├── display-manager.service │ │ │ │ ├── etc-pacman.d-gnupg.mount │ │ │ │ ├── getty@tty1.service.d │ │ │ │ └── autologin.conf │ │ │ │ ├── livecd-alsa-unmuter.service │ │ │ │ ├── livecd-talk.service │ │ │ │ ├── multi-user.target.wants │ │ │ │ ├── ModemManager.service │ │ │ │ ├── NetworkManager.service │ │ │ │ ├── hv_fcopy_daemon.service │ │ │ │ ├── hv_kvp_daemon.service │ │ │ │ ├── hv_vss_daemon.service │ │ │ │ ├── iwd.service │ │ │ │ ├── livecd-talk.service │ │ │ │ ├── pacman-init.service │ │ │ │ ├── qemu-guest-agent.service │ │ │ │ ├── reflector.service │ │ │ │ ├── sshd.service │ │ │ │ ├── systemd-networkd.service │ │ │ │ ├── systemd-resolved.service │ │ │ │ ├── vboxservice.service │ │ │ │ ├── vmtoolsd.service │ │ │ │ └── vmware-vmblock-fuse.service │ │ │ │ ├── network-online.target.wants │ │ │ │ ├── NetworkManager-wait-online.service │ │ │ │ └── systemd-networkd-wait-online.service │ │ │ │ ├── pacman-init.service │ │ │ │ ├── reflector.service.d │ │ │ │ └── archiso.conf │ │ │ │ ├── sockets.target.wants │ │ │ │ └── systemd-networkd.socket │ │ │ │ ├── sound.target.wants │ │ │ │ └── livecd-alsa-unmuter.service │ │ │ │ └── systemd-networkd-wait-online.service.d │ │ │ │ └── wait-for-only-one-interface.conf │ │ ├── vconsole.conf │ │ └── xdg │ │ │ └── reflector │ │ │ └── reflector.conf │ ├── root │ │ ├── .automated_script.sh │ │ └── .zlogin │ └── usr │ │ └── local │ │ ├── bin │ │ ├── Installation_guide │ │ ├── choose-mirror │ │ └── livecd-sound │ │ └── share │ │ └── livecd-sound │ │ └── asound.conf.in ├── bootstrap_packages.x86_64 ├── efiboot │ └── loader │ │ ├── entries │ │ ├── 01-archiso-x86_64-linux.conf │ │ ├── 02-archiso-x86_64-speech-linux.conf │ │ ├── 03-archiso-x86_64-ram-linux.conf │ │ ├── 04-archiso-x86_64-ram-speech-linux.conf │ │ └── 05-archiso-x86_64-compatibility-mode-linux.conf │ │ └── loader.conf ├── grub │ └── grub.cfg ├── packages.x86_64 ├── pacman.conf ├── profiledef.sh ├── public.key └── syslinux │ ├── archiso_head.cfg │ ├── archiso_pxe-linux.cfg │ ├── archiso_pxe.cfg │ ├── archiso_sys-linux.cfg │ ├── archiso_sys.cfg │ ├── archiso_tail.cfg │ ├── splash.png │ └── syslinux.cfg └── tools └── upload_asset.py /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | out/ 2 | work/ 3 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/README.md -------------------------------------------------------------------------------- /iso/.gitignore: -------------------------------------------------------------------------------- 1 | work/ 2 | out/ 3 | -------------------------------------------------------------------------------- /iso/airootfs/etc/X11/xorg.conf.d/30-touchpad.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/airootfs/etc/X11/xorg.conf.d/30-touchpad.conf -------------------------------------------------------------------------------- /iso/airootfs/etc/group: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/airootfs/etc/group -------------------------------------------------------------------------------- /iso/airootfs/etc/gshadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/airootfs/etc/gshadow -------------------------------------------------------------------------------- /iso/airootfs/etc/hostname: -------------------------------------------------------------------------------- 1 | parchiso 2 | -------------------------------------------------------------------------------- /iso/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=C.UTF-8 2 | -------------------------------------------------------------------------------- /iso/airootfs/etc/localtime: -------------------------------------------------------------------------------- 1 | /usr/share/zoneinfo/UTC -------------------------------------------------------------------------------- /iso/airootfs/etc/makepkg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/airootfs/etc/makepkg.conf -------------------------------------------------------------------------------- /iso/airootfs/etc/mkinitcpio.conf.d/archiso.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/airootfs/etc/mkinitcpio.conf.d/archiso.conf -------------------------------------------------------------------------------- /iso/airootfs/etc/mkinitcpio.d/linux.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/airootfs/etc/mkinitcpio.d/linux.preset -------------------------------------------------------------------------------- /iso/airootfs/etc/modprobe.d/broadcom-wl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/airootfs/etc/modprobe.d/broadcom-wl.conf -------------------------------------------------------------------------------- /iso/airootfs/etc/motd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/airootfs/etc/motd -------------------------------------------------------------------------------- /iso/airootfs/etc/pacman.d/hooks/40-locale-gen.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/airootfs/etc/pacman.d/hooks/40-locale-gen.hook -------------------------------------------------------------------------------- /iso/airootfs/etc/pacman.d/hooks/uncomment-mirrors.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/airootfs/etc/pacman.d/hooks/uncomment-mirrors.hook -------------------------------------------------------------------------------- /iso/airootfs/etc/pacman.d/hooks/zzzz99-remove-custom-hooks-from-airootfs.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/airootfs/etc/pacman.d/hooks/zzzz99-remove-custom-hooks-from-airootfs.hook -------------------------------------------------------------------------------- /iso/airootfs/etc/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/airootfs/etc/passwd -------------------------------------------------------------------------------- /iso/airootfs/etc/resolv.conf: -------------------------------------------------------------------------------- 1 | /run/systemd/resolve/stub-resolv.conf -------------------------------------------------------------------------------- /iso/airootfs/etc/sddm.conf.d/autologin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/airootfs/etc/sddm.conf.d/autologin.conf -------------------------------------------------------------------------------- /iso/airootfs/etc/shadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/airootfs/etc/shadow -------------------------------------------------------------------------------- /iso/airootfs/etc/ssh/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/airootfs/etc/ssh/sshd_config -------------------------------------------------------------------------------- /iso/airootfs/etc/sudoers.d/g_wheel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/airootfs/etc/sudoers.d/g_wheel -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/journald.conf.d/volatile-storage.conf: -------------------------------------------------------------------------------- 1 | [Journal] 2 | Storage=volatile 3 | -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/logind.conf.d/do-not-suspend.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/airootfs/etc/systemd/logind.conf.d/do-not-suspend.conf -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/network/20-ethernet.network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/airootfs/etc/systemd/network/20-ethernet.network -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/network/20-wlan.network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/airootfs/etc/systemd/network/20-wlan.network -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/network/20-wwan.network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/airootfs/etc/systemd/network/20-wwan.network -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/system-generators/systemd-gpt-auto-generator: -------------------------------------------------------------------------------- 1 | /dev/null -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-config.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/cloud-config.service -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-final.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/cloud-final.service -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-init-local.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/cloud-init-local.service -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-init.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/cloud-init.service -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/system/dbus-org.freedesktop.ModemManager1.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/ModemManager.service -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/system/dbus-org.freedesktop.network1.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-networkd.service -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/system/dbus-org.freedesktop.resolve1.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-resolved.service -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/system/display-manager.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/sddm.service -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/system/etc-pacman.d-gnupg.mount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/airootfs/etc/systemd/system/etc-pacman.d-gnupg.mount -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/system/getty@tty1.service.d/autologin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/airootfs/etc/systemd/system/getty@tty1.service.d/autologin.conf -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/system/livecd-alsa-unmuter.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/airootfs/etc/systemd/system/livecd-alsa-unmuter.service -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/system/livecd-talk.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/airootfs/etc/systemd/system/livecd-talk.service -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/system/multi-user.target.wants/ModemManager.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/ModemManager.service -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/system/multi-user.target.wants/NetworkManager.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/NetworkManager.service -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/system/multi-user.target.wants/hv_fcopy_daemon.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/hv_fcopy_daemon.service -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/system/multi-user.target.wants/hv_kvp_daemon.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/hv_kvp_daemon.service -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/system/multi-user.target.wants/hv_vss_daemon.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/hv_vss_daemon.service -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/system/multi-user.target.wants/iwd.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/iwd.service -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/system/multi-user.target.wants/livecd-talk.service: -------------------------------------------------------------------------------- 1 | /etc/systemd/system/livecd-talk.service -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/system/multi-user.target.wants/pacman-init.service: -------------------------------------------------------------------------------- 1 | ../pacman-init.service -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/system/multi-user.target.wants/qemu-guest-agent.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/qemu-guest-agent.service -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/system/multi-user.target.wants/reflector.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/reflector.service -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/system/multi-user.target.wants/sshd.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/sshd.service -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/system/multi-user.target.wants/systemd-networkd.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-networkd.service -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/system/multi-user.target.wants/systemd-resolved.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-resolved.service -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/system/multi-user.target.wants/vboxservice.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/vboxservice.service -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/system/multi-user.target.wants/vmtoolsd.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/vmtoolsd.service -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/system/multi-user.target.wants/vmware-vmblock-fuse.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/vmware-vmblock-fuse.service -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/system/network-online.target.wants/NetworkManager-wait-online.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/NetworkManager-wait-online.service -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/system/network-online.target.wants/systemd-networkd-wait-online.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-networkd-wait-online.service -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/system/pacman-init.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/airootfs/etc/systemd/system/pacman-init.service -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/system/reflector.service.d/archiso.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/airootfs/etc/systemd/system/reflector.service.d/archiso.conf -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/system/sockets.target.wants/systemd-networkd.socket: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-networkd.socket -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/system/sound.target.wants/livecd-alsa-unmuter.service: -------------------------------------------------------------------------------- 1 | ../livecd-alsa-unmuter.service -------------------------------------------------------------------------------- /iso/airootfs/etc/systemd/system/systemd-networkd-wait-online.service.d/wait-for-only-one-interface.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/airootfs/etc/systemd/system/systemd-networkd-wait-online.service.d/wait-for-only-one-interface.conf -------------------------------------------------------------------------------- /iso/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | FONT=ter-132n 2 | -------------------------------------------------------------------------------- /iso/airootfs/etc/xdg/reflector/reflector.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/airootfs/etc/xdg/reflector/reflector.conf -------------------------------------------------------------------------------- /iso/airootfs/root/.automated_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/airootfs/root/.automated_script.sh -------------------------------------------------------------------------------- /iso/airootfs/root/.zlogin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/airootfs/root/.zlogin -------------------------------------------------------------------------------- /iso/airootfs/usr/local/bin/Installation_guide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/airootfs/usr/local/bin/Installation_guide -------------------------------------------------------------------------------- /iso/airootfs/usr/local/bin/choose-mirror: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/airootfs/usr/local/bin/choose-mirror -------------------------------------------------------------------------------- /iso/airootfs/usr/local/bin/livecd-sound: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/airootfs/usr/local/bin/livecd-sound -------------------------------------------------------------------------------- /iso/airootfs/usr/local/share/livecd-sound/asound.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/airootfs/usr/local/share/livecd-sound/asound.conf.in -------------------------------------------------------------------------------- /iso/bootstrap_packages.x86_64: -------------------------------------------------------------------------------- 1 | arch-install-scripts 2 | base 3 | -------------------------------------------------------------------------------- /iso/efiboot/loader/entries/01-archiso-x86_64-linux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/efiboot/loader/entries/01-archiso-x86_64-linux.conf -------------------------------------------------------------------------------- /iso/efiboot/loader/entries/02-archiso-x86_64-speech-linux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/efiboot/loader/entries/02-archiso-x86_64-speech-linux.conf -------------------------------------------------------------------------------- /iso/efiboot/loader/entries/03-archiso-x86_64-ram-linux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/efiboot/loader/entries/03-archiso-x86_64-ram-linux.conf -------------------------------------------------------------------------------- /iso/efiboot/loader/entries/04-archiso-x86_64-ram-speech-linux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/efiboot/loader/entries/04-archiso-x86_64-ram-speech-linux.conf -------------------------------------------------------------------------------- /iso/efiboot/loader/entries/05-archiso-x86_64-compatibility-mode-linux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/efiboot/loader/entries/05-archiso-x86_64-compatibility-mode-linux.conf -------------------------------------------------------------------------------- /iso/efiboot/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default 01-archiso-x86_64-linux.conf 3 | beep on 4 | -------------------------------------------------------------------------------- /iso/grub/grub.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/grub/grub.cfg -------------------------------------------------------------------------------- /iso/packages.x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/packages.x86_64 -------------------------------------------------------------------------------- /iso/pacman.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/pacman.conf -------------------------------------------------------------------------------- /iso/profiledef.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/profiledef.sh -------------------------------------------------------------------------------- /iso/public.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/public.key -------------------------------------------------------------------------------- /iso/syslinux/archiso_head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/syslinux/archiso_head.cfg -------------------------------------------------------------------------------- /iso/syslinux/archiso_pxe-linux.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/syslinux/archiso_pxe-linux.cfg -------------------------------------------------------------------------------- /iso/syslinux/archiso_pxe.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/syslinux/archiso_pxe.cfg -------------------------------------------------------------------------------- /iso/syslinux/archiso_sys-linux.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/syslinux/archiso_sys-linux.cfg -------------------------------------------------------------------------------- /iso/syslinux/archiso_sys.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/syslinux/archiso_sys.cfg -------------------------------------------------------------------------------- /iso/syslinux/archiso_tail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/syslinux/archiso_tail.cfg -------------------------------------------------------------------------------- /iso/syslinux/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/syslinux/splash.png -------------------------------------------------------------------------------- /iso/syslinux/syslinux.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/iso/syslinux/syslinux.cfg -------------------------------------------------------------------------------- /tools/upload_asset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parchlinux/parch-iso-template/HEAD/tools/upload_asset.py --------------------------------------------------------------------------------