diff --git a/include/arm11/menu/menu_fb3ds.h b/include/arm11/menu/menu_fb3ds.h index c826642..c49c79d 100644 --- a/include/arm11/menu/menu_fb3ds.h +++ b/include/arm11/menu/menu_fb3ds.h @@ -45,7 +45,7 @@ #define DESC_BOOT_MENU "Display a boot menu, allowing you to select which boot slot to boot from. Also includes boot slot and boot mode setup." #define DESC_BOOT_FILE "Select a firmware file to boot." #define DESC_NAND_TOOLS "Enter NAND tools submenu, including tools for NAND backup, NAND restore and firmware flash." -#define DESC_OPTIONS "Enter fastboot3ds settings submenu." +#define DESC_OPTIONS "Enter uwuboot settings submenu." #define DESC_MISC "Enter miscellaneous submenu, including the update tool and credits section." #define DESC_BOOT_SLOT(x) "Boot the firmware in slot #" #x "." @@ -57,31 +57,31 @@ #define DESC_AUTO_SLOT(x) "Enable autoboot for boot slot #" #x ". " #define DESC_CLEAR_SLOT(x) "Reset and disable boot slot #" #x ". " -#define DESC_BOOT_NORMAL "In normal boot mode, you will be presented with the fastboot3ds menu upon boot." +#define DESC_BOOT_NORMAL "In normal boot mode, you will be presented with the uwuboot menu upon boot." #define DESC_BOOT_QUICK "In quick boot mode, splash is displayed and the boot is continued via the first available autoboot slot.\n \n! To enter the menu, hold the HOME button at boot !" #define DESC_BOOT_QUIET "In quiet boot mode, splash is not displayed and the boot is continued via the first available autoboot slot.\n \n! To enter the menu, hold the HOME button at boot !" -#define DESC_CHANGE_BOOT "Change fastboot3ds boot mode. This allows you to set up how your console boots." +#define DESC_CHANGE_BOOT "Change uwuboot boot mode. This allows you to set up how your console boots." #define DESC_FCRAM_BOOT "Enable booting firm from FCRAM. This is required for proper A9NC and A9SP support, don't enable this if you use neither." #define DESC_SPLASH_CUSTOM "Select a custom splash. This is compatible with Luma 3DS format splash screens." -#define DESC_SPLASH_DEFAULT "Use default fastboot3DS splash screen." +#define DESC_SPLASH_DEFAULT "Use default uwuboot splash screen." #define DESC_SPLASH_DELAY "Change splash display duration." -#define DESC_CHANGE_SPLASH "Change fastboot3ds splash screen. Will only be displayed in normal and quick boot modes." +#define DESC_CHANGE_SPLASH "Change uwuboot splash screen. Will only be displayed in normal and quick boot modes." #define DESC_NAND_BACKUP "Backup current NAND to a file." -#define DESC_NAND_RESTORE "Restore current NAND from a file.\nThis option preserves your fastboot3ds installation." -#define DESC_NAND_RESTORE_F "Restore current NAND from a file.\nWARNING: This will overwrite all of your flash memory, also overwriting fastboot3ds." +#define DESC_NAND_RESTORE "Restore current NAND from a file.\nThis option preserves your uwuboot installation." +#define DESC_NAND_RESTORE_F "Restore current NAND from a file.\nWARNING: This will overwrite all of your flash memory, also overwriting uwuboot." #define DESC_FIRM_FLASH "Flash firmware from file to firm1:.\nWARNING: This will allow you to flash unsigned firmware, overwriting anything previously installed in firm1:." #define DESC_DUMP_BOOTROM "Dump boot9.bin, boot11.bin & otp.bin.\nFiles are written to sdmc:/3DS. Your console will power off when finished." -#define DESC_UPDATE "Update fastboot3ds. Only signed updates are allowed." +#define DESC_UPDATE "Update uwuboot. Only signed updates are allowed." #define DESC_MOVE_CONFIG "Change location of the config file." -#define DESC_CREDITS "Show fastboot3ds credits." +#define DESC_CREDITS "Show uwuboot credits." // unused definitions below: #define LOREM "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata" -#define DESC_CHANGE_BRIGHT "Change fastboot3ds brightness. This may also affect firmware launched from within fastboot3ds." +#define DESC_CHANGE_BRIGHT "Change uwuboot brightness. This may also affect firmware launched from within uwuboot." #define DESC_SET_CONTIG "Enable/disable contiguous NAND backups.\nContiguous NAND backups may be required on certain CFWs to be bootable from SD cards." #define DESC_ENABLE_CONTIG "Select to enable contiguous NAND backups." @@ -155,7 +155,7 @@ { // 6 "Miscellaneous", 4, NULL, 0, { - { "Update fastboot3DS", DESC_UPDATE, &menuUpdateFastboot3ds, 0 }, + { "Update uwuboot", DESC_UPDATE, &menuUpdateFastboot3ds, 0 }, { "Dump bootroms & OTP", DESC_DUMP_BOOTROM, &menuDumpBootrom, 0 }, { "Change config location", DESC_MOVE_CONFIG, &menuMoveConfig, 0 }, { "Credits", DESC_CREDITS, &menuShowCredits, 0 } diff --git a/source/arm11/config.c b/source/arm11/config.c index 7c7a51b..e58db28 100644 --- a/source/arm11/config.c +++ b/source/arm11/config.c @@ -33,8 +33,8 @@ #define MAX_FILE_SIZE (0x4000u - 1) -static const char *SdmcFilepath = "sdmc:/3ds/fastbootcfg.txt"; -static const char *NandFilepath = "nand:/fastboot3DS/fastbootcfg.txt"; +static const char *SdmcFilepath = "sdmc:/3ds/uwubootfg.txt"; +static const char *NandFilepath = "nand:/fastboot3DS/uwubootcfg.txt"; static const char *filepath; @@ -1181,7 +1181,7 @@ bool configDevModeEnabled() { - return safeReadBoolKey(KDevMode); + return true; } bool configRamFirmBootEnabled() diff --git a/source/arm11/menu/menu_func.c b/source/arm11/menu/menu_func.c index 7c7125d..4908567 100644 --- a/source/arm11/menu/menu_func.c +++ b/source/arm11/menu/menu_func.c @@ -977,7 +977,7 @@ { ee_printf(ESC_SCHEME_BAD "failed!\n" ESC_RESET); if (ret == -6) - ee_printf("Fastboot3DS not installed in FIRM0.\n"); + ee_printf("uwuboot not installed in FIRM0.\n"); else ee_printf("Unknown error.\n"); goto fail; @@ -1053,7 +1053,7 @@ consoleSelect(term_con); consoleClear(); - ee_printf_screen_center("Select fastboot3DS update file.\nPress [HOME] to cancel."); + ee_printf_screen_center("Select uwuboot update file.\nPress [HOME] to cancel."); updateScreens(); if (!menuFileSelector(firm_path, menu_con, NULL, "*firm*", true, false)) return MENU_FAIL; // cancel by user @@ -1063,7 +1063,7 @@ consoleSelect(term_con); consoleClear(); - ee_printf(ESC_SCHEME_ACCENT1 "Updating fastboot3DS from file:\n%s\n" ESC_RESET "\nChecking battery... ", firm_path); + ee_printf(ESC_SCHEME_ACCENT1 "Updating uwuboot from file:\n%s\n" ESC_RESET "\nChecking battery... ", firm_path); BatteryState battery; getBatteryState(&battery); @@ -1094,7 +1094,7 @@ break; case UPDATE_ERR_INVALID_SIG: - ee_printf("Not a fastboot3DS update firmware.\n"); + ee_printf("Not a uwuboot update firmware.\n"); break; case UPDATE_ERR_NOT_INSTALLED: @@ -1120,7 +1120,7 @@ } ee_printf(ESC_SCHEME_GOOD "OK\n" ESC_RESET); - ee_printf(ESC_SCHEME_GOOD "\nfastboot3DS was updated.\nSystem will reboot.\n" ESC_RESET); + ee_printf(ESC_SCHEME_GOOD "\nuwuboot was updated.\nSystem will reboot.\n" ESC_RESET); result = MENU_RET_REBOOT; @@ -1212,29 +1212,19 @@ // credits term_con->cursorY = 1; ee_printf(ESC_SCHEME_ACCENT0); - ee_printf_line_center("Fastboot3DS Credits"); + ee_printf_line_center("uwuboot Credits"); ee_printf_line_center("==================="); ee_printf_line_center(""); ee_printf(ESC_SCHEME_STD); ee_printf_line_center("Main developers:"); ee_printf(ESC_SCHEME_WEAK); - ee_printf_line_center("derrek"); - ee_printf_line_center("profi200"); - ee_printf_line_center("d0k3"); + ee_printf_line_center("AToska21"); + ee_printf_line_center("DJMrTV"); ee_printf_line_center(""); ee_printf(ESC_SCHEME_STD); ee_printf_line_center("Thanks to:"); ee_printf(ESC_SCHEME_WEAK); - ee_printf_line_center("yellows8"); - ee_printf_line_center("plutoo"); - ee_printf_line_center("smea"); - ee_printf_line_center("Normmatt (for sdmmc code)"); - ee_printf_line_center("WinterMute (for console code)"); - ee_printf_line_center("ctrulib devs (for HID code)"); - ee_printf_line_center("Luma 3DS devs (for fmt.c/gfx code)"); - ee_printf_line_center("mtheall (for LZ11 decompress code)"); - ee_printf_line_center("devkitPro (for the toolchain/makefiles)"); - ee_printf_line_center("ChaN (for the FATFS library)"); + ee_printf_line_center("oomi_the_octo"); ee_printf_line_center("... everyone who contributed to 3dbrew.org"); updateScreens();