diff options
author | Koen Kooi <koen@openembedded.org> | 2009-04-14 10:29:06 +0200 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-04-14 10:29:06 +0200 |
commit | 56fe494547aba6d67973a8e1e3c21fe7a7501dc0 (patch) | |
tree | 38fa4c450feccea8991e1908f30e6c755e5b7069 /recipes/busybox/busybox-1.13.2/busybox-1.13.2-killall.patch | |
parent | 01be9642c5a554f8da700f59c6fd5d81c3a66003 (diff) | |
parent | 0bc69c83a40eea87f0e47feb96910193b351c8e5 (diff) |
Merge branch 'org.openembedded.dev' of git@git.openembedded.net:openembedded into org.openembedded.dev
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.patch | 17 |
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, |