Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-02-23 | ash: cleanup part 8 | Denis Vlasenko | |
2007-02-23 | ash: cleanup part 7 | Denis Vlasenko | |
2007-02-23 | ash: cleanup part 6 | Denis Vlasenko | |
2007-02-23 | ash: cleanup part 5 | Denis Vlasenko | |
2007-02-23 | ash: cleanup part 4 | Denis Vlasenko | |
2007-02-23 | ash: cleanup part 3 | Denis Vlasenko | |
2007-02-23 | ash: cleanup part 2 | Denis Vlasenko | |
2007-02-23 | ash: cleanup part 1 | Denis Vlasenko | |
2007-02-19 | ash: move ash_main() and helpers to end of ash.c, more fuctions renamed, | Denis Vlasenko | |
superfluous casts from memory allocators removed | |||
2007-02-19 | ash: more renaming and style fixes | Denis Vlasenko | |
2007-02-19 | ash: rearrange code to reduce forward references, rename some functions | Denis Vlasenko | |
2007-02-19 | ash: tiny style fixes | Denis Vlasenko | |
2007-02-18 | ash: de-obfuscate code, add 'static' keyword, etc. | Denis Vlasenko | |
2007-02-18 | ash: convert #ifdef CONFIG_ to #if ENABLE_ | Denis Vlasenko | |
2007-02-18 | ash: fix indentation and style. no code changes | Denis Vlasenko | |
2007-02-03 | suppress warnings about easch <applet>_main() having | Denis Vlasenko | |
no preceding prototype | |||
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-21 | Introduce FEATURE_EXEC_PREFER_APPLETS = "re-execute our own | Denis Vlasenko | |
executable if we asked to exec someting with argv[0] == known_applet" Use it in init. Also respect PATH in init, remove explicit "/sbin" etc from exec. Patch by Gabriel L. Somlo <somlo@cmu.edu> | |||
2007-01-18 | fix subtle bug inherited from dash | Denis Vlasenko | |
2007-01-11 | Trailing whitespace removal over entire tree | Denis Vlasenko | |
2007-01-10 | execute "safe applets" exev if not standalone shell | Denis Vlasenko | |
(patch by "Eric Spakman" <E.Spakman@inter.nl.net>) | |||
2006-12-26 | ash: is_safe_applet mustn't affect disabled applets | Denis Vlasenko | |
2006-12-26 | merge post-1.3.0 fixes | Denis Vlasenko | |
2006-12-26 | style fixes | Denis Vlasenko | |
last xcalloc replaced by xzalloc | |||
2006-12-24 | random tiny size savings | Denis Vlasenko | |
2006-12-24 | less: implement waiting for input using select(). Rather tricky business. | Denis Vlasenko | |
But we do not read entire input anymore up-front. | |||
2006-12-21 | introduce LONE_CHAR (optimized strcmp with one-char string) | Denis Vlasenko | |
2006-12-19 | su: make /etc/shells check configurable | Denis Vlasenko | |
ash: missing ';' | |||
2006-12-18 | xfuncs.c: dietlibc actually HAS fdprintf! | Denis Vlasenko | |
platform.h: define strchrnul for dietlibc ash: stop using few non-standard functions | |||
2006-12-18 | A bunch of defined(__GLIBC__) added. static-linking warning expanded | Denis Vlasenko | |
2006-12-16 | inline strcmp(s, "-") [actually macro-ize it for now - gcc is too stupid] | Denis Vlasenko | |
2006-11-27 | fix remaining survivors of the return(a) cleanup | 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-21 | httpd: LC_TIME locale _must_ be POSIX to httpd! We speak over the net! | Denis Vlasenko | |
2006-11-17 | add -Wundef, fix uncovered bugs | Denis Vlasenko | |
2006-10-16 | ash: fix segfault in ash. | Denis Vlasenko | |
patch by walter harms <wharms@bfs.de> | |||
2006-10-10 | fixes from Vladimir Dronnikov <dronnikov@gmail.ru> | Denis Vlasenko | |
2006-10-05 | build system overhaul | Denis Vlasenko | |
2006-10-03 | bb_applet_name -> applet_name | Denis Vlasenko | |
2006-09-26 | several fixes from openWRT project | Denis Vlasenko | |
2006-08-29 | Svn 16007 broke the build under gcc 4.0.3. This fixes up some of the damage | Rob Landley | |
(the e2fsprogs directory is too twisty and evil to easily fix, but I plan to rewrite it anyway so I'll just bump that up in priority a bit). | |||
2006-08-03 | Remove bb_ prefixes from xfuncs.c (and a few other places), consolidate | Rob Landley | |
things like xasprintf() into xfuncs.c, remove xprint_file_by_name() (it only had one user), clean up lots of #includes... General cleanup pass. What I've been doing for the last couple days. And it conflicts! I've removed httpd.c from this checkin due to somebody else touching that file. It builds for me. I have to catch a bus. (Now you know why I'm looking forward to Mercurial.) | |||
2006-07-16 | Cleaup read() and write() variants, plus a couple of new functions like | Rob Landley | |
xlseek and fdlength() for the new mkswap. | |||
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-06 | Bug fix from Vladimir Oleynic via Paul Fox for: | Rob Landley | |
echo "+bond0" > /sys/class/net/bonding_masters while true; do echo hello done | |||
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-25 | - convert old-style parameter declarations (K&R) to modern style. | Bernhard Reutner-Fischer | |