mirror of
https://github.com/wiiu-env/wiiu-nanddumper-payload.git
synced 2025-02-18 04:06:24 +01:00
20 lines
522 B
Markdown
20 lines
522 B
Markdown
![]() |
# wiiu-nanddumper
|
||
|
`payload.elf` version of the [original nanddumper](https://github.com/koolkdev/wiiu-nanddumper).
|
||
|
|
||
|
|
||
|
## 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 wiiu-nanddumper-builder
|
||
|
|
||
|
# make
|
||
|
docker run -it --rm -v ${PWD}:/project wiiu-nanddumper-builder make
|
||
|
|
||
|
# make clean
|
||
|
docker run -it --rm -v ${PWD}:/project wiiu-nanddumper-builder make clean
|
||
|
```
|
||
|
|