summaryrefslogtreecommitdiff
path: root/shell/ash.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* | Merge branch 'origin/master' (early part)Nguyễn Thái Ngọc Duy2010-09-141-2/+0
|\| | | | | | | | | Conflicts: shell/builtin_ulimit.c
| * shell: consolidate builtin_foo.? into shell_common.?; delete obsolete shellsDenys Vlasenko2010-05-231-2/+0
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* | Merge branch 'origin/master' (early part)Nguyễn Thái Ngọc Duy2010-09-141-26/+22
|\|
| * ash: eliminate 16 bytes in bssDenys Vlasenko2010-05-201-26/+22
| | | | | | | | | | | | | | | | text data bss dec hexfilename 841423 441 7572 849436 cf61cbusybox_old 841430 441 7556 849427 cf613busybox_unstripped Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* | Merge branch 'origin/master' (early part)Nguyễn Thái Ngọc Duy2010-09-141-8/+15
|\| | | | | | | | | Conflicts: shell/ash.c
| * ash: fix var_leak.tests so that it actually catches the NOFORK bugDenys Vlasenko2010-05-181-8/+14
| | | | | | | | | | | | + document the bug better Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* | Merge branch 'origin/master' (early part)Nguyễn Thái Ngọc Duy2010-09-141-42/+69
|\|
| * typo fixDenys Vlasenko2010-05-181-1/+1
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * ash: fix bug which causes signal6.tests to failDenys Vlasenko2010-05-181-7/+15
| | | | | | | | | | | | | | | | function old new delta trapcmd 271 277 +6 localcmd 277 275 -2 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * ash,hush: make bare "." set exitcode to 2Denys Vlasenko2010-05-181-20/+25
| | | | | | | | | | | | | | | | function old new delta dotcmd 300 305 +5 builtin_source 176 171 -5 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * ash,hush: make "source" a synonym for . if bash compat is onDenys Vlasenko2010-05-171-0/+2
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * ash: fix ". empty_file" exitcode. +5 bytesDenys Vlasenko2010-05-171-3/+5
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * ash: use CONFIG_FEATURE_EDITING_MAX_LENDenys Vlasenko2010-05-171-7/+6
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * ash: fix signal5.testsDenys Vlasenko2010-05-171-5/+12
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * ash: refresh stack pointers after makestrspace in rmescapesColin Watson2010-04-261-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Without this, rmescapes sometimes returns random garbage while performing parameter expansions such as ${foo#bar}, in the event that the allocation of r happens to need to reallocate the stack and hence invalidate str and p. I'd love to provide a test case but unfortunately it's dependent on exact stack layout, so I don't have anything simpler than the situation described in https://bugs.launchpad.net/ubuntu/+source/partman-base/+bug/527401/comments/23 which involved a sequence of foo="${foo#*, }" expansions on a long string inside our RAID configuration tool. The same fix has been in dash since 2007-09-26, contributed by Roy Marples <uberlord@gentoo.org>. I actually came up with it independently almost to the character, but then synced it up with the variable naming used in dash when I noticed that change afterwards. Signed-off-by: Colin Watson <cjwatson@ubuntu.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* | win32: ash: support .com executablesNguyễn Thái Ngọc Duy2010-09-141-2/+9
| |
* | win32: ash: general comments about MinGW portNguyễn Thái Ngọc Duy2010-09-141-0/+12
| |
* | win32: ash: do not set PPIDNguyễn Thái Ngọc Duy2010-09-141-1/+2
| |
* | win32: ash: work around case-insensitive env varsNguyễn Thái Ngọc Duy2010-09-141-0/+27
| |
* | win32: ash: shellexecNguyễn Thái Ngọc Duy2010-09-141-0/+35
| |
* | win32: ash: evalpipeNguyễn Thái Ngọc Duy2010-09-141-0/+38
| |
* | win32: ash: evalsubshellNguyễn Thái Ngọc Duy2010-09-141-0/+26
| |
* | win32: ash: evalbackcmdNguyễn Thái Ngọc Duy2010-09-141-0/+30
| |
* | win32: ash: openhereNguyễn Thái Ngọc Duy2010-09-141-0/+39
| |
* | win32: ash: sticky_free()Nguyễn Thái Ngọc Duy2010-09-141-0/+15
| |
* | win32: ash: forkshell_init()Nguyễn Thái Ngọc Duy2010-09-141-0/+68
| |
* | win32: ash: spawn_forkshell()Nguyễn Thái Ngọc Duy2010-09-141-0/+24
| |
* | win32: ash: forkshell_prepare()Nguyễn Thái Ngọc Duy2010-09-141-0/+70
| |
* | win32: ash: struct forkshellNguyễn Thái Ngọc Duy2010-09-141-0/+75
| |
* | win32: ash: struct globals_miscNguyễn Thái Ngọc Duy2010-09-141-0/+34
| |
* | win32: ash: struct globals_varNguyễn Thái Ngọc Duy2010-09-141-0/+57
| |
* | win32: ash: struct redirtabNguyễn Thái Ngọc Duy2010-09-141-0/+33
| |
* | win32: ash: char **Nguyễn Thái Ngọc Duy2010-09-141-0/+34
| |
* | win32: ash: struct tblentry **cmdtableNguyễn Thái Ngọc Duy2010-09-141-0/+24
| |
* | win32: ash: struct tblentryNguyễn Thái Ngọc Duy2010-09-141-0/+55
| |
* | win32: ash: struct strlistNguyễn Thái Ngọc Duy2010-09-141-0/+13
| |
* | win32: ash: struct localvarNguyễn Thái Ngọc Duy2010-09-141-0/+16
| |
* | win32: ash: struct varNguyễn Thái Ngọc Duy2010-09-141-0/+18
| |
* | win32: ash: macros for implementing simple foo_size, foo_copyNguyễn Thái Ngọc Duy2010-09-141-0/+35
| |
* | win32: Support saving pointer location in calcsize()/copynode()Nguyễn Thái Ngọc Duy2010-09-141-0/+45
| |
* | win32: ash: nodeckstrdup(): tolerate NULL stringNguyễn Thái Ngọc Duy2010-09-141-1/+3
| |
* | win32: ash: FIXMENguyễn Thái Ngọc Duy2010-09-141-1/+1
| |
* | win32: ash: reimplement waitpid(-1)Nguyễn Thái Ngọc Duy2010-09-141-0/+53
| |
* | win32: ash: find_command(): also find .exeNguyễn Thái Ngọc Duy2010-09-141-0/+21
| |
* | win32: ash: openredirect(): support /dev/nullNguyễn Thái Ngọc Duy2010-09-101-0/+25
| |
* | win32: ash: copyfd(): work around fcntl(F_DUPFD)Nguyễn Thái Ngọc Duy2010-09-101-0/+12
| |
* | win32: ash: stay away from fcntl(F_DUPFD)Nguyễn Thái Ngọc Duy2010-09-101-2/+2
| |
* | win32: ash: new implementation for updatepwd()Nguyễn Thái Ngọc Duy2010-09-101-0/+93
| |
* | win32: ash: path_advance(): save space for .exe laterNguyễn Thái Ngọc Duy2010-09-101-1/+3
| |
* | win32: ash: path_advance(): support both colon and semicolon as path separatorNguyễn Thái Ngọc Duy2010-09-101-0/+10
| |