summaryrefslogtreecommitdiff
path: root/shell/ash.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* ash: if tcgetattr(stdin) fails, don't mess with tcsetattrDenis Vlasenko2007-10-291-35/+75
* read_line_input: fix it to not do any fancy editing if echoing is disabled.Denis Vlasenko2007-10-201-21/+24
* ash: use fdprintf, not dprintf.Denis Vlasenko2007-10-171-2/+2
* add -fvisibility=hidden to CC flags, mark XXX_main functionsDenis Vlasenko2007-10-111-1/+1
* get rid of global "struct bb_applet *current_applet"Denis Vlasenko2007-10-101-4/+2
* ash: revert "cat | jobs" fix, it causes more problems than goodDenis Vlasenko2007-10-071-7/+1
* introduce and use close_on_exec_on(fd). -50 bytes.Denis Vlasenko2007-09-301-2/+2
* fix "if (p) free(p)" constructsDenis Vlasenko2007-09-281-8/+4
* ash: fix prompt expansion (Natanael Copa <natanael.copa@gmail.com>)Denis Vlasenko2007-09-241-2/+17
* ash: remove erroneously applied patchDenis Vlasenko2007-09-211-16/+1
* httpd: optional support for partial downloadsDenis Vlasenko2007-09-211-1/+16
* ash: s/int/smallint/. -60 bytes.Denis Vlasenko2007-09-211-51/+47
* *: replace select-for-one descriptor with poll, it's smaller.Denis Vlasenko2007-09-071-0/+1
* libbb,crond,lash: fix getopt32 (don't know how it managed to slip through)Denis Vlasenko2007-08-191-2/+2
* trylink: produce even more info about final link stageDenis Vlasenko2007-08-121-27/+31
* ash: comment non-obvious code partDenis Vlasenko2007-07-291-2/+7
* style fix (stray space before ';')Denis Vlasenko2007-07-211-1/+1
* ash: fix SEGV in forkchild (jp can be NULL). here documents were affected.Denis Vlasenko2007-07-181-1/+2
* ash: make "jobs | cat" work like in bash (was giving empty output)Denis Vlasenko2007-07-151-1/+10
* ash: small size optimizationDenis Vlasenko2007-07-141-33/+33
* ash: recognize -l as --login equivalent; do not recognize +-loginDenis Vlasenko2007-07-141-9/+12
* ash: fix for buglet in DEBUG code (Nguyen Thai Ngoc Duy <pclouds@gmail.com>)Denis Vlasenko2007-07-141-15/+16
* devfsd: fix formatting (Tito <farmatito@tiscali.it>)Denis Vlasenko2007-06-251-1/+1
* Consolidate ARRAY_SIZE macro; remove one unneeded global var (walter harms <w...Denis Vlasenko2007-06-251-7/+6
* test: shrink a bitDenis Vlasenko2007-06-211-1/+1
* *: BB_BANNER -> bb_banner (it is not a const or #define)!Denis Vlasenko2007-06-131-5/+5
* hush: fix read builtin to not read ahead past eol and to not useDenis Vlasenko2007-06-131-2/+2
* remove nearly-duplicate PATHs in several placesDenis Vlasenko2007-06-121-4/+2
* make busybox --install work even if /proc/self/exe doesn't existDenis Vlasenko2007-06-081-1/+1
* use "glibc errno" trick not only for ash, but for entire busyboxDenis Vlasenko2007-05-311-11/+0
* usage.c: remove reference to busybox.hDenis Vlasenko2007-05-261-1/+1
* ash: implement type -p, costs less than 10 bytesDenis Vlasenko2007-05-201-16/+11
* several *.c files:Denis Vlasenko2007-05-171-1/+1
* ash,kill: use common code for kill applet/builtinDenis Vlasenko2007-04-291-92/+27
* ash: fix infinite loop on exit if tty is not there anymoreDenis Vlasenko2007-04-281-1/+3
* hush: use NOFORK applets as appropriate. Net reduction of code size.Denis Vlasenko2007-04-141-3/+1
* teach find_root_device to deal with /dev/ subdirsDenis Vlasenko2007-04-131-1/+2
* ash: fix kill -l (by Mats Erik Andersson <mats.andersson64@comhem.se>)Denis Vlasenko2007-04-111-1/+1
* Rename two config options:Denis Vlasenko2007-04-101-4/+4
* make a few struct bb_applet members conditionalDenis Vlasenko2007-04-101-1/+1
* Improve STANDALONE_SHELL. "safe" applets are renamed NOEXEC appletsDenis Vlasenko2007-04-091-52/+7
* add some missed statics on constant objects.Denis Vlasenko2007-04-081-3/+8
* ash: fix signal handlingDenis Vlasenko2007-03-211-7/+16
* ash: popstackmark is reported trying to pop until NULLDenis Vlasenko2007-03-131-0/+3
* clean up accumulated whitespace damageDenis Vlasenko2007-03-071-1/+1
* ash: cosmetic improvements in error messagesDenis Vlasenko2007-03-051-21/+22
* ash: do not use "safe applets" in non-standalone shellDenis Vlasenko2007-03-031-24/+26
* ash: replace xstrdup (shell shall not die)Denis Vlasenko2007-02-251-2/+2
* ash: fix compile problemsDenis Vlasenko2007-02-241-1/+4
* ash: cleanup part 2.8Denis Vlasenko2007-02-231-75/+57