From owner-freebsd-current@FreeBSD.ORG Fri Jan 6 21:42:06 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F113D1065678 for ; Fri, 6 Jan 2012 21:42:06 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: from mail-vx0-f182.google.com (mail-vx0-f182.google.com [209.85.220.182]) by mx1.freebsd.org (Postfix) with ESMTP id A91738FC1B for ; Fri, 6 Jan 2012 21:42:06 +0000 (UTC) Received: by vcbfk1 with SMTP id fk1so2479272vcb.13 for ; Fri, 06 Jan 2012 13:42:05 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=cRU/doXMwl7EUax+BKv5aS318FwwZ/Mz+TwIZNd4r0w=; b=sv2XLCkio8XRW1hlI3YrLpSv82xXFpDq7rzB6FV0e2qUZU4ZaMD3icf8Ps1FNy0WrV mXE9eIf9lWBiredwh4qYD3MGbXln4TlyYS7gqhTo/Khqw6liQq5YkWYs0GwSP4jJX0Gq lirJB8253oODWBTAoWGKACarpXFFohZXRyLAU= MIME-Version: 1.0 Received: by 10.52.35.10 with SMTP id d10mr3820913vdj.132.1325886125910; Fri, 06 Jan 2012 13:42:05 -0800 (PST) Sender: adrian.chadd@gmail.com Received: by 10.52.36.5 with HTTP; Fri, 6 Jan 2012 13:42:05 -0800 (PST) In-Reply-To: <4F073B1B.6000707@gwdg.de> References: <4F072C13.6000606@gwdg.de> <4F073B1B.6000707@gwdg.de> Date: Fri, 6 Jan 2012 13:42:05 -0800 X-Google-Sender-Auth: fNOTbA5kKXqPQnqhkuBHqPTAk1s Message-ID: From: Adrian Chadd To: Rainer Hurling Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-current@freebsd.org Subject: Re: Kernel does not build on 10.0-CURRENT (amd64) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Jan 2012 21:42:07 -0000 On 6 January 2012 10:19, Rainer Hurling wrote: > I commented all wireless network drivers and their options out. But the > error remains. Is it necessary to have this option uncommented even when the > driver ath is commented out? Yes, because of how the wlan/ath modules are built. You need to have AH_SUPPORT_AR5416 in the kernel config file, as the driver/module currently doesn't build without it. I'll eventually fix that, but right now I just want to leave that option in and not hack up the Makefile to define said option. Otherwise other options (eg enabling 11n, enabling hal debugging, etc) are completely ignored when building modules. Same with IEEE80211_SUPPORT_MESH i believe. I should really re-verify that. Adrian