Create relaunching hackmii installer page (#341)

* Create relaunching hackmii installer page

* remove TOC, i don't trust it

* a newline in a markdown file can change everything

* remove blindfold & tidy up page a bit

* tidying up part 2

* remember to put the sd back into the wii

* add to bootmii page
This commit is contained in:
thepikachugamer 2023-05-28 17:24:54 -05:00 committed by GitHub
parent 8015181057
commit b1b00ade4b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 92 additions and 3 deletions

View file

@ -32,11 +32,11 @@ If you have BootMii installed as boot2 you will need to launch BootMii by restar
2. Press the HOME Button, then select "Launch BootMii".
![BootMii_Main](/images/BootMii/BootMii_Main.png)
Navigating BootMii is not possible using a Wii Remote. You must use the POWER and RESET buttons on your console, or a GameCube controller plugged into port 1.
To navigate between options, press POWER on your Wii (or left/right on the +Control Pad on a GameCube controller).
To select an option, press RESET on your Wii or A on your GameCube controller.
If the `Launch BootMii` button does not appear, please [re-launch the HackMii Installer](hackmii) and install BootMii.
{: .notice--info}
Navigating BootMii is not possible using a Wii Remote. You must use the POWER and RESET buttons on your console, or a GameCube controller plugged into port 1. To navigate between options, press POWER on your Wii (or left/right on the +Control Pad
on a GameCube controller). To select an option, press RESET on your Wii or A on your GameCube controller. {: .notice--info}
If the screen stays black and the blue disc drive light is blinking, you are missing the BootMii files on your SD card.
Download [this zip file](https://static.hackmii.com/bootmii_sd_files.zip) and extract it to the root of your SD card, then try again.
{: .notice--warning}

89
_pages/en_US/hackmii.md Normal file
View file

@ -0,0 +1,89 @@
---
title: "Relaunching the HackMii Installer"
---
{% include toc title="Table of Contents" %}
If you need help for anything regarding this tutorial, please join [the RiiConnect24 Discord server](https://discord.gg/rc24) (recommended) or [e-mail us at support@riiconnect24.net](mailto:support@riiconnect24.net).
{: .notice--info}
This guide is intended for situations where you need to relaunch the HackMii Installer to update/reinstall the Homebrew Channel or BootMii.
It is also safe to [redo any exploit](get-started) to get back into the HackMii Installer.
{: .notice--info}
<button class="tablinks btn btn--large btn--primary" id="defaultOpen" onclick="openTab(event, 'hbc')">Using the Homebrew Channel</button>
<button class="tablinks btn btn--large btn--info" onclick="openTab(event, 'priiloader')">Using Priiloader</button>
<div id="hbc" class="blanktabcontent" markdown="1">
### Relaunching via the Homebrew Channel
#### What you need
- The Homebrew Channel
- An SD card or USB drive formatted to FAT32/MS-DOS
- [HackMii Installer v1.2](https://bootmii.org/download/)
#### Instructions
1. Insert your SD/USB into your PC.
1. Extract the HackMii Installer v1.2 to the `apps` folder on your SD/USB.
- If this folder does not exist, create it.
1. Insert the SD/USB into your Wii, and launch the `hackmii_installer_v1.2` app from the Homebrew Channel.
- The app will not have an icon.
</div>
<div id="priiloader" class="blanktabcontent" markdown="1">
### Relaunching via Priiloader
#### What you need
- a Wii with Priiloader (or Preloader) installed
- an SD card or USB drive formatted to FAT32/MS-DOS
- [HackMii Installer v1.2](https://bootmii.org/download/)
To check if your Wii has Priiloader, hold the RESET button while turning it on.
![Turn on](/images/Priiloader/on.jpg)
![Hold RESET](/images/Priiloader/reset.jpg)
{: .notice--info}
#### Instructions
1. Insert your SD/USB into your PC.
1. Extract the HackMii Installer v1.2 to the `apps` folder on your SD/USB.
- If this folder does not exist, create it.
1. Insert your SD/USB into your Wii.
1. Enter Priiloader by holding the RESET button while turning on your Wii.
1. Go to `Load/Install File`.
1. Navigate to `hackmii_installer_v1.2` and press `1` to load it.
</div>
[Continue to Homebrew Channel and BootMii Installation](hbc)
{: .notice--info}
<script>
let tabcontent = document.getElementsByClassName("blanktabcontent");
let tablinks = document.getElementsByClassName("tablinks");
function openTab(evt, tabName) {
let element;
for (element of tabcontent) {
element.style.display = "none";
}
for (element of tablinks) {
element.className = element.className.replace("btn--primary", "btn--info");
if (!element.className.includes('btn--info'))
element.className += " btn--info";
}
document.getElementById(tabName).style.display = "block";
evt.currentTarget.className = evt.currentTarget.className.replace("btn--info", "btn--primary");
}
// Get the element with id="defaultOpen" and click on it
document.getElementById("defaultOpen").click();
</script>