aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.c
AgeCommit message (Expand)Author
2009-04-12ash: fix warning in debug buildDenis Vlasenko
2009-04-04hush: fix NOMMU hangs in pseudo_exec_argv. Add forgotted settingDenis Vlasenko
2009-04-02shells: do not need to have math state globalDenis Vlasenko
2009-04-02fix ash-alias/alias.tests failureDenis Vlasenko
2009-04-02split math code out of ash and into a standalone library so we can use it in ...Mike Frysinger
2009-04-01more of pointless whitespace fixesDenis Vlasenko
2009-03-31ash: add/improve comments, no code changesDenis Vlasenko
2009-03-31ash: fix $IFS handling in read. closes bug 235Denis Vlasenko
2009-03-20ash: expand commentDenis Vlasenko
2009-03-20ash: add missing comma in debug scaffoldingDenis Vlasenko
2009-03-20ash: fix a case where we close wrong descriptor; add debug hack for thatDenis Vlasenko
2009-03-19ash: DEBUG should be 0 :)Denis Vlasenko
2009-03-19ash: fix TRACE commandsDenis Vlasenko
2009-03-19ash: make evaltree save/restore int suppression depth.Denis Vlasenko
2009-03-19ash: in dotrap(), do not clear gotsig[] for SIGINT if there is no handlerDenis Vlasenko
2009-03-19ash: tentatively fix bug 189.Denis Vlasenko
2009-03-19ash: fix "ash -c 'exec 1>&0'" complaining that fd 0 is busyDenis Vlasenko
2009-03-03modprobe: emit "can't open 'modules.dep': (errno)" instead of "module not found"Denis Vlasenko
2009-02-15ash: make dot command search current directory first, as bash does.Denis Vlasenko
2008-12-23libbb: introduce and use xmalloc_ttyname (-32 in bss).Denis Vlasenko
2008-12-15ash: fix CONFIG_ASH_OPTIMIZE_FOR_SIZE off + high-bit chars caseDenis Vlasenko
2008-12-03ash: remove TODO which seems to actually work now.Denis Vlasenko
2008-12-03ash: finally installed it as /bin/sh on my machine.Denis Vlasenko
2008-11-28ash: add FIXMEDenis Vlasenko
2008-11-28ash: "ash: syntax error: XXX unexpected" -> "ash: syntax error: unexpected XXX"Denis Vlasenko
2008-11-28ash: shrink on top of previous changeDenis Vlasenko
2008-11-28ash: better fix for ash -c 'echo 5&' and ash -c 'sleep 5&'Denis Vlasenko
2008-11-25ash,hush: add TODO for rare build failureDenis Vlasenko
2008-11-25ash: fix bad interaction between ash -c '....&' and bash compatDenis Vlasenko
2008-11-22ash: NTO2 needs #if ENABLE_ASH_BASH_COMPATDenis Vlasenko
2008-11-21ash: fix miscalculation of memory needed for eval treeDenis Vlasenko
2008-10-27ash: fix "while kill -0 $child; do true; done" looping forever.Denis Vlasenko
2008-10-20ash: fix NOEXEC mode - we were forgetting to pass environment!Denis Vlasenko
2008-10-07ash: support &> redirection (bashism). ~90 bytes of codeDenis Vlasenko
2008-10-06ash: some beautification work, no code changesDenis Vlasenko
2008-10-05ash: implement ">&file" bashism. ~100 bytes.Denis Vlasenko
2008-09-27style fixes, no code changesDenis Vlasenko
2008-08-16ash: fix "(cat < file)" hang introduced by rev 22944.Denis Vlasenko
2008-07-30ash: bash compat: "shift $BIGNUM" is equivalent to "shift 1"Denis Vlasenko
2008-07-26ash: fix typoDenis Vlasenko
2008-07-26ash: hopefully close bug 4324. With testcase.Denis Vlasenko
2008-07-25ash: dont allow e.g. exec <&10 to attach to stript's fd!Denis Vlasenko
2008-07-24ash: prevent exec NN>&- from closing fd used for script readingDenis Vlasenko
2008-07-24ash: fix a bug where redirection fds were not closed afterwards.Denis Vlasenko
2008-07-24ash: teach ash about 123>file. It could take only 0..9 beforeDenis Vlasenko
2008-07-24ash: ducument where "no fds > 9 in redirects" limitation is.Denis Vlasenko
2008-07-24ash: ditch dupredirect(), it was only making code harder to read.Denis Vlasenko
2008-07-24ash: explain redirect code a bitDenis Vlasenko
2008-07-24ash: code shrinkDenis Vlasenko
2008-07-21- fix spellingBernhard Reutner-Fischer