aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* A few more cleanups from Vladimir.Eric Andersen2001-02-181-17/+21
|
* Another patch from Vladimir to eliminate obsolete junk.Eric Andersen2001-02-184-18/+4
|
* A small cleanup by VladimirEric Andersen2001-02-182-16/+10
|
* Remove leftover junkEric Andersen2001-02-182-2/+0
|
* Get rid of long stale usage message code.Eric Andersen2001-02-174-20/+12
| | | | -Erik
* A bunch of usage clenups from kent robotti <robotti@metconnect.com>Eric Andersen2001-02-173-66/+63
| | | | -Erik
* More updates from Larry Doolittle. Don't use basedir, Don't assumeEric Andersen2001-02-171-8/+7
| | | | random makefiles are going to work with busybox.
* More updates.Eric Andersen2001-02-171-4/+3
|
* Ignore applet_source_listEric Andersen2001-02-171-0/+1
|
* Update the build system for pristine source directory builds. ThisEric Andersen2001-02-179-85/+167
| | | | | | update is primarily work done by Larry Doolittle, but I did some touchups of my own to make it work for me, -Erik
* Update the debian build stuffEric Andersen2001-02-174-157/+622
| | | | -Erik
* Throw out the obsolete INIT_CHROOT junkEric Andersen2001-02-172-182/+0
|
* Several features were hard coded on. Stop that. List tab completionEric Andersen2001-02-163-29/+20
| | | | | as working (thanks Vladimir!) and taking 4k. -Erik
* Commit Vladimir's latest cmdedit. I modified it slightly to ensureEric Andersen2001-02-165-18/+17
| | | | | | | | parse_prompt() would be called before cmdedit_init(), since cmdedit_init() calls cmdedit_setwidth() which uses cmdedit_prmt_len, which is set by parse_prompt(). Also, added a mod, so very narrow terminals should now wrap properly... This is working very nicely for me -- Vladimir has done some very good work.
* Revert multibuild.pl change.Eric Andersen2001-02-161-1/+0
|
* Regression testing bugfixes from Larry Doolittle. As an aside,Eric Andersen2001-02-161-3/+4
| | | | | | | | can I just say how much I am looking forward to having 0.50 released, so we can address this #define stupidness properly by building a static libbusybox, and then letting the linker sort out the dependancies.... Ahh, that will be much nicer. -Erik
* Do usage messages the same way all other apps fo them.Eric Andersen2001-02-165-46/+42
| | | | | | Skip printing of available options (can't do this easily). Based on a patch by Larry Doolittle. -Erik
* Patch from Larry Doolittle to cross things in multibuild.plEric Andersen2001-02-161-0/+1
|
* Make ar be crossed.Eric Andersen2001-02-163-986/+2057
|
* Make dpkg require dpkg-debEric Andersen2001-02-161-0/+6
|
* Fix warning for implicit declaration of time()Glenn L McGrath2001-02-162-2/+4
|
* Fix compile error, sync() always returns 0 anyway.Glenn L McGrath2001-02-162-2/+6
|
* Another small formatting change from Larry Doolittle.Mark Whitley2001-02-152-8/+12
|
* Applied patch from Larry Doolittle that does the following:Mark Whitley2001-02-152-106/+108
| | | | | | | - style changes - It actually returns the code computed by INET_setroute (wasn't being done properly before) - The displayroute() format string now matches net-tools
* Acknowledge Kenneth Chalmers ln fix.Eric Andersen2001-02-151-0/+3
|
* use perror_msg instead of perror to print the applet name.Eric Andersen2001-02-152-36/+62
| | | | -Erik
* fix a few mallocs to be xmallocs.Eric Andersen2001-02-152-4/+4
| | | | -Erik
* Patch from Matt Kraai to fix bug #1103. I've tested it,Eric Andersen2001-02-152-6/+10
| | | | | and it indeed seems to fix things. -Erik
* Fixed 'ls -s' so it actually displays block sizes again.Eric Andersen2001-02-152-6/+6
| | | | -Erik
* Make usage.c depend on usage.hEric Andersen2001-02-141-0/+2
| | | | -Erik
* Fins find message.Eric Andersen2001-02-143-6/+6
|
* I forgot to add usage.h, so here it is, with a few extra cleanups.Eric Andersen2001-02-144-2/+6122
| | | | | | | Also update show_usage to handle the updated usage.h. Again, nearly all the work to get usage.h into shape was done by Manuel Novoa III. -Erik
* This patch, put together by Manuel Novoa III, is a merge of workEric Andersen2001-02-14198-3979/+702
| | | | | | done by Evin Robertson (bug#1105) and work from Manuel to make usage messages occupy less space and simplify how usage messages are displayed.
* implemented displayroute() based on a patch from Vladimir N. Oleynik,Eric Andersen2001-02-142-10/+124
| | | | so now route behaves as expected w/o any arguments.
* Commit Vladimir's latest version of stty.c. Nice work.Eric Andersen2001-02-149-2/+2830
| | | | -Erik
* Add in ifconfig and routeEric Andersen2001-02-1412-0/+1778
|
* Bump rev to 0.50pre.Eric Andersen2001-02-144-3/+10
|
* Several cleanups from Manuel Novoa III.Eric Andersen2001-02-143-134/+155
| | | | | | | | | | | | get_kernel_revision -- size reduction NOTE: may want to combine with get_kernel_version in insmod??? parse_mode -- size reduction, multiple settings with "," now work correctly, sticky-bit setting now implemented process_escape_sequence -- size reduction, octal code to big for char bug fixed format -- size reduction, val > LONG_MAX and hr = 1 printing bug fixed (was %ld),
* Apply a patch from Evin Robertson -- new pivot_root applet.Eric Andersen2001-02-138-0/+111
| | | | -Erik
* Closer integration with dpkg-deb and other busybox functions.Glenn L McGrath2001-02-122-258/+280
| | | | Hopefully simplified some code (works for me).
* New dpkg-deb option, warning about dpkg usageGlenn L McGrath2001-02-122-4/+8
|
* New option 'list' produces output that can be used for the packages .list file.Glenn L McGrath2001-02-122-10/+26
| | | | Will be used be bb dpkg
* New function, deb-extract to be used by dpkg, code cleanups. saves some bytesGlenn L McGrath2001-02-112-170/+172
|
* Consmetic changesGlenn L McGrath2001-02-112-14/+22
|
* More style changesGlenn L McGrath2001-02-112-300/+350
|
* Style changes; use get_line_from_file from utilitiesGlenn L McGrath2001-02-112-346/+264
|
* BB_DPKG uses copy_fileGlenn L McGrath2001-02-101-1/+1
|
* Use copy_file from utilty.c, remove some char definesGlenn L McGrath2001-02-102-82/+20
|
* Bug fix, rename status file, cleanupsGlenn L McGrath2001-02-102-142/+102
|
* Replace status defines with const int to conform to sytle guide, adds 32 bytesGlenn L McGrath2001-02-102-122/+116
|