├── .gitignore ├── INSTALL.md ├── Makefile ├── README.md ├── doc ├── misterarch_logo.png ├── misterarch_logo.svg └── screenshot_ssh.png ├── linux-mister ├── 60-linux.hook ├── PKGBUILD └── config ├── mister-bin ├── .gitignore ├── MiSTer.service ├── PKGBUILD ├── mister-bin.install └── tmpfiles.d ├── mister-menu └── PKGBUILD └── uboot-mister ├── .gitignore ├── 0001-libfdt-fix.patch ├── PKGBUILD └── u-boot.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTerArch/PKGBUILDs/HEAD/.gitignore -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTerArch/PKGBUILDs/HEAD/INSTALL.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTerArch/PKGBUILDs/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTerArch/PKGBUILDs/HEAD/README.md -------------------------------------------------------------------------------- /doc/misterarch_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTerArch/PKGBUILDs/HEAD/doc/misterarch_logo.png -------------------------------------------------------------------------------- /doc/misterarch_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTerArch/PKGBUILDs/HEAD/doc/misterarch_logo.svg -------------------------------------------------------------------------------- /doc/screenshot_ssh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTerArch/PKGBUILDs/HEAD/doc/screenshot_ssh.png -------------------------------------------------------------------------------- /linux-mister/60-linux.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTerArch/PKGBUILDs/HEAD/linux-mister/60-linux.hook -------------------------------------------------------------------------------- /linux-mister/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTerArch/PKGBUILDs/HEAD/linux-mister/PKGBUILD -------------------------------------------------------------------------------- /linux-mister/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTerArch/PKGBUILDs/HEAD/linux-mister/config -------------------------------------------------------------------------------- /mister-bin/.gitignore: -------------------------------------------------------------------------------- 1 | MiSTer_* 2 | -------------------------------------------------------------------------------- /mister-bin/MiSTer.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTerArch/PKGBUILDs/HEAD/mister-bin/MiSTer.service -------------------------------------------------------------------------------- /mister-bin/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTerArch/PKGBUILDs/HEAD/mister-bin/PKGBUILD -------------------------------------------------------------------------------- /mister-bin/mister-bin.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTerArch/PKGBUILDs/HEAD/mister-bin/mister-bin.install -------------------------------------------------------------------------------- /mister-bin/tmpfiles.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTerArch/PKGBUILDs/HEAD/mister-bin/tmpfiles.d -------------------------------------------------------------------------------- /mister-menu/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTerArch/PKGBUILDs/HEAD/mister-menu/PKGBUILD -------------------------------------------------------------------------------- /uboot-mister/.gitignore: -------------------------------------------------------------------------------- 1 | gcc-linaro-* 2 | -------------------------------------------------------------------------------- /uboot-mister/0001-libfdt-fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTerArch/PKGBUILDs/HEAD/uboot-mister/0001-libfdt-fix.patch -------------------------------------------------------------------------------- /uboot-mister/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTerArch/PKGBUILDs/HEAD/uboot-mister/PKGBUILD -------------------------------------------------------------------------------- /uboot-mister/u-boot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiSTerArch/PKGBUILDs/HEAD/uboot-mister/u-boot.txt --------------------------------------------------------------------------------