1
0
Fork 0
forked from len0rd/rockbox

Add microtar library (for use by M3K bootloader)

This is an MIT-licensed library for reading and writing v7 format
tar files. The version here is my fork, which fixes security issues
in the original code (it hasn't been updated in 4 years, probably
abandoned by the author).

Change-Id: I86d41423dacc46e9fa0514b4fc7386a96c216e86
This commit is contained in:
Aidan MacDonald 2021-05-11 13:05:13 +01:00
parent adff45ca21
commit 9a19360398
10 changed files with 945 additions and 3 deletions

6
lib/microtar/SOURCES Normal file
View file

@ -0,0 +1,6 @@
src/microtar.c
#ifdef ROCKBOX
src/microtar-rockbox.c
#else
src/microtar-stdio.c
#endif