Add local files and links to them

pull/4/head
Elpunical 5 years ago
parent 6dfaf2873f
commit d11a9a4c1b

@ -0,0 +1,10 @@
[MOCHA]
viewMode=0
directLaunch=1
launchImage=0
noIosReload=1
launchSysMenu=0
redNAND=0
seeprom_red=0
otp_red=0
syshaxXml=0

@ -0,0 +1,2 @@
a=wiiu/apps/homebrew_launcher/homebrew_launcher.elf
default=sysmenu

@ -0,0 +1,31 @@
#!/usr/bin/env python3
from ftplib import FTP
from io import BytesIO
from sys import exit
from traceback import format_exc
server_ip = input('What is the IP address of the Wii U? ')
blank_digest = (b'F' * 0x40) + (b'\0' * 0x10)
digest_path = '/storage_slc/security/digest.bin'
try:
print('Attempting to connect to {0}:21...'.format(server_ip))
with FTP(server_ip) as f:
resp = f.login()
print('Server response:', resp)
print('Overwriting {0}...'.format(digest_path))
try:
resp = f.storbinary('STOR ' + digest_path, BytesIO(blank_digest))
except ftplib.error_perm:
print("\nWARNING: Couldn't overwrite.")
print('Make sure Haxchi CFW, CBHC, or Mocha is active.')
exit(1)
print('Server response:', resp)
print('\nDone. Exit ftpiiu, then go to System Settings -> System Update.')
except Exception as e:
print('\nERROR OCCURED - please send error.log!\n')
print(format_exc(), end='')
with open('err.log', 'w', encoding='utf-8') as o:
o.write(format_exc())

Binary file not shown.

@ -10,7 +10,7 @@ This page will guide you through the process of recovering a corrupted IOS on yo
> - This release of [FTPiiU Everywhere](http://wiiubru.com/appstore/#/app/fpiiu-cbhc)
> - The latest release of [Python](https://www.python.org/downloads/)
> - An FTP client such as [FileZilla](https://filezilla-project.org/download.php?type=client)
> - [This Python script](/file/overwrite-wiiu-titlehash.py)
> - <a href="../files/overwrite-wiiu-titlehash.py" download>This Python script</a>
### Instructions

@ -11,7 +11,7 @@ We will now place the required CFW files and some additional homebrew files on t
#### **Haxchi**
> - The Haxchi [config](/files/config.txt)
> - The Haxchi <a href="/files/config.txt" download>config</a>
> - The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest)
> - You will need to download the `payload.zip` file.
> - The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4)
@ -27,7 +27,7 @@ We will now place the required CFW files and some additional homebrew files on t
#### **CBHC**
> - The Haxchi [config](/files/config.txt)
> - The Haxchi <a href="/files/config.txt" download>config</a>
> - The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest)
> - You will need to download the `payload.zip` file.
> - The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4)
@ -43,7 +43,7 @@ We will now place the required CFW files and some additional homebrew files on t
#### **Mocha**
> - The Mocha [config](/files/config.ini)
> - The Mocha <a href="/files/config.ini" download>config</a>
> - The latest release of [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/latest)
> - You will need to download the `payload.zip` file.
> - The 1.4 release of [The Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/tag/1.4)

@ -9,8 +9,8 @@ We will now place the required Homebrew files on the SD Card.
### What you need
> - The [vWii cIOS apps](/files/vWii_cIOS_apps_20131218.zip)
> - The [Patched IOS 80 Installed for vWii](/files/Patched_IOS80_Installer_for_vWii.zip)
> - The <a href ="/files/vWii_cIOS_apps_20131218.zip" download>vWii cIOS apps</a>
> - The <a href="/files/Patched_IOS80_Installer_for_vWii.zip" download>Patched IOS 80 Installed for vWii</a>
> - The latest release of [Wuphax](http://wiiubru.com/appstore/zips/wuphax.zip)
> - The [Homebrew Launcher](https://github.com/dimok789/homebrew_launcher/releases/download/1.4/homebrew_launcher.v1.4.zip)
> - The latest release of the [Homebrew Launcher Installer](https://github.com/wiiu-env/homebrew_launcher_installer/releases/download/v1.4/payload.zip)

Loading…
Cancel
Save