mirror of
https://github.com/hacks-guide/Guide-WiiU.git
synced 2026-04-24 14:56:51 -05:00
Merge 9d93e2469e into 5d3fc7b842
This commit is contained in:
commit
95826692a0
20
.markdownlint.json
Normal file
20
.markdownlint.json
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"MD003": { "style": "atx" },
|
||||
"MD004": { "style": "asterisk"},
|
||||
"MD007": { "indent": 4 },
|
||||
"MD013": false,
|
||||
"MD024": false,
|
||||
"MD026": { "punctuation": ".,;:。,;:"},
|
||||
"MD029": { "style": "one" },
|
||||
"MD033": { "allowed_elements": ["br", "u"], "table_allowed_elements": ["hr", "br", "ul", "li", "u"]},
|
||||
"MD035": { "style": "---" },
|
||||
"MD036": false,
|
||||
"MD040": false,
|
||||
"MD045": false,
|
||||
"MD046": { "style": "fenced" },
|
||||
"MD048": { "style": "backtick" },
|
||||
"MD049": { "style": "asterisk" },
|
||||
"MD050": { "style": "asterisk" },
|
||||
"MD055": { "style": "leading_and_trailing" },
|
||||
"MD060": { "style": "aligned" }
|
||||
}
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
Copyright (c) 2024, Nintendo Homebrew
|
||||
Copyright (c) 2024-2026 Nintendo Homebrew
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any
|
||||
purpose with or without fee is hereby granted, provided that the above
|
||||
|
|
@ -14,7 +14,7 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|||
|
||||
Additionally, files in `docs/.vitepress` is licensed under the following:
|
||||
|
||||
Copyright (c) 2024, Nintendo Homebrew
|
||||
Copyright (c) 2024 Nintendo Homebrew
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
|
|
|||
21
README.md
21
README.md
|
|
@ -1,8 +1,13 @@
|
|||
# Wii U Hacks Guide
|
||||
|
||||
Nintendo Wii U homebrew guide written by staff members of the [Nintendo Homebrew Discord server.](https://discord.gg/C29hYvh)
|
||||
A guide collaboration between Nintendo Homebrew's Helpers and Staff, from stock to Aroma custom firmware.
|
||||
|
||||
https://wiiu.hacks.guide/
|
||||
[](https://wiiu.hacks.guide/)
|
||||
[](https://hacks-guide.crowdin.com/u/projects/10)
|
||||
[](https://discord.gg/C29hYvh)
|
||||
[](https://github.com/hacks-guide/Guide-WiiU/commits/master/)
|
||||

|
||||
[](https://github.com/hacks-guide/Guide-WiiU/blob/master/LICENSE.md)
|
||||
|
||||
## Running the site locally
|
||||
|
||||
|
|
@ -12,19 +17,19 @@ This requires the following installed on your system:
|
|||
|
||||
To test the website locally, clone the source code:
|
||||
|
||||
```bash
|
||||
```shell
|
||||
git clone https://github.com/hacks-guide/Guide-WiiU.git --recurse-submodules
|
||||
cd Guide-WiiU
|
||||
```
|
||||
|
||||
> [!NOTE]
|
||||
> You must use `--recurse-modules` or you will hit an error like `Failed to resolve import "@theme/index" from "node_modules/vitepress/dist/client/app/index.js?v=19e6628c"` when running. If you've already cloned, you can initialize the submodules manually: `git submodule update --init --recursive`.
|
||||
|
||||
Then simply run the following commands:
|
||||
|
||||
```bash
|
||||
```shell
|
||||
npm ci
|
||||
npm run docs:dev
|
||||
```
|
||||
|
||||
The website should now be running on http://127.0.0.1:5173/ (or a port shown on the terminal). Any edits you make should appear live!
|
||||
> [!TIP]
|
||||
> If you choose to run multiple web servers at once, they will begin running at the next highest usable port (e.g. :5174, :5175, and so on).
|
||||
|
||||
The website should now be running on <http://127.0.0.1:5173/> (or whatever port is shown on the terminal).
|
||||
|
|
|
|||
|
|
@ -23,6 +23,9 @@ export default defineConfig({
|
|||
hostname: 'https://wiiu.hacks.guide'
|
||||
},
|
||||
themeConfig: {
|
||||
outline: {
|
||||
level: 'deep'
|
||||
},
|
||||
docFooter: {
|
||||
prev: false,
|
||||
next: false
|
||||
|
|
@ -32,6 +35,7 @@ export default defineConfig({
|
|||
{ icon: 'github', link: 'https://github.com/hacks-guide/Guide-WiiU' }
|
||||
]
|
||||
},
|
||||
cleanUrls: true,
|
||||
vite: {
|
||||
resolve: {
|
||||
alias: [
|
||||
|
|
|
|||
|
|
@ -79,7 +79,7 @@ const themeConfig = {
|
|||
|
||||
export default {
|
||||
lang: "de",
|
||||
label: "Deutsche",
|
||||
label: "🇩🇪 Deutsche",
|
||||
title: localeData.title,
|
||||
description: localeData.description,
|
||||
themeConfig: themeConfig
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ const themeConfig = {
|
|||
],
|
||||
},
|
||||
footer: {
|
||||
copyright: 'Copyright © 2024 Nintendo Homebrew',
|
||||
copyright: 'Copyright © 2026 Nintendo Homebrew',
|
||||
items: [
|
||||
{ text: localeData.pages["about"], link: `/about` },
|
||||
{ text: localeData.pages["donations"], link: `/donations` },
|
||||
|
|
@ -77,7 +77,7 @@ const themeConfig = {
|
|||
|
||||
export default {
|
||||
lang: "en",
|
||||
label: "English",
|
||||
label: "🇺🇸 English",
|
||||
title: localeData.title,
|
||||
description: localeData.description,
|
||||
themeConfig: themeConfig
|
||||
|
|
|
|||
|
|
@ -79,7 +79,7 @@ const themeConfig = {
|
|||
|
||||
export default {
|
||||
lang: "hu",
|
||||
label: "Magyar",
|
||||
label: "🇭🇺 Magyar",
|
||||
title: localeData.title,
|
||||
description: localeData.description,
|
||||
themeConfig: themeConfig
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# About This Guide
|
||||
|
||||
This guide was written by staff members of the [Nintendo Homebrew Discord Server](https://discord.gg/C29hYvh)
|
||||
This guide was written by staff members of the [Nintendo Homebrew Discord Server](https://discord.gg/C29hYvh).
|
||||
|
||||
::: info
|
||||
|
||||
|
|
@ -18,33 +18,31 @@ Thank you to [everyone else](https://github.com/hacks-guide/Guide-WiiU/graphs/co
|
|||
|
||||
:::
|
||||
|
||||
<figure class="thumbnails">
|
||||
<img src="/assets/img/nh.jpg" alt="Nintendo Homebrew" title="Nintendo Homebrew">
|
||||
</figure>
|
||||

|
||||
|
||||
::: info
|
||||
|
||||
**Developer / Tool Credits**
|
||||
|
||||
- **GaryOderNichts** and **Maschell** for the [AutobootModule](https://github.com/wiiu-env/AutobootModule).
|
||||
- **GaryOderNichts** for the [Configurable Payload](https://github.com/GaryOderNichts/configurable-payload), [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer), [UFDiine](https://github.com/GaryOderNichts/UFDiine), [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator), the fixed version of the [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/), and [Bloopair](https://github.com/GaryOderNichts/Bloopair).
|
||||
- **dragbe** and **FIX94** for <u>d2x cIOS Installer</u>.
|
||||
- **koolkdev** and **FIX94** for [disc2app](https://github.com/koolkdev/disc2app).
|
||||
- **jhildenbiddle** for [docsify-themeable](https://github.com/jhildenbiddle/docsify-themeable).
|
||||
- **Maschell** for the [CustomRPXLoader](https://github.com/wiiu-env/CustomRPXLoader), [FailST](https://maschell.github.io/homebrew/2020/12/02/failst.html), [EnvironmentLoader](https://github.com/wiiu-env/EnvironmentLoader), [HBLInstallerWrapper](https://github.com/wiiu-env/HBLInstallerWrapper), [LaunchInstaller](https://github.com/wiiu-env/LaunchInstaller), [MochaPayload](https://github.com/wiiu-env/MochaPayload), [PayloadFromRPX](https://github.com/wiiu-env/PayloadFromRPX), [PayloadLoaderInstaller](https://github.com/wiiu-env/PayloadLoaderInstaller), [PayloadLoaderInstallerEnvironment](https://github.com/wiiu-env/PayloadLoaderInstallerEnvironment), [PayloadloaderPayload](https://github.com/wiiu-env/PayloadloaderPayload), the [Tiramisu Downloader](https://tiramisu.foryour.cafe/), [wudd](https://github.com/wiiu-env/wudd), the [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/), the [SDCafiine Plugin](https://github.com/wiiu-env/sdcafiine_plugin/), the [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/), the [Aroma Downloader](https://aroma.foryour.cafe), and <u>Tiramisu/Aroma</u>.
|
||||
- **FIX94** and **smealum** for [Haxchi and CBHC](https://github.com/FIX94/haxchi).
|
||||
- **dimok789** for the [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher), the [Homebrew Launcher Channel](https://github.com/dimok789/homebrew_launcher), and [Mocha](https://github.com/dimok789/mocha).
|
||||
- **Maschell** and **dimok789** for the [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer).
|
||||
- **vgmoose**, **pwsincd**, **rw-r-r_0644**, **crc32**, **Compucat**, **Nightkingale** and the **4TU Team** for [hb-appstore](https://github.com/vgmoose/hb-appstore).
|
||||
- **Jonhyjp** for [Indexiine](https://gbatemp.net/threads/indexiine-load-cfw-during-boot-and-offline-without-a-vc-ds-title.553681/).
|
||||
- **JumpCallPop**, **jam1garner**, **hedgeberg**, **yellows8** and **orboditilt** for [JSTypeHax](https://github.com/wiiu-env/JsTypeHax).
|
||||
- **Dr Clipper**, **ZRicky11**, **dmm** and **FIX94** for <u>Patched IOS80 Installer for vWii</u>.
|
||||
- **GabyPCgeeK**, **Ryuzaki-MrL**, and **Xpl0itU** for [SaveMii WUT Port](https://github.com/Xpl0itU/savemii)
|
||||
- **djskual**, **Loadiine GX2 Team**, **Yardape** and **brienj** for [WUP Installer GX2](https://sourceforge.net/projects/wup-installer-gx2/).
|
||||
- **koolkdev** for [Wii U NAND Dumper](https://github.com/koolkdev/wiiu-nanddumper).
|
||||
- **koolkdev** and **Maschell** for [Wii U NAND Dumper payload](https://github.com/wiiu-env/wiiu-nanddumper-payload).
|
||||
- **dimok789** for [wupclient.py](https://github.com/dimok789/mocha/blob/master/ios_mcp/wupclient.py).
|
||||
- **TheLordScruffy** for the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer).
|
||||
- **marco-calautti** for the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU)
|
||||
* **GaryOderNichts** and **Maschell** for the [AutobootModule](https://github.com/wiiu-env/AutobootModule).
|
||||
* **GaryOderNichts** for [Bloopair](https://github.com/GaryOderNichts/Bloopair), the [Configurable Payload](https://github.com/GaryOderNichts/configurable-payload), the fixed version of the [Homebrew Launcher Channel](https://github.com/GaryOderNichts/homebrew_launcher/), [Indexiine-Installer](https://github.com/GaryOderNichts/indexiine-installer), [UFDiine](https://github.com/GaryOderNichts/UFDiine), and [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator).
|
||||
* **dragbe** and **FIX94** for [d2x cIOS Installer](https://github.com/wiidev/d2x-cios/).
|
||||
* **koolkdev** and **FIX94** for [disc2app](https://github.com/koolkdev/disc2app).
|
||||
* **jhildenbiddle** for [docsify-themeable](https://github.com/jhildenbiddle/docsify-themeable).
|
||||
* **Maschell** for [Aroma](https://github.com/wiiu-env/Aroma/)/[Tiramisu](https://github.com/wiiu-env/Tiramisu/), the [Aroma Downloader](https://aroma.foryour.cafe), the [CustomRPXLoader](https://github.com/wiiu-env/CustomRPXLoader), [EnvironmentLoader](https://github.com/wiiu-env/EnvironmentLoader), [FailST](https://maschell.github.io/homebrew/2020/12/02/failst.html), the [FTPiiU Plugin](https://github.com/wiiu-env/ftpiiu_plugin/), [HBLInstallerWrapper](https://github.com/wiiu-env/HBLInstallerWrapper), [LaunchInstaller](https://github.com/wiiu-env/LaunchInstaller), [MochaPayload](https://github.com/wiiu-env/MochaPayload), [PayloadFromRPX](https://github.com/wiiu-env/PayloadFromRPX), [PayloadLoaderInstaller](https://github.com/wiiu-env/PayloadLoaderInstaller), [PayloadLoaderInstallerEnvironment](https://github.com/wiiu-env/PayloadLoaderInstallerEnvironment), [PayloadloaderPayload](https://github.com/wiiu-env/PayloadloaderPayload), the [Screenshot Plugin](https://github.com/wiiu-env/ScreenshotWUPS/), the [SDCafiine Plugin](https://github.com/wiiu-env/sdcafiine_plugin/), the [Tiramisu Downloader](https://tiramisu.foryour.cafe/), and [wudd](https://github.com/wiiu-env/wudd).
|
||||
* **FIX94** and **smealum** for [Haxchi and CBHC](https://github.com/FIX94/haxchi).
|
||||
* **dimok789** for the [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher), the [Homebrew Launcher Channel](https://github.com/dimok789/homebrew_launcher), and [Mocha](https://github.com/dimok789/mocha).
|
||||
* **Maschell** and **dimok789** for the [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer).
|
||||
* **vgmoose**, **pwsincd**, **rw-r-r_0644**, **crc32**, **Compucat**, **Nightkingale** and the **4TU Team** for [hb-appstore](https://github.com/vgmoose/hb-appstore).
|
||||
* **Jonhyjp** for [Indexiine](https://gbatemp.net/threads/indexiine-load-cfw-during-boot-and-offline-without-a-vc-ds-title.553681/).
|
||||
* **JumpCallPop**, **jam1garner**, **hedgeberg**, **yellows8** and **orboditilt** for [JSTypeHax](https://github.com/wiiu-env/JsTypeHax).
|
||||
* **Dr Clipper**, **ZRicky11**, **dmm** and **FIX94** for [Patched IOS80 Installer for vWii](https://oscwii.org/library/app/Patched_IOS80_Installer_for_vWii).
|
||||
* **GabyPCgeeK**, **Ryuzaki-MrL**, and **Xpl0itU** for [SaveMii WUT Port](https://github.com/Xpl0itU/savemii)
|
||||
* **marco-calautti** for the [Sigpatches Module](https://github.com/marco-calautti/SigpatchesModuleWiiU)
|
||||
* **djskual**, **Loadiine GX2 Team**, **Yardape** and **brienj** for [WUP Installer GX2](https://sourceforge.net/projects/wup-installer-gx2/).
|
||||
* **koolkdev** for [Wii U NAND Dumper](https://github.com/koolkdev/wiiu-nanddumper).
|
||||
* **koolkdev** and **Maschell** for [Wii U NAND Dumper payload](https://github.com/wiiu-env/wiiu-nanddumper-payload).
|
||||
* **dimok789** for [wupclient.py](https://github.com/dimok789/mocha/blob/master/ios_mcp/wupclient.py).
|
||||
* **TheLordScruffy** for the [vwii-compat-installer](https://github.com/TheLordScruffy/vwii-compat-installer).
|
||||
|
||||
:::
|
||||
|
|
|
|||
|
|
@ -11,5 +11,5 @@ Currently, one way exists to effectively block updates on the Wii U system:
|
|||
|
||||
1. Make sure you have the latest Aroma beta.
|
||||
1. Boot into Aroma.
|
||||
- If you got the yellow warning screen, press X to block updates.
|
||||
- If you didn't get the warning, but the AutobootMenu says "Updates not blocked!", press and hold + (Plus) **and** - (Minus) at the same time until it says they are blocked.
|
||||
* If you got the yellow warning screen, press X to block updates.
|
||||
* If you didn't get the warning, but the AutobootMenu says "Updates not blocked!", press and hold + (Plus) **and** - (Minus) at the same time until it says they are blocked.
|
||||
|
|
|
|||
|
|
@ -2,21 +2,21 @@
|
|||
|
||||
## Haxchi common errors
|
||||
|
||||
- **-3:** No SD Card detected. Re-insert the SD Card and try again. Make sure the SD Card is in FAT32 format. If the error persists, try blowing compressed air into the SD slot as it can get dusty inside. **Do not blow into the SD slot with your mouth, as this can introduce moisture that can DAMAGE the slot.**
|
||||
* **-3:** No SD Card detected. Re-insert the SD Card and try again. Make sure the SD Card is in FAT32 format. If the error persists, try blowing compressed air into the SD slot as it can get dusty inside. **Do not blow into the SD slot with your mouth, as this can introduce moisture that can DAMAGE the slot.**
|
||||
|
||||
- **-4:** SD detected but could not mount. Check to see if the SD is using MBR and not GPT. Also, check to see if there are any other partitions on the SD Card and merge them into one primary partition.
|
||||
* **-4:** SD detected but could not mount. Check to see if the SD is using MBR and not GPT. Also, check to see if there are any other partitions on the SD Card and merge them into one primary partition.
|
||||
|
||||
- **-5:** Missing files on the SD. Check to see if your SD has Homebrew Launcher located in <code>/wiiu<wbr>/apps<wbr>/homebrew_launcher<wbr>/homebrew_launcher.elf</code>.
|
||||
* **-5:** Missing files on the SD. Check to see if your SD has Homebrew Launcher located in `/wiiu/apps/homebrew_launcher/homebrew_launcher.elf`.
|
||||
|
||||
## Browser errors
|
||||
|
||||
- **FSGetMountSource failed:** Same as -3 above, means no SD Card detected. Re-insert the SD and try again. This could also mean that the SD card is locked (Slider is down instead of up) or the SD card label is "WIIU", which is stated in the guide causes conflict. If it's not any of these issues, refer to the last suggestion from -3.
|
||||
* **FSGetMountSource failed:** Same as -3 above, means no SD Card detected. Re-insert the SD and try again. This could also mean that the SD card is locked (Slider is down instead of up) or the SD card label is "WIIU", which is stated in the guide causes conflict. If it's not any of these issues, refer to the last suggestion from -3.
|
||||
|
||||
- **FSOpenFile failed [...] payload.elf:** Missing payload file on SD. Make sure you have payload.elf in the wiiu folder, and the wiiu folder on the root.
|
||||
* **FSOpenFile failed [...] payload.elf:** Missing payload file on SD. Make sure you have payload.elf in the wiiu folder, and the wiiu folder on the root.
|
||||
|
||||
- **FSOpenFile failed:** Missing `homebrew_launcher` on SD. Make sure you have `homebrew_launcher.elf` in the <code>/wiiu<wbr>/apps<wbr>/homebrew_launcher</code> folder.
|
||||
* **FSOpenFile failed:** Missing `homebrew_launcher` on SD. Make sure you have `homebrew_launcher.elf` in the `/wiiu/apps/homebrew_launcher` folder.
|
||||
|
||||
- **SD Mount Failed:** Similar to -4, the console recognizes the SD card but could not mount it. Make sure it is formatted properly, and it is not damaged. Also, your SD card is more compatible with reputable brands (i.e. SanDisk, Samsung, Lexar, etc.) and less likely to have issues.
|
||||
* **SD Mount Failed:** Similar to -4, the console recognizes the SD card but could not mount it. Make sure it is formatted properly, and it is not damaged. Also, your SD card is more compatible with reputable brands (i.e. SanDisk, Samsung, Lexar, etc.) and less likely to have issues.
|
||||
|
||||
## Data Management asks to delete unnecessary data, what does it mean?
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
::: tip
|
||||
|
||||
[](https://paypal.me/NintendoHomebrew){style="display: block;text-align: center"}
|
||||
[](https://paypal.me/NintendoHomebrew){style="display: block;text-align: center"}
|
||||
|
||||
[https://paypal.me/NintendoHomebrew](https://paypal.me/NintendoHomebrew){style="display: block;text-align: center"}
|
||||
|
||||
|
|
|
|||
|
|
@ -38,10 +38,10 @@ In order to install to a USB device, it has to be formatted by the Wii U. Doing
|
|||
|
||||
### What You Need
|
||||
|
||||
- Your SD Card needs to have enough space to fit the game you want to dump.
|
||||
- If wanting to install to a USB, A USB HDD (+ a Y-cable if needed).
|
||||
- The latest release of [WUP Installer GX2](https://wiiu.cdn.fortheusers.org/zips/wup_installer_gx2_wuhb.zip).
|
||||
- The [wudd](https://wiiu.cdn.fortheusers.org/zips/wudd.zip) homebrew application.
|
||||
* Your SD Card needs to have enough space to fit the game you want to dump.
|
||||
* If wanting to install to a USB, A USB HDD (+ a Y-cable if needed).
|
||||
* The latest release of [WUP Installer GX2](https://wiiu.cdn.fortheusers.org/zips/wup_installer_gx2_wuhb.zip).
|
||||
* The [wudd](https://wiiu.cdn.fortheusers.org/zips/wudd.zip) homebrew application.
|
||||
|
||||
### Instructions
|
||||
|
||||
|
|
@ -55,7 +55,7 @@ In order to install to a USB device, it has to be formatted by the Wii U. Doing
|
|||
1. When finished, exit wudd to the Wii U Menu.
|
||||
1. Insert the SD Card into your computer.
|
||||
1. Copy the `GMXXXXXXXXXXXXXXXX` folder from `sd:/wudump/WUP-X-XXXX` to the `install` folder on the root of your SD Card.
|
||||
- WUDD does not create an install folder by default. You have to create it.
|
||||
* WUDD does not create an install folder by default. You have to create it.
|
||||
1. Eject and insert the SD Card into your Wii U.
|
||||
1. Open the Wii U Menu and then the WUP Installer GX2 app.
|
||||
1. Select your game (`GMXXXXXXXXXXXXXXXX`), press `Install` and confirm with `Yes`.
|
||||
|
|
@ -83,7 +83,7 @@ In order to move your game to a USB device, it has to be formatted by the Wii U.
|
|||
1. Power on your Wii U.
|
||||
1. Your Wii U will prompt you to format your USB device. Confirm with Yes.
|
||||
1. Open the Wii U's System Settings.
|
||||
1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)`
|
||||
1. Navigate to `Data Management` > `Copy/Move/Delete Data` > `System Memory` > `Move Items (X)`
|
||||
1. Select the game and move all data (including updates and DLC if any are installed) to your USB device.
|
||||
|
||||
## Move Updates To USB
|
||||
|
|
@ -96,5 +96,5 @@ If your disc game had DLC or updates installed, you will need to transfer the fi
|
|||
|
||||
1. Power on your Wii U
|
||||
1. Open the Wii U's System Settings.
|
||||
1. Navigate to `Data Management > Copy/Move/Delete Data > System Memory > Move Items (X)`.
|
||||
1. Navigate to `Data Management` > `Copy/Move/Delete Data` > `System Memory` > `Move Items (X)`.
|
||||
1. Select your game and move the update and DLC data to the USB device.
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ Currently, homebrewing the Wii U does not expose you to a risk of being banned b
|
|||
|
||||
## What are exploits?
|
||||
|
||||
Exploits are entry points which allow further homebrew to be run. In the main guide, you will use exploits such as the browser exploit (http://wiiuexploit.xyz) and PayloadLoader (Health & Safety exploit). All current exploits load `SD:/wiiu/payload.elf` which takes over further loading of homebrew.
|
||||
Exploits are entry points which allow further homebrew to be run. In the main guide, you will use exploits such as the browser exploit (hosted on <http://wiiuexploit.xyz>) and PayloadLoader (an exploit for the Health & Safety app). All current exploits load `SD:/wiiu/payload.elf` which takes over further loading of homebrew.
|
||||
|
||||
## What are payloads?
|
||||
|
||||
|
|
@ -28,9 +28,9 @@ If you want to delete the update folder to block updates, see its tab in the [Bl
|
|||
|
||||
## What SD Card size is recommended?
|
||||
|
||||
- **Installing game backups:** 32GB (Smaller size may be used, but certain titles are 20GB in size)
|
||||
- **Running game mods:** 8GB (FAT32 USB drive may be used as well for mods)
|
||||
- **Only running homebrew apps:** Any size.
|
||||
* **Installing game backups:** 32GB (Smaller size may be used, but certain titles are 20GB in size)
|
||||
* **Running game mods:** 8GB (FAT32 USB drive may be used as well for mods)
|
||||
* **Only running homebrew apps:** Any size.
|
||||
|
||||
**Recommended brands:** SanDisk, Samsung or PNY
|
||||
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ For live support with this guide please visit us in **#wiiu-assistance** on the
|
|||
|
||||
If you appreciate this guide, we accept [donations](donations).
|
||||
|
||||
:::
|
||||
:::
|
||||
|
||||
::: info
|
||||
|
||||
|
|
@ -28,33 +28,32 @@ For complete guides to homebrew and custom firmware for other devices, check out
|
|||
|
||||
:::
|
||||
|
||||
### Homebrew
|
||||
## Homebrew
|
||||
|
||||
Homebrew applications are custom, user-made software, which haven’t been authorized by Nintendo. This can include save editing tools, games, emulators, and more.
|
||||
|
||||
Homebrew can be run on your Wii U as long as you have a way to put files on an SD Card and your Wii U is updated to the latest version for your region.
|
||||
|
||||
### Custom Firmware
|
||||
## Custom Firmware
|
||||
|
||||
Custom firmware (often abbreviated as "CFW") enables you to use more advanced hacks that userland homebrew can’t easily do. For instance, installing game modifications with ease.
|
||||
CFW can be set up on any console on the latest version.
|
||||
|
||||
### Homebrew & CFW Uses
|
||||
## Homebrew & CFW Uses
|
||||
|
||||
Among other things, it allows you to do the following:
|
||||
|
||||
- Use “ROM hacks” for games that you own.
|
||||
- Backup, edit and restore saves for many games.
|
||||
- Play games for older systems with various emulators, using RetroArch or other standalone emulators.
|
||||
- Play out-of-region games.
|
||||
- Dump your Wii U game discs to a format that can be installed on your internal or external Wii U storage drive.
|
||||
* Use “ROM hacks” for games that you own.
|
||||
* Backup, edit and restore saves for many games.
|
||||
* Play games for older systems with various emulators, using RetroArch or other standalone emulators.
|
||||
* Play out-of-region games.
|
||||
* Dump your Wii U game discs to a format that can be installed on your internal or external Wii U storage drive.
|
||||
|
||||
|
||||
### End Goal
|
||||
## End Goal
|
||||
|
||||
This guide has the end goal of taking a completely unmodified Wii U from stock to custom firmware.
|
||||
|
||||
### Before Starting
|
||||
## Before Starting
|
||||
|
||||
::: danger
|
||||
|
||||
|
|
@ -67,9 +66,10 @@ Before beginning the guide, you must know the risks of Wii U hacking: **EVERY**
|
|||
This guide will work on all Wii U consoles in all regions on the latest firmware (5.5.6 for North American consoles, 5.5.5 for all other regions) or below.
|
||||
|
||||
You will need the following in order to successfully follow this guide:
|
||||
- An SD Card.
|
||||
- A device such as a computer to place files onto the SD Card.
|
||||
- A Wii U with internet access.
|
||||
|
||||
* An SD Card.
|
||||
* A device such as a computer to place files onto the SD Card.
|
||||
* A Wii U with internet access.
|
||||
|
||||
A 32GB SD Card will be enough for most use-cases. A Micro SD Card in an adapter will work fine.
|
||||
|
||||
|
|
@ -79,10 +79,10 @@ A 32GB SD Card will be enough for most use-cases. A Micro SD Card in an adapter
|
|||
|
||||
**If you have an existing legacy CFW setup**
|
||||
|
||||
- For **CBHC** users: Go to the [Uninstall CBHC](uninstall-cbhc) page to uninstall CBHC.
|
||||
- For **Haxchi** users: Uninstall the Haxchi app from Data Management in the System Settings app.
|
||||
- For **Mocha CFW (Indexiine)** users: Go to the [Uninstall Indexiine](uninstall-indexiine) page to uninstall Indexiine.
|
||||
- For **Mocha CFW (Online Exploit)** users: You do not need to do anything before following this guide.
|
||||
* For **CBHC** users: Go to the [Uninstall CBHC](uninstall-cbhc) page to uninstall CBHC.
|
||||
* For **Haxchi** users: Uninstall the Haxchi app from Data Management in the System Settings app.
|
||||
* For **Mocha CFW (Indexiine)** users: Go to the [Uninstall Indexiine](uninstall-indexiine) page to uninstall Indexiine.
|
||||
* For **Mocha CFW (Online Exploit)** users: You do not need to do anything before following this guide.
|
||||
|
||||
:::
|
||||
|
||||
|
|
|
|||
|
|
@ -2,16 +2,14 @@
|
|||
|
||||
**Last updated January 18, 2020**
|
||||
|
||||
Thank you for choosing to be part of our community at Wii U Hacks Guide (“company”, “we”, “us”, or “our”). We are committed to protecting your personal information and your right to privacy. If you have any questions or concerns about our policy, or our practices with regards to your personal information, please contact us at <nh.wiiuguide@gmail.com>.
|
||||
|
||||
Thank you for choosing to be part of our community at Wii U Hacks Guide (“company”, “we”, “us”, or “our”). We are committed to protecting your personal information and your right to privacy. If you have any questions or concerns about our policy, or our practices with regards to your personal information, please contact us at nh.wiiuguide@gmail.com.
|
||||
When you visit our website <https://wiiu.hacks.guide>, and use our services, you trust us with your personal information. We take your privacy very seriously. In this privacy notice, we describe our privacy policy. We seek to explain to you in the clearest way possible what information we collect, how we use it and what rights you have in relation to it. We hope you take some time to read through it carefully, as it is important. If there are any terms in this privacy policy that you do not agree with, please discontinue use of our Sites and our services.
|
||||
|
||||
When you visit our website https://wiiu.hacks.guide, and use our services, you trust us with your personal information. We take your privacy very seriously. In this privacy notice, we describe our privacy policy. We seek to explain to you in the clearest way possible what information we collect, how we use it and what rights you have in relation to it. We hope you take some time to read through it carefully, as it is important. If there are any terms in this privacy policy that you do not agree with, please discontinue use of our Sites and our services.
|
||||
|
||||
This privacy policy applies to all information collected through our website (such as https://wiiu.hacks.guide), and/or any related services, sales, marketing or events (we refer to them collectively in this privacy policy as the "**Sites**").
|
||||
This privacy policy applies to all information collected through our website (such as <https://wiiu.hacks.guide>), and/or any related services, sales, marketing or events (we refer to them collectively in this privacy policy as the "**Sites**").
|
||||
|
||||
**Please read this privacy policy carefully.**
|
||||
|
||||
|
||||
## TABLE OF CONTENTS
|
||||
|
||||
[1. WHAT INFORMATION DO WE COLLECT?](#1-what-information-do-we-collect)
|
||||
|
|
@ -26,21 +24,18 @@ This privacy policy applies to all information collected through our website (su
|
|||
|
||||
[6. HOW CAN YOU CONTACT US ABOUT THIS POLICY?](#6-how-can-you-contact-us-about-this-policy)
|
||||
|
||||
|
||||
### 1. WHAT INFORMATION DO WE COLLECT?
|
||||
|
||||
***In Short:*** *We do not collect any personal information.*
|
||||
|
||||
We do not collect personal information in any shape or form. However, our hoster, [GitHub Pages](https://pages.github.com/) may collect personal information. For more information, see the [GitHub Privacy Statement](https://help.github.com/en/github/site-policy/github-privacy-statement)
|
||||
|
||||
|
||||
### 2. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES?
|
||||
|
||||
***In Short:*** *We do not use cookies and other tracking technologies to collect and store your information.*
|
||||
|
||||
We do not use cookies and similar tracking technologies (like web beacons and pixels) to access or store information.
|
||||
|
||||
|
||||
### 3. WHAT ARE YOUR PRIVACY RIGHTS?
|
||||
|
||||
***In Short:*** *In some regions, such as the European Economic Area, you have rights that allow you greater access to and control over your personal information. You may review, change, or terminate your account at any time.*
|
||||
|
|
@ -49,8 +44,7 @@ In some regions (like the European Economic Area), you have certain rights under
|
|||
|
||||
If we are relying on your consent to process your personal information, you have the right to withdraw your consent at any time. Please note however that this will not affect the lawfulness of the processing before its withdrawal.
|
||||
|
||||
If you are resident in the European Economic Area and you believe we are unlawfully processing your personal information, you also have the right to complain to your local data protection supervisory authority. You can find their contact details here: http://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm
|
||||
|
||||
If you are resident in the European Economic Area and you believe we are unlawfully processing your personal information, you also have the right to complain to your local data protection supervisory authority. You can find their contact details here: <http://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm>
|
||||
|
||||
### 4. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY RIGHTS?
|
||||
|
||||
|
|
@ -60,14 +54,12 @@ California Civil Code Section 1798.83, also known as the “Shine The Light” l
|
|||
|
||||
If you are under 18 years of age, reside in California, and have a registered account with the Sites, you have the right to request removal of unwanted data that you publicly post on the Sites. To request removal of such data, please contact us using the contact information provided below, and include the email address associated with your account and a statement that you reside in California. We will make sure the data is not publicly displayed on the Sites, but please be aware that the data may not be completely or comprehensively removed from our systems.
|
||||
|
||||
|
||||
### 5. DO WE MAKE UPDATES TO THIS POLICY?
|
||||
|
||||
***In Short:*** *Yes, we will update this policy as necessary to stay compliant with relevant laws.*
|
||||
|
||||
We may update this privacy policy from time to time. The updated version will be indicated by an updated “Revised” date and the updated version will be effective as soon as it is accessible. If we make material changes to this privacy policy, we may notify you either by prominently posting a notice of such changes or by directly sending you a notification. We encourage you to review this privacy policy frequently to be informed of how we are protecting your information.
|
||||
|
||||
|
||||
### 6. HOW CAN YOU CONTACT US ABOUT THIS POLICY?
|
||||
|
||||
If you have questions or comments about this policy, you may email us at nh.wiiuguide@gmail.com
|
||||
If you have questions or comments about this policy, you may email us at <nh.wiiuguide@gmail.com>.
|
||||
|
|
|
|||
|
|
@ -22,8 +22,8 @@ Due to mounting conflicts with this app, you need to also disable the FTPiiu plu
|
|||
|
||||
## What You Need
|
||||
|
||||
- A working [homebrew installation](index) on the Wii U side.
|
||||
- The latest release of [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator/releases).
|
||||
* A working [homebrew installation](index) on the Wii U side.
|
||||
* The latest release of [vWii Decaffeinator](https://github.com/GaryOderNichts/vWii-Decaffeinator/releases).
|
||||
|
||||
## Instructions
|
||||
|
||||
|
|
@ -32,7 +32,6 @@ Due to mounting conflicts with this app, you need to also disable the FTPiiu plu
|
|||
1. Power on your Wii U and launch Aroma.
|
||||
1. Launch vWii Decaffeinator from the Wii U Menu.
|
||||
|
||||
|
||||
## Recovering Process
|
||||
|
||||
You will be provided with various options. It is recommended to first attempt restoring through the `Advanced options` menu if you know what to restore, or `Light mode` if you aren't sure. In extreme cases where no other option solves the issue, `Aggressive mode` should be chosen.
|
||||
|
|
|
|||
|
|
@ -58,8 +58,7 @@ Users with ISFShax will have to remove the `wafel_payloader.ipx`/`5payldr.ipx` (
|
|||
|
||||
### Removing DNS Blocks
|
||||
|
||||
1. Enter the Wii U's system settings and navigate to `Internet > Connect to the Internet > Connection List >`
|
||||
`Your WiFi connection > Change Settings > DNS` and set the option to `Auto-obtain`.
|
||||
1. Enter the Wii U's system settings and navigate to `Internet` > `Connect to the Internet` > `Connection List` > `Your WiFi connection` > `Change Settings` > `DNS` and set the option to `Auto-obtain`.
|
||||
1. You are no longer blocking system updates.
|
||||
|
||||
::::
|
||||
|
|
|
|||
|
|
@ -3,8 +3,9 @@
|
|||
This page will guide through the process of uninstalling CBHC from your Wii U.
|
||||
|
||||
## What You Need
|
||||
- The latest release of the [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/v1.5)
|
||||
- The [CBHC installer](https://github.com/FIX94/haxchi/releases)
|
||||
|
||||
* The latest release of the [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/v1.5)
|
||||
* The [CBHC installer](https://github.com/FIX94/haxchi/releases)
|
||||
|
||||
## Instructions
|
||||
|
||||
|
|
|
|||
|
|
@ -3,17 +3,20 @@
|
|||
This page will guide through the process of uninstalling Indexiine from your Wii U.
|
||||
|
||||
## What You Need
|
||||
- The latest release of the [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/v1.5). (The `homebrew_launcher.v1.5.zip` file)
|
||||
- The latest release of the [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). (The `payload.zip` file)
|
||||
- The [Indexiine Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). (The `indexiine-installer.zip` file)
|
||||
- The default [index.html file](/files/backup-index.html){download}. (You will get a file named `backup-index.html`)
|
||||
|
||||
* The latest release of the [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/v1.5). (The `homebrew_launcher.v1.5.zip` file)
|
||||
* The latest release of the [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest). (The `payload.zip` file)
|
||||
* The [Indexiine Installer](https://github.com/GaryOderNichts/indexiine-installer/releases/latest). (The `indexiine-installer.zip` file)
|
||||
* The default [index.html file](/files/backup-index.html){download}. (You will get a file named `backup-index.html`)
|
||||
|
||||
## Setting Up The SD Card
|
||||
|
||||
First, ensure your SD card is formatted in FAT32. You can do so by using [GUIFormat](http://ridgecrop.co.uk/index.htm?guiformat.htm).
|
||||
|
||||
1. Extract the contents of the `homebrew_launcher.v1.5.zip` file to the root of your SD card.
|
||||
1. Extract the contents of the `indexiine-installer.zip` file to the root of your SD card.
|
||||
1. Extract the `payload.elf` file from the `payload.zip` file to the `wiiu` folder on your SD card.
|
||||
1. Copy the `backup-index.html` file to the `SD > wiiu > apps > indexiine-installer` folder on your SD card.
|
||||
1. Copy the `backup-index.html` file to the `SD` > `wiiu` > `apps` > `indexiine-installer` folder on your SD card.
|
||||
|
||||
You can now eject, and insert your SD card into your console.
|
||||
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ A factory reset **won't** uninstall the injected PayloadLoader. To fully uninsta
|
|||
|
||||
## What You Need
|
||||
|
||||
- The latest files from [Aroma for your café](https://aroma.foryour.cafe).
|
||||
* The latest files from [Aroma for your café](https://aroma.foryour.cafe).
|
||||
1. Scroll down to the **Download** section.
|
||||
1. Read through the steps and click on the checkboxes.
|
||||
1. Click on `Download Payloads` and `Download Base Aroma`.
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user