aboutsummaryrefslogtreecommitdiff
path: root/libbb (follow)
Commit message (Collapse)AuthorAgeFilesLines
* more FILE_OFFSET_BITS == 64 adjustments.andersen2001-04-051-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@2267 69ca8d6d-28ef-0310-b511-8ec308f3f277
* A first pass at making D_FILE_OFFSET_BITS=64 work, fromandersen2001-04-051-2/+2
| | | | | | | Jari Ruusu <jari.ruusu@pp.inet.fi> git-svn-id: svn://busybox.net/trunk/busybox@2266 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Handle glibc 2.0.7 as wellandersen2001-04-051-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@2264 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Be more generic for libc5. We don't need to know struct definitionsandersen2001-04-051-1/+1
| | | | | | | to make the syscall finction -- use a generic pointer instead. git-svn-id: svn://busybox.net/trunk/busybox@2256 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Another iteration -- adjust the init_module syscall a bit.andersen2001-04-051-35/+9
| | | | | | | -Erik git-svn-id: svn://busybox.net/trunk/busybox@2254 69ca8d6d-28ef-0310-b511-8ec308f3f277
* *** empty log message ***andersen2001-04-051-3/+27
| | | | git-svn-id: svn://busybox.net/trunk/busybox@2253 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Some further syscall adjustments. Split the module syscalls out ofandersen2001-04-052-36/+113
| | | | | | | | | insmod and into libbb. Only enable them for libc5. glibc and uClibc don't need them. -Erik git-svn-id: svn://busybox.net/trunk/busybox@2252 69ca8d6d-28ef-0310-b511-8ec308f3f277
* A number of cleanups. Now compiles with libc5, glibc, and uClibc. Fix a fewandersen2001-04-052-12/+61
| | | | | | | | | shadowed variables. Move (almost) all syscalls to libbb/syscalls.c, so I can handle them sanely and all at once. -Erik git-svn-id: svn://busybox.net/trunk/busybox@2250 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Larry Doolittle to eliminate needless thrashingandersen2001-04-041-3/+3
| | | | | | | | about when trimming long strings with lots of trailing white space. git-svn-id: svn://busybox.net/trunk/busybox@2247 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix a warning with libc5.andersen2001-04-041-0/+1
| | | | | | | -Erik git-svn-id: svn://busybox.net/trunk/busybox@2243 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Seems that stupid libc5 doesn't implement daemon(), so conditionallyandersen2001-04-042-0/+105
| | | | | | | | inclde that here. -Erik git-svn-id: svn://busybox.net/trunk/busybox@2242 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Place a temporary bandaid on the ls/du/df human-readable issue. This method isandersen2001-04-031-19/+28
| | | | | | | | | | | | not going to scale up as well as I would like, and Matt Kraai and I have discussed a better long term solution. But for now this will at least make all the human-readable apps give correct answers. Please test the human readable/non-human readable options on your systems!!! -Erik git-svn-id: svn://busybox.net/trunk/busybox@2235 69ca8d6d-28ef-0310-b511-8ec308f3f277
* if strlen(s) was 0, it would then end up using s[-1] as an array index. Bad,andersen2001-04-031-4/+5
| | | | | | | | | | bad, bad. This was crashing the shell on powerpc boxes, though all other archs seem to have a much more forgiving malloc implementations. I finally found this bug using electric-fence on a powerpc box. -Erik git-svn-id: svn://busybox.net/trunk/busybox@2233 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Move the mtab support stuff into libbbandersen2001-04-012-0/+147
| | | | | | | -Erik git-svn-id: svn://busybox.net/trunk/busybox@2229 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch bass ackwards behavior of hr flag.kraai2001-03-282-11/+14
| | | | git-svn-id: svn://busybox.net/trunk/busybox@2216 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Rewrite to fix bug #1140 and make it slightly smaller.kraai2001-03-281-26/+14
| | | | git-svn-id: svn://busybox.net/trunk/busybox@2215 69ca8d6d-28ef-0310-b511-8ec308f3f277
* includes cleanup from Jeff Garzikandersen2001-03-234-0/+4
| | | | git-svn-id: svn://busybox.net/trunk/busybox@2187 69ca8d6d-28ef-0310-b511-8ec308f3f277
* A nice patch from Larry Doolittle that adds -Wshadow andandersen2001-03-212-6/+7
| | | | | | | cleans up most of the now-revealed problems. git-svn-id: svn://busybox.net/trunk/busybox@2177 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Split error messages into separate files.andersen2001-03-198-50/+275
| | | | | | | | | Update libbb.h, per suggestion from Vladimir, to include __attribute__((format (printf ...))) stuff -Erik git-svn-id: svn://busybox.net/trunk/busybox@2145 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Split libbb/pwd_grp_wrappers.c into 5 different libbb/my_* files.andersen2001-03-195-48/+222
| | | | | | | -Erik git-svn-id: svn://busybox.net/trunk/busybox@2140 69ca8d6d-28ef-0310-b511-8ec308f3f277
* update .cvsignore files to note new location of loop.handersen2001-03-171-0/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@2126 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Pierre PEIFFER <pierre.peiffer@sxb.bsf.alcatel.fr>andersen2001-03-171-7/+14
| | | | | | | | that copes with the fact that processes may have been swapped out. git-svn-id: svn://busybox.net/trunk/busybox@2125 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Convert utility.c into libbb.a. It is now a whole pile of .candersen2001-03-1639-0/+3401
| | | | | | | | files. Clean up the resulting damage and fix up the makefile. -Erik git-svn-id: svn://busybox.net/trunk/busybox@2123 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Update the build system for pristine source directory builds. Thisandersen2001-02-171-10/+13
| | | | | | | | | update is primarily work done by Larry Doolittle, but I did some touchups of my own to make it work for me, -Erik git-svn-id: svn://busybox.net/trunk/busybox@1843 69ca8d6d-28ef-0310-b511-8ec308f3f277
* More portable handling of loop header files, as done in util-linuxandersen2000-09-211-0/+34
git-svn-id: svn://busybox.net/trunk/busybox@1079 69ca8d6d-28ef-0310-b511-8ec308f3f277