Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danielectra/dlppatcher
Wii U plugin to unlock usage of Download Play
https://github.com/danielectra/dlppatcher
Last synced: 21 days ago
JSON representation
Wii U plugin to unlock usage of Download Play
- Host: GitHub
- URL: https://github.com/danielectra/dlppatcher
- Owner: DaniElectra
- License: mit
- Created: 2024-07-10T00:42:58.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-07-15T21:38:08.000Z (4 months ago)
- Last Synced: 2024-07-16T02:05:54.625Z (4 months ago)
- Language: Makefile
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NOTE: This plugin is not needed anymore if you are using Aroma 22 or later
# DLP Patcher
This is a plugin that patches Download Play inside the Wii U to unlock its usage.
## Installation
(`[ENVIRONMENT]` is a placeholder for the actual environment name.)
1. Copy the file `DlpPatcher.wps` into `sd:/wiiu/environments/[ENVIRONMENT]/plugins`.
2. Requires the [WiiUPluginLoaderBackend](https://github.com/wiiu-env/WiiUPluginLoaderBackend) in `sd:/wiiu/environments/[ENVIRONMENT]/modules`.Start the environment (e.g Aroma) and the backend should load the plugin.
## Building
For building you need:
- [wups](https://github.com/Maschell/WiiUPluginSystem)
- [wut](https://github.com/devkitpro/wut)Install them (in this order) according to their README's. Don't forget the dependencies of the libs itself.
Then you should be able to compile via `make` (with no logging) or `make DEBUG=1` (with logging).
## Buildflags
### Logging
Building via `make` only logs errors (via OSReport). To enable logging via the [LoggingModule](https://github.com/wiiu-env/LoggingModule) set `DEBUG` to `1` or `VERBOSE`.
`make` Logs errors only (via OSReport).
`make DEBUG=1` Enables information and error logging via [LoggingModule](https://github.com/wiiu-env/LoggingModule).
`make DEBUG=VERBOSE` Enables verbose information and error logging via [LoggingModule](https://github.com/wiiu-env/LoggingModule).If the [LoggingModule](https://github.com/wiiu-env/LoggingModule) is not present, it'll fallback to UDP (Port 4405) and [CafeOS](https://github.com/wiiu-env/USBSerialLoggingModule) logging.
## 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 dlp-patcher# make
docker run -it --rm -v ${PWD}:/project dlp-patcher make DEBUG=1# make clean
docker run -it --rm -v ${PWD}:/project dlp-patcher make clean
```## Format the code via docker
`docker run --rm -v ${PWD}:/src wiiuenv/clang-format:13.0.0-2 -r ./src -i`