Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6518f37b1c | ||
|
|
81e97fa820 | ||
|
|
12802bf371 | ||
|
|
d1678be654 | ||
|
|
2a78d3c924 | ||
|
|
d4010ba04d | ||
|
|
7b6c19f820 | ||
|
|
3274d18b83 | ||
|
|
472c0e293a | ||
|
|
2e61413627 |
2
Makefile
2
Makefile
@@ -10,7 +10,7 @@ include $(DEVKITARM)/base_rules
|
|||||||
|
|
||||||
IPL_LOAD_ADDR := 0x40003000
|
IPL_LOAD_ADDR := 0x40003000
|
||||||
LPVERSION_MAJOR := 2
|
LPVERSION_MAJOR := 2
|
||||||
LPVERSION_MINOR := 0
|
LPVERSION_MINOR := 1
|
||||||
LPVERSION_BUGFX := 0
|
LPVERSION_BUGFX := 0
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|||||||
@@ -17,6 +17,12 @@ Navigate around the menu's using the vol+, vol- and power buttons
|
|||||||
- Dumping your current firmware to sd
|
- Dumping your current firmware to sd
|
||||||
- Formatting the sd card
|
- Formatting the sd card
|
||||||
|
|
||||||
|
## Support
|
||||||
|
|
||||||
|
For general CFW support, go to the [Nintendo Homebrew](https://discord.gg/C29hYvh) discord
|
||||||
|
|
||||||
|
For question specifically for TegraExplorer, go to [my discord](https://discord.gg/aH9rsuP)
|
||||||
|
|
||||||
# Credits
|
# Credits
|
||||||
Based on [Lockpick_RCM](https://github.com/shchmue/Lockpick_RCM), and thus based on [Hekate](https://github.com/CTCaer/hekate)
|
Based on [Lockpick_RCM](https://github.com/shchmue/Lockpick_RCM), and thus based on [Hekate](https://github.com/CTCaer/hekate)
|
||||||
|
|
||||||
|
|||||||
@@ -151,7 +151,7 @@ DRESULT disk_read (
|
|||||||
__attribute__ ((aligned (16))) static u64 prev_cluster = -1;
|
__attribute__ ((aligned (16))) static u64 prev_cluster = -1;
|
||||||
__attribute__ ((aligned (16))) static u32 prev_sector = 0;
|
__attribute__ ((aligned (16))) static u32 prev_sector = 0;
|
||||||
bool needs_cache_sector = false;
|
bool needs_cache_sector = false;
|
||||||
|
/*
|
||||||
if (secindex == 0 || clear_sector_cache) {
|
if (secindex == 0 || clear_sector_cache) {
|
||||||
if (!sector_cache)
|
if (!sector_cache)
|
||||||
sector_cache = (sector_cache_t *)malloc(sizeof(sector_cache_t) * MAX_SEC_CACHE_ENTRIES);
|
sector_cache = (sector_cache_t *)malloc(sizeof(sector_cache_t) * MAX_SEC_CACHE_ENTRIES);
|
||||||
@@ -179,6 +179,7 @@ DRESULT disk_read (
|
|||||||
secindex++;
|
secindex++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
//system_part (pdrv == 1) ? system_part_sys : system_part_usr
|
//system_part (pdrv == 1) ? system_part_sys : system_part_usr
|
||||||
if (nx_emmc_part_read(&storage, system_part, sector, count, buff)) {
|
if (nx_emmc_part_read(&storage, system_part, sector, count, buff)) {
|
||||||
u32 tweak_exp = 0;
|
u32 tweak_exp = 0;
|
||||||
@@ -195,10 +196,12 @@ DRESULT disk_read (
|
|||||||
|
|
||||||
// fatfs will never pull more than a cluster
|
// fatfs will never pull more than a cluster
|
||||||
_emmc_xts(9, 8, 0, tweak, regen_tweak, tweak_exp, prev_cluster, buff, buff, count * 0x200);
|
_emmc_xts(9, 8, 0, tweak, regen_tweak, tweak_exp, prev_cluster, buff, buff, count * 0x200);
|
||||||
|
/*
|
||||||
if (needs_cache_sector) {
|
if (needs_cache_sector) {
|
||||||
memcpy(sector_cache[s].cached_sector, buff, 0x200);
|
memcpy(sector_cache[s].cached_sector, buff, 0x200);
|
||||||
memcpy(sector_cache[s].tweak, tweak, 0x10);
|
memcpy(sector_cache[s].tweak, tweak, 0x10);
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
prev_sector = sector + count - 1;
|
prev_sector = sector + count - 1;
|
||||||
return RES_OK;
|
return RES_OK;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -45,11 +45,20 @@
|
|||||||
sdmmc_t sd_sdmmc;
|
sdmmc_t sd_sdmmc;
|
||||||
sdmmc_storage_t sd_storage;
|
sdmmc_storage_t sd_storage;
|
||||||
__attribute__ ((aligned (16))) FATFS sd_fs;
|
__attribute__ ((aligned (16))) FATFS sd_fs;
|
||||||
static bool sd_mounted;
|
static bool sd_mounted, sd_inited;
|
||||||
volatile nyx_storage_t *nyx_str = (nyx_storage_t *)NYX_STORAGE_ADDR;
|
volatile nyx_storage_t *nyx_str = (nyx_storage_t *)NYX_STORAGE_ADDR;
|
||||||
hekate_config h_cfg;
|
hekate_config h_cfg;
|
||||||
boot_cfg_t __attribute__((section ("._boot_cfg"))) b_cfg;
|
boot_cfg_t __attribute__((section ("._boot_cfg"))) b_cfg;
|
||||||
|
|
||||||
|
bool return_sd_mounted(int value){
|
||||||
|
switch(value){
|
||||||
|
case 1:
|
||||||
|
return sd_mounted;
|
||||||
|
case 7:
|
||||||
|
return sd_inited;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
bool sd_mount()
|
bool sd_mount()
|
||||||
{
|
{
|
||||||
if (sd_mounted)
|
if (sd_mounted)
|
||||||
@@ -58,9 +67,11 @@ bool sd_mount()
|
|||||||
if (!sdmmc_storage_init_sd(&sd_storage, &sd_sdmmc, SDMMC_1, SDMMC_BUS_WIDTH_4, 11))
|
if (!sdmmc_storage_init_sd(&sd_storage, &sd_sdmmc, SDMMC_1, SDMMC_BUS_WIDTH_4, 11))
|
||||||
{
|
{
|
||||||
EPRINTF("Failed to init SD card.\nMake sure that it is inserted.\nOr that SD reader is properly seated!");
|
EPRINTF("Failed to init SD card.\nMake sure that it is inserted.\nOr that SD reader is properly seated!");
|
||||||
|
sd_inited = false;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
sd_inited = true;
|
||||||
int res = 0;
|
int res = 0;
|
||||||
res = f_mount(&sd_fs, "sd:", 1);
|
res = f_mount(&sd_fs, "sd:", 1);
|
||||||
if (res == FR_OK)
|
if (res == FR_OK)
|
||||||
@@ -84,6 +95,7 @@ void sd_unmount()
|
|||||||
f_mount(NULL, "sd:", 1);
|
f_mount(NULL, "sd:", 1);
|
||||||
sdmmc_storage_end(&sd_storage);
|
sdmmc_storage_end(&sd_storage);
|
||||||
sd_mounted = false;
|
sd_mounted = false;
|
||||||
|
sd_inited = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ __attribute__ ((aligned (16))) FATFS emmc;
|
|||||||
LIST_INIT(gpt);
|
LIST_INIT(gpt);
|
||||||
|
|
||||||
u8 bis_key[4][32];
|
u8 bis_key[4][32];
|
||||||
short pkg1ver;
|
short pkg1ver = -1;
|
||||||
|
|
||||||
static bool _key_exists(const void *data) { return memcmp(data, zeros, 0x10); };
|
static bool _key_exists(const void *data) { return memcmp(data, zeros, 0x10); };
|
||||||
|
|
||||||
@@ -44,9 +44,11 @@ static void _generate_kek(u32 ks, const void *key_source, void *master_key, cons
|
|||||||
}
|
}
|
||||||
|
|
||||||
void print_biskeys(){
|
void print_biskeys(){
|
||||||
gfx_printf("\n");
|
gfx_printf("Bis_Key_00\n");
|
||||||
gfx_hexdump(0, bis_key[0], 32);
|
gfx_hexdump(0, bis_key[0], 32);
|
||||||
|
gfx_printf("Bis_Key_01\n");
|
||||||
gfx_hexdump(0, bis_key[1], 32);
|
gfx_hexdump(0, bis_key[1], 32);
|
||||||
|
gfx_printf("Bis_Key_02 & 03\n");
|
||||||
gfx_hexdump(0, bis_key[2], 32);
|
gfx_hexdump(0, bis_key[2], 32);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -320,6 +320,10 @@ int delfile(const char *path, const char *filename){
|
|||||||
void filemenu(const char *startpath){
|
void filemenu(const char *startpath){
|
||||||
int amount, res, tempint;
|
int amount, res, tempint;
|
||||||
char temp[100];
|
char temp[100];
|
||||||
|
|
||||||
|
if (!strcmp(rootpath, "emmc:/") && !strcmp(startpath, "emmc:/"))
|
||||||
|
clipboardhelper = 0;
|
||||||
|
|
||||||
strcpy(rootpath, startpath);
|
strcpy(rootpath, startpath);
|
||||||
writecurpath(startpath);
|
writecurpath(startpath);
|
||||||
amount = readfolder(currentpath);
|
amount = readfolder(currentpath);
|
||||||
@@ -363,8 +367,9 @@ void filemenu(const char *startpath){
|
|||||||
sprintf(temp, "\nSize: %d %s", fileobjects[res - 1].size, sizevalues[tempint - 4]);
|
sprintf(temp, "\nSize: %d %s", fileobjects[res - 1].size, sizevalues[tempint - 4]);
|
||||||
strcpy(explfilemenu[2].name, temp);
|
strcpy(explfilemenu[2].name, temp);
|
||||||
|
|
||||||
if (strstr(fileobjects[res - 1].name, ".bin") != NULL)
|
if (strstr(fileobjects[res - 1].name, ".bin") != NULL && fileobjects[res - 1].size & ISKB){
|
||||||
explfilemenu[7].property = 1;
|
explfilemenu[7].property = 1;
|
||||||
|
}
|
||||||
else
|
else
|
||||||
explfilemenu[7].property = -1;
|
explfilemenu[7].property = -1;
|
||||||
|
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ void clearscreen(){
|
|||||||
gfx_clear_grey(0x1B);
|
gfx_clear_grey(0x1B);
|
||||||
gfx_box(0, 0, 719, 15, COLOR_WHITE);
|
gfx_box(0, 0, 719, 15, COLOR_WHITE);
|
||||||
gfx_con_setpos(0, 0);
|
gfx_con_setpos(0, 0);
|
||||||
gfx_printf("%k%KTegraexplorer%k%K\n", COLOR_DEFAULT, COLOR_WHITE, COLOR_WHITE, COLOR_DEFAULT);
|
gfx_printf("%k%KTegraexplorer v1.1.0%k%K\n", COLOR_DEFAULT, COLOR_WHITE, COLOR_WHITE, COLOR_DEFAULT);
|
||||||
}
|
}
|
||||||
|
|
||||||
int message(char* message, u32 color){
|
int message(char* message, u32 color){
|
||||||
@@ -127,26 +127,33 @@ void printfsentry(fs_entry file, bool highlight, bool refresh){
|
|||||||
if (highlight)
|
if (highlight)
|
||||||
gfx_printf("%K%k", COLOR_WHITE, COLOR_DEFAULT);
|
gfx_printf("%K%k", COLOR_WHITE, COLOR_DEFAULT);
|
||||||
else
|
else
|
||||||
gfx_printf("%K%k", COLOR_DEFAULT, COLOR_WHITE);
|
RESETCOLOR;
|
||||||
|
|
||||||
if (file.property & ISDIR)
|
if (file.property & ISDIR)
|
||||||
gfx_printf("%s\n", display);
|
gfx_printf("%s", display);
|
||||||
else {
|
else {
|
||||||
for (size = 4; size < 8; size++)
|
for (size = 4; size < 8; size++)
|
||||||
if ((file.property & (1 << size)))
|
if ((file.property & (1 << size)))
|
||||||
break;
|
break;
|
||||||
|
|
||||||
gfx_printf("%k%s%K", COLOR_VIOLET, display, COLOR_DEFAULT);
|
SWAPCOLOR(COLOR_VIOLET);
|
||||||
|
gfx_printf("%s", display);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
RESETCOLOR;
|
||||||
|
|
||||||
if (refresh){
|
if (refresh){
|
||||||
length = strlen(display);
|
length = strlen(display);
|
||||||
for (int i = 0; i < (42 - length); i++)
|
for (int i = 0; i < (42 - length); i++)
|
||||||
gfx_printf(" ");
|
gfx_printf(" ");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!(file.property & ISDIR))
|
if (file.property & ISDIR)
|
||||||
|
gfx_printf("\n");
|
||||||
|
else {
|
||||||
|
SWAPCOLOR(COLOR_BLUE);
|
||||||
gfx_printf("\a%d\e%s", file.size, sizevalues[size - 4]);
|
gfx_printf("\a%d\e%s", file.size, sizevalues[size - 4]);
|
||||||
|
}
|
||||||
|
|
||||||
free(display);
|
free(display);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,6 +2,9 @@
|
|||||||
#include "te.h"
|
#include "te.h"
|
||||||
#include "fs.h"
|
#include "fs.h"
|
||||||
|
|
||||||
|
#define SWAPCOLOR(color) gfx_printf("%k", color)
|
||||||
|
#define RESETCOLOR gfx_printf("%k%K", COLOR_WHITE, COLOR_DEFAULT)
|
||||||
|
|
||||||
int makemenu(menu_item menu[], int menuamount);
|
int makemenu(menu_item menu[], int menuamount);
|
||||||
int message(char* message, u32 color);
|
int message(char* message, u32 color);
|
||||||
void clearscreen();
|
void clearscreen();
|
||||||
|
|||||||
@@ -10,12 +10,14 @@
|
|||||||
|
|
||||||
extern bool sd_mount();
|
extern bool sd_mount();
|
||||||
extern void sd_unmount();
|
extern void sd_unmount();
|
||||||
|
extern bool return_sd_mounted(int value);
|
||||||
extern int launch_payload(char *path);
|
extern int launch_payload(char *path);
|
||||||
bool sd_mounted;
|
|
||||||
|
|
||||||
menu_item mainmenu[MAINMENU_AMOUNT] = {
|
menu_item mainmenu[MAINMENU_AMOUNT] = {
|
||||||
{"[SD:/] SD CARD", COLOR_GREEN, SD_CARD, 1},
|
{"[SD:/] SD CARD\n", COLOR_GREEN, SD_CARD, 1},
|
||||||
{"[SYSTEM:/] EMMC", COLOR_GREEN, EMMC_SYS, 1},
|
{"[SYSTEM:/] EMMC", COLOR_ORANGE, EMMC_SYS, 1},
|
||||||
|
{"[USER:/] EMMC", COLOR_ORANGE, EMMC_USR, 1},
|
||||||
|
{"[SAFE:/] EMMC", COLOR_ORANGE, EMMC_SAF, 1},
|
||||||
{"\nMount/Unmount SD", COLOR_WHITE, MOUNT_SD, 1},
|
{"\nMount/Unmount SD", COLOR_WHITE, MOUNT_SD, 1},
|
||||||
{"Tools", COLOR_VIOLET, TOOLS, 1},
|
{"Tools", COLOR_VIOLET, TOOLS, 1},
|
||||||
{"SD format", COLOR_VIOLET, SD_FORMAT, 1},
|
{"SD format", COLOR_VIOLET, SD_FORMAT, 1},
|
||||||
@@ -44,8 +46,14 @@ menu_item toolsmenu[5] = {
|
|||||||
menu_item formatmenu[4] = {
|
menu_item formatmenu[4] = {
|
||||||
{"-- FORMAT SD --\n", COLOR_RED, -1, 0},
|
{"-- FORMAT SD --\n", COLOR_RED, -1, 0},
|
||||||
{"Back\n", COLOR_WHITE, -1, 1},
|
{"Back\n", COLOR_WHITE, -1, 1},
|
||||||
{"Format to FAT32", COLOR_RED, FORMAT_ALL_FAT32, 1},
|
{"Format entire SD to FAT32", COLOR_RED, FORMAT_ALL_FAT32, 1},
|
||||||
{"Format for EmuMMC setup", COLOR_RED, FORMAT_EMUMMC, 1}
|
{"Format for EmuMMC setup (FAT32/RAW)", COLOR_RED, FORMAT_EMUMMC, 1}
|
||||||
|
};
|
||||||
|
|
||||||
|
const char emmc_entries[3][8] = {
|
||||||
|
"SAFE",
|
||||||
|
"SYSTEM",
|
||||||
|
"USER"
|
||||||
};
|
};
|
||||||
|
|
||||||
void fillmainmenu(){
|
void fillmainmenu(){
|
||||||
@@ -54,14 +62,14 @@ void fillmainmenu(){
|
|||||||
for (i = 0; i < MAINMENU_AMOUNT; i++){
|
for (i = 0; i < MAINMENU_AMOUNT; i++){
|
||||||
switch (i + 1) {
|
switch (i + 1) {
|
||||||
case 1:
|
case 1:
|
||||||
case 5:
|
case 7:
|
||||||
if (sd_mounted)
|
if (return_sd_mounted(i + 1))
|
||||||
mainmenu[i].property = 1;
|
mainmenu[i].property = 1;
|
||||||
else
|
else
|
||||||
mainmenu[i].property = -1;
|
mainmenu[i].property = -1;
|
||||||
break;
|
break;
|
||||||
case 3:
|
case 5:
|
||||||
if (sd_mounted){
|
if (return_sd_mounted(1)){
|
||||||
mainmenu[i].property = 2;
|
mainmenu[i].property = 2;
|
||||||
strcpy(mainmenu[i].name, "\nUnmount SD");
|
strcpy(mainmenu[i].name, "\nUnmount SD");
|
||||||
}
|
}
|
||||||
@@ -77,10 +85,12 @@ void fillmainmenu(){
|
|||||||
void te_main(){
|
void te_main(){
|
||||||
int res;
|
int res;
|
||||||
|
|
||||||
dump_biskeys();
|
if (dump_biskeys() == -1){
|
||||||
mount_emmc("SYSTEM", 2);
|
message("Biskeys failed to dump!\nEmmc will not be mounted!", COLOR_RED);
|
||||||
|
mainmenu[1].property = -1;
|
||||||
sd_mounted = sd_mount();
|
mainmenu[2].property = -1;
|
||||||
|
mainmenu[3].property = -1;
|
||||||
|
}
|
||||||
|
|
||||||
while (1){
|
while (1){
|
||||||
fillmainmenu();
|
fillmainmenu();
|
||||||
@@ -90,23 +100,26 @@ void te_main(){
|
|||||||
case SD_CARD:
|
case SD_CARD:
|
||||||
filemenu("SD:/");
|
filemenu("SD:/");
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case EMMC_SAF:
|
||||||
case EMMC_SYS:
|
case EMMC_SYS:
|
||||||
if (makewaitmenu("You're about to enter EMMC\nModifying anything here\n can result in a BRICK!\n\nPlease only continue\n if you know what you're doing\n\nPress Vol+/- to return\n", "Press Power to enter", 4))
|
|
||||||
filemenu("emmc:/");
|
|
||||||
break;
|
|
||||||
/*
|
|
||||||
case EMMC_USR:
|
case EMMC_USR:
|
||||||
mount_emmc("USER", 2);
|
|
||||||
|
if (makewaitmenu("You're about to enter EMMC\nModifying anything here\n can result in a BRICK!\n\nPlease only continue\n if you know what you're doing\n\nPress Vol+/- to return\n", "Press Power to enter", 4)){
|
||||||
|
if (!mount_emmc(emmc_entries[res - 2], res - 1)){
|
||||||
filemenu("emmc:/");
|
filemenu("emmc:/");
|
||||||
break;
|
|
||||||
*/
|
|
||||||
case MOUNT_SD:
|
|
||||||
if (sd_mounted){
|
|
||||||
sd_mounted = false;
|
|
||||||
sd_unmount();
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
sd_mounted = sd_mount();
|
message("EMMC failed to mount!", COLOR_RED);
|
||||||
|
}
|
||||||
|
|
||||||
|
break;
|
||||||
|
|
||||||
|
case MOUNT_SD:
|
||||||
|
if (return_sd_mounted(1))
|
||||||
|
sd_unmount();
|
||||||
|
else
|
||||||
|
sd_mount();
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@@ -133,7 +146,6 @@ void te_main(){
|
|||||||
if(makewaitmenu("Are you sure you want to format your sd?\nThis will delete everything on your SD card\nThis action is irreversible!\n\nPress Vol+/- to cancel\n", "Press Power to continue", 10)){
|
if(makewaitmenu("Are you sure you want to format your sd?\nThis will delete everything on your SD card\nThis action is irreversible!\n\nPress Vol+/- to cancel\n", "Press Power to continue", 10)){
|
||||||
if (format(res)){
|
if (format(res)){
|
||||||
sd_unmount();
|
sd_unmount();
|
||||||
sd_mounted = false;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -145,7 +157,7 @@ void te_main(){
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case EXIT:
|
case EXIT:
|
||||||
if (sd_mounted){
|
if (return_sd_mounted(1)){
|
||||||
if (checkfile("/bootloader/update.bin"))
|
if (checkfile("/bootloader/update.bin"))
|
||||||
shutdownmenu[5].property = 1;
|
shutdownmenu[5].property = 1;
|
||||||
else
|
else
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include "../utils/types.h"
|
#include "../utils/types.h"
|
||||||
|
|
||||||
#define MAINMENU_AMOUNT 7
|
#define MAINMENU_AMOUNT 9
|
||||||
#define CREDITS_MESSAGE "\nTegraexplorer, made by:\nSuch Meme, Many Skill\n\nProject based on:\nLockpick_RCM\nHekate\n\nCool people:\nshchmue\ndennthecafebabe\nDax"
|
#define CREDITS_MESSAGE "\nTegraexplorer, made by:\nSuch Meme, Many Skill\n\nProject based on:\nLockpick_RCM\nHekate\n\nCool people:\nshchmue\ndennthecafebabe\nDax"
|
||||||
|
|
||||||
typedef struct _menu_item {
|
typedef struct _menu_item {
|
||||||
@@ -13,6 +13,7 @@ typedef struct _menu_item {
|
|||||||
|
|
||||||
enum mainmenu_return {
|
enum mainmenu_return {
|
||||||
SD_CARD = 1,
|
SD_CARD = 1,
|
||||||
|
EMMC_SAF,
|
||||||
EMMC_SYS,
|
EMMC_SYS,
|
||||||
EMMC_USR,
|
EMMC_USR,
|
||||||
MOUNT_SD,
|
MOUNT_SD,
|
||||||
|
|||||||
@@ -9,6 +9,7 @@
|
|||||||
#include "../libs/fatfs/diskio.h"
|
#include "../libs/fatfs/diskio.h"
|
||||||
#include "../storage/sdmmc.h"
|
#include "../storage/sdmmc.h"
|
||||||
#include "../utils/sprintf.h"
|
#include "../utils/sprintf.h"
|
||||||
|
#include "../soc/fuse.h"
|
||||||
#include "emmc.h"
|
#include "emmc.h"
|
||||||
#include "fs.h"
|
#include "fs.h"
|
||||||
|
|
||||||
@@ -22,11 +23,24 @@ void displayinfo(){
|
|||||||
FATFS *fs;
|
FATFS *fs;
|
||||||
DWORD fre_clust, fre_sect, tot_sect;
|
DWORD fre_clust, fre_sect, tot_sect;
|
||||||
u32 capacity;
|
u32 capacity;
|
||||||
|
u8 fuse_count = 0;
|
||||||
int res;
|
int res;
|
||||||
|
|
||||||
gfx_printf("Biskeys:\n");
|
for (u32 i = 0; i < 32; i++){
|
||||||
|
if ((fuse_read_odm(7) >> i) & 1)
|
||||||
|
fuse_count++;
|
||||||
|
}
|
||||||
|
|
||||||
|
SWAPCOLOR(COLOR_ORANGE);
|
||||||
|
|
||||||
|
gfx_printf("Fuse count: %d\nPKG1 version: %d\n\n", fuse_count, returnpkg1ver());
|
||||||
print_biskeys();
|
print_biskeys();
|
||||||
|
|
||||||
|
RESETCOLOR;
|
||||||
|
gfx_printf("\n-----\n\n");
|
||||||
|
|
||||||
|
SWAPCOLOR(COLOR_BLUE);
|
||||||
|
|
||||||
if (!sd_mount()){
|
if (!sd_mount()){
|
||||||
gfx_printf("SD mount failed!\nFailed to display SD info\n");
|
gfx_printf("SD mount failed!\nFailed to display SD info\n");
|
||||||
}
|
}
|
||||||
@@ -44,6 +58,7 @@ void displayinfo(){
|
|||||||
gfx_printf("First partition on SD:\nSectors: %d\nSpace total: %d MB\nSpace free: %d MB\n\n", tot_sect, tot_sect / 2048, fre_sect / 2048);
|
gfx_printf("First partition on SD:\nSectors: %d\nSpace total: %d MB\nSpace free: %d MB\n\n", tot_sect, tot_sect / 2048, fre_sect / 2048);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
RESETCOLOR;
|
||||||
gfx_printf("Press any key to continue");
|
gfx_printf("Press any key to continue");
|
||||||
btn_wait();
|
btn_wait();
|
||||||
}
|
}
|
||||||
@@ -51,7 +66,7 @@ void displayinfo(){
|
|||||||
void displaygpio(){
|
void displaygpio(){
|
||||||
int res;
|
int res;
|
||||||
clearscreen();
|
clearscreen();
|
||||||
gfx_printf("Updates gpio pins ever 50ms:\nPress power to exit");
|
gfx_printf("Updates gpio pins every 50ms:\nPress power to exit");
|
||||||
msleep(200);
|
msleep(200);
|
||||||
while (1){
|
while (1){
|
||||||
msleep(10);
|
msleep(10);
|
||||||
@@ -82,6 +97,7 @@ int dumpfirmware(){
|
|||||||
u32 timer = get_tmr_s();
|
u32 timer = get_tmr_s();
|
||||||
|
|
||||||
clearscreen();
|
clearscreen();
|
||||||
|
mount_emmc("SYSTEM", 2);
|
||||||
|
|
||||||
gfx_printf("PKG1 version: %d\n", pkg1ver);
|
gfx_printf("PKG1 version: %d\n", pkg1ver);
|
||||||
|
|
||||||
@@ -131,7 +147,7 @@ int format(int mode){
|
|||||||
DWORD plist[] = {666, 61145088};
|
DWORD plist[] = {666, 61145088};
|
||||||
u32 timer, totalsectors;
|
u32 timer, totalsectors;
|
||||||
BYTE work[FF_MAX_SS];
|
BYTE work[FF_MAX_SS];
|
||||||
DWORD clustsize = 16 * 512;
|
DWORD clustsize = 32768;
|
||||||
BYTE formatoptions = 0;
|
BYTE formatoptions = 0;
|
||||||
formatoptions |= (FM_FAT32);
|
formatoptions |= (FM_FAT32);
|
||||||
//formatoptions |= (FM_SFD);
|
//formatoptions |= (FM_SFD);
|
||||||
@@ -142,12 +158,11 @@ int format(int mode){
|
|||||||
totalsectors = sd_storage.csd.capacity;
|
totalsectors = sd_storage.csd.capacity;
|
||||||
|
|
||||||
if (mode == 0){
|
if (mode == 0){
|
||||||
if (totalsectors < 61145088){
|
if (totalsectors < 83886080){
|
||||||
gfx_printf("%k\nNot enough free space for emummc!", COLOR_RED);
|
gfx_printf("%kYou seem to be running this on a <=32GB SD\nNot enough free space for emummc!", COLOR_RED);
|
||||||
fatalerror = true;
|
fatalerror = true;
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
if (!fatalerror){
|
|
||||||
plist[0] = totalsectors - 61145088;
|
plist[0] = totalsectors - 61145088;
|
||||||
gfx_printf("\nStarting SD partitioning:\nTotalSectors: %d\nPartition1 (SD): %d\nPartition2 (EMUMMC): %d\n", totalsectors, plist[0], plist[1]);
|
gfx_printf("\nStarting SD partitioning:\nTotalSectors: %d\nPartition1 (SD): %d\nPartition2 (EMUMMC): %d\n", totalsectors, plist[0], plist[1]);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user