Go to file
2022-01-30 16:49:28 +01:00
.github/workflows Change the layout of the release .zip 2022-01-30 16:46:36 +01:00
source Only do logging when built with make DEBUG=1 2022-01-26 14:20:54 +01:00
.gitignore Use WUMS 0.2.1 2021-10-31 16:35:33 +01:00
Dockerfile WUMS 0.3.1 support 2022-01-26 14:20:14 +01:00
Makefile Fix building with make DEBUG=1 2022-01-30 13:49:58 +01:00
README.md Fix typo in README 2022-01-30 16:49:28 +01:00

Usage

([ENVIRONMENT] is a placeholder for the actual environment name.)

  1. Copy the file USBSerialLoggingModule.wms into sd:/wiiu/environments/[ENVIRONMENT]/modules.
  2. Requires the WUMSLoader in sd:/wiiu/environments/[ENVIRONMENT]/modules/setup.

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

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

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