aboutsummaryrefslogtreecommitdiff
path: root/shell/msh.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* make a few struct bb_applet members conditionalDenis Vlasenko2007-04-101-1/+1
| | | | | | rename sllep_and_die -> xfunc_die make fflush_stdout_and_exit NOFORK-safe fix some buglets found by randomconfig
* msh: smallish code shrinkage; cosmeticsDenis Vlasenko2007-04-091-68/+58
|
* make pidfile writing configurable.Denis Vlasenko2007-03-271-5/+5
| | | | [ui]toa_to_buf: change API. No users yet.
* inetd,ed,msh: data/bss reduction (in mss, more than 9k of it)Denis Vlasenko2007-03-241-43/+61
|
* dc: use common_bufsiz1 for evaluation stackDenis Vlasenko2007-03-241-9/+8
| | | | | msh: fix "underscore bug" (a_b=1111 didn't work) dnsd: openlog(), so that applet's name is logged
* fix accumulated whitespace and indentation damageDenis Vlasenko2007-03-201-23/+23
|
* add STANDALONE supportMike Frysinger2007-03-091-5/+73
|
* clean up accumulated whitespace damageDenis Vlasenko2007-03-071-1/+1
|
* msh: fix my bugletDenis Vlasenko2007-02-091-5/+8
|
* find: support for !Denis Vlasenko2007-02-041-1/+1
|
* suppress warnings about easch <applet>_main() havingDenis Vlasenko2007-02-031-0/+1
| | | | no preceding prototype
* msh: cleaning up for -Wwrite-strings part #4Denis Vlasenko2007-02-011-270/+287
|
* msh: cleaning up for -Wwrite-strings part #3Denis Vlasenko2007-02-011-61/+57
|
* msh: cleaning up for -Wwrite-strings part #2Denis Vlasenko2007-02-011-675/+648
|
* msh: cleaning up for -Wwrite-stringsDenis Vlasenko2007-02-011-196/+236
|
* preparatory patch for -Wwrite-strings #2Denis Vlasenko2007-01-291-14/+14
|
* cmdedit is not a 'command' editing anymore, it's just editing (generic),Denis Vlasenko2007-01-221-14/+14
| | | | so rename stuff accordingly.
* Convert cmdedit into more generic line input facilityDenis Vlasenko2007-01-221-10/+16
| | | | | | (make history and completion optional at runtime). Use it for fdisk, as an example. Some unrelated fixes in fdisk are also here.
* stty: fix width of a field for ppc32Denis Vlasenko2007-01-011-2/+5
| | | | | sort: fix -u to match coreutils 6.3 msh: compile fix (my fault)
* msh: double "static char line[LINELIM]" etc deleted.Denis Vlasenko2007-01-011-87/+138
| | | | | massive amounts of assignments-in-ifs deleted (some of which were VERY nasty)
* random tiny size savingsDenis Vlasenko2006-12-241-5/+3
|
* inline strcmp(s, "-") [actually macro-ize it for now - gcc is too stupid]Denis Vlasenko2006-12-161-1/+1
|
* style cleanup: return(a) -> return a, part 2Denis Vlasenko2006-11-271-139/+140
|
* style cleanup: return(a) -> return a, part 1Denis Vlasenko2006-11-271-89/+89
|
* rodata cleanup. "unable to" == "cannot". -300 bytesDenis Vlasenko2006-11-181-1/+1
|
* remove duplicate flag declsMike Frysinger2006-11-151-3/+3
|
* silly size savings and capitalization fixesDenis Vlasenko2006-10-261-2/+2
|
* add open_read_close() and similar stuffDenis Vlasenko2006-10-141-3/+3
|
* Make a warning go away when standalone shell is disabled.Rob Landley2006-08-101-9/+8
|
* A couple things that got tangled up in my tree, easier to check in both thanRob Landley2006-07-121-40/+1
| | | | | | | | | | | | | | untangle them: Rewrite u_signal_names() into get_signum() and get_signame(), plus trim the signal list to that required by posix (they can specify the numbers for the rest if they really need them). (This is preparatory cleanup for adding a timeout applet like Roberto Foglietta wants.) Export the itoa (added due to Denis Vlasenko, although it's not quite his preferred implementation) from xfuncs.c so it's actually used, and remove several other redundant implementations of itoa and utoa() in the tree.
* Get rid of all "#if 0" content."Robert P. J. Day"2006-07-011-44/+0
|
* Remove all usage of the "register" storage class specifier."Robert P. J. Day"2006-07-011-212/+207
|
* dont setpgrp() for now as it breaks system() and that is more important than ↵Mike Frysinger2006-06-261-4/+0
| | | | ctrl+c handling of background processes
* - convert old-style parameter declarations (K&R) to modern style.Bernhard Reutner-Fischer2006-06-251-310/+151
|
* assign default debug level to the MSHDEBUG defineMike Frysinger2006-06-201-2/+1
|
* Upgrade the standalone shell code to use CONFIG_BUSYBOX_EXEC_PATH.Rob Landley2006-06-141-2/+1
|
* make the default prompt suck less when using fancy promptsMike Frysinger2006-06-061-2/+11
|
* - move #include busybox.h to the very top so we pull in the configBernhard Reutner-Fischer2006-06-021-1/+1
| | | | and eventual platform specific includes in early.
* use xmalloc()Mike Frysinger2006-06-021-1/+1
|
* - use portability wrapper define bb_setpgrp.Bernhard Reutner-Fischer2006-05-261-1/+1
|
* didnt mean to commit debug enableMike Frysinger2006-05-051-1/+1
|
* use %p when printing pointers, not %xMike Frysinger2006-05-051-52/+54
|
* fix Bug 659 as reported by Robin GetzMike Frysinger2006-05-051-0/+4
|
* Robert P. Day removed 8 gazillion occurrences of "extern" on functionRob Landley2006-03-061-1/+1
| | | | definitions. (That should only be on prototypes.)
* moved BB_BANNER to applets/version.c file: make kernel like version, "Vladimir N. Oleynik"2006-02-161-2/+2
| | | | removed depend loop: busybox.h depend with BB_BT, and all sources depend with busybox.h
* fix up yet more annoying signed/unsigned and mixed type errorsEric Andersen2006-01-301-1/+1
|
* just whitespaceTim Riker2006-01-251-3/+3
|
* data --> text"Vladimir N. Oleynik"2005-10-171-7/+7
|
* usage bb_dev_null"Vladimir N. Oleynik"2005-10-121-1/+1
|
* Reduce exported from msh applet"Vladimir N. Oleynik"2005-09-221-5/+6
|