1
0
Fork 0
mirror of https://github.com/DarkMatterCore/nxdumptool.git synced 2024-09-19 21:43:44 +01:00
nxdumptool/todo.txt

34 lines
1.2 KiB
Plaintext
Raw Normal View History

2020-07-07 14:01:17 +01:00
todo:
2020-07-22 21:37:31 +01:00
nca: function to write re-encrypted nca headers / nca fs headers (don't forget nca0 please)
2020-07-23 22:30:01 +01:00
nca: function to patch the private npdm acid signature from a program nca + patch the acid signature from the nca header
2020-07-07 14:01:17 +01:00
2020-07-22 21:50:10 +01:00
tik: make sure the common crypto cert (XS20, XS22) is available when fakesigning a ticket
2020-07-07 14:01:17 +01:00
tik: automatically dump tickets to the SD card?
tik: use dumped tickets when the original ones can't be found in the ES savefile?
2020-07-22 21:37:31 +01:00
gamecard: hfs0 filelist generation functions
2020-07-07 14:01:17 +01:00
2020-07-25 06:56:35 +01:00
mem: find a better way to block fs calls while debugging fs
2020-07-22 21:37:31 +01:00
pfs0: filelist generation functions
2020-07-07 14:01:17 +01:00
pfs0: full header aligned to 0x20 (nsp)
2020-07-22 21:37:31 +01:00
romfs: filelist generation functions
2020-07-07 14:01:17 +01:00
2020-07-22 21:37:31 +01:00
bktr: filelist generation functions (wrappers for romfs filelist generation functions)
2020-07-07 14:01:17 +01:00
char content_info_path[FS_MAX_PATH] = {0};
sprintf(content_info_path, "sdmc:/%016lX.bin", xml_program_info.title_id);
FILE *content_info = fopen(content_info_path, "wb");
if (content_info)
{
fwrite(titleContentInfos, 1, titleContentInfoCnt * sizeof(NcmContentInfo), content_info);
fclose(content_info);
}