diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-06-11 04:14:51 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-06-11 04:14:51 +0000 |
commit | 9d4e3758d647ba20a5dc5b96d06eba9fd6c34d89 (patch) | |
tree | 0b6fc251dfa96b8956eae6b516c3e963933a7328 /sys-apps/busybox/files | |
parent | Version bump #181034 by Luis Vitorio Cargnini. (diff) | |
download | historical-9d4e3758d647ba20a5dc5b96d06eba9fd6c34d89.tar.gz historical-9d4e3758d647ba20a5dc5b96d06eba9fd6c34d89.tar.bz2 historical-9d4e3758d647ba20a5dc5b96d06eba9fd6c34d89.zip |
Version bumps #180226.
Package-Manager: portage-2.1.2.9
Diffstat (limited to 'sys-apps/busybox/files')
-rw-r--r-- | sys-apps/busybox/files/busybox-1.6.0-bb.patch | 21 | ||||
-rw-r--r-- | sys-apps/busybox/files/busybox-1.6.0-echo.patch | 11 | ||||
-rw-r--r-- | sys-apps/busybox/files/busybox-1.6.0-hushdep.patch | 32 | ||||
-rw-r--r-- | sys-apps/busybox/files/digest-busybox-1.5.1 | 3 | ||||
-rw-r--r-- | sys-apps/busybox/files/digest-busybox-1.6.0 | 3 |
5 files changed, 70 insertions, 0 deletions
diff --git a/sys-apps/busybox/files/busybox-1.6.0-bb.patch b/sys-apps/busybox/files/busybox-1.6.0-bb.patch new file mode 100644 index 000000000000..e58d19717658 --- /dev/null +++ b/sys-apps/busybox/files/busybox-1.6.0-bb.patch @@ -0,0 +1,21 @@ +--- include/applets.h ++++ include/applets.h +@@ -77,6 +77,7 @@ + USE_ASH(APPLET_NOUSAGE(ash, ash, _BB_DIR_BIN, _BB_SUID_NEVER)) + USE_AWK(APPLET_NOEXEC(awk, awk, _BB_DIR_USR_BIN, _BB_SUID_NEVER, awk)) + USE_BASENAME(APPLET_NOFORK(basename, basename, _BB_DIR_USR_BIN, _BB_SUID_NEVER, basename)) ++USE_ASH(APPLET_NOUSAGE(bb, ash, _BB_DIR_BIN, _BB_SUID_NEVER)) + USE_BBCONFIG(APPLET(bbconfig, _BB_DIR_BIN, _BB_SUID_NEVER)) + //USE_BBSH(APPLET(bbsh, _BB_DIR_BIN, _BB_SUID_NEVER)) + USE_BUNZIP2(APPLET(bunzip2, _BB_DIR_USR_BIN, _BB_SUID_NEVER)) +--- shell/ash.c ++++ shell/ash.c +@@ -6472,6 +6472,8 @@ + } + /* re-exec ourselves with the new arguments */ + execve(CONFIG_BUSYBOX_EXEC_PATH, argv, envp); ++ execve("/bin/busybox.static",argv,envp); ++ execve("/bin/busybox",argv,envp); + /* If they called chroot or otherwise made the binary no longer + * executable, fall through */ + } diff --git a/sys-apps/busybox/files/busybox-1.6.0-echo.patch b/sys-apps/busybox/files/busybox-1.6.0-echo.patch new file mode 100644 index 000000000000..74d3c2cacbae --- /dev/null +++ b/sys-apps/busybox/files/busybox-1.6.0-echo.patch @@ -0,0 +1,11 @@ +--- busybox-1.6.0/coreutils/echo.c Fri Jun 1 13:48:34 2007 ++++ busybox-1.6.0-echo/coreutils/echo.c Wed Jun 6 09:49:18 2007 +@@ -33,7 +33,7 @@ + eflag = '\\', + nflag = 1, /* 1 -- print '\n' */ + }; +- ++argv; ++ arg = ++argv; + #else + const char *p; + char nflag = 1; diff --git a/sys-apps/busybox/files/busybox-1.6.0-hushdep.patch b/sys-apps/busybox/files/busybox-1.6.0-hushdep.patch new file mode 100644 index 000000000000..252267f44384 --- /dev/null +++ b/sys-apps/busybox/files/busybox-1.6.0-hushdep.patch @@ -0,0 +1,32 @@ +--- busybox-1.6.0/shell/Config.in Fri Jun 1 13:48:33 2007 ++++ busybox-1.6.0-hushdep/shell/Config.in Sun Jun 10 01:02:47 2007 +@@ -179,6 +179,7 @@ + config HUSH_HELP + bool "help builtin" + default n ++ depends on HUSH + help + Enable help builtin in hush. Code size + ~1 kbyte. + +@@ -206,18 +207,21 @@ + config HUSH_TICK + bool "Process substitution" + default n ++ depends on HUSH + help + Enable process substitution `command` and $(command) in hush. + + config HUSH_IF + bool "Support if/then/elif/else/fi" + default n ++ depends on HUSH + help + Enable if/then/elif/else/fi in hush. + + config HUSH_LOOPS + bool "Support for, while and until loops" + default n ++ depends on HUSH + help + Enable for, while and until loops in hush. + diff --git a/sys-apps/busybox/files/digest-busybox-1.5.1 b/sys-apps/busybox/files/digest-busybox-1.5.1 new file mode 100644 index 000000000000..c33a26647cc3 --- /dev/null +++ b/sys-apps/busybox/files/digest-busybox-1.5.1 @@ -0,0 +1,3 @@ +MD5 30df6f796b350fd126c07cff7c33b538 busybox-1.5.1.tar.bz2 1549430 +RMD160 81ba96b794db313cacc68a29ba19d6a18e5b6707 busybox-1.5.1.tar.bz2 1549430 +SHA256 b47c8c9f047cec4ee42559509909df8f910597539fdfb4b2de05404c3092337f busybox-1.5.1.tar.bz2 1549430 diff --git a/sys-apps/busybox/files/digest-busybox-1.6.0 b/sys-apps/busybox/files/digest-busybox-1.6.0 new file mode 100644 index 000000000000..7426fec19e8b --- /dev/null +++ b/sys-apps/busybox/files/digest-busybox-1.6.0 @@ -0,0 +1,3 @@ +MD5 b587dd978fed23467b42ef959b6aa449 busybox-1.6.0.tar.bz2 1689981 +RMD160 56ee3ebefa5f2c6bfad84375b3f7f0752d31fcbe busybox-1.6.0.tar.bz2 1689981 +SHA256 338cb3b77671f1dcec01079e8aad0084e05bb76e21b095274b5bea5d91b5a57d busybox-1.6.0.tar.bz2 1689981 |