├── .gitignore ├── COPYING.MIT ├── README.md ├── patches └── linux │ └── 0001-Add-Xen-overlay-for-the-Pi-4.patch ├── regenerate_ssh_host_keys.service ├── rpixen.sh ├── toolchain-aarch64-linux-gnu.sh ├── toolchain-arm-linux-gnueabihf.sh └── ubuntu-base-prep.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dornerworks/xen-rpi4-builder/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dornerworks/xen-rpi4-builder/HEAD/COPYING.MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dornerworks/xen-rpi4-builder/HEAD/README.md -------------------------------------------------------------------------------- /patches/linux/0001-Add-Xen-overlay-for-the-Pi-4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dornerworks/xen-rpi4-builder/HEAD/patches/linux/0001-Add-Xen-overlay-for-the-Pi-4.patch -------------------------------------------------------------------------------- /regenerate_ssh_host_keys.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dornerworks/xen-rpi4-builder/HEAD/regenerate_ssh_host_keys.service -------------------------------------------------------------------------------- /rpixen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dornerworks/xen-rpi4-builder/HEAD/rpixen.sh -------------------------------------------------------------------------------- /toolchain-aarch64-linux-gnu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dornerworks/xen-rpi4-builder/HEAD/toolchain-aarch64-linux-gnu.sh -------------------------------------------------------------------------------- /toolchain-arm-linux-gnueabihf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dornerworks/xen-rpi4-builder/HEAD/toolchain-arm-linux-gnueabihf.sh -------------------------------------------------------------------------------- /ubuntu-base-prep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dornerworks/xen-rpi4-builder/HEAD/ubuntu-base-prep.sh --------------------------------------------------------------------------------