aboutsummaryrefslogtreecommitdiff
path: root/toys/posix/tar.c
AgeCommit message (Expand)Author
2021-03-09Minor tweaks: #define -> inlineable function, while() -> for(;;)Rob Landley
2021-03-09tar: fix base-256 output.Elliott Hughes
2021-02-28Tar should remove empty directories where it wants to put a non-directory.Rob Landley
2020-08-24tar: add -I (--use-compress-program) support.Elliott Hughes
2020-08-19Cleanup symlink handling.Rob Landley
2020-08-19Patch out memory leak in tar.cChris Sarra
2020-06-23William Djupström reported tar --exclude wasn't working. Fix and add test.Rob Landley
2020-06-09tar: fix bugs with adding hardlinks to archiveWilliam Djupström via Toybox
2020-06-08tar: fix extracting long file pathsWilliam Djupström
2020-03-23tar: implement --absolute-names.Elliott Hughes
2020-03-18Fix WARN_ONLY (and the one caller feeding it in the field it was checking).Rob Landley
2020-03-13Fix various typos.Elliott Hughes
2020-02-02Canonicalize the usage: lines for the POSIX toys.Elliott Hughes
2019-12-28Change variable type to avoid typecast.Rob Landley
2019-12-28tar: fix memory write errorEmmanuel Nicolet
2019-11-13Pedantic constant annotations to shut up older toolchains.Rob Landley
2019-10-27Tar extract should delete files or symlinks where it's making a directory,Rob Landley
2019-10-04Fix extracting old tarballs, not just -tv of them.Rob Landley
2019-10-03Improve support for extracting older tarball formats.Rob Landley
2019-09-18Fix tar creation with hole at end.Rob Landley
2019-09-16bug: tar tvf blah.tar.xz was running xz when it meant xzcat.Rob Landley
2019-09-15Fix tar files that end sparse (need to call truncate), and display/exportRob Landley
2019-06-25tar: implement --mode.Elliott Hughes
2019-06-01Teach file to recognize xz archives and old style tarballs.Rob Landley
2019-06-01Teach tar to extract older tarballs.Rob Landley
2019-05-25Toybox doesn't provide bzip2 or xz compression side (and the roadmap has it asRob Landley
2019-05-23tar: turns out --sparse is also known as -S.Elliott Hughes
2019-05-20Less incomplete tar help text.Rob Landley
2019-05-19Fix tar sparse extract with extension blocks.Rob Landley
2019-05-19Fix tar --sparse generation of extension block.Rob Landley
2019-05-19Add pointless trailing --sparse entry for exact binary compartibility.Rob Landley
2019-05-19Add --sparse file creation support to tar.Rob Landley
2019-05-14Checked in a debugging printf. Oops.Rob Landley
2019-05-14Typo caused a segfault. (Oops.)Rob Landley
2019-05-13Fix a couple error paths that don't continue archive create/extract properly.Rob Landley
2019-05-11Teach tar to extract type 'S' sparse file headers.Rob Landley
2019-05-01tar: use same tools for decompression as for compression.Elliott Hughes
2019-04-21Promote tar.Rob Landley