diff --git a/README.md b/README.md index c65a92e..d0e96fc 100644 --- a/README.md +++ b/README.md @@ -78,6 +78,10 @@ Allows submitting system information to an online database to collect various st This is entirely optional and personally identifying information will be kept confidential. [The database can be found here!](https://wiiu.gerbilsoft.com/) +### Load BOOT1 payload +Loads a payload from the root of the SD Card named `boot1.img` and executes it from within boot1. +If the file is named `boot1now.img` it gets loaded automatically when starting the recovery_menu after a 5 second timeout. + ## Building ```bash # build the docker container diff --git a/ios_mcp/source/menu.c b/ios_mcp/source/menu.c index 922390a..dd4ba5c 100644 --- a/ios_mcp/source/menu.c +++ b/ios_mcp/source/menu.c @@ -41,8 +41,8 @@ static const Menu mainMenuOptions[] = { {"Set Coldboot Title", {.callback = option_SetColdbootTitle}}, {"Dump Syslogs", {.callback = option_DumpSyslogs}}, {"Dump OTP + SEEPROM", {.callback = option_DumpOtpAndSeeprom}}, - {"Start wupserver", {.callback = option_StartWupserver}}, {"Load Network Configuration", {.callback = option_LoadNetConf}}, + {"Start wupserver", {.callback = option_StartWupserver}}, {"Pair Gamepad", {.callback = option_PairDRC}}, {"Install WUP", {.callback = option_InstallWUP}}, {"Edit Parental Controls", {.callback = option_EditParental}}, diff --git a/ios_mcp/source/menu.h b/ios_mcp/source/menu.h index d69a28e..6c07ec1 100644 --- a/ios_mcp/source/menu.h +++ b/ios_mcp/source/menu.h @@ -20,7 +20,7 @@ #include #include -#define VERSION_STRING "0.5" +#define VERSION_STRING "0.6" // FSA handle // Initialized by menuThread(). diff --git a/screenshot.png b/screenshot.png index e5a4948..a3ed11c 100644 Binary files a/screenshot.png and b/screenshot.png differ