summaryrefslogtreecommitdiff
path: root/package/busybox
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2011-01-01 20:40:05 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2011-01-01 20:40:05 +0100
commit33c84781ec8c0225472bd1bf00184efcdff3c20b (patch)
treef18fd9f4ad15d42c27e45be866cedd41e401bd9c /package/busybox
parentfd5c3b9c4adb01bf350b781498b4c9614f40dcf8 (diff)
use /sbin for watchdog binary
Diffstat (limited to 'package/busybox')
-rw-r--r--package/busybox/Makefile2
-rw-r--r--package/busybox/files/watchdog.init4
2 files changed, 3 insertions, 3 deletions
diff --git a/package/busybox/Makefile b/package/busybox/Makefile
index 46752cb72..6145cb780 100644
--- a/package/busybox/Makefile
+++ b/package/busybox/Makefile
@@ -5,7 +5,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:= busybox
PKG_VERSION:= 1.18.1
-PKG_RELEASE:= 1
+PKG_RELEASE:= 2
PKG_MD5SUM:= f15fe752d8b7012aa5e59f83b88ccb1c
PKG_DESCR:= Core utilities for embedded systems
PKG_SECTION:= base
diff --git a/package/busybox/files/watchdog.init b/package/busybox/files/watchdog.init
index 5fadef046..1f1724da5 100644
--- a/package/busybox/files/watchdog.init
+++ b/package/busybox/files/watchdog.init
@@ -10,10 +10,10 @@ autostart)
exec sh $0 start
;;
start)
- /usr/sbin/watchdog $watchdog_flags /dev/watchdog
+ /sbin/watchdog $watchdog_flags /dev/watchdog
;;
stop)
- kill $(pgrep -f /usr/sbin/watchdog)
+ kill $(pgrep -f /sbin/watchdog)
;;
restart)
sh $0 stop