From owner-freebsd-mips@FreeBSD.ORG Fri Aug 13 14:51:40 2010 Return-Path: Delivered-To: mips@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9DD5E1065670; Fri, 13 Aug 2010 14:51:40 +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 5FEB68FC14; Fri, 13 Aug 2010 14:51:40 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.14.3/8.14.1) with ESMTP id o7DEhHOG016394; Fri, 13 Aug 2010 08:43:17 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Fri, 13 Aug 2010 08:43:49 -0600 (MDT) Message-Id: <20100813.084349.81694732431589369.imp@bsdimp.com> To: jchandra@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <201008131256.o7DCu0lS006909@svn.freebsd.org> References: <201008131256.o7DCu0lS006909@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: mips@FreeBSD.org Subject: Re: svn commit: r211280 - in head/sys: conf mips/conf mips/include mips/mips mips/rmi X-BeenThere: freebsd-mips@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to MIPS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2010 14:51:40 -0000 In message: <201008131256.o7DCu0lS006909@svn.freebsd.org> "Jayachandran C." writes: : Rename TARGET_XLR_XLS to CPU_RMI to match other CPU_xxx definitions. : use CPU_RMI all XLR configurations. Update ident string for N32 and : N64 kernels. I think that we may need more granularity than CPU_CNMIPS in the future (since there's already two types of CNMIPS we support, with a third one on the horizon). Older bits of code have a finer grained support for CPUs, but that's not currently that consistent inside of the tree. Traditionally, the CPU_xxxx has been used both for size control, as well as behavior tweaking. The majority of the support in the tree today with CPU_CNMIPS and CPU_XLR is only for the latter. Warner