aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/busybox/busybox-1.13.2/busybox-1.13.2-killall.patch
diff options
context:
space:
mode:
authorTom Rini <trini@kernel.crashing.org>2009-04-01 14:53:56 +0000
committerMarcin Juszkiewicz <hrw@openembedded.org>2009-04-07 10:14:21 +0200
commita8ba77b61d7eddbe8b8b50431576967de7799970 (patch)
tree968773e354357d2aff665387464fce385c3f9222 /recipes/busybox/busybox-1.13.2/busybox-1.13.2-killall.patch
parentfbf22c52a21c8f423d8c6683155be9248f21b31a (diff)
downloadopenembedded-a8ba77b61d7eddbe8b8b50431576967de7799970.tar.gz
busybox 1.13.2: Add more upstream patches, bump PR
This adds the awk, killall, printf, syslogd, top24, unzip and wget patches from http://busybox.net/downloads/fixes-1.13.2/
Diffstat (limited to 'recipes/busybox/busybox-1.13.2/busybox-1.13.2-killall.patch')
-rw-r--r--recipes/busybox/busybox-1.13.2/busybox-1.13.2-killall.patch17
1 files changed, 17 insertions, 0 deletions
diff --git a/recipes/busybox/busybox-1.13.2/busybox-1.13.2-killall.patch b/recipes/busybox/busybox-1.13.2/busybox-1.13.2-killall.patch
new file mode 100644
index 0000000000..9524f5281a
--- /dev/null
+++ b/recipes/busybox/busybox-1.13.2/busybox-1.13.2-killall.patch
@@ -0,0 +1,17 @@
+--- busybox-1.13.2/include/libbb.h Wed Dec 31 04:06:45 2008
++++ busybox-1.13.2-killall/include/libbb.h Sat Feb 14 02:41:18 2009
+@@ -1275,7 +1275,13 @@
+ PSSCAN_UTIME = 1 << 13,
+ PSSCAN_TTY = 1 << 14,
+ PSSCAN_SMAPS = (1 << 15) * ENABLE_FEATURE_TOPMEM,
+- PSSCAN_ARGVN = (1 << 16) * (ENABLE_PGREP || ENABLE_PKILL || ENABLE_PIDOF),
++ /* NB: used by find_pid_by_name(). Any applet using it
++ * needs to be mentioned here. */
++ PSSCAN_ARGVN = (1 << 16) * (ENABLE_KILLALL
++ || ENABLE_PGREP || ENABLE_PKILL
++ || ENABLE_PIDOF
++ || ENABLE_SESTATUS
++ ),
+ USE_SELINUX(PSSCAN_CONTEXT = 1 << 17,)
+ PSSCAN_START_TIME = 1 << 18,
+ PSSCAN_CPU = 1 << 19,