├── README.md ├── boot_linux.sh ├── conf ├── imx_usb.conf └── switch.conf ├── coreboot ├── cbfs.bin └── coreboot.rom ├── dtb └── tegra210-nintendo-switch.dtb ├── image └── switch.scr.img ├── imx_usb ├── kernel └── Image.gz └── shofel2.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kombosorg/shofel2_linux/HEAD/README.md -------------------------------------------------------------------------------- /boot_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kombosorg/shofel2_linux/HEAD/boot_linux.sh -------------------------------------------------------------------------------- /conf/imx_usb.conf: -------------------------------------------------------------------------------- 1 | #vid:pid, config_file 2 | 0x0955:0x701a, switch.conf 3 | -------------------------------------------------------------------------------- /conf/switch.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kombosorg/shofel2_linux/HEAD/conf/switch.conf -------------------------------------------------------------------------------- /coreboot/cbfs.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kombosorg/shofel2_linux/HEAD/coreboot/cbfs.bin -------------------------------------------------------------------------------- /coreboot/coreboot.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kombosorg/shofel2_linux/HEAD/coreboot/coreboot.rom -------------------------------------------------------------------------------- /dtb/tegra210-nintendo-switch.dtb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kombosorg/shofel2_linux/HEAD/dtb/tegra210-nintendo-switch.dtb -------------------------------------------------------------------------------- /image/switch.scr.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kombosorg/shofel2_linux/HEAD/image/switch.scr.img -------------------------------------------------------------------------------- /imx_usb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kombosorg/shofel2_linux/HEAD/imx_usb -------------------------------------------------------------------------------- /kernel/Image.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kombosorg/shofel2_linux/HEAD/kernel/Image.gz -------------------------------------------------------------------------------- /shofel2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kombosorg/shofel2_linux/HEAD/shofel2.py --------------------------------------------------------------------------------