├── Makefile ├── PS4-Linux-Loader.bin ├── README.md ├── kexec.bin └── source ├── defines.h ├── embed.s └── main.c /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinbreiz/PS4-Linux-Loader/HEAD/Makefile -------------------------------------------------------------------------------- /PS4-Linux-Loader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinbreiz/PS4-Linux-Loader/HEAD/PS4-Linux-Loader.bin -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinbreiz/PS4-Linux-Loader/HEAD/README.md -------------------------------------------------------------------------------- /kexec.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinbreiz/PS4-Linux-Loader/HEAD/kexec.bin -------------------------------------------------------------------------------- /source/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinbreiz/PS4-Linux-Loader/HEAD/source/defines.h -------------------------------------------------------------------------------- /source/embed.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinbreiz/PS4-Linux-Loader/HEAD/source/embed.s -------------------------------------------------------------------------------- /source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinbreiz/PS4-Linux-Loader/HEAD/source/main.c --------------------------------------------------------------------------------