summaryrefslogtreecommitdiff
path: root/archival (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* - silence warning about unused paramBernhard Reutner-Fischer2005-12-291-2/+1
| | | | needs revisit later on like many others to use ATTRIBUTE_UNUSED from platform.h
* Bug 601: When we fork an archiver and feed stuff to it through a pipe, ifRob Landley2005-12-161-3/+4
| | | | | we don't close the pipe the child process won't exit, and we'll hang in waitpid().
* - typo: s/sucess/success/gBernhard Reutner-Fischer2005-12-121-1/+1
| | | | What's up with loginutils/su.c line 42: "SYSLOG_SUCESS" ? Please have a look..
* reduce 3 warning if compile with -W"Vladimir N. Oleynik"2005-12-061-2/+5
|
* I noticed that "tar tvjf file.tbz" was segfaulting. This fixed it.Rob Landley2005-11-121-1/+1
|
* Add --no-same-owner and --no-same-permissions options to tar.Rob Landley2005-10-272-37/+58
|
* The fact "tar tvjf thing.tbz" didn't work was due to the "-1" in -r11859,Rob 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.
* Whitespace and curly bracket cleanup (our tabstop is 4 in busybox),Rob Landley2005-10-161-188/+146
| | | | and switch more stuff from CONFIG to ENABLE.
* llist must initialize, add loses ifdef, small indent correction"Vladimir N. Oleynik"2005-10-151-30/+33
|
* Add --exclude option (to make uClibc-0.9.28 headers install using busybox tar).Rob 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. :)
* - new bb_opt_complementally syntax, use [-:?] only - 'free' chars"Vladimir N. Oleynik"2005-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
* - typo in makefile variable: s/archvial/archival/Bernhard Reutner-Fischer2005-10-131-1/+1
|
* usage bb_dev_null"Vladimir N. Oleynik"2005-10-121-1/+1
|
* Prepend '-' to the first argument if required, more const, indent"Vladimir N. Oleynik"2005-10-121-7/+12
|
* new featured bb_opt_complementally, correct argc checking"Vladimir N. Oleynik"2005-10-121-14/+6
|
* There doesn't seem to be a standard header for makedev(), but this is close.Rob Landley2005-10-111-0/+1
|
* - use complementally '!' to '?' - 'ask' is best 'free' char for this."Vladimir N. Oleynik"2005-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.
* bb_mkdep: Rewroted. removed problem "include name must uniq", speed up * 3."Vladimir N. Oleynik"2005-10-101-4/+0
| | | | | e2fsprogs: remove confuse bb_mkdep. Use internal e2fsprogs includes only. other: remove confuse bb_mkdep.
* - remove superfluous C statements ";;" in decompress_unzip.c, dpkg_deb.c ↵Bernhard Reutner-Fischer2005-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).
* change interface to bb_xasprintf() - more perfect for me."Vladimir N. Oleynik"2005-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
* Stop gcc4 from nit-picking about signedness of char *.Rob Landley2005-09-251-1/+2
|
* use the shorter license headerMike Frysinger2005-09-241-15/+2
|
* use brief license lineMike Frysinger2005-09-241-15/+2
|
* - rename libbb's password helpers as suggested in libbb.hBernhard Reutner-Fischer2005-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
* Patch from Berhnard Fischer to keep duplicate objects out of the library.Rob Landley2005-09-141-0/+1
|
* remove unrequired dependences"Vladimir N. Oleynik"2005-09-142-3/+1
|
* Cleanup patch by Bernhard Fischer, removing unnecessary includes ofRob Landley2005-09-118-17/+9
| | | | getopt.h, whitespace changes, typos, etc.
* typo, thanks, Bernhard Fischer"Vladimir N. Oleynik"2005-09-061-1/+1
|
* 1) bb_opt_complementaly -> bb_opt_complementally"Vladimir N. Oleynik"2005-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
* Fix for bug 383: attempting to "tar c /" would error out because strippingRob Landley2005-09-011-1/+1
| | | | trailing / turns that into an empty string.
* Anand Avati hit an integer overflow problem in our unzip code.Rob Landley2005-08-311-1/+1
|
* Don't comment warnings, _FIX_ warnings. (And putting in #warnings aboutRob Landley2005-08-301-48/+22
| | | | | | other warnings is just gross.) On a side note, while I was there, I made the code slightly smaller.
* Dirk Clemens pointed out how easy it is to support bzip2 compression, since weRob Landley2005-08-301-18/+15
| | | | shell out to an external program to handle gzip anyway...
* Bernhard Fischer says: use xmalloc() instead of malloc()Mike Frysinger2005-08-163-3/+3
|
* punt unused variableMike Frysinger2005-07-301-3/+0
|
* tell people to ignore the save_name warningMike Frysinger2005-07-301-0/+1
|
* rename the accept/reject names since accept overrides the accept() socket ↵Mike Frysinger2005-07-301-6/+6
| | | | function
* use toplevel ARFLAGS and update default ARFLAGS to be quietMike Frysinger2005-07-272-2/+2
|
* applying fix for:Paul Fox2005-07-221-0/+2
| | | | | | | 0000093: Patch for dpkg - can't handle scripts Attached patch is needed to fix dpkg's support for preinst, postinst etc script files.
* applying fixes from: Paul Fox2005-07-202-223/+414
| | | | | 0000142: unzip enhancements
* applying fix for:Paul Fox2005-07-201-0/+10
| | | | 0000262: tar -x doesn't believe it has reached the end of archive
* change the hardcoded error constant (0x80000000UL) to a nice flexible define ↵Mike Frysinger2005-05-113-3/+3
| | | | (BB_GETOPT_ERROR)
* abort if user passes -r or if they dont pass anythingMike Frysinger2005-05-091-3/+8
|
* add comments about ignoring some warnings which are OKMike Frysinger2005-04-231-0/+8
|
* fix printf warningMike Frysinger2005-04-201-1/+1
|
* Patch from Bernhard Fischer to make a bunch of symbols staticEric Andersen2005-04-164-40/+41
| | | | which were otherwise cluttering the global namespace.
* In Bug 208, bernhardf writes:Mike Frysinger2005-04-162-8/+8
| | | | | | On machines with only ANSI compliant compilers, not explitily delcaring an empty parameter list 'void' causes failure.
* Bandaid to make "gzip file1 file2 ..." set the decompression lengths correctlyManuel Novoa III2005-03-021-0/+1
| | | | in the 2nd and later headers. But this and gunzip really need to be rewritten.
* When filling the bit buffer, gzip decompression apparently never checked for ↵Manuel Novoa III2005-03-011-1/+4
| | | | end of file, causing it to hang on corrupted input.
* Takeharu KATO writes:Eric Andersen2005-02-111-1/+1
| | | | | | | | | | | | | | | | | | | | | Hi, I found that gcc in cvs (HEAD in 2005/02/11) reject the gzip source in the busybox. This is caused by changing gcc's error handling behavior( The gcc check the function prototype more strictly). I show the compilation log as follow: -- compilation log -- compilation log To fix the problem, apply the patch which is attached with this mail. Please take a look the patch and apply the patch into svn repository.