diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-03-06 20:12:00 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-03-06 20:12:00 +0100 |
commit | f3c742f925c31bdf1b0d52c82e0ef608a344e10f (patch) | |
tree | c74cf752e03ef906fc74014882843640262a2322 /shell/Kbuild | |
parent | cbcc1236f806f18e6386e6e1f495a9832b7d307d (diff) | |
download | busybox-w32-f3c742f925c31bdf1b0d52c82e0ef608a344e10f.tar.gz busybox-w32-f3c742f925c31bdf1b0d52c82e0ef608a344e10f.tar.bz2 busybox-w32-f3c742f925c31bdf1b0d52c82e0ef608a344e10f.zip |
hush: use ash's ulimit builtin; make it more more bash0like while at it
Based on a patch by Tobias Klauser <tklauser@distanz.ch>
function old new delta
shell_builtin_ulimit - 498 +498
limits_tbl 33 88 +55
ulimit_opt_string - 38 +38
bltins1 288 300 +12
limits_name 127 - -127
ulimitcmd 415 7 -408
------------------------------------------------------------------------------
(add/remove: 3/1 grow/shrink: 2/1 up/down: 603/-535) Total: 68 bytes
text data bss dec hex filename
839229 453 6828 846510 ceaae busybox_old
839423 453 6828 846704 ceb70 busybox_unstripped
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/Kbuild')
-rw-r--r-- | shell/Kbuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/Kbuild b/shell/Kbuild index d8306dc96..8b528654a 100644 --- a/shell/Kbuild +++ b/shell/Kbuild | |||
@@ -5,8 +5,8 @@ | |||
5 | # Licensed under the GPL v2, see the file LICENSE in this tarball. | 5 | # Licensed under the GPL v2, see the file LICENSE in this tarball. |
6 | 6 | ||
7 | lib-y:= | 7 | lib-y:= |
8 | lib-$(CONFIG_ASH) += ash.o ash_ptr_hack.o shell_common.o builtin_read.o | 8 | lib-$(CONFIG_ASH) += ash.o ash_ptr_hack.o shell_common.o builtin_read.o builtin_ulimit.o |
9 | lib-$(CONFIG_HUSH) += hush.o match.o shell_common.o builtin_read.o | 9 | lib-$(CONFIG_HUSH) += hush.o match.o shell_common.o builtin_read.o builtin_ulimit.o |
10 | lib-$(CONFIG_CTTYHACK) += cttyhack.o | 10 | lib-$(CONFIG_CTTYHACK) += cttyhack.o |
11 | 11 | ||
12 | lib-$(CONFIG_SH_MATH_SUPPORT) += math.o | 12 | lib-$(CONFIG_SH_MATH_SUPPORT) += math.o |