aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* = minor formatting issuesJohn Beppu2000-06-282-42/+40
|
* + busybox --install [-s]John Beppu2000-06-283-20/+78
| | | | | is functional (but disabled in busybox.def.h by default) Someone email the guy who originally wanted this.
* Remove stuff now moved into the bug tracking system.Eric Andersen2000-06-271-61/+0
| | | | -Erik
* + s/int install_links/static int install_links/John Beppu2000-06-272-2/+2
| | | | | | | | ? Did you want "busybox --install" or "busybox install" ? The TODO and mailing-list conflict on this issue. I would recommend against "busybox install", because people might confuse it w/ /usr/bin/install that does something different.
* This kernel patch is no longer needed, with the change I made to initEric Andersen2000-06-271-77/+0
| | | | | and free... -Erik
* + littering my code w/ comments about what troubles me.John Beppu2000-06-272-2/+12
|
* + busybox --install [-s]John Beppu2000-06-273-0/+153
| | | | | | | | | | | | | | | is almost good to go. Here is my work in progress. + Look at the FIXME in busybox.c to see what I need. The actual (sym)linking is disabled for now, although I'm sure it works ;) (Am I going to have to dig through /proc to find out where the currently running busybox is sitting?) + I put an #ifdef BB_FEATURE_INSTALLER around the new bits of code in busybox.c, and I have a #define BB_FEATURE_INSTALLER in busybox.def.h towards the bottom.
* Just converted busybox.pod to busybox.sgml using the Pod::DocBook Perl module.Mark Whitley2000-06-261-0/+5495
| | | | | | The resulting file needs some massaging and once it gets presentable, I'll edit the Makefile to use the SGML file as the "authoritative" file; the plan here is to generate other file formats from the SGML.
* Fixed segfault with 'cut -f 1 -d:' and added 'cut -s' suport.Eric Andersen2000-06-264-20/+55
| | | | | Fix thanks to Arne Bernin <arne@matrix.loopback.org> -Erik
* * Fixed insmod module option parsing for options lacking an '='.Eric Andersen2000-06-263-8/+18
| | | | | Fix thanks to Marc Nijdam <marc_nijdam@hp.com> -Erik
* readlink(2) does not NULL terminate the buffer it reads in, but tar expected itEric Andersen2000-06-262-2/+8
| | | | | | to do so. This caused symlinks stored in tarballs to likely have trailing crap in the stored symlink named. Oops. -Erik
* Updates to handle Linux 2.4.0 kernels (kludged around the "none" entries inEric Andersen2000-06-2614-47/+159
| | | | | /proc/mounts, added a hack to make sysinfo work with both old and new kernels). -Erik
* Better error checking in insmod. Remove left over %m'sEric Andersen2000-06-222-38/+30
| | | | -Erik
* Minor web page update.0_45Eric Andersen2000-06-221-30/+34
| | | | -Erik
* Fix version #Eric Andersen2000-06-221-1/+1
| | | | -Erik
* More doc updatesEric Andersen2000-06-221-0/+31
| | | | -Erik
* Merged two TODO items into oneMark Whitley2000-06-221-2/+1
|
* Update the list.Eric Andersen2000-06-221-3/+4
| | | | -Erik
* Pavel Roskin <proski@gnu.org> just found a nasty memoryEric Andersen2000-06-222-2/+16
| | | | | corruption bug. Disabling 'ln -n' till it is fixed. -Erik
* Document 'ln --'Eric Andersen2000-06-213-3/+6
| | | | -Erik
* Cleaned up some #ifdef spiderwebs.Mark Whitley2000-06-212-60/+38
|
* Bump version number to 0.45Eric Andersen2000-06-215-5/+12
| | | | -Erik
* Added an implicit rule for #defining BB_FEATURE_USE_TERMIOS ifMark Whitley2000-06-211-0/+6
| | | | BB_FEATURE_AUTOWIDTH is #defined.
* More doc updates.Eric Andersen2000-06-212-26/+42
| | | | -Erik
* Web site updates.Eric Andersen2000-06-213-215/+329
| | | | -Erik
* Add in my little patch for 2.4.x to make sysinfo binary compatable (again)Eric Andersen2000-06-212-0/+88
| | | | -Erik
* Documented "which"Pavel Roskin2000-06-211-1/+14
|
* Removed trailing spacesPavel Roskin2000-06-211-15/+15
|
* Add in telnet docs.Eric Andersen2000-06-211-1/+10
| | | | -Erik
* Add insmod docsEric Andersen2000-06-211-1/+16
| | | | -Erik
* Updated the list of supported commandsPavel Roskin2000-06-211-11/+11
|
* Removed all vestiges of "math"Pavel Roskin2000-06-216-21/+14
|
* + added dc (aka the function formerly known as math)John Beppu2000-06-218-28/+234
| | | | + did all the housekeeping that this change requires.
* 'tar --help' wasn't working. Fixed it.Eric Andersen2000-06-212-0/+6
| | | | -Erik
* + made it so that you can use the mnemonicsJohn Beppu2000-06-211-6/+10
| | | | (add, sub, mul, div) in lieu of (+, -, *, /)
* Special case the memcopy stuff so it isn't enabled for uclibcEric Andersen2000-06-201-1/+1
| | | | -Erik
* Some makefile fixes to allow compiling with ucLibc (stuff turned offEric Andersen2000-06-201-5/+5
| | | | | by default of course). -Erik
* Updated e-mail address of Pavel Roskin to proski@gnu.orgPavel Roskin2000-06-203-9/+9
|
* Mention libc support, Pavel's rm fix is already merged.Eric Andersen2000-06-192-1/+1
| | | | -Erik
* Finish off the libc5 porting effort. Everything now works with libc5Eric Andersen2000-06-196-6/+15
| | | | | except for md5sum, which uses the GNU libc addition getline(). -Erik
* Made insmod work with both libc5 and libc6.Eric Andersen2000-06-192-6/+12
| | | | -Erik
* Made ping work with libc5 and libc6.Eric Andersen2000-06-192-4/+168
| | | | -Erik
* Make umount work and compile cleanly under libc5 and libc6.Eric Andersen2000-06-192-10/+32
| | | | -Erik
* Make swaponoff compile cleanly under both libc5 and libc6.Eric Andersen2000-06-192-4/+8
| | | | -Erik
* Make syslogd.c, init.c, and update.c compile error/warning free under both ↵Eric Andersen2000-06-196-14/+14
| | | | | | libc5 and libc6. -Erik
* printf now compiles cleanly under both libc5 and libc6.Eric Andersen2000-06-192-4/+2
| | | | -Erik
* Updated to compile and work with libc5.Eric Andersen2000-06-192-28/+58
| | | | -Erik
* Update internal.h to conditionally include asm/string.hEric Andersen2000-06-191-0/+2
| | | | -Erik
* Updates to a number of apps to remove warnings/compile errors under libc5.Eric Andersen2000-06-19142-221/+190
| | | | | Tested under both libc5 and libc6 and all seems well with these fixes. -Erik
* Added a note to the "maybe by 0.44" list to prune sfdisk and graft fdisk.Mark Whitley2000-06-191-0/+2
|