summaryrefslogtreecommitdiff
path: root/busybox
diff options
context:
space:
mode:
Diffstat (limited to 'busybox')
-rw-r--r--busybox/busybox-1.00/defconfig2
-rw-r--r--busybox/busybox_1.00.oe2
-rw-r--r--busybox/files/busybox-udhcpd4
3 files changed, 4 insertions, 4 deletions
diff --git a/busybox/busybox-1.00/defconfig b/busybox/busybox-1.00/defconfig
index 06c56d3118..49d7b21420 100644
--- a/busybox/busybox-1.00/defconfig
+++ b/busybox/busybox-1.00/defconfig
@@ -352,7 +352,7 @@ CONFIG_FEATURE_WGET_IP6_LITERAL=y
#
# udhcp Server/Client
#
-# CONFIG_UDHCPD is not set
+CONFIG_UDHCPD=y
CONFIG_UDHCPC=y
CONFIG_FEATURE_UDHCP_SYSLOG=y
# CONFIG_FEATURE_UDHCP_DEBUG is not set
diff --git a/busybox/busybox_1.00.oe b/busybox/busybox_1.00.oe
index 63e4a7cd05..74de8835da 100644
--- a/busybox/busybox_1.00.oe
+++ b/busybox/busybox_1.00.oe
@@ -11,7 +11,7 @@ HOMEPAGE = "http://www.busybox.net"
LICENSE = "GPL"
SECTION = "base"
PRIORITY = "required"
-PR = "r5"
+PR = "r6"
SRC_URI = "http://www.busybox.net/downloads/busybox-${PV}.tar.gz \
file://add-getkey-applet.patch;patch=1 \
diff --git a/busybox/files/busybox-udhcpd b/busybox/files/busybox-udhcpd
index 71a87afeab..c43903e8dc 100644
--- a/busybox/files/busybox-udhcpd
+++ b/busybox/files/busybox-udhcpd
@@ -15,12 +15,12 @@ case "$1" in
echo "error: /etc/udhcpd.conf is missing."
exit 1
fi
- start-stop-daemon -S -b -n $NAME -a $DAEMON -- $ARGS
+ /sbin/start-stop-daemon -S -b -n $NAME -a $DAEMON -- $ARGS
echo "done."
;;
stop)
echo -n "stopping $DESC: $NAME... "
- start-stop-daemon -K -n $NAME
+ /sbin/start-stop-daemon -K -n $NAME
echo "done."
;;
restart)