Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-03-24 | inetd,ed,msh: data/bss reduction (in mss, more than 9k of it) | Denis Vlasenko | |
2007-03-24 | dc: use common_bufsiz1 for evaluation stack | Denis Vlasenko | |
msh: fix "underscore bug" (a_b=1111 didn't work) dnsd: openlog(), so that applet's name is logged | |||
2007-03-20 | fix accumulated whitespace and indentation damage | Denis Vlasenko | |
2007-03-09 | add STANDALONE support | Mike Frysinger | |
2007-03-07 | clean up accumulated whitespace damage | Denis Vlasenko | |
2007-02-09 | msh: fix my buglet | Denis Vlasenko | |
2007-02-04 | find: support for ! | Denis Vlasenko | |
2007-02-03 | suppress warnings about easch <applet>_main() having | Denis Vlasenko | |
no preceding prototype | |||
2007-02-01 | msh: cleaning up for -Wwrite-strings part #4 | Denis Vlasenko | |
2007-02-01 | msh: cleaning up for -Wwrite-strings part #3 | Denis Vlasenko | |
2007-02-01 | msh: cleaning up for -Wwrite-strings part #2 | Denis Vlasenko | |
2007-02-01 | msh: cleaning up for -Wwrite-strings | Denis Vlasenko | |
2007-01-29 | preparatory patch for -Wwrite-strings #2 | Denis Vlasenko | |
2007-01-22 | cmdedit is not a 'command' editing anymore, it's just editing (generic), | Denis Vlasenko | |
so rename stuff accordingly. | |||
2007-01-22 | Convert cmdedit into more generic line input facility | Denis Vlasenko | |
(make history and completion optional at runtime). Use it for fdisk, as an example. Some unrelated fixes in fdisk are also here. | |||
2007-01-01 | stty: fix width of a field for ppc32 | Denis Vlasenko | |
sort: fix -u to match coreutils 6.3 msh: compile fix (my fault) | |||
2007-01-01 | msh: double "static char line[LINELIM]" etc deleted. | Denis Vlasenko | |
massive amounts of assignments-in-ifs deleted (some of which were VERY nasty) | |||
2006-12-24 | random tiny size savings | Denis Vlasenko | |
2006-12-16 | inline strcmp(s, "-") [actually macro-ize it for now - gcc is too stupid] | Denis Vlasenko | |
2006-11-27 | style cleanup: return(a) -> return a, part 2 | Denis Vlasenko | |
2006-11-27 | style cleanup: return(a) -> return a, part 1 | Denis Vlasenko | |
2006-11-18 | rodata cleanup. "unable to" == "cannot". -300 bytes | Denis Vlasenko | |
2006-11-15 | remove duplicate flag decls | Mike Frysinger | |
2006-10-26 | silly size savings and capitalization fixes | Denis Vlasenko | |
2006-10-14 | add open_read_close() and similar stuff | Denis Vlasenko | |
2006-08-10 | Make a warning go away when standalone shell is disabled. | Rob Landley | |
2006-07-12 | A couple things that got tangled up in my tree, easier to check in both than | Rob Landley | |
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. | |||
2006-07-01 | Get rid of all "#if 0" content. | "Robert P. J. Day" | |
2006-07-01 | Remove all usage of the "register" storage class specifier. | "Robert P. J. Day" | |
2006-06-26 | dont setpgrp() for now as it breaks system() and that is more important than ↵ | Mike Frysinger | |
ctrl+c handling of background processes | |||
2006-06-25 | - convert old-style parameter declarations (K&R) to modern style. | Bernhard Reutner-Fischer | |
2006-06-20 | assign default debug level to the MSHDEBUG define | Mike Frysinger | |
2006-06-14 | Upgrade the standalone shell code to use CONFIG_BUSYBOX_EXEC_PATH. | Rob Landley | |
2006-06-06 | make the default prompt suck less when using fancy prompts | Mike Frysinger | |
2006-06-02 | - move #include busybox.h to the very top so we pull in the config | Bernhard Reutner-Fischer | |
and eventual platform specific includes in early. | |||
2006-06-02 | use xmalloc() | Mike Frysinger | |
2006-05-26 | - use portability wrapper define bb_setpgrp. | Bernhard Reutner-Fischer | |
2006-05-05 | didnt mean to commit debug enable | Mike Frysinger | |
2006-05-05 | use %p when printing pointers, not %x | Mike Frysinger | |
2006-05-05 | fix Bug 659 as reported by Robin Getz | Mike Frysinger | |
2006-03-06 | Robert P. Day removed 8 gazillion occurrences of "extern" on function | Rob Landley | |
definitions. (That should only be on prototypes.) | |||
2006-02-16 | moved BB_BANNER to applets/version.c file: make kernel like version, | "Vladimir N. Oleynik" | |
removed depend loop: busybox.h depend with BB_BT, and all sources depend with busybox.h | |||
2006-01-30 | fix up yet more annoying signed/unsigned and mixed type errors | Eric Andersen | |
2006-01-25 | just whitespace | Tim Riker | |
2005-10-17 | data --> text | "Vladimir N. Oleynik" | |
2005-10-12 | usage bb_dev_null | "Vladimir N. Oleynik" | |
2005-09-22 | Reduce exported from msh applet | "Vladimir N. Oleynik" | |
2005-07-20 | applyinf fix for: | Paul Fox | |
0000155: variable expansion with braces in backticks in msh | |||
2004-09-02 | Jonas Holmberg from axis dot com writes: | Eric Andersen | |
This patch makes msh handle variable expansion within backticks more correctly. Current behaviour (wrong): -------------------------- BusyBox v1.00-rc3 (2004.08.26-11:51+0000) Built-in shell (msh) Enter 'help' for a list of built-in commands. $ A='`echo hello`' $ echo $A `echo hello` $ echo `echo $A` hello $ New behaviour (correct): ------------------------ BusyBox v1.00-rc3 (2004.08.26-11:51+0000) Built-in shell (msh) Enter 'help' for a list of built-in commands. $ A='`echo hello`' $ echo $A `echo hello` $ echo `echo $A` `echo hello` $ The current behaviour (wrong according to standards) was actually my fault. msh handles backticks by executing a subshell (which makes it work on MMU-less systems). Executing a subshell makes it hard to only expand variables once in the parent. Therefore I export all variables that will be expanded within the backticks and let the subshell handle the expansion instead. The bug was found while searching for security leaks in CGI-scripts. Current behaviour of msh makes it easy to expand backticks by mistake in $QUERY_STRING. I recommend appling the patch before release of bb 1.00. /Jonas | |||
2004-08-27 | Quiet a few warnings | Eric Andersen | |