From patchwork Mon May 12 20:04:08 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Petazzoni X-Patchwork-Id: 348100 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id 7296F140082 for ; Tue, 13 May 2014 06:04:13 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id A3FF381E61; Mon, 12 May 2014 20:04:12 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id rexIUpsbjWw5; Mon, 12 May 2014 20:04:12 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 285AD81FDA; Mon, 12 May 2014 20:04:12 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id 2AF111C4588 for ; Mon, 12 May 2014 20:04:11 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 22D728B94F for ; Mon, 12 May 2014 20:04:11 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 4jOl5U4Sxw0a for ; Mon, 12 May 2014 20:04:10 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.free-electrons.com (top.free-electrons.com [176.31.233.9]) by fraxinus.osuosl.org (Postfix) with ESMTP id A262F8B8BE for ; Mon, 12 May 2014 20:04:10 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 106) id C006481F; Mon, 12 May 2014 22:04:16 +0200 (CEST) Received: from localhost (AToulouse-651-1-70-126.w92-156.abo.wanadoo.fr [92.156.5.126]) by mail.free-electrons.com (Postfix) with ESMTPSA id 6F0A615B for ; Mon, 12 May 2014 22:04:16 +0200 (CEST) From: Thomas Petazzoni To: buildroot@uclibc.org Date: Mon, 12 May 2014 22:04:08 +0200 Message-Id: <1399925048-5117-1-git-send-email-thomas.petazzoni@free-electrons.com> X-Mailer: git-send-email 1.9.2 Subject: [Buildroot] [PATCH] radvd: not available on AVR32 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 radvd needs some C library definitions not available in old uClibc versions. Since we don't care much about AVR32, we simply disallow the radvd package on this architecture. Fixes: http://autobuild.buildroot.org/results/f03/f0367a30e8d772eb5e955a85b853ec3e43fe54b3/ Signed-off-by: Thomas Petazzoni --- package/radvd/Config.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package/radvd/Config.in b/package/radvd/Config.in index 6edfd7c..71f2f34 100644 --- a/package/radvd/Config.in +++ b/package/radvd/Config.in @@ -5,6 +5,8 @@ config BR2_PACKAGE_RADVD select BR2_PACKAGE_FLEX select BR2_PACKAGE_LIBDAEMON depends on BR2_INET_IPV6 + # uClibc too old, does not define ARPHRD_IEEE802154 + depends on !BR2_avr32 help IPv6 Router Advertisement Daemon. @@ -13,3 +15,4 @@ config BR2_PACKAGE_RADVD comment "radvd needs a toolchain w/ IPv6" depends on BR2_USE_MMU depends on !BR2_INET_IPV6 + depends on !BR2_avr32