aboutsummaryrefslogtreecommitdiff
path: root/libbb (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* another more correction for getopt_ulflags() documentation (examples)"Vladimir N. Oleynik"2005-10-051-5/+8
|
* more correction for getopt_ulflags() documentation by author of this fuck logic"Vladimir N. Oleynik"2005-10-051-5/+6
|
* - add proper separators. sorry for the noise..Bernhard Reutner-Fischer2005-10-051-1/+1
|
* - add a bit more documentation to vodz' recent additions.Bernhard Reutner-Fischer2005-10-051-8/+26
|
* update bb_getopt_ulflags special for 'ps' applet, usaging '-' as first group ↵"Vladimir N. Oleynik"2005-10-051-14/+42
| | | | | | | | char from bb_opt_complementally is new feature: set argv is options; use new bb_getopt_ulflags for ps # define terminal_width 80->79 for unwide use stdout file descriptor for get_terminal_width_height. (its must)
* use updated bb_getopt_ulflags() for ps applet"Vladimir N. Oleynik"2005-10-041-3/+27
|
* change interface to bb_xasprintf() - more perfect for me."Vladimir N. Oleynik"2005-09-293-12/+8
| | | | | ln.c: error_msg(str)->error_msg(%s, str) - remove standart "feature" for hackers reduce 100 bytes don't care in sum
* - rename llist_add_to.c to llist.cBernhard Reutner-Fischer2005-09-293-17/+53
| | | | - move llist_add_to_end() from ifupdown.c to libbb/llist.c
* spwd bulid now, (typo)"Vladimir N. Oleynik"2005-09-261-1/+1
|
* Patch from Amir Shalem to make busybox compile on a uClibc that has no shadowRob Landley2005-09-251-3/+5
| | | | password support.
* use the shorter license headerMike Frysinger2005-09-241-15/+2
|
* use brief license lineMike Frysinger2005-09-241-14/+2
|
* - consolidated password helpersBernhard Reutner-Fischer2005-09-201-0/+179
|
* - consolidated password helpers into bb_pwd.cBernhard Reutner-Fischer2005-09-206-305/+0
|
* - rename libbb's password helpers as suggested in libbb.hBernhard Reutner-Fischer2005-09-202-7/+13
| | | | | | | | 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
* ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE->CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE"Vladimir N. Oleynik"2005-09-161-3/+3
|
* split libbb: moved xregcomp separatelly for speed up recompile"Vladimir N. Oleynik"2005-09-141-1/+1
|
* FEATURE->ENABLE_FEATURE loses one for 'top' applet"Vladimir N. Oleynik"2005-09-141-3/+3
|
* This code exists to compensate for ancient broken build environments which,Rob Landley2005-09-073-231/+2
| | | | | | | | | | | | as far as I can tell, are no longer relevant. Modern busybox refuses to build under libc5 (there's a specific test and #error for that), and I'm not sure building against 2.1 kernel headers on Alpha was ever relevant. I'm happy to put any of this back if anybody can point to a real need for it, but if so we need to specifically document what environment is being compensated for. (And we should quarrantine the build environment code into one place, anyway. Maybe "quirks.h" for known compiler and libc quirks?)
* Amir Shalem writes:Mike Frysinger2005-09-061-7/+7
| | | | this patch fix syscall names mix-up in libb/syscalls.c
* - sync traceroute with Slackware-10.1"Vladimir N. Oleynik"2005-09-061-5/+12
| | | | | (support -FIl -g gw -i if -z pt now). - libbb/getopt_ulflags.c support bb_opt_complementally="x-x" as trigger now
* get_terminal_width_height.c was in there twice.Rob Landley2005-09-051-1/+1
|
* 1) bb_opt_complementaly -> bb_opt_complementally"Vladimir N. Oleynik"2005-09-051-124/+149
| | | | | 2) better support long options 3) new flag '!' for bb_opt_complementally: produce bb_show_usage() if BB_GETOPT_ERROR internally
* Actually returning ret might be good.Rob Landley2005-09-051-0/+2
|
* According to bug #63, crond is unhappy with crontab lines that don't end in aRob Landley2005-09-011-4/+8
| | | | newline, or lines that have trailing spaces.
* Bernhard Fischer suggested that get_terminal_width_height() should returnRob Landley2005-09-011-22/+7
| | | | | | the result of the ioctl so callers can tell if we have a tty. (0 means we have a tty, nonzero means the ioctl couldn't find size info and we fake 80x24. Really we should fake 80x25, but oh well...)
* make sure __NF_sysfs exists before trying to use itMike Frysinger2005-08-271-0/+9
|
* Two FEATURE_CLEAN_UP patches from Shaun Jackman, closing filehandles.Rob Landley2005-08-221-0/+1
|
* the () around isspace actually mattersMike Frysinger2005-08-161-2/+4
|
* Bernhard Fischer says: fix comment typoMike Frysinger2005-08-161-1/+1
|
* Major rewrite of mount, umount, losetup. Untangled lots of code, shrunkRob Landley2005-08-104-191/+89
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | things down a bit, fixed a number of funky corner cases, added support for several new features (things like mount --move, mount --bind, lazy unounts, automatic detection of loop mounts, and so on). Probably broke several other things, but it's fixable. (Bang on it, tell me what doesn't work for you...) Note: you no longer need to say "-o loop". It does that for you when necessary. Still need to add "user mount" support, which involves making mount suid. Not too hard to do under the new infrastructure, just haven't done it yet... The previous code had the following notes, that belong in the version control comments: - * 3/21/1999 Charles P. Wright <cpwright@cpwright.com> - * searches through fstab when -a is passed - * will try mounting stuff with all fses when passed -t auto - * - * 1999-04-17 Dave Cinege...Rewrote -t auto. Fixed ro mtab. - * - * 1999-10-07 Erik Andersen <andersen@codepoet.org>. - * Rewrite of a lot of code. Removed mtab usage (I plan on - * putting it back as a compile-time option some time), - * major adjustments to option parsing, and some serious - * dieting all around. - * - * 1999-11-06 mtab support is back - andersee - * - * 2000-01-12 Ben Collins <bcollins@debian.org>, Borrowed utils-linux's - * mount to add loop support. - * - * 2000-04-30 Dave Cinege <dcinege@psychosis.com> - * Rewrote fstab while loop and lower mount section. Can now do - * single mounts from fstab. Can override fstab options for single - * mount. Common mount_one call for single mounts and 'all'. Fixed - * mtab updating and stale entries. Removed 'remount' default. - *
* implemented a builtin echo command in ash. moved the guts of thePaul Fox2005-08-092-1/+165
| | | | | | echo applet into libbb, and now call bb_echo() from both echo.c and ash.c
* apgo in Bug 322 writes: kill off CONFIG_FEATURE_MTAB_FILENAMEMike Frysinger2005-07-301-2/+2
|
* move the ifdef to after libbb.h include, so it can do some good.Paul Fox2005-07-271-1/+1
|
* use toplevel ARFLAGS and update default ARFLAGS to be quietMike Frysinger2005-07-271-1/+1
|
* 2005-04-05 Shaun Jackman <sjackman@gmail.com>Mike Frysinger2005-07-261-14/+14
| | | | * libbb/printf.c: Check for __NEWLIB_H__ before __GLIBC__.
* no longer used as reported by apgo in Bug 348Mike Frysinger2005-07-261-0/+0
|
* ifdef all of loop.c with CONFIG_FEATURE_MOUNT_LOOP. won'tPaul Fox2005-07-221-0/+2
| | | | | compile due to CONFIG_FEATURE_MOUNT_LOOP_MAX otherwise. reported by Stephane Billiart.
* applying fix for:Paul Fox2005-07-191-1/+1
| | | | | | 0000117: Remove linefeed after overwrite prompt using cp -i User input not on the same line as the prompt when about to overwrite a file.
* applying fix from:Paul Fox2005-07-191-1/+1
| | | | | | 0000068: mount limited to max 8 loop devices (patch provided) (made minor wording change for config help message)
* applying fix from:Paul Fox2005-07-191-3/+7
| | | | | 0000067: cp -p produces misleading error message
* change the hardcoded error constant (0x80000000UL) to a nice flexible define ↵Mike Frysinger2005-05-111-3/+3
| | | | (BB_GETOPT_ERROR)
* now that mjn3 explained it to me, add documentation for the 3rd field in ↵Mike Frysinger2005-05-111-5/+12
| | | | long opts
* add documentation for long options and touch up the current docs now that i ↵Mike Frysinger2005-05-101-39/+62
| | | | actually understand how to use the function myself :)
* syntax/whitespace touchupMike Frysinger2005-05-091-2/+2
|
* Shaun Jackman said:Rob Landley2005-05-031-9/+21
| | | | | | This patch adds a CONFIG_FEATURE_CLEAN_UP stanza, and also adds an ifdef around the SIOCGIFMAP call.
* A patch from Takeharu KATO to update/fix SE-Linux support.Rob Landley2005-05-033-28/+37
|
* Revert Tito's patch to zcip. My bad, David Brownell had objected and I missedRob Landley2005-05-031-1/+1
| | | | | it...
* On Tuesday 19 April 2005 21:10, Tito wrote and today added:Rob Landley2005-05-011-1/+1
| | | | | | | | | | | | | > Hi, > this is a first attempt of size optimization for zcip taking into account all > the hints given so far on the list. > I've applied just the more obvious busyboxifications so maybe it could be > optimized more. BTW: I've ripped out a lot of debug code and changed c++ // comments to /* */ as both were rather confusing for a newbie like me. ;-) Sorry to the author for that. I know that this makes mantaining the code easier, but I'm simple minded....
* Correct errors preventing busybox tar from working properly,Eric Andersen2005-04-271-6/+11
| | | | fixing bug http://bugs.uclibc.org/view.php?id=231