diff mbox

busybox 1.22.1: update to updated ash patch

Message ID 1390477694-28655-1-git-send-email-gustavo@zacarias.com.ar
State Accepted
Commit 99fa554bd64561e36b8f337821d2fb387f506ef6
Headers show

Commit Message

Gustavo Zacarias Jan. 23, 2014, 11:48 a.m. UTC
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 .../busybox/1.22.1/0002-busybox-1.22.1-ash.patch   | 31 ++++++++--------------
 1 file changed, 11 insertions(+), 20 deletions(-)

Comments

Peter Korsgaard Jan. 23, 2014, 11:49 a.m. UTC | #1
>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Sorry, I just fixed that myself.
diff mbox

Patch

diff --git a/package/busybox/1.22.1/0002-busybox-1.22.1-ash.patch b/package/busybox/1.22.1/0002-busybox-1.22.1-ash.patch
index 767c3a8..301e942 100644
--- a/package/busybox/1.22.1/0002-busybox-1.22.1-ash.patch
+++ b/package/busybox/1.22.1/0002-busybox-1.22.1-ash.patch
@@ -1,20 +1,11 @@ 
---- busybox-1.22.1/procps/top.c
-+++ busybox-1.22.1-ash/procps/top.c
-@@ -917,17 +917,12 @@ enum {
- #if ENABLE_FEATURE_USE_TERMIOS
- static unsigned handle_input(unsigned scan_mask, unsigned interval)
- {
--	struct pollfd pfd[1];
--
- 	if (option_mask32 & OPT_EOF) {
- 		/* EOF on stdin ("top </dev/null") */
- 		sleep(interval);
- 		return scan_mask;
- 	}
- 
--	pfd[0].fd = 0;
--	pfd[0].events = POLLIN;
--
- 	while (1) {
- 		int32_t c;
- 
+--- busybox-1.22.1/shell/ash.c
++++ busybox-1.22.1-ash/shell/ash.c
+@@ -13014,7 +13014,7 @@ init(void)
+ 		setvar2("PPID", utoa(getppid()));
+ #if ENABLE_ASH_BASH_COMPAT
+ 		p = lookupvar("SHLVL");
+-		setvar2("SHLVL", utoa(p ? atoi(p) + 1 : 1));
++		setvar("SHLVL", utoa((p ? atoi(p) : 0) + 1), VEXPORT);
+ #endif
+ 		p = lookupvar("PWD");
+ 		if (p) {