1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
From 34a0afeb251d14c2c98e8b61a85f6621a9ffe3d0 Mon Sep 17 00:00:00 2001
From: Haavard Skinnemoen <hskinnemoen@atmel.com>
Date: Tue, 6 Nov 2007 19:38:24 +0100
Subject: [PATCH] opcontrol: don't use kill -s
Busybox's implementation of "kill" doesn't understand the "-s SIG"
option. Use "-SIG" instead.
Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
---
utils/opcontrol | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/utils/opcontrol b/utils/opcontrol
index 7cb68a7..5a75cd2 100644
--- a/utils/opcontrol
+++ b/utils/opcontrol
@@ -908,7 +908,7 @@ do_stop()
return
fi
- kill -s 0 `cat $LOCK_FILE` 2>/dev/null
+ kill -0 `cat $LOCK_FILE` 2>/dev/null
if test "$?" -ne 0; then
echo "Detected stale lock file. Removing." >&2
rm -f "$LOCK_FILE"
@@ -919,7 +919,7 @@ do_stop()
echo "Stopping profiling."
echo 0 >/dev/oprofile/enable
fi
- kill -s USR2 `cat $LOCK_FILE` 2>/dev/null
+ kill -USR2 `cat $LOCK_FILE` 2>/dev/null
}
@@ -932,7 +932,7 @@ do_kill_daemon()
return
fi
- kill -s 0 `cat $LOCK_FILE` 2>/dev/null
+ kill -0 `cat $LOCK_FILE` 2>/dev/null
if test "$?" -ne 0; then
echo "Detected stale lock file. Removing." >&2
rm -f "$LOCK_FILE"
@@ -1274,7 +1274,7 @@ do_start_daemon()
{
if test -f "$LOCK_FILE"; then
- kill -s 0 `cat $LOCK_FILE` 2>/dev/null
+ kill -0 `cat $LOCK_FILE` 2>/dev/null
if test "$?" -eq 0; then
return;
else
@@ -1341,7 +1341,7 @@ do_start()
if test "$KERNEL_SUPPORT" = "yes"; then
echo 1 >$MOUNT/enable
fi
- kill -s USR1 `cat $LOCK_FILE` 2>/dev/null
+ kill -USR1 `cat $LOCK_FILE` 2>/dev/null
echo "Profiler running."
}
--
1.5.3.4
|