From patchwork Thu Nov 22 09:46:35 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: arptables: needs mmu Date: Wed, 21 Nov 2012 23:46:35 -0000 From: Gustavo Zacarias X-Patchwork-Id: 201030 Message-Id: <1353577595-23602-1-git-send-email-gustavo@zacarias.com.ar> To: buildroot@busybox.net arptables uses fork() and breaks on !mmu. Fixes http://autobuild.buildroot.net/results/fe18dd4a0b0d17404560abf3e4a332b58751f5cb/ Signed-off-by: Gustavo Zacarias --- package/arptables/Config.in | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/package/arptables/Config.in b/package/arptables/Config.in index 510eedf..414fabb 100644 --- a/package/arptables/Config.in +++ b/package/arptables/Config.in @@ -1,5 +1,7 @@ config BR2_PACKAGE_ARPTABLES bool "arptables" + # needs fork() + depends on BR2_USE_MMU help Tool to set up, maintain, and inspect the tables of ARP rules.