From: Peter Marko Date: Tue, 10 Feb 2026 11:50:35 +0000 (+0100) Subject: busybox: adapt busybox-udhcpd init script to new start-stop-daemon path X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=85327e3a6f247d7a3480ca21ecec06eb7d3ea097;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git busybox: adapt busybox-udhcpd init script to new start-stop-daemon path Commit 9998d91f982cd323fa5da20edda8b1828bd4fb5d moved start-stop-daemon from /sbin to /usr/sbin. Adapt busybox-udhcpd to this change. Signed-off-by: Peter Marko Signed-off-by: Mathieu Dubois-Briand Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-core/busybox/files/busybox-udhcpd b/meta/recipes-core/busybox/files/busybox-udhcpd index c43903e8dc..d35f8540d1 100755 --- a/meta/recipes-core/busybox/files/busybox-udhcpd +++ b/meta/recipes-core/busybox/files/busybox-udhcpd @@ -15,12 +15,12 @@ case "$1" in echo "error: /etc/udhcpd.conf is missing." exit 1 fi - /sbin/start-stop-daemon -S -b -n $NAME -a $DAEMON -- $ARGS + /usr/sbin/start-stop-daemon -S -b -n $NAME -a $DAEMON -- $ARGS echo "done." ;; stop) echo -n "stopping $DESC: $NAME... " - /sbin/start-stop-daemon -K -n $NAME + /usr/sbin/start-stop-daemon -K -n $NAME echo "done." ;; restart)