summaryrefslogtreecommitdiff
path: root/package/procps
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-11-08 18:34:19 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2010-11-08 18:34:19 +0100
commite518dde1484afa818ea4aae89c7cab91c64bf4a2 (patch)
treed5dc8cd0a46828ef2e53b4a426bd4e49006e5598 /package/procps
parentfdb9a5d0000df40e477ed563e1e779080e85e66e (diff)
killall is not included upstream, remove ash script. update to latest upstream
Diffstat (limited to 'package/procps')
-rw-r--r--package/procps/Makefile7
-rw-r--r--package/procps/killall25
2 files changed, 3 insertions, 29 deletions
diff --git a/package/procps/Makefile b/package/procps/Makefile
index cba4846d2..a93c6dfa2 100644
--- a/package/procps/Makefile
+++ b/package/procps/Makefile
@@ -4,9 +4,9 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= procps
-PKG_VERSION:= 3.2.7
-PKG_RELEASE:= 4
-PKG_MD5SUM:= f490bca772b16472962c7b9f23b1e97d
+PKG_VERSION:= 3.2.8
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 9532714b6846013ca9898984ba4cd7e0
PKG_DESCR:= The /proc file system utilities
PKG_SECTION:= utils
PKG_DEPENDS:= libncurses
@@ -40,6 +40,5 @@ post-install:
ln -sf ../../bin/kill skill; \
ln -sf ../../bin/kill snice; \
ln -sf pgrep pkill
- ${INSTALL_BIN} killall ${IDIR_PROCPS}/usr/bin/
include ${TOPDIR}/mk/pkg-bottom.mk
diff --git a/package/procps/killall b/package/procps/killall
deleted file mode 100644
index 0f4ed7ceb..000000000
--- a/package/procps/killall
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/ash
-dolist=0
-doquiet=0
-l=1
-x=$#
-signal=
-while [ $x -gt 0 ]; do
- case $1 in
- -l) dolist=1 ;;
- -q) doquiet=1 ;;
- -lq|-ql)
- dolist=1
- doquiet=1
- ;;
- -*) signal=$1 ;;
- *) break ;;
- esac
- shift
- x=$(expr $x - 1)
-done
-[ $dolist = 1 ] && kill -l
-pkill -x $signal "$@"
-rv=$?
-[ $doquiet = 1 ] && exit 0
-exit $rv