mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-09 21:51:48 +00:00
Implement hacky solution to launch firmwaredumper
// i swear this shit hates me
This commit is contained in:
parent
d4eb56a35f
commit
0c4be1f917
2 changed files with 9 additions and 20 deletions
|
@ -91,7 +91,7 @@ void meme_main(){
|
||||||
break;
|
break;
|
||||||
case 3:
|
case 3:
|
||||||
ret = messagebox("\nThis will dump your firmware to your sd!\nThis might take a while\n\nVol-/+ to cancel\nPower to continue...");
|
ret = messagebox("\nThis will dump your firmware to your sd!\nThis might take a while\n\nVol-/+ to cancel\nPower to continue...");
|
||||||
if (ret == 0) wtf(itemsinfolder, muhbits);
|
if (ret == 0 && sd_mounted) sdexplorer(itemsinfolder, muhbits, "DumpFirmware");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -84,8 +84,6 @@ int dumpfirmware(char *items[], unsigned int *muhbits){
|
||||||
f_mkdir("sd:/tegraexplorer");
|
f_mkdir("sd:/tegraexplorer");
|
||||||
f_mkdir("sd:/tegraexplorer/firmware");
|
f_mkdir("sd:/tegraexplorer/firmware");
|
||||||
|
|
||||||
readfolder(items, muhbits, path);
|
|
||||||
|
|
||||||
if (f_opendir(&dir, path)) {
|
if (f_opendir(&dir, path)) {
|
||||||
messagebox("Failed to open directory!");
|
messagebox("Failed to open directory!");
|
||||||
return -1;
|
return -1;
|
||||||
|
@ -99,19 +97,10 @@ int dumpfirmware(char *items[], unsigned int *muhbits){
|
||||||
|
|
||||||
f_closedir(&dir);
|
f_closedir(&dir);
|
||||||
|
|
||||||
for (i = 0; i <= foldersize; i++){
|
for (i = 0; i < foldersize; i++){
|
||||||
if (muhbits[i] & AM_DIR){
|
if (muhbits[i] & AM_DIR){
|
||||||
sprintf(tempnand, "%s/%s", path, items[i]);
|
|
||||||
if(f_opendir(&dir, tempnand)){
|
|
||||||
messagebox("Failure opening folder");
|
|
||||||
return -2;
|
|
||||||
}
|
|
||||||
sprintf(tempnand, "%s/%s/00", path, items[i]);
|
sprintf(tempnand, "%s/%s/00", path, items[i]);
|
||||||
sprintf(tempsd, "%s/%s", sdpath, items[i]);
|
sprintf(tempsd, "%s/%s", sdpath, items[i]);
|
||||||
//messagebox(tempnand);
|
|
||||||
//dumptosd(tempnand);
|
|
||||||
//btn_wait();
|
|
||||||
//messagebox(tempsd);
|
|
||||||
ret = copy(tempnand, tempsd, 0);
|
ret = copy(tempnand, tempsd, 0);
|
||||||
if (ret != 0) {
|
if (ret != 0) {
|
||||||
messagebox("Copy failed! (infolder)");
|
messagebox("Copy failed! (infolder)");
|
||||||
|
@ -128,22 +117,22 @@ int dumpfirmware(char *items[], unsigned int *muhbits){
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
gfx_printf("Copied %d / %d nca files\r", i + 1, foldersize + 1);
|
gfx_printf("Copied %d / %d nca files\r", i + 1, foldersize);
|
||||||
}
|
}
|
||||||
|
messagebox("\nDump completed!\n\nThe firmware dump is located \n in sd:/tegraexplorer/firmware");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void wtf(char *items[], unsigned int *muhbits){
|
|
||||||
dumpfirmware(items, muhbits); // DOESNT WORK
|
|
||||||
}
|
|
||||||
|
|
||||||
void sdexplorer(char *items[], unsigned int *muhbits, char *rootpath){
|
void sdexplorer(char *items[], unsigned int *muhbits, char *rootpath){
|
||||||
//dumpfirmware(items, muhbits); // WORKS ?!?!?!?!
|
if (strcmp(rootpath, "DumpFirmware") == 0){
|
||||||
|
dumpfirmware(items, muhbits);
|
||||||
|
return;
|
||||||
|
}
|
||||||
int value = 1;
|
int value = 1;
|
||||||
int copymode = -1;
|
int copymode = -1;
|
||||||
int folderamount = 0;
|
int folderamount = 0;
|
||||||
char path[PATHSIZE] = "";
|
char path[PATHSIZE] = "";
|
||||||
static char clipboard[PATHSIZE + 1] = "";
|
char clipboard[PATHSIZE + 1] = "";
|
||||||
strcpy(path, rootpath);
|
strcpy(path, rootpath);
|
||||||
char app[20], rpp[20];
|
char app[20], rpp[20];
|
||||||
int temp = -1;
|
int temp = -1;
|
||||||
|
|
Loading…
Reference in a new issue