Go to file
Maschell 05cc2a99c7 Fix quick starting into applets 2022-01-01 12:09:31 +01:00
.github/workflows Update Dockerfile and CI, add docker instruction to README 2021-12-29 17:25:37 +01:00
data Add a tiramisu icon 2021-12-29 18:01:28 +01:00
source Fix quick starting into applets 2022-01-01 12:09:31 +01:00
.gitignore Update .gitignore 2021-12-29 17:33:27 +01:00
Dockerfile Update Dockerfile and CI, add docker instruction to README 2021-12-29 17:25:37 +01:00
Makefile Fix quick starting into applets 2022-01-01 12:09:31 +01:00
README.md Update the README formatting 2021-12-31 15:27:59 +01:00

README.md

AutobootModule

This is a bootmenu targetted to be loaded with the EnvironmentLoader. It allows you to boot into the Wii U Menu, Homebrew Channel, vWii System Menu or vWii Homebrew Channel.

Usage

Place the 99_autoboot in the [ENVIRONMENT]/modules/setup folder and run the EnvironmentLoader.

  • Requires the HBLInstallerWrapper in the [ENVIRONMENT]/modules/setup folder.
  • Requires the homebrew_launcher.elf in sd:/wiiu/apps/homebrew_launcher/homebrew_launcher.elf.

Hold START (+) on the Gamepad while launching this Environment to force open the Autoboot menu.

Press Y on the autoboot menu to set autobooting to this titles. To revert it, force open the menu by holding START (+) while launching the environment.

Features

  • Boot into Wii U Menu, Homebrew Channel, vWii System Menu or vWii Homebrew Channel.
  • Full support of Quick Boot Menu of the Gamepad when coldbooting
  • Set a autoboot title

Building

For building you just need wut installed, then use the make command.

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 autobootmodule-builder

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

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

Credits

  • GaryOderNichts
  • Maschell