From patchwork Thu Nov 22 09:46:35 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 201030 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 6BBDE2C0081 for ; Thu, 22 Nov 2012 20:46:51 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id F14608CF30; Thu, 22 Nov 2012 09:46:49 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 6VVI+v-1ACil; Thu, 22 Nov 2012 09:46:48 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id BE81F818B2; Thu, 22 Nov 2012 09:46:47 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id C42178F74A for ; Thu, 22 Nov 2012 09:46:50 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 278EA818B2 for ; Thu, 22 Nov 2012 09:46:46 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id a+mZUV-Q-uGl for ; Thu, 22 Nov 2012 09:46:44 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [78.46.79.162]) by whitealder.osuosl.org (Postfix) with ESMTPS id D1233816C6 for ; Thu, 22 Nov 2012 09:46:43 +0000 (UTC) Received: from asgard (host103.201-252-83.telecom.net.ar [201.252.83.103]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.5/8.14.5) with ESMTP id qAM9kaEM032175 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 22 Nov 2012 09:46:39 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1353577601; bh=0j+QZZ2l1wXOLMMMSY+lDz0dYD7p/1eAbGcfmI3fP74=; h=From:To:Cc:Subject:Date; b=by9J6lgtXEeOzsjo7nDU0F/bMBXc8NYzzcph0KueQam3ZgELRwu9tvVZ4BIDaZ66X 05pWH88yS0bYAreUn/lB5km33TLvkqEv9Y8UVzTV8Hq48gOxP9RK904D77DRGsdFz7 PSGYe7pB+/hQk0DOhGm85dsn4fJVBZLX+FRGA6gM= Received: by asgard (sSMTP sendmail emulation); Thu, 22 Nov 2012 06:46:36 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Thu, 22 Nov 2012 06:46:35 -0300 Message-Id: <1353577595-23602-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.7.8.6 X-Virus-Scanned: clamav-milter 0.97.5 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH] arptables: needs mmu X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@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.