├── .gitattributes ├── .gitignore ├── Big_Sir ├── OpenCore │ └── config.plist ├── README.md └── etc │ ├── default │ └── grub │ ├── modprobe.d │ ├── blacklist.conf │ ├── kvm.conf │ └── vfio.conf │ ├── modules │ └── pve │ └── qemu-server │ └── 100.conf ├── OpenCore └── config.plist ├── README.md ├── etc ├── default │ └── grub ├── modprobe.d │ ├── blacklist.conf │ ├── kvm.conf │ └── vfio.conf ├── modules └── pve │ └── qemu-server │ └── 100.conf └── scripts └── checkIOMMUGroups.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/Proxintosh/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/Proxintosh/HEAD/.gitignore -------------------------------------------------------------------------------- /Big_Sir/OpenCore/config.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/Proxintosh/HEAD/Big_Sir/OpenCore/config.plist -------------------------------------------------------------------------------- /Big_Sir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/Proxintosh/HEAD/Big_Sir/README.md -------------------------------------------------------------------------------- /Big_Sir/etc/default/grub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/Proxintosh/HEAD/Big_Sir/etc/default/grub -------------------------------------------------------------------------------- /Big_Sir/etc/modprobe.d/blacklist.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/Proxintosh/HEAD/Big_Sir/etc/modprobe.d/blacklist.conf -------------------------------------------------------------------------------- /Big_Sir/etc/modprobe.d/kvm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/Proxintosh/HEAD/Big_Sir/etc/modprobe.d/kvm.conf -------------------------------------------------------------------------------- /Big_Sir/etc/modprobe.d/vfio.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/Proxintosh/HEAD/Big_Sir/etc/modprobe.d/vfio.conf -------------------------------------------------------------------------------- /Big_Sir/etc/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/Proxintosh/HEAD/Big_Sir/etc/modules -------------------------------------------------------------------------------- /Big_Sir/etc/pve/qemu-server/100.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/Proxintosh/HEAD/Big_Sir/etc/pve/qemu-server/100.conf -------------------------------------------------------------------------------- /OpenCore/config.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/Proxintosh/HEAD/OpenCore/config.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/Proxintosh/HEAD/README.md -------------------------------------------------------------------------------- /etc/default/grub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/Proxintosh/HEAD/etc/default/grub -------------------------------------------------------------------------------- /etc/modprobe.d/blacklist.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/Proxintosh/HEAD/etc/modprobe.d/blacklist.conf -------------------------------------------------------------------------------- /etc/modprobe.d/kvm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/Proxintosh/HEAD/etc/modprobe.d/kvm.conf -------------------------------------------------------------------------------- /etc/modprobe.d/vfio.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/Proxintosh/HEAD/etc/modprobe.d/vfio.conf -------------------------------------------------------------------------------- /etc/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/Proxintosh/HEAD/etc/modules -------------------------------------------------------------------------------- /etc/pve/qemu-server/100.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/Proxintosh/HEAD/etc/pve/qemu-server/100.conf -------------------------------------------------------------------------------- /scripts/checkIOMMUGroups.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/Proxintosh/HEAD/scripts/checkIOMMUGroups.sh --------------------------------------------------------------------------------