aboutsummaryrefslogtreecommitdiff
path: root/archival (follow)
Commit message (Collapse)AuthorAgeFilesLines
* More whitespace than you can possibly imagine...landley2006-02-171-18/+145
| | | | git-svn-id: svn://busybox.net/trunk/busybox@14083 69ca8d6d-28ef-0310-b511-8ec308f3f277
* make the build system puuuuuuuuuuurtyvapier2006-02-022-6/+4
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13793 69ca8d6d-28ef-0310-b511-8ec308f3f277
* passing around an int as a void* is a very bad ideaandersen2006-01-301-10/+5
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13724 69ca8d6d-28ef-0310-b511-8ec308f3f277
* sort out yet more type issuesandersen2006-01-301-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13722 69ca8d6d-28ef-0310-b511-8ec308f3f277
* fixup a few types to prevent gcc (rightfully) whining about mixingandersen2006-01-301-4/+4
| | | | | | | signed and unsigned, unmatches pointer target types, etc git-svn-id: svn://busybox.net/trunk/busybox@13719 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - add some ATTRIBUTE_UNUSED.aldot2006-01-302-29/+4
| | | | | | | - use shorter boilerplate while at it. git-svn-id: svn://busybox.net/trunk/busybox@13718 69ca8d6d-28ef-0310-b511-8ec308f3f277
* just whitespacetimr2006-01-2511-53/+53
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13584 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - add platform.h.aldot2006-01-222-19/+6
| | | | | | | - use shorter boilerplate while at it. git-svn-id: svn://busybox.net/trunk/busybox@13494 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Aurelien Jacobs to add unlzma. (A new decompression type,landley2006-01-209-4/+663
| | | | | | | see www.7-zip.org) git-svn-id: svn://busybox.net/trunk/busybox@13454 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - shared libbusybox.aldot2006-01-152-19/+22
| | | | | | | | - IMA compilation option (aka IPO, IPA,..) Please holler if i broke something.. git-svn-id: svn://busybox.net/trunk/busybox@13346 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Don't return 0 when there's an error.landley2006-01-101-0/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13221 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Bug 547: writing out the tar file header before we confirm we can actuallylandley2006-01-091-11/+14
| | | | | | | | open and read from the file isn't something we can recover from after the fact. Resequence things to check first, write second. git-svn-id: svn://busybox.net/trunk/busybox@13189 69ca8d6d-28ef-0310-b511-8ec308f3f277
* use MAP_PRIVATE instead of MAP_SHARED for uClinux systems (see Bug 550)vapier2006-01-041-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@13077 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - silence warning about unused paramaldot2005-12-291-2/+1
| | | | | | | needs revisit later on like many others to use ATTRIBUTE_UNUSED from platform.h git-svn-id: svn://busybox.net/trunk/busybox@13016 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Bug 601: When we fork an archiver and feed stuff to it through a pipe, iflandley2005-12-161-3/+4
| | | | | | | | we don't close the pipe the child process won't exit, and we'll hang in waitpid(). git-svn-id: svn://busybox.net/trunk/busybox@12941 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - typo: s/sucess/success/galdot2005-12-121-1/+1
| | | | | | | What's up with loginutils/su.c line 42: "SYSLOG_SUCESS" ? Please have a look.. git-svn-id: svn://busybox.net/trunk/busybox@12847 69ca8d6d-28ef-0310-b511-8ec308f3f277
* reduce 3 warning if compile with -Wvodz2005-12-061-2/+5
| | | | git-svn-id: svn://busybox.net/trunk/busybox@12691 69ca8d6d-28ef-0310-b511-8ec308f3f277
* I noticed that "tar tvjf file.tbz" was segfaulting. This fixed it.landley2005-11-121-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@12224 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Add --no-same-owner and --no-same-permissions options to tar.landley2005-10-272-37/+58
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11933 69ca8d6d-28ef-0310-b511-8ec308f3f277
* The fact "tar tvjf thing.tbz" didn't work was due to the "-1" in -r11859,landley2005-10-161-2/+2
| | | | | | | | | which was apparently never tested. That meant that there always had to be at least one unparsed argument left over, which is not the case for tar. git-svn-id: svn://busybox.net/trunk/busybox@11877 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Whitespace and curly bracket cleanup (our tabstop is 4 in busybox),landley2005-10-161-188/+146
| | | | | | | and switch more stuff from CONFIG to ENABLE. git-svn-id: svn://busybox.net/trunk/busybox@11876 69ca8d6d-28ef-0310-b511-8ec308f3f277
* llist must initialize, add loses ifdef, small indent correctionvodz2005-10-151-30/+33
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11866 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Add --exclude option (to make uClibc-0.9.28 headers install using busybox tar).landley2005-10-151-20/+24
| | | | | | | | | | | I have no idea how to apply bb_getopt_complementally to a --longopt that has no short option. The documentation from vodz has a bad case of babelfish poisoning, and I can't understand it. It sort of seems to suggest there is a way, but what it is I have no idea. So I used \n as the short option, which is fairly unlikely to be used for something else. :) git-svn-id: svn://busybox.net/trunk/busybox@11865 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - new bb_opt_complementally syntax, use [-:?] only - 'free' charsvodz2005-10-143-15/+6
| | | | | | | - new bb_getopt_ulflags features: check max and min args, convert first argv to options special for ar and tar applets - use bb_default_error_retval for env applet git-svn-id: svn://busybox.net/trunk/busybox@11859 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - typo in makefile variable: s/archvial/archival/aldot2005-10-131-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11854 69ca8d6d-28ef-0310-b511-8ec308f3f277
* usage bb_dev_nullvodz2005-10-121-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11846 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Prepend '-' to the first argument if required, more const, indentvodz2005-10-121-7/+12
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11838 69ca8d6d-28ef-0310-b511-8ec308f3f277
* new featured bb_opt_complementally, correct argc checkingvodz2005-10-121-14/+6
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11837 69ca8d6d-28ef-0310-b511-8ec308f3f277
* There doesn't seem to be a standard header for makedev(), but this is close.landley2005-10-111-0/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11831 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - use complementally '!' to '?' - 'ask' is best 'free' char for this.vodz2005-10-113-3/+3
| | | | | | | - more long opt compatibility, can set flag for long opt struct now - more logic: check opt-depend requires and global requires, special for 'id' and 'start-stop-daemon' applets. git-svn-id: svn://busybox.net/trunk/busybox@11828 69ca8d6d-28ef-0310-b511-8ec308f3f277
* bb_mkdep: Rewroted. removed problem "include name must uniq", speed up * 3.vodz2005-10-101-4/+0
| | | | | | | e2fsprogs: remove confuse bb_mkdep. Use internal e2fsprogs includes only. other: remove confuse bb_mkdep. git-svn-id: svn://busybox.net/trunk/busybox@11822 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - remove superfluous C statements ";;" in decompress_unzip.c, dpkg_deb.c ↵aldot2005-10-073-4/+4
| | | | | | | | | | ifconfig.c - gzip.c: see if O_NOFOLLOW is defined before using it, else take alternate path closes bug #221 (partially; The rest will follow later). git-svn-id: svn://busybox.net/trunk/busybox@11797 69ca8d6d-28ef-0310-b511-8ec308f3f277
* change interface to bb_xasprintf() - more perfect for me.vodz2005-09-291-6/+2
| | | | | | | ln.c: error_msg(str)->error_msg(%s, str) - remove standart "feature" for hackers reduce 100 bytes don't care in sum git-svn-id: svn://busybox.net/trunk/busybox@11694 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Stop gcc4 from nit-picking about signedness of char *.landley2005-09-251-1/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11640 69ca8d6d-28ef-0310-b511-8ec308f3f277
* use the shorter license headervapier2005-09-241-15/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11624 69ca8d6d-28ef-0310-b511-8ec308f3f277
* use brief license linevapier2005-09-241-15/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11618 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - rename libbb's password helpers as suggested in libbb.haldot2005-09-202-4/+4
| | | | | | | | | | | my_getpwnam -> bb_xgetpwnam /* dies on error */ my_getgrnam -> bb_xgetgrnam /* dies on error */ my_getgrgid -> bb_getgrgid my_getpwuid -> bb_getpwuid my_getug -> bb_getug git-svn-id: svn://busybox.net/trunk/busybox@11515 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Berhnard Fischer to keep duplicate objects out of the library.landley2005-09-141-0/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11461 69ca8d6d-28ef-0310-b511-8ec308f3f277
* remove unrequired dependencesvodz2005-09-142-3/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11460 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Cleanup patch by Bernhard Fischer, removing unnecessary includes oflandley2005-09-118-17/+9
| | | | | | | getopt.h, whitespace changes, typos, etc. git-svn-id: svn://busybox.net/trunk/busybox@11422 69ca8d6d-28ef-0310-b511-8ec308f3f277
* typo, thanks, Bernhard Fischervodz2005-09-061-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11344 69ca8d6d-28ef-0310-b511-8ec308f3f277
* 1) bb_opt_complementaly -> bb_opt_complementallyvodz2005-09-053-9/+5
| | | | | | | 2) better support long options 3) new flag '!' for bb_opt_complementally: produce bb_show_usage() if BB_GETOPT_ERROR internally git-svn-id: svn://busybox.net/trunk/busybox@11332 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix for bug 383: attempting to "tar c /" would error out because strippinglandley2005-09-011-1/+1
| | | | | | | trailing / turns that into an empty string. git-svn-id: svn://busybox.net/trunk/busybox@11311 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Anand Avati hit an integer overflow problem in our unzip code.landley2005-08-311-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11299 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Don't comment warnings, _FIX_ warnings. (And putting in #warnings aboutlandley2005-08-301-48/+22
| | | | | | | | | other warnings is just gross.) On a side note, while I was there, I made the code slightly smaller. git-svn-id: svn://busybox.net/trunk/busybox@11292 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Dirk Clemens pointed out how easy it is to support bzip2 compression, since welandley2005-08-301-18/+15
| | | | | | | shell out to an external program to handle gzip anyway... git-svn-id: svn://busybox.net/trunk/busybox@11284 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Bernhard Fischer says: use xmalloc() instead of malloc()vapier2005-08-163-3/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@11168 69ca8d6d-28ef-0310-b511-8ec308f3f277
* punt unused variablevapier2005-07-301-3/+0
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10979 69ca8d6d-28ef-0310-b511-8ec308f3f277
* tell people to ignore the save_name warningvapier2005-07-301-0/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@10978 69ca8d6d-28ef-0310-b511-8ec308f3f277
* rename the accept/reject names since accept overrides the accept() socket ↵vapier2005-07-301-6/+6
| | | | | | function git-svn-id: svn://busybox.net/trunk/busybox@10974 69ca8d6d-28ef-0310-b511-8ec308f3f277