├── .gitignore ├── .gitmodules ├── ChangeLog ├── FUNDING.yml ├── LICENSE ├── README.md ├── VERSION ├── airootfs ├── etc │ ├── X11 │ │ └── xinit │ │ │ └── xinitrc │ ├── fstab │ ├── hostname │ ├── initcpio │ │ ├── hooks │ │ │ └── findroot │ │ └── install │ │ │ ├── findroot │ │ │ └── sysrescuecfg │ ├── iptables │ │ ├── ip6tables.rules │ │ └── iptables.rules │ ├── issue │ ├── locale.conf │ ├── machine-id │ ├── mke2fs.conf │ ├── modprobe.d │ │ ├── broadcom-wl.conf │ │ └── sysrescue.conf │ ├── nanorc │ ├── os-release │ ├── pacman-rolling.conf │ ├── pacman-snapshot.conf │ ├── profile.d │ │ └── env-path.sh │ ├── skel │ │ └── .bashrc │ ├── sysctl.d │ │ └── sysrescue.conf │ ├── systemd │ │ ├── network │ │ │ ├── 20-ethernet.network │ │ │ └── 20-wireless.network │ │ ├── scripts │ │ │ ├── choose-mirror │ │ │ ├── sysrescue-autorun │ │ │ ├── sysrescue-initialize-prenet │ │ │ └── sysrescue-initialize-whilenet │ │ └── system │ │ │ ├── NetworkManager-wait-online.service.d │ │ │ └── sysrescue.conf │ │ │ ├── choose-mirror.service │ │ │ ├── getty@.service.d │ │ │ └── 10-autologin.conf │ │ │ ├── serial-getty@.service.d │ │ │ └── 10-autologin.conf │ │ │ ├── sysrescue-autorun.service │ │ │ ├── sysrescue-initialize-prenet.service │ │ │ ├── sysrescue-initialize-whilenet.service │ │ │ └── var-lib-pacman\x2drolling-local.mount │ ├── tmpfiles.d │ │ ├── gui_autostart.conf │ │ └── ssh_authorized_keys.conf │ ├── vconsole.conf │ └── xdg │ │ └── menus │ │ ├── xfce-applications.menu │ │ └── xfce-applications.orig ├── opt │ └── firefox-esr │ │ ├── defaults │ │ └── pref │ │ │ └── local-settings.js │ │ ├── distribution │ │ └── policies.json │ │ └── sysrescue.js ├── root │ ├── .Xauthority │ ├── .config │ │ ├── mimeapps.list │ │ ├── remmina │ │ │ └── remmina.pref │ │ ├── systemd │ │ │ └── user │ │ │ │ ├── pulseaudio.service.d │ │ │ │ └── sysrescue.conf │ │ │ │ └── pulseaudio.socket.d │ │ │ │ └── sysrescue.conf │ │ └── xfce4 │ │ │ ├── helpers.rc │ │ │ ├── panel │ │ │ ├── launcher-11 │ │ │ │ └── 15867834691.desktop │ │ │ ├── launcher-2 │ │ │ │ └── 15552315631.desktop │ │ │ ├── launcher-3 │ │ │ │ └── 15552315792.desktop │ │ │ ├── launcher-4 │ │ │ │ └── 15552315973.desktop │ │ │ └── launcher-5 │ │ │ │ └── 15552316104.desktop │ │ │ ├── terminal │ │ │ └── terminalrc │ │ │ └── xfconf │ │ │ └── xfce-perchannel-xml │ │ │ ├── keyboards.xml │ │ │ ├── thunar.xml │ │ │ ├── xfce4-desktop.xml │ │ │ ├── xfce4-keyboard-shortcuts.xml │ │ │ ├── xfce4-notifyd.xml │ │ │ ├── xfce4-panel.xml │ │ │ ├── xfce4-power-manager.xml │ │ │ ├── xfce4-session.xml │ │ │ └── xfwm4.xml │ ├── .hushlogin │ ├── .local │ │ └── share │ │ │ └── xfce4 │ │ │ └── helpers │ │ │ └── custom-WebBrowser.desktop │ └── customize_airootfs.sh └── usr │ ├── bin │ ├── check-binaries.sh │ ├── cowpacman2srm │ ├── pacman-faketime │ ├── setkmap │ ├── sysrescue-configuration.lua │ └── yay │ ├── lib │ └── udev │ │ └── rules.d │ │ ├── 09-nomdlvm.rules │ │ └── 61-nomdlvm.rules │ └── share │ └── sysrescue │ ├── bin │ ├── load-srm │ ├── manual │ ├── mountall │ ├── reverse_ssh │ ├── sysrescue-customize │ └── yay-prepare │ └── template │ ├── autoterminal.service │ └── serial-autoterminal.service ├── autorun └── .gitkeep ├── docker ├── Dockerfile-build-iso-x86_64 ├── build-docker-image.sh └── build-iso-image.sh ├── efiboot └── grub │ ├── custom.cfg │ ├── font.pf2 │ ├── grubinit.cfg │ ├── grubsrcd.cfg │ └── loopback.cfg ├── isolinux └── isolinux.cfg ├── mirrorlist-snapshot-i686 ├── mirrorlist-snapshot-x86_64 ├── mkinitcpio.conf ├── packages ├── pacman.conf ├── patches ├── archiso-v43-01-squashfs-options.patch ├── archiso-v43-02-fix-pxeboot-dhcp.patch ├── archiso-v43-03-fix-pxeboot-multiple-interfaces.patch ├── archiso-v43-04-increase-cow-spacesize.patch ├── archiso-v43-05-add-loadsrm.patch ├── archiso-v43-06-copytoram.patch ├── archiso-v43-07-yaml-config.patch ├── archiso-v43-08-glibc-fix-dns.patch └── archiso-v43-09-pxe_http.patch ├── srm └── .gitkeep ├── syslinux ├── syslinux.cfg ├── sysresccd.cfg ├── sysresccd_custom.cfg ├── sysresccd_head.cfg ├── sysresccd_pxe.cfg ├── sysresccd_sys.cfg └── sysresccd_tail.cfg └── sysrescue.d ├── 100-defaults.yaml └── 999-custom.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | work 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/.gitmodules -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/ChangeLog -------------------------------------------------------------------------------- /FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/FUNDING.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 12.00+2.3.1 2 | -------------------------------------------------------------------------------- /airootfs/etc/X11/xinit/xinitrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/etc/X11/xinit/xinitrc -------------------------------------------------------------------------------- /airootfs/etc/fstab: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /airootfs/etc/hostname: -------------------------------------------------------------------------------- 1 | sysrescue 2 | -------------------------------------------------------------------------------- /airootfs/etc/initcpio/hooks/findroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/etc/initcpio/hooks/findroot -------------------------------------------------------------------------------- /airootfs/etc/initcpio/install/findroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/etc/initcpio/install/findroot -------------------------------------------------------------------------------- /airootfs/etc/initcpio/install/sysrescuecfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/etc/initcpio/install/sysrescuecfg -------------------------------------------------------------------------------- /airootfs/etc/iptables/ip6tables.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/etc/iptables/ip6tables.rules -------------------------------------------------------------------------------- /airootfs/etc/iptables/iptables.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/etc/iptables/iptables.rules -------------------------------------------------------------------------------- /airootfs/etc/issue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/etc/issue -------------------------------------------------------------------------------- /airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=en_US.UTF-8 2 | -------------------------------------------------------------------------------- /airootfs/etc/machine-id: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /airootfs/etc/mke2fs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/etc/mke2fs.conf -------------------------------------------------------------------------------- /airootfs/etc/modprobe.d/broadcom-wl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/etc/modprobe.d/broadcom-wl.conf -------------------------------------------------------------------------------- /airootfs/etc/modprobe.d/sysrescue.conf: -------------------------------------------------------------------------------- 1 | softdep tg3 pre: broadcom 2 | -------------------------------------------------------------------------------- /airootfs/etc/nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/etc/nanorc -------------------------------------------------------------------------------- /airootfs/etc/os-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/etc/os-release -------------------------------------------------------------------------------- /airootfs/etc/pacman-rolling.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/etc/pacman-rolling.conf -------------------------------------------------------------------------------- /airootfs/etc/pacman-snapshot.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/etc/pacman-snapshot.conf -------------------------------------------------------------------------------- /airootfs/etc/profile.d/env-path.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/etc/profile.d/env-path.sh -------------------------------------------------------------------------------- /airootfs/etc/skel/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/etc/skel/.bashrc -------------------------------------------------------------------------------- /airootfs/etc/sysctl.d/sysrescue.conf: -------------------------------------------------------------------------------- 1 | kernel.printk = 1 4 1 7 2 | -------------------------------------------------------------------------------- /airootfs/etc/systemd/network/20-ethernet.network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/etc/systemd/network/20-ethernet.network -------------------------------------------------------------------------------- /airootfs/etc/systemd/network/20-wireless.network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/etc/systemd/network/20-wireless.network -------------------------------------------------------------------------------- /airootfs/etc/systemd/scripts/choose-mirror: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/etc/systemd/scripts/choose-mirror -------------------------------------------------------------------------------- /airootfs/etc/systemd/scripts/sysrescue-autorun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/etc/systemd/scripts/sysrescue-autorun -------------------------------------------------------------------------------- /airootfs/etc/systemd/scripts/sysrescue-initialize-prenet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/etc/systemd/scripts/sysrescue-initialize-prenet -------------------------------------------------------------------------------- /airootfs/etc/systemd/scripts/sysrescue-initialize-whilenet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/etc/systemd/scripts/sysrescue-initialize-whilenet -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/NetworkManager-wait-online.service.d/sysrescue.conf: -------------------------------------------------------------------------------- 1 | [Service] 2 | Environment=NM_ONLINE_TIMEOUT=20 3 | -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/choose-mirror.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/etc/systemd/system/choose-mirror.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/getty@.service.d/10-autologin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/etc/systemd/system/getty@.service.d/10-autologin.conf -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/serial-getty@.service.d/10-autologin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/etc/systemd/system/serial-getty@.service.d/10-autologin.conf -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/sysrescue-autorun.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/etc/systemd/system/sysrescue-autorun.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/sysrescue-initialize-prenet.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/etc/systemd/system/sysrescue-initialize-prenet.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/sysrescue-initialize-whilenet.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/etc/systemd/system/sysrescue-initialize-whilenet.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/var-lib-pacman\x2drolling-local.mount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/etc/systemd/system/var-lib-pacman\x2drolling-local.mount -------------------------------------------------------------------------------- /airootfs/etc/tmpfiles.d/gui_autostart.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/etc/tmpfiles.d/gui_autostart.conf -------------------------------------------------------------------------------- /airootfs/etc/tmpfiles.d/ssh_authorized_keys.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/etc/tmpfiles.d/ssh_authorized_keys.conf -------------------------------------------------------------------------------- /airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | FONT=eurlatgr 2 | -------------------------------------------------------------------------------- /airootfs/etc/xdg/menus/xfce-applications.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/etc/xdg/menus/xfce-applications.menu -------------------------------------------------------------------------------- /airootfs/etc/xdg/menus/xfce-applications.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/etc/xdg/menus/xfce-applications.orig -------------------------------------------------------------------------------- /airootfs/opt/firefox-esr/defaults/pref/local-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/opt/firefox-esr/defaults/pref/local-settings.js -------------------------------------------------------------------------------- /airootfs/opt/firefox-esr/distribution/policies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/opt/firefox-esr/distribution/policies.json -------------------------------------------------------------------------------- /airootfs/opt/firefox-esr/sysrescue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/opt/firefox-esr/sysrescue.js -------------------------------------------------------------------------------- /airootfs/root/.Xauthority: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /airootfs/root/.config/mimeapps.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/root/.config/mimeapps.list -------------------------------------------------------------------------------- /airootfs/root/.config/remmina/remmina.pref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/root/.config/remmina/remmina.pref -------------------------------------------------------------------------------- /airootfs/root/.config/systemd/user/pulseaudio.service.d/sysrescue.conf: -------------------------------------------------------------------------------- 1 | [Unit] 2 | ConditionUser= 3 | -------------------------------------------------------------------------------- /airootfs/root/.config/systemd/user/pulseaudio.socket.d/sysrescue.conf: -------------------------------------------------------------------------------- 1 | [Unit] 2 | ConditionUser= 3 | -------------------------------------------------------------------------------- /airootfs/root/.config/xfce4/helpers.rc: -------------------------------------------------------------------------------- 1 | WebBrowser=epiphany 2 | -------------------------------------------------------------------------------- /airootfs/root/.config/xfce4/panel/launcher-11/15867834691.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/root/.config/xfce4/panel/launcher-11/15867834691.desktop -------------------------------------------------------------------------------- /airootfs/root/.config/xfce4/panel/launcher-2/15552315631.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/root/.config/xfce4/panel/launcher-2/15552315631.desktop -------------------------------------------------------------------------------- /airootfs/root/.config/xfce4/panel/launcher-3/15552315792.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/root/.config/xfce4/panel/launcher-3/15552315792.desktop -------------------------------------------------------------------------------- /airootfs/root/.config/xfce4/panel/launcher-4/15552315973.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/root/.config/xfce4/panel/launcher-4/15552315973.desktop -------------------------------------------------------------------------------- /airootfs/root/.config/xfce4/panel/launcher-5/15552316104.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/root/.config/xfce4/panel/launcher-5/15552316104.desktop -------------------------------------------------------------------------------- /airootfs/root/.config/xfce4/terminal/terminalrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/root/.config/xfce4/terminal/terminalrc -------------------------------------------------------------------------------- /airootfs/root/.config/xfce4/xfconf/xfce-perchannel-xml/keyboards.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/root/.config/xfce4/xfconf/xfce-perchannel-xml/keyboards.xml -------------------------------------------------------------------------------- /airootfs/root/.config/xfce4/xfconf/xfce-perchannel-xml/thunar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/root/.config/xfce4/xfconf/xfce-perchannel-xml/thunar.xml -------------------------------------------------------------------------------- /airootfs/root/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/root/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml -------------------------------------------------------------------------------- /airootfs/root/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/root/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml -------------------------------------------------------------------------------- /airootfs/root/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/root/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml -------------------------------------------------------------------------------- /airootfs/root/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/root/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml -------------------------------------------------------------------------------- /airootfs/root/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/root/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml -------------------------------------------------------------------------------- /airootfs/root/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/root/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml -------------------------------------------------------------------------------- /airootfs/root/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/root/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml -------------------------------------------------------------------------------- /airootfs/root/.hushlogin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /airootfs/root/.local/share/xfce4/helpers/custom-WebBrowser.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/root/.local/share/xfce4/helpers/custom-WebBrowser.desktop -------------------------------------------------------------------------------- /airootfs/root/customize_airootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/root/customize_airootfs.sh -------------------------------------------------------------------------------- /airootfs/usr/bin/check-binaries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/usr/bin/check-binaries.sh -------------------------------------------------------------------------------- /airootfs/usr/bin/cowpacman2srm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/usr/bin/cowpacman2srm -------------------------------------------------------------------------------- /airootfs/usr/bin/pacman-faketime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/usr/bin/pacman-faketime -------------------------------------------------------------------------------- /airootfs/usr/bin/setkmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/usr/bin/setkmap -------------------------------------------------------------------------------- /airootfs/usr/bin/sysrescue-configuration.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/usr/bin/sysrescue-configuration.lua -------------------------------------------------------------------------------- /airootfs/usr/bin/yay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/usr/bin/yay -------------------------------------------------------------------------------- /airootfs/usr/lib/udev/rules.d/09-nomdlvm.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/usr/lib/udev/rules.d/09-nomdlvm.rules -------------------------------------------------------------------------------- /airootfs/usr/lib/udev/rules.d/61-nomdlvm.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/usr/lib/udev/rules.d/61-nomdlvm.rules -------------------------------------------------------------------------------- /airootfs/usr/share/sysrescue/bin/load-srm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/usr/share/sysrescue/bin/load-srm -------------------------------------------------------------------------------- /airootfs/usr/share/sysrescue/bin/manual: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/usr/share/sysrescue/bin/manual -------------------------------------------------------------------------------- /airootfs/usr/share/sysrescue/bin/mountall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/usr/share/sysrescue/bin/mountall -------------------------------------------------------------------------------- /airootfs/usr/share/sysrescue/bin/reverse_ssh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/usr/share/sysrescue/bin/reverse_ssh -------------------------------------------------------------------------------- /airootfs/usr/share/sysrescue/bin/sysrescue-customize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/usr/share/sysrescue/bin/sysrescue-customize -------------------------------------------------------------------------------- /airootfs/usr/share/sysrescue/bin/yay-prepare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/usr/share/sysrescue/bin/yay-prepare -------------------------------------------------------------------------------- /airootfs/usr/share/sysrescue/template/autoterminal.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/usr/share/sysrescue/template/autoterminal.service -------------------------------------------------------------------------------- /airootfs/usr/share/sysrescue/template/serial-autoterminal.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/airootfs/usr/share/sysrescue/template/serial-autoterminal.service -------------------------------------------------------------------------------- /autorun/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/Dockerfile-build-iso-x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/docker/Dockerfile-build-iso-x86_64 -------------------------------------------------------------------------------- /docker/build-docker-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/docker/build-docker-image.sh -------------------------------------------------------------------------------- /docker/build-iso-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/docker/build-iso-image.sh -------------------------------------------------------------------------------- /efiboot/grub/custom.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/efiboot/grub/custom.cfg -------------------------------------------------------------------------------- /efiboot/grub/font.pf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/efiboot/grub/font.pf2 -------------------------------------------------------------------------------- /efiboot/grub/grubinit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/efiboot/grub/grubinit.cfg -------------------------------------------------------------------------------- /efiboot/grub/grubsrcd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/efiboot/grub/grubsrcd.cfg -------------------------------------------------------------------------------- /efiboot/grub/loopback.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/efiboot/grub/loopback.cfg -------------------------------------------------------------------------------- /isolinux/isolinux.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/isolinux/isolinux.cfg -------------------------------------------------------------------------------- /mirrorlist-snapshot-i686: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/mirrorlist-snapshot-i686 -------------------------------------------------------------------------------- /mirrorlist-snapshot-x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/mirrorlist-snapshot-x86_64 -------------------------------------------------------------------------------- /mkinitcpio.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/mkinitcpio.conf -------------------------------------------------------------------------------- /packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/packages -------------------------------------------------------------------------------- /pacman.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/pacman.conf -------------------------------------------------------------------------------- /patches/archiso-v43-01-squashfs-options.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/patches/archiso-v43-01-squashfs-options.patch -------------------------------------------------------------------------------- /patches/archiso-v43-02-fix-pxeboot-dhcp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/patches/archiso-v43-02-fix-pxeboot-dhcp.patch -------------------------------------------------------------------------------- /patches/archiso-v43-03-fix-pxeboot-multiple-interfaces.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/patches/archiso-v43-03-fix-pxeboot-multiple-interfaces.patch -------------------------------------------------------------------------------- /patches/archiso-v43-04-increase-cow-spacesize.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/patches/archiso-v43-04-increase-cow-spacesize.patch -------------------------------------------------------------------------------- /patches/archiso-v43-05-add-loadsrm.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/patches/archiso-v43-05-add-loadsrm.patch -------------------------------------------------------------------------------- /patches/archiso-v43-06-copytoram.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/patches/archiso-v43-06-copytoram.patch -------------------------------------------------------------------------------- /patches/archiso-v43-07-yaml-config.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/patches/archiso-v43-07-yaml-config.patch -------------------------------------------------------------------------------- /patches/archiso-v43-08-glibc-fix-dns.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/patches/archiso-v43-08-glibc-fix-dns.patch -------------------------------------------------------------------------------- /patches/archiso-v43-09-pxe_http.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/patches/archiso-v43-09-pxe_http.patch -------------------------------------------------------------------------------- /srm/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /syslinux/syslinux.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/syslinux/syslinux.cfg -------------------------------------------------------------------------------- /syslinux/sysresccd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/syslinux/sysresccd.cfg -------------------------------------------------------------------------------- /syslinux/sysresccd_custom.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/syslinux/sysresccd_custom.cfg -------------------------------------------------------------------------------- /syslinux/sysresccd_head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/syslinux/sysresccd_head.cfg -------------------------------------------------------------------------------- /syslinux/sysresccd_pxe.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/syslinux/sysresccd_pxe.cfg -------------------------------------------------------------------------------- /syslinux/sysresccd_sys.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/syslinux/sysresccd_sys.cfg -------------------------------------------------------------------------------- /syslinux/sysresccd_tail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/syslinux/sysresccd_tail.cfg -------------------------------------------------------------------------------- /sysrescue.d/100-defaults.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/sysrescue.d/100-defaults.yaml -------------------------------------------------------------------------------- /sysrescue.d/999-custom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nchevsky/systemrescue-zfs/HEAD/sysrescue.d/999-custom.yaml --------------------------------------------------------------------------------