From 1f821f6522c085a5f66c8d96dc187ec5d8ef7ff3 Mon Sep 17 00:00:00 2001 From: Gustavo Zacarias Date: Wed, 16 Jul 2014 21:47:49 -0300 Subject: [PATCH] ntp: properly select/filter netsnmp for ntpsnmpd BR2_PACKAGE_NTP_SNMPD was pushing netsnmp into dependencies but was never selected, and since netsnmp requires fork it wasn't filtered out for nommu. Fixes: http://autobuild.buildroot.net/results/776/7769afe0da09e3f4f96d9a0f4c0febb0c72cc34f/ Signed-off-by: Gustavo Zacarias Signed-off-by: Thomas Petazzoni --- package/ntp/Config.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package/ntp/Config.in b/package/ntp/Config.in index ec5dbbb40e..858a9ad8cc 100644 --- a/package/ntp/Config.in +++ b/package/ntp/Config.in @@ -54,6 +54,8 @@ config BR2_PACKAGE_NTP_NTPQ config BR2_PACKAGE_NTP_NTPSNMPD bool "ntpsnmpd" + depends on BR2_USE_MMU # netsnmp fork() + select BR2_PACKAGE_NETSNMP help Install ntpsnmpd NTP SNMP MIB agent. -- 2.30.2