From 148830a11d720ed1095b298279f0b2de66b015cc Mon Sep 17 00:00:00 2001 From: Ivan Romanov Date: Mon, 27 Apr 2026 21:32:57 +0500 Subject: [PATCH] dnsmasq: require busybox pidof applet The dnsmasq init script uses pidof, but BusyBox may be built without it. Add a Kconfig dependency on BUSYBOX_CONFIG_PIDOF to ensure the applet is available at runtime. Signed-off-by: Ivan Romanov Link: https://github.com/openwrt/openwrt/pull/23132 Signed-off-by: Robert Marko --- package/network/services/dnsmasq/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/network/services/dnsmasq/Makefile b/package/network/services/dnsmasq/Makefile index 5872a534497..3e98c621b5d 100644 --- a/package/network/services/dnsmasq/Makefile +++ b/package/network/services/dnsmasq/Makefile @@ -44,7 +44,7 @@ define Package/dnsmasq/Default CATEGORY:=Base system TITLE:=DNS and DHCP server URL:=http://www.thekelleys.org.uk/dnsmasq/ - DEPENDS:=+libubus + DEPENDS:=+libubus +@BUSYBOX_CONFIG_PIDOF USERID:=dnsmasq=453:dnsmasq=453 endef