├── .clang-format ├── .clang-format-ignore ├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── check-format.yml │ └── compilation.yml ├── .gitignore ├── AllowDVDV ├── AllowDVDV.c ├── Makefile ├── imports.lst └── irx_imports.h ├── LICENSE ├── Makefile ├── README.md ├── Rules.make ├── SMB_test.c ├── SMB_test.h ├── chkesr.c ├── config.c ├── docs ├── FileBrowser sort+display modes.txt ├── LAUNCHELF.CNF ├── Multiple USB_mass drives and partitions.txt ├── New resolutions.txt ├── SMB.CNF ├── TODO.txt ├── changes.txt └── keyboard.txt ├── draw.c ├── editor.c ├── elf.c ├── filer.c ├── font_uLE.c ├── hdd.c ├── hdl_info ├── Makefile ├── apa.c ├── apa.h ├── exports.tab ├── hdd.c ├── hdd.h ├── hdl.c ├── hdl.h ├── imports.lst ├── irx_imports.h ├── main.c ├── main.h └── ps2_hdd.h ├── hdl_rpc.c ├── hdl_rpc.h ├── icon.c ├── jpgviewer.c ├── lang.c ├── lang.h ├── launchelf.h ├── loader ├── Makefile ├── Rules.make ├── linkfile └── loader.c ├── main.c ├── makeicon.c ├── oldlibs └── ps2ftpd │ ├── LICENSE │ ├── Makefile │ ├── README │ ├── Rules.make │ ├── changes.txt │ └── src │ ├── FileSystem.c │ ├── FileSystem.h │ ├── FtpClient.c │ ├── FtpClient.h │ ├── FtpCommands.c │ ├── FtpMessages.c │ ├── FtpMessages.h │ ├── FtpServer.c │ ├── FtpServer.h │ ├── Makefile.linux │ ├── imports.lst │ ├── irx_imports.h │ └── main.c ├── pad.c ├── ps2host ├── Makefile ├── hostlink.h ├── imports.lst ├── irx_imports.h ├── net_fio.c ├── net_fio.h ├── net_fsys.c └── ps2host.c ├── ps2smb.h ├── timer.c └── vmc_fs ├── Makefile ├── imports.lst ├── irx_imports.h ├── vmc.h ├── vmc_fat.c ├── vmc_fs.c ├── vmc_io.c ├── vmc_misc.c └── vmc_ps2.c /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-format-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/.clang-format-ignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/check-format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/.github/workflows/check-format.yml -------------------------------------------------------------------------------- /.github/workflows/compilation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/.github/workflows/compilation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/.gitignore -------------------------------------------------------------------------------- /AllowDVDV/AllowDVDV.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/AllowDVDV/AllowDVDV.c -------------------------------------------------------------------------------- /AllowDVDV/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/AllowDVDV/Makefile -------------------------------------------------------------------------------- /AllowDVDV/imports.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/AllowDVDV/imports.lst -------------------------------------------------------------------------------- /AllowDVDV/irx_imports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/AllowDVDV/irx_imports.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/README.md -------------------------------------------------------------------------------- /Rules.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/Rules.make -------------------------------------------------------------------------------- /SMB_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/SMB_test.c -------------------------------------------------------------------------------- /SMB_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/SMB_test.h -------------------------------------------------------------------------------- /chkesr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/chkesr.c -------------------------------------------------------------------------------- /config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/config.c -------------------------------------------------------------------------------- /docs/FileBrowser sort+display modes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/docs/FileBrowser sort+display modes.txt -------------------------------------------------------------------------------- /docs/LAUNCHELF.CNF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/docs/LAUNCHELF.CNF -------------------------------------------------------------------------------- /docs/Multiple USB_mass drives and partitions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/docs/Multiple USB_mass drives and partitions.txt -------------------------------------------------------------------------------- /docs/New resolutions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/docs/New resolutions.txt -------------------------------------------------------------------------------- /docs/SMB.CNF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/docs/SMB.CNF -------------------------------------------------------------------------------- /docs/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/docs/TODO.txt -------------------------------------------------------------------------------- /docs/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/docs/changes.txt -------------------------------------------------------------------------------- /docs/keyboard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/docs/keyboard.txt -------------------------------------------------------------------------------- /draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/draw.c -------------------------------------------------------------------------------- /editor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/editor.c -------------------------------------------------------------------------------- /elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/elf.c -------------------------------------------------------------------------------- /filer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/filer.c -------------------------------------------------------------------------------- /font_uLE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/font_uLE.c -------------------------------------------------------------------------------- /hdd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/hdd.c -------------------------------------------------------------------------------- /hdl_info/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/hdl_info/Makefile -------------------------------------------------------------------------------- /hdl_info/apa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/hdl_info/apa.c -------------------------------------------------------------------------------- /hdl_info/apa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/hdl_info/apa.h -------------------------------------------------------------------------------- /hdl_info/exports.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/hdl_info/exports.tab -------------------------------------------------------------------------------- /hdl_info/hdd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/hdl_info/hdd.c -------------------------------------------------------------------------------- /hdl_info/hdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/hdl_info/hdd.h -------------------------------------------------------------------------------- /hdl_info/hdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/hdl_info/hdl.c -------------------------------------------------------------------------------- /hdl_info/hdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/hdl_info/hdl.h -------------------------------------------------------------------------------- /hdl_info/imports.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/hdl_info/imports.lst -------------------------------------------------------------------------------- /hdl_info/irx_imports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/hdl_info/irx_imports.h -------------------------------------------------------------------------------- /hdl_info/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/hdl_info/main.c -------------------------------------------------------------------------------- /hdl_info/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/hdl_info/main.h -------------------------------------------------------------------------------- /hdl_info/ps2_hdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/hdl_info/ps2_hdd.h -------------------------------------------------------------------------------- /hdl_rpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/hdl_rpc.c -------------------------------------------------------------------------------- /hdl_rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/hdl_rpc.h -------------------------------------------------------------------------------- /icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/icon.c -------------------------------------------------------------------------------- /jpgviewer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/jpgviewer.c -------------------------------------------------------------------------------- /lang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/lang.c -------------------------------------------------------------------------------- /lang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/lang.h -------------------------------------------------------------------------------- /launchelf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/launchelf.h -------------------------------------------------------------------------------- /loader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/loader/Makefile -------------------------------------------------------------------------------- /loader/Rules.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/loader/Rules.make -------------------------------------------------------------------------------- /loader/linkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/loader/linkfile -------------------------------------------------------------------------------- /loader/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/loader/loader.c -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/main.c -------------------------------------------------------------------------------- /makeicon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/makeicon.c -------------------------------------------------------------------------------- /oldlibs/ps2ftpd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/oldlibs/ps2ftpd/LICENSE -------------------------------------------------------------------------------- /oldlibs/ps2ftpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/oldlibs/ps2ftpd/Makefile -------------------------------------------------------------------------------- /oldlibs/ps2ftpd/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/oldlibs/ps2ftpd/README -------------------------------------------------------------------------------- /oldlibs/ps2ftpd/Rules.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/oldlibs/ps2ftpd/Rules.make -------------------------------------------------------------------------------- /oldlibs/ps2ftpd/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/oldlibs/ps2ftpd/changes.txt -------------------------------------------------------------------------------- /oldlibs/ps2ftpd/src/FileSystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/oldlibs/ps2ftpd/src/FileSystem.c -------------------------------------------------------------------------------- /oldlibs/ps2ftpd/src/FileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/oldlibs/ps2ftpd/src/FileSystem.h -------------------------------------------------------------------------------- /oldlibs/ps2ftpd/src/FtpClient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/oldlibs/ps2ftpd/src/FtpClient.c -------------------------------------------------------------------------------- /oldlibs/ps2ftpd/src/FtpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/oldlibs/ps2ftpd/src/FtpClient.h -------------------------------------------------------------------------------- /oldlibs/ps2ftpd/src/FtpCommands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/oldlibs/ps2ftpd/src/FtpCommands.c -------------------------------------------------------------------------------- /oldlibs/ps2ftpd/src/FtpMessages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/oldlibs/ps2ftpd/src/FtpMessages.c -------------------------------------------------------------------------------- /oldlibs/ps2ftpd/src/FtpMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/oldlibs/ps2ftpd/src/FtpMessages.h -------------------------------------------------------------------------------- /oldlibs/ps2ftpd/src/FtpServer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/oldlibs/ps2ftpd/src/FtpServer.c -------------------------------------------------------------------------------- /oldlibs/ps2ftpd/src/FtpServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/oldlibs/ps2ftpd/src/FtpServer.h -------------------------------------------------------------------------------- /oldlibs/ps2ftpd/src/Makefile.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/oldlibs/ps2ftpd/src/Makefile.linux -------------------------------------------------------------------------------- /oldlibs/ps2ftpd/src/imports.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/oldlibs/ps2ftpd/src/imports.lst -------------------------------------------------------------------------------- /oldlibs/ps2ftpd/src/irx_imports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/oldlibs/ps2ftpd/src/irx_imports.h -------------------------------------------------------------------------------- /oldlibs/ps2ftpd/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/oldlibs/ps2ftpd/src/main.c -------------------------------------------------------------------------------- /pad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/pad.c -------------------------------------------------------------------------------- /ps2host/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/ps2host/Makefile -------------------------------------------------------------------------------- /ps2host/hostlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/ps2host/hostlink.h -------------------------------------------------------------------------------- /ps2host/imports.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/ps2host/imports.lst -------------------------------------------------------------------------------- /ps2host/irx_imports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/ps2host/irx_imports.h -------------------------------------------------------------------------------- /ps2host/net_fio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/ps2host/net_fio.c -------------------------------------------------------------------------------- /ps2host/net_fio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/ps2host/net_fio.h -------------------------------------------------------------------------------- /ps2host/net_fsys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/ps2host/net_fsys.c -------------------------------------------------------------------------------- /ps2host/ps2host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/ps2host/ps2host.c -------------------------------------------------------------------------------- /ps2smb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/ps2smb.h -------------------------------------------------------------------------------- /timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/timer.c -------------------------------------------------------------------------------- /vmc_fs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/vmc_fs/Makefile -------------------------------------------------------------------------------- /vmc_fs/imports.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/vmc_fs/imports.lst -------------------------------------------------------------------------------- /vmc_fs/irx_imports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/vmc_fs/irx_imports.h -------------------------------------------------------------------------------- /vmc_fs/vmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/vmc_fs/vmc.h -------------------------------------------------------------------------------- /vmc_fs/vmc_fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/vmc_fs/vmc_fat.c -------------------------------------------------------------------------------- /vmc_fs/vmc_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/vmc_fs/vmc_fs.c -------------------------------------------------------------------------------- /vmc_fs/vmc_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/vmc_fs/vmc_io.c -------------------------------------------------------------------------------- /vmc_fs/vmc_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/vmc_fs/vmc_misc.c -------------------------------------------------------------------------------- /vmc_fs/vmc_ps2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/wLaunchELF/HEAD/vmc_fs/vmc_ps2.c --------------------------------------------------------------------------------