base-files: do not assume that "top" is busybox' top, but try to call the applet explicitely

SVN-Revision: 28862
This commit is contained in:
Jo-Philipp Wich
2011-11-08 18:48:38 +00:00
parent a73fffe857
commit daca6a6a97
2 changed files with 2 additions and 2 deletions

View File

@@ -80,7 +80,7 @@ run_ramfs() { # <command> [...]
kill_remaining() { # [ <signal> ]
local sig="${1:-TERM}"
echo -n "Sending $sig to remaining processes ... "
top -bn1 | while read pid ppid user stat vsz pvsz pcpu cmd args; do
/bin/busybox top -bn1 2>/dev/null | while read pid ppid user stat vsz pvsz pcpu cmd args; do
case "$pid" in
[0-9]*) : ;;
*) continue ;;