mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-09 21:51:48 +00:00
Step 4: Fix the ini parser
also why am i using steps
This commit is contained in:
parent
c8468a6d73
commit
5c59d42a30
2 changed files with 10 additions and 2 deletions
|
@ -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
|
||||||
|
@ -15,3 +15,9 @@ 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)
|
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue