From patchwork Fri Feb 21 11:13:06 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Petazzoni X-Patchwork-Id: 322546 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id 8EE802C030C for ; Fri, 21 Feb 2014 22:13:13 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id A1AD893C54; Fri, 21 Feb 2014 11:13:12 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id jdo+4CYRYhwy; Fri, 21 Feb 2014 11:13:11 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id BD9BB93C47; Fri, 21 Feb 2014 11:13:11 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id 10B0F1C24A6 for ; Fri, 21 Feb 2014 11:13:10 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 0689493C47 for ; Fri, 21 Feb 2014 11:13:10 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id giSnPg8otu5k for ; Fri, 21 Feb 2014 11:13:09 +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 hemlock.osuosl.org (Postfix) with ESMTP id DE49193C43 for ; Fri, 21 Feb 2014 11:13:08 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 106) id 4AFD0826; Fri, 21 Feb 2014 12:13:09 +0100 (CET) Received: from localhost (col31-4-88-188-83-94.fbx.proxad.net [88.188.83.94]) by mail.free-electrons.com (Postfix) with ESMTPSA id DF8046E2 for ; Fri, 21 Feb 2014 12:13:08 +0100 (CET) From: Thomas Petazzoni To: buildroot@uclibc.org Date: Fri, 21 Feb 2014 12:13:06 +0100 Message-Id: <1392981186-16080-1-git-send-email-thomas.petazzoni@free-electrons.com> X-Mailer: git-send-email 1.8.3.2 Subject: [Buildroot] [PATCH] gpsd: disallow NMEA2000 CAN driver 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 AVR32 is using uClibc 0.9.31, which lacks some CAN related definitions that prevent the gpsd nmea2000 driver from building. The rest of gpsd, with all options and drivers enabled, builds fine on AVR32. Fixes: http://autobuild.buildroot.org/results/ee2/ee2ec848e893f08fa80caf99a67e68b73b6400e8/ Signed-off-by: Thomas Petazzoni --- package/gpsd/Config.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package/gpsd/Config.in b/package/gpsd/Config.in index 00a8a13..fbbf7a9 100644 --- a/package/gpsd/Config.in +++ b/package/gpsd/Config.in @@ -174,6 +174,9 @@ config BR2_PACKAGE_GPSD_NMEA2000 bool "NMEA2000" select BR2_PACKAGE_GPSD_NAVCOM select BR2_PACKAGE_GPSD_AIVDM + # uClibc 0.9.31, used on AVR32, does not have the necessary + # CAN definitions. + depends on !BR2_avr32 help NMEA2000/CAN support