From owner-freebsd-stable@FreeBSD.ORG Thu Nov 16 16:39:19 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C491C16A40F for ; Thu, 16 Nov 2006 16:39:19 +0000 (UTC) (envelope-from vincent@xtra-net.org) Received: from ns1.xtra-net.be (ns1.xtra-net.be [195.162.200.90]) by mx1.FreeBSD.org (Postfix) with SMTP id F025843D5C for ; Thu, 16 Nov 2006 16:39:18 +0000 (GMT) (envelope-from vincent@xtra-net.org) Received: (qmail 6101 invoked from network); 16 Nov 2006 16:39:17 -0000 Received: from unknown (HELO sbepfkaa.srv.xtra-net.be) (172.16.66.66) by 0 with SMTP; 16 Nov 2006 16:39:17 -0000 Received: (qmail 38334 invoked from network); 16 Nov 2006 16:38:34 -0000 Received: from wbedllfs.intranet.xtra-net.be (HELO wbemfkaa.net.xtra-net.be) (172.16.66.1) by 0 with SMTP; 16 Nov 2006 16:38:34 -0000 From: Vincent Blondel To: freebsd-stable@freebsd.org In-Reply-To: <20061116161706.GB65054@xor.obsecurity.org> References: <1163621364.85632.12.camel@wbemfkaa.net.xtra-net.be> <1163692748.2792.10.camel@wbemfkaa.net.xtra-net.be> <20061116161706.GB65054@xor.obsecurity.org> Content-Type: text/plain Date: Thu, 16 Nov 2006 17:38:44 +0100 Message-Id: <1163695124.2792.16.camel@wbemfkaa.net.xtra-net.be> Mime-Version: 1.0 X-Mailer: Evolution 2.6.3 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit Cc: Kris Kennaway Subject: Re: kernel crash ... X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Nov 2006 16:39:19 -0000 Hello Kris, You can find below a generic make.conf I use to compile src/ports on my all machines ( only AMD Athlon XP/MP ). .CPUTYPE != sysctl hw.model |sed 's/ //g' .if ${.CPUTYPE:M*AMDAthlon(tm)XP*} CFLAGS= -march=athlon-xp .endif .if ${.CPUTYPE:M*AMDAthlon(tm)MP*} CFLAGS= -march=athlon-mp .endif CFLAGS+= -O -pipe CFLAGS+= -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 .if ${.CURDIR:M/usr/src/*} CFLAGS+= -fno-strict-aliasing .endif .if ${.CURDIR:M/usr/ports/*} CFLAGS+= -Os -fomit-frame-pointer .endif COPTFLAGS= -O -pipe Thanks to help me :-) Vincent On Thu, 2006-11-16 at 11:17 -0500, Kris Kennaway wrote: > On Thu, Nov 16, 2006 at 04:59:08PM +0100, Vincent Blondel wrote: > > > > Hello all, > > > > Sorry to spam this list but this morning at 03:00 AM I get back a kernel > > crash. Seems mailwrapper crashed now. > > > > Do I make a new build/install world/kernel ? > > > > Please, can somebody help me solve this problem. > > > > Just for info I put some details of my config below + last kernel debug. > > Neither of the two backtraces you've posted seem to make sense. What > flags are you compiling your kernel with? > > Kris