mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-08 13:11:54 +00:00
See pkg1 version on biskey dump failure
This commit is contained in:
parent
b8b37e78ba
commit
28fb01b155
2 changed files with 7 additions and 1 deletions
|
@ -139,6 +139,7 @@ int dump_biskeys(){
|
|||
u8 *pkg1 = (u8 *)malloc(0x40000);
|
||||
sdmmc_storage_set_mmc_partition(&storage, 1);
|
||||
sdmmc_storage_read(&storage, 0x100000 / NX_EMMC_BLOCKSIZE, 0x40000 / NX_EMMC_BLOCKSIZE, pkg1);
|
||||
strncpy(pkg1inf.id, pkg1 + 0x10, 14);
|
||||
const pkg1_id_t *pkg1_id = pkg1_identify(pkg1);
|
||||
if (!pkg1_id) {
|
||||
EPRINTF("Unknown pkg1 version.");
|
||||
|
|
|
@ -35,7 +35,12 @@ void displayinfo(){
|
|||
|
||||
SWAPCOLOR(COLOR_ORANGE);
|
||||
|
||||
gfx_printf("Fuse count: %d\nPKG1 version: %d\nPKG1 id: %s\n\n", fuse_count, pkg1.ver, pkg1.id);
|
||||
gfx_printf("Fuse count: %d\nPKG1 id: %s\n", fuse_count, pkg1.id);
|
||||
if (pkg1.ver >= 0)
|
||||
gfx_printf("PKG1 version: %d\n", pkg1.ver);
|
||||
|
||||
gfx_printf("\n");
|
||||
|
||||
print_biskeys();
|
||||
|
||||
RESETCOLOR;
|
||||
|
|
Loading…
Reference in a new issue