Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-28 | * precision requires the argument be an integer, not size_t | Mike Frysinger | |
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-23 | #define FEATURE_GETUSERNAME_AND_HOMEDIR should be always #defined | Denis Vlasenko | |
2006-12-22 | remove useless casts (type*) xzalloc(...) | Denis Vlasenko | |
2006-12-22 | removal of commented-out cruft | Denis Vlasenko | |
2006-12-21 | cmdedit: reformat code a bit, no algorithm changes | Denis Vlasenko | |
2006-12-21 | fix type character mixup in command completion | Denis Vlasenko | |
2006-12-21 | introduce LONE_CHAR (optimized strcmp with one-char string) | Denis Vlasenko | |
2006-12-19 | cmdedit: fix my bug, improve code a bit | Denis Vlasenko | |
2006-12-19 | cmdedit: use qsort for sorting command completion results; style fixes | 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-24 | hunt down improper include <>, make mkswap output 4Gb+ friendly | Denis Vlasenko | |
2006-11-21 | httpd: LC_TIME locale _must_ be POSIX to httpd! We speak over the net! | Denis Vlasenko | |
2006-11-18 | rodata cleanup. "unable to" == "cannot". -300 bytes | Denis Vlasenko | |
2006-11-17 | add -Wundef, fix uncovered bugs | Denis Vlasenko | |
2006-11-15 | remove duplicate flag decls | Mike Frysinger | |
2006-11-02 | Fix kbuild bugs noticed by Bernhard Fischer <rep.nop@aon.at> | Denis Vlasenko | |
2006-11-01 | #if CONFIG_xxx -> #if ENABLE_xxx | Denis Vlasenko | |
2006-10-26 | rename functions to more understandable names | Denis Vlasenko | |
2006-10-26 | silly size savings and capitalization fixes | Denis Vlasenko | |
2006-10-25 | use skip_whitespace where appropriate | Denis Vlasenko | |
2006-10-20 | message string changes, mostly for consistency, also -32 bytes in .rodata | Denis Vlasenko | |
2006-10-16 | ash: fix segfault in ash. | Denis Vlasenko | |
patch by walter harms <wharms@bfs.de> | |||
2006-10-14 | add open_read_close() and similar stuff | Denis Vlasenko | |
2006-10-12 | bb_get_[chomped]line_from_file wasn't descriptive enough. | Denis Vlasenko | |
Renaming... | |||
2006-10-11 | hush.c: stop using __FILE__ (bad in out-of-tree builds) | Denis Vlasenko | |
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-10-03 | getopt_ulflags -> getopt32. | Denis Vlasenko | |
It is impossible to formulate sane ABI based on size of ulong because it can be 32-bit or 64-bit. Basically it means that you cannot portably use more that 32 option chars in one call anyway... Make it explicit. | |||
2006-10-03 | lots of silly indent fixes | Denis Vlasenko | |
2006-09-29 | Yet another silly little byte saving. couldn't -> cannot | Denis Vlasenko | |
2006-09-26 | several fixes from openWRT project | Denis Vlasenko | |
2006-09-20 | The version checked into the tree is a snapshot of an unifinished applet, and | Rob Landley | |
you just made lots of ">>>>>>> mine" lines show up in my working copy of this. Please don't do that again. | |||
2006-09-17 | whitespace cleanup | Denis Vlasenko | |
2006-09-15 | Unbreak allbareconfig. | Rob Landley | |
2006-09-08 | Fix warnings. | Rob Landley | |
2006-09-08 | Second drop. More infrastructure in place, especially for parsing pipelines. | Rob Landley | |
The minimal version got a couple hundred bytes bigger, partly because it's broken into more functions but mostly because it now dynamically reallocates and frees everything with no hard-coded limits. (I thought about making that optional, but there's a limit to what I can debug and maintain. It should still be reasonably NOMMU friendly, the allocations are small and short lived, and shouldn't contribute noticeably to long-term memory fragmentation.) |