From owner-freebsd-current@FreeBSD.ORG Tue Jun 12 09:57:51 2007 Return-Path: X-Original-To: freebsd-current@freebsd.org Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 74BC816A46B for ; Tue, 12 Jun 2007 09:57:51 +0000 (UTC) (envelope-from mux@freebsd.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.freebsd.org (Postfix) with ESMTP id 665DC13C455 for ; Tue, 12 Jun 2007 09:57:51 +0000 (UTC) (envelope-from mux@freebsd.org) Received: by elvis.mu.org (Postfix, from userid 1920) id DFA801A4D84; Tue, 12 Jun 2007 02:57:32 -0700 (PDT) Date: Tue, 12 Jun 2007 11:57:32 +0200 From: Maxime Henrion To: John Nielsen Message-ID: <20070612095732.GA89572@elvis.mu.org> References: <466CCC94.5050500@errno.com> <20070611190344.GR44064@bunrab.catwhisker.org> <200706111513.04693.lists@jnielsen.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200706111513.04693.lists@jnielsen.net> User-Agent: Mutt/1.4.2.2i Cc: freebsd-current@freebsd.org Subject: Re: HEADSUP: new 802.11 work committed 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: Tue, 12 Jun 2007 09:57:51 -0000 John Nielsen wrote: > On Monday 11 June 2007 03:03:44 pm David Wolfskill wrote: > > On Sun, Jun 10, 2007 at 09:16:20PM -0700, Sam Leffler wrote: > > > From UPDATING: > > > > > > 20070610: > > > The net80211 layer has changed significantly and all wireless > > > drivers that depend on it need to be recompiled..... > > > Send problems to this mailing list; I will be occupied this week and > > > other folks have promised to cover any fallout from these changes. > > >... > > > > Caveat: When I reported this for the first test patchset, I was > > informed that I was the only one reporting the issues in question. So > > this may not apply to anyone else. > > > > OK; as was the case for each of the test patchsets, after rebuilding the > > world & kernel & rebooting the result, I see the following: > > > > * /sbin/ifconfig dumps core. > > With each of the test patchsets, I tried building a debug version of > > ifconfig(8) (using "-g" as the CFLAGS value), which caused a version > > of ifconfig to be installed that no longer dumps core. The following > > sequence was sufficient to accomplish this: > > > > * Modify /etc/make.conf to include the line "CFLAGS = -g" > > Note that this clobbers any existing CFLAGS, which by default includes things > like -O2, -pipe, and -fno-strict-aliasing. I would try the debug route again > but use: > > CFLAGS+= -g > > in make.conf. For the record, unless things have changed recently, the best way to accomplish this is to set DEBUG_FLAGS=-g. It will get added to CFLAGS without changing the rest, and it will also disable the stripping of binaries. Maxime