Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d1678be654 | ||
|
|
2a78d3c924 | ||
|
|
d4010ba04d | ||
|
|
7b6c19f820 | ||
|
|
3274d18b83 | ||
|
|
472c0e293a |
@@ -17,6 +17,12 @@ Navigate around the menu's using the vol+, vol- and power buttons
|
||||
- Dumping your current firmware to sd
|
||||
- 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
|
||||
Based on [Lockpick_RCM](https://github.com/shchmue/Lockpick_RCM), and thus based on [Hekate](https://github.com/CTCaer/hekate)
|
||||
|
||||
|
||||
@@ -28,7 +28,7 @@ __attribute__ ((aligned (16))) FATFS emmc;
|
||||
LIST_INIT(gpt);
|
||||
|
||||
u8 bis_key[4][32];
|
||||
short pkg1ver;
|
||||
short pkg1ver = -1;
|
||||
|
||||
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(){
|
||||
gfx_printf("\n");
|
||||
gfx_printf("Bis_Key_00\n");
|
||||
gfx_hexdump(0, bis_key[0], 32);
|
||||
gfx_printf("Bis_Key_01\n");
|
||||
gfx_hexdump(0, bis_key[1], 32);
|
||||
gfx_printf("Bis_Key_02 & 03\n");
|
||||
gfx_hexdump(0, bis_key[2], 32);
|
||||
}
|
||||
|
||||
|
||||
@@ -363,8 +363,9 @@ void filemenu(const char *startpath){
|
||||
sprintf(temp, "\nSize: %d %s", fileobjects[res - 1].size, sizevalues[tempint - 4]);
|
||||
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;
|
||||
}
|
||||
else
|
||||
explfilemenu[7].property = -1;
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@ void clearscreen(){
|
||||
gfx_clear_grey(0x1B);
|
||||
gfx_box(0, 0, 719, 15, COLOR_WHITE);
|
||||
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.0.2%k%K\n", COLOR_DEFAULT, COLOR_WHITE, COLOR_WHITE, COLOR_DEFAULT);
|
||||
}
|
||||
|
||||
int message(char* message, u32 color){
|
||||
@@ -127,26 +127,33 @@ void printfsentry(fs_entry file, bool highlight, bool refresh){
|
||||
if (highlight)
|
||||
gfx_printf("%K%k", COLOR_WHITE, COLOR_DEFAULT);
|
||||
else
|
||||
gfx_printf("%K%k", COLOR_DEFAULT, COLOR_WHITE);
|
||||
RESETCOLOR;
|
||||
|
||||
if (file.property & ISDIR)
|
||||
gfx_printf("%s\n", display);
|
||||
gfx_printf("%s", display);
|
||||
else {
|
||||
for (size = 4; size < 8; size++)
|
||||
if ((file.property & (1 << size)))
|
||||
break;
|
||||
|
||||
gfx_printf("%k%s%K", COLOR_VIOLET, display, COLOR_DEFAULT);
|
||||
SWAPCOLOR(COLOR_VIOLET);
|
||||
gfx_printf("%s", display);
|
||||
}
|
||||
|
||||
RESETCOLOR;
|
||||
|
||||
if (refresh){
|
||||
length = strlen(display);
|
||||
for (int i = 0; i < (42 - length); i++)
|
||||
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]);
|
||||
}
|
||||
|
||||
free(display);
|
||||
}
|
||||
|
||||
@@ -2,6 +2,9 @@
|
||||
#include "te.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 message(char* message, u32 color);
|
||||
void clearscreen();
|
||||
|
||||
@@ -44,8 +44,8 @@ menu_item toolsmenu[5] = {
|
||||
menu_item formatmenu[4] = {
|
||||
{"-- FORMAT SD --\n", COLOR_RED, -1, 0},
|
||||
{"Back\n", COLOR_WHITE, -1, 1},
|
||||
{"Format to FAT32", COLOR_RED, FORMAT_ALL_FAT32, 1},
|
||||
{"Format for EmuMMC setup", COLOR_RED, FORMAT_EMUMMC, 1}
|
||||
{"Format entire SD to FAT32", COLOR_RED, FORMAT_ALL_FAT32, 1},
|
||||
{"Format for EmuMMC setup (FAT32/RAW)", COLOR_RED, FORMAT_EMUMMC, 1}
|
||||
};
|
||||
|
||||
void fillmainmenu(){
|
||||
@@ -77,8 +77,13 @@ void fillmainmenu(){
|
||||
void te_main(){
|
||||
int res;
|
||||
|
||||
dump_biskeys();
|
||||
mount_emmc("SYSTEM", 2);
|
||||
if (dump_biskeys() == -1){
|
||||
message("Biskeys failed to dump!\nEmmc will not be mounted!", COLOR_RED);
|
||||
mainmenu[1].property = -1;
|
||||
}
|
||||
else {
|
||||
mount_emmc("SYSTEM", 2);
|
||||
}
|
||||
|
||||
sd_mounted = sd_mount();
|
||||
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
#include "../libs/fatfs/diskio.h"
|
||||
#include "../storage/sdmmc.h"
|
||||
#include "../utils/sprintf.h"
|
||||
#include "../soc/fuse.h"
|
||||
#include "emmc.h"
|
||||
#include "fs.h"
|
||||
|
||||
@@ -22,11 +23,24 @@ void displayinfo(){
|
||||
FATFS *fs;
|
||||
DWORD fre_clust, fre_sect, tot_sect;
|
||||
u32 capacity;
|
||||
u8 fuse_count = 0;
|
||||
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();
|
||||
|
||||
RESETCOLOR;
|
||||
gfx_printf("\n-----\n\n");
|
||||
|
||||
SWAPCOLOR(COLOR_BLUE);
|
||||
|
||||
if (!sd_mount()){
|
||||
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);
|
||||
}
|
||||
|
||||
RESETCOLOR;
|
||||
gfx_printf("Press any key to continue");
|
||||
btn_wait();
|
||||
}
|
||||
@@ -51,7 +66,7 @@ void displayinfo(){
|
||||
void displaygpio(){
|
||||
int res;
|
||||
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);
|
||||
while (1){
|
||||
msleep(10);
|
||||
@@ -142,12 +157,11 @@ int format(int mode){
|
||||
totalsectors = sd_storage.csd.capacity;
|
||||
|
||||
if (mode == 0){
|
||||
if (totalsectors < 61145088){
|
||||
gfx_printf("%k\nNot enough free space for emummc!", COLOR_RED);
|
||||
if (totalsectors < 83886080){
|
||||
gfx_printf("%kYou seem to be running this on a <=32GB SD\nNot enough free space for emummc!", COLOR_RED);
|
||||
fatalerror = true;
|
||||
}
|
||||
|
||||
if (!fatalerror){
|
||||
else {
|
||||
plist[0] = totalsectors - 61145088;
|
||||
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