Port of the homebrew_launcher installer
Go to file
Maschell 8da91137af Fix launching various applications such as the Amiibo Setting when not running the homebrew launcher before. 2022-01-05 16:20:42 +01:00
.github/workflows Add github action workflows 2020-11-27 14:02:16 +01:00
sd_loader Support for loading from PayloadFromRPX entrypoint 2020-12-05 11:32:47 +01:00
src Fix launching various applications such as the Amiibo Setting when not running the homebrew launcher before. 2022-01-05 16:20:42 +01:00
.gitignore Support for loading from PayloadFromRPX entrypoint 2020-12-05 11:32:47 +01:00
Dockerfile Add a dockerfile for building via docker 2020-11-27 14:02:05 +01:00
LICENSE first commit 2019-01-13 14:45:36 +01:00
Makefile Support for loading from PayloadFromRPX entrypoint 2020-12-05 11:32:47 +01:00
README.md Add a dockerfile for building via docker 2020-11-27 14:02:05 +01:00

README.md

Homebrew Launcher installer

Straight port from the offical homebrew_launcher repo

Usage

Meant to be used with the payload_loader.
Put the created payload.elf on the sd card where the payload_loader can find it. Check out the repository of the loader for further instructions.

Still requires the homebrew_launcher.elf to be placed on the sd card. Checkout the official hbl repo for further instructions.

Building

In order to be able to compile this, you need to have installed devkitPPC with the following pacman packages installed.

pacman -Syu devkitPPC

Make sure the following environment variables are set:

DEVKITPRO=/opt/devkitpro
DEVKITPPC=/opt/devkitpro/devkitPPC

The command make should produce a payload.elf, meant to be used with the payload_loader

Building using the Dockerfile

It's possible to use a docker image for building. This way you don't need anything installed on your host system.

# Build docker image (only needed once)
docker build . -t hbl-installer-builder

# make 
docker run -it --rm -v ${PWD}:/project hbl-installer-builder make

# make clean
docker run -it --rm -v ${PWD}:/project hbl-installer-builder make clean

Credits