From owner-freebsd-current@FreeBSD.ORG Mon Jun 11 19:13:57 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 6B21B16A41F for ; Mon, 11 Jun 2007 19:13:57 +0000 (UTC) (envelope-from lists@jnielsen.net) Received: from ns1.jnielsen.net (ns1.jnielsen.net [69.55.238.237]) by mx1.freebsd.org (Postfix) with ESMTP id 4F63D13C455 for ; Mon, 11 Jun 2007 19:13:57 +0000 (UTC) (envelope-from lists@jnielsen.net) Received: from localhost (jn@ns1 [69.55.238.237]) (authenticated bits=0) by ns1.jnielsen.net (8.12.9p2/8.12.9) with ESMTP id l5BJDhLR056326; Mon, 11 Jun 2007 15:13:44 -0400 (EDT) (envelope-from lists@jnielsen.net) From: John Nielsen To: freebsd-current@freebsd.org Date: Mon, 11 Jun 2007 15:13:04 -0400 User-Agent: KMail/1.9.6 References: <466CCC94.5050500@errno.com> <20070611190344.GR44064@bunrab.catwhisker.org> In-Reply-To: <20070611190344.GR44064@bunrab.catwhisker.org> X-Face: #X5#Y*q>F:]zT!DegL3z5Xo'^MN[$8k\[4^3rN~wm=s=Uw(sW}R?3b^*f1Wu*.<=?utf-8?q?of=5F4NrS=0A=09P*M/9CpxDo!D6?=)IY1w<9B1jB; tBQf[RU-R<,I)e"$q7N7 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200706111513.04693.lists@jnielsen.net> X-Virus-Scanned: ClamAV version 0.88.4, clamav-milter version 0.88.4 on ns1.jnielsen.net X-Virus-Status: Clean Cc: 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: Mon, 11 Jun 2007 19:13:57 -0000 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. JN