From owner-svn-src-user@FreeBSD.ORG Sat Feb 27 21:03:28 2010 Return-Path: Delivered-To: svn-src-user@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 309D01065674; Sat, 27 Feb 2010 21:03:28 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id E58838FC14; Sat, 27 Feb 2010 21:03:27 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.14.3/8.14.1) with ESMTP id o1RKub0U024054; Sat, 27 Feb 2010 13:56:37 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Sat, 27 Feb 2010 13:56:50 -0700 (MST) Message-Id: <20100227.135650.321689433999139524.imp@bsdimp.com> To: jmallett@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <201002270356.o1R3uDHe044895@svn.freebsd.org> References: <201002270356.o1R3uDHe044895@svn.freebsd.org> X-Mailer: Mew version 6.3 on Emacs 22.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: src-committers@FreeBSD.org, svn-src-user@FreeBSD.org Subject: Re: svn commit: r204394 - user/jmallett/octeon/sys/mips/conf X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Feb 2010 21:03:28 -0000 In message: <201002270356.o1R3uDHe044895@svn.freebsd.org> Juli Mallett writes: : Author: jmallett : Date: Sat Feb 27 03:56:12 2010 : New Revision: 204394 : URL: http://svn.freebsd.org/changeset/base/204394 : : Log: : o) Correct the ISA and -march values for Octeon -- it's not MIPS32. : o) Switch to using the n32 ABI. : : Modified: : user/jmallett/octeon/sys/mips/conf/OCTEON1-32 : : Modified: user/jmallett/octeon/sys/mips/conf/OCTEON1-32 : ============================================================================== : --- user/jmallett/octeon/sys/mips/conf/OCTEON1-32 Sat Feb 27 03:55:08 2010 (r204393) : +++ user/jmallett/octeon/sys/mips/conf/OCTEON1-32 Sat Feb 27 03:56:12 2010 (r204394) : @@ -24,16 +24,18 @@ ident OCTEON1 : # Don't build any modules yet. : makeoptions MODULES_OVERRIDE="" : makeoptions TARGET_BIG_ENDIAN=defined : -makeoptions LDSCRIPT_NAME=ldscript.mips.octeon1.32 : +makeoptions TARGET_N32=defined : +makeoptions LDSCRIPT_NAME=ldscript.mips.octeon1.n32 : : -makeoptions KERNLOADADDR=0x81000000 : +makeoptions KERNLOADADDR=0xffffffff81000000 : include "../cavium/std.octeon1" : : hints "OCTEON1.hints" #Default places to look for devices. : : makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols : : -options ISA_MIPS32 : +options ISA_MIPS64 This likely has some bad ripple effects... : +makeoptions ARCH_FLAGS="-march=mips64 -mabi=n32" This should have been -march=octeon :) : options DDB : options KDB