aboutsummaryrefslogtreecommitdiff
path: root/shell/hush.c
AgeCommit message (Expand)Author
2007-10-11add -fvisibility=hidden to CC flags, mark XXX_main functionsDenis Vlasenko
2007-10-10get rid of global "struct bb_applet *current_applet"Denis Vlasenko
2007-10-01hush: fix glob() abuse. Code was making unfounded assumptions howDenis Vlasenko
2007-10-01hush: int->smallint for flag vars; make some names more "greppable"Denis Vlasenko
2007-10-01hush: feeble attempt at making it more NOMMU-friendlyDenis Vlasenko
2007-10-01hush: stop doing manual acounting of open fd's, kernel can do it for usDenis Vlasenko
2007-09-30introduce and use close_on_exec_on(fd). -50 bytes.Denis Vlasenko
2007-09-27introduce bb_putchar(). saves ~1800 on uclibc (less on glibc).Denis Vlasenko
2007-08-12trylink: produce even more info about final link stageDenis Vlasenko
2007-06-25Consolidate ARRAY_SIZE macro; remove one unneeded global var (walter harms <w...Denis Vlasenko
2007-06-13*: BB_BANNER -> bb_banner (it is not a const or #define)!Denis Vlasenko
2007-06-13hush: fix read builtin to not read ahead past eol and to not useDenis Vlasenko
2007-06-08make busybox --install work even if /proc/self/exe doesn't existDenis Vlasenko
2007-05-30hush: trivial buglet found by randomconfig testingDenis Vlasenko
2007-05-30whitespace fixesDenis Vlasenko
2007-05-26usage.c: remove reference to busybox.hDenis Vlasenko
2007-05-26xpipe: introduce (saves ~170 bytes)Denis Vlasenko
2007-05-25hush: fix 'echo abc`sleep 5`def' + Ctrl-Z and Ctrl-C bugs. +50 bytes of code.Denis Vlasenko
2007-05-25hush: avoid duplicating HUSH_VERSIONDenis Vlasenko
2007-05-25hush: micro-optimization in new variable codeDenis Vlasenko
2007-05-25hush: we can't do without variable->value member, saving 25 bytes of codeDenis Vlasenko
2007-05-25hush: rework variable storage and environment handling.Denis Vlasenko
2007-05-24hush: fix segfaulting syntax error in interactive hushDenis Vlasenko
2007-05-24hush: fix handling of unmatched ${name (without closing '}') -Denis Vlasenko
2007-05-23hush: make syntax error messages a bit more usefulDenis Vlasenko
2007-05-23hush: fix job control with eval /bin/external_progDenis Vlasenko
2007-05-23hush: fix a bit different instance of "No EOL" bug,Denis Vlasenko
2007-05-21hush: add 3 CONFIG_xxx, allowing for smaller and less capable hush.Denis Vlasenko
2007-05-21hush: using smallints where we can. save ~20 bytes in code andDenis Vlasenko
2007-05-20hush: fix shift + $0 bug; add testcaseDenis Vlasenko
2007-05-20hush: trivial size optimizationDenis Vlasenko
2007-05-20hush: make process substitution configurable; add a testcaseDenis Vlasenko
2007-05-17hush: do "struct globals" trick. hush.o data+bss = 0 bytes now.Denis Vlasenko
2007-05-17hush: consolidated variable expansion for assignments and "normal" one.Denis Vlasenko
2007-05-17more compile fixes from randomconfig runDenis Vlasenko
2007-05-16hush: take care of several easy FIXMEs. -228 bytes.Denis Vlasenko
2007-05-16hush: another microscopic typo fixDenis Vlasenko
2007-05-16hush: fix English in commentDenis Vlasenko
2007-05-16hush: simplify read builtin; fix set_local_var (misplaced 'goto skip;')Denis Vlasenko
2007-05-16hush: fix expansion of quoted $VAR, $* and $@Denis Vlasenko
2007-05-16hush: fix incorrect processing of echo "'$var'".Denis Vlasenko
2007-05-14hush: more fixes to variable expansion, more testcasesDenis Vlasenko
2007-05-14hush: move towards more correct variable expansionDenis Vlasenko
2007-05-13hush: fix '{ false; echo $?; }' bug.Denis Vlasenko
2007-05-11hush: fix bug in interactive shell introduced yesterdayDenis Vlasenko
2007-05-10hush: fix "unterminated last line loops forever" bugDenis Vlasenko
2007-05-10hush: fix recent breakage (VAR=VAL stopped working)Denis Vlasenko
2007-05-06hush: fix double-free in "echo TEST &"Denis Vlasenko
2007-05-05hush: stop generating extra empty pipes in parse stage.Denis Vlasenko
2007-05-05hush: preparatory patch for removing extra empty pipes generationDenis Vlasenko