1
0
Fork 0
mirror of https://github.com/suchmememanyskill/TegraExplorer.git synced 2024-09-19 13:33:25 +01:00

Step 4: Fix the ini parser

also why am i using steps
This commit is contained in:
suchmememanyskill 2022-01-22 16:05:08 +01:00
parent c8468a6d73
commit 5c59d42a30
2 changed files with 10 additions and 2 deletions

View file

@ -1,6 +1,6 @@
For future reference if updating the BDK For future reference if updating the BDK
// TODO: fatfs, ini parser, memory map // TODO: memory map(?)
## /bdk/sec/SE.c&h ## /bdk/sec/SE.c&h
- Added se_aes_cmac - Added se_aes_cmac
@ -14,4 +14,10 @@ For future reference if updating the BDK
## /bdk/libs/fatfs/ff.c&h ## /bdk/libs/fatfs/ff.c&h
- Added f_fdisk_mod - Added f_fdisk_mod
- Stubbed exfat partition creation - Stubbed exfat partition creation
## /bdk/utils/ini.c
- Added initial 'unknown' section to parse prod.keys
## /bdk/libs
- Added nx-savedata from [Lockpick_RCM](https://github.com/shchmue/Lockpick_RCM)

View file

@ -101,6 +101,8 @@ int ini_parse(link_t *dst, char *ini_path, bool is_dir)
} }
lbuf = malloc(512); lbuf = malloc(512);
csec = _ini_create_section(dst, csec, "Unknown", INI_CHOICE);
list_init(&csec->kvs);
do do
{ {