├── .github └── workflows │ ├── ci.yml │ └── pr.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── sd_loader ├── .gitignore ├── Makefile └── src │ ├── common.h │ ├── elf_abi.h │ ├── entry.c │ ├── fs_defs.h │ ├── kernel_defs.h │ ├── kernel_hooks.S │ ├── link.ld │ ├── loader_defs.h │ ├── os_defs.h │ └── os_types.h └── src ├── dynamic.c ├── dynamic.h ├── elf_abi.h ├── entry.c ├── import_stub.S ├── imports.h ├── kernel_patches.S └── link.ld /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiu-env/homebrew_launcher_installer/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiu-env/homebrew_launcher_installer/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiu-env/homebrew_launcher_installer/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM wiiuenv/devkitppc:20200810 2 | 3 | WORKDIR project -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiu-env/homebrew_launcher_installer/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiu-env/homebrew_launcher_installer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiu-env/homebrew_launcher_installer/HEAD/README.md -------------------------------------------------------------------------------- /sd_loader/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiu-env/homebrew_launcher_installer/HEAD/sd_loader/.gitignore -------------------------------------------------------------------------------- /sd_loader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiu-env/homebrew_launcher_installer/HEAD/sd_loader/Makefile -------------------------------------------------------------------------------- /sd_loader/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiu-env/homebrew_launcher_installer/HEAD/sd_loader/src/common.h -------------------------------------------------------------------------------- /sd_loader/src/elf_abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiu-env/homebrew_launcher_installer/HEAD/sd_loader/src/elf_abi.h -------------------------------------------------------------------------------- /sd_loader/src/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiu-env/homebrew_launcher_installer/HEAD/sd_loader/src/entry.c -------------------------------------------------------------------------------- /sd_loader/src/fs_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiu-env/homebrew_launcher_installer/HEAD/sd_loader/src/fs_defs.h -------------------------------------------------------------------------------- /sd_loader/src/kernel_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiu-env/homebrew_launcher_installer/HEAD/sd_loader/src/kernel_defs.h -------------------------------------------------------------------------------- /sd_loader/src/kernel_hooks.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiu-env/homebrew_launcher_installer/HEAD/sd_loader/src/kernel_hooks.S -------------------------------------------------------------------------------- /sd_loader/src/link.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiu-env/homebrew_launcher_installer/HEAD/sd_loader/src/link.ld -------------------------------------------------------------------------------- /sd_loader/src/loader_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiu-env/homebrew_launcher_installer/HEAD/sd_loader/src/loader_defs.h -------------------------------------------------------------------------------- /sd_loader/src/os_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiu-env/homebrew_launcher_installer/HEAD/sd_loader/src/os_defs.h -------------------------------------------------------------------------------- /sd_loader/src/os_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiu-env/homebrew_launcher_installer/HEAD/sd_loader/src/os_types.h -------------------------------------------------------------------------------- /src/dynamic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiu-env/homebrew_launcher_installer/HEAD/src/dynamic.c -------------------------------------------------------------------------------- /src/dynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiu-env/homebrew_launcher_installer/HEAD/src/dynamic.h -------------------------------------------------------------------------------- /src/elf_abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiu-env/homebrew_launcher_installer/HEAD/src/elf_abi.h -------------------------------------------------------------------------------- /src/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiu-env/homebrew_launcher_installer/HEAD/src/entry.c -------------------------------------------------------------------------------- /src/import_stub.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiu-env/homebrew_launcher_installer/HEAD/src/import_stub.S -------------------------------------------------------------------------------- /src/imports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiu-env/homebrew_launcher_installer/HEAD/src/imports.h -------------------------------------------------------------------------------- /src/kernel_patches.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiu-env/homebrew_launcher_installer/HEAD/src/kernel_patches.S -------------------------------------------------------------------------------- /src/link.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiu-env/homebrew_launcher_installer/HEAD/src/link.ld --------------------------------------------------------------------------------