Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 27 Mar 2010 17:14:55 +0000 (UTC)
From:      "Bjoern A. Zeeb" <bz@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org
Subject:   svn commit: r205745 - in stable/8/sys: amd64/conf i386/conf ia64/conf pc98/conf powerpc/conf sparc64/conf sun4v/conf
Message-ID:  <201003271714.o2RHEtll048138@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bz
Date: Sat Mar 27 17:14:55 2010
New Revision: 205745
URL: http://svn.freebsd.org/changeset/base/205745

Log:
  MFC r201813:
  
    In sys/<arch>/conf/Makefile set TARGET to <arch>. That allows
    sys/conf/makeLINT.mk to only do certain things for certain
    architectures.
  
    Note that neither arm nor mips have the Makefile there, thus
    essentially not (yet) supporting LINT.  This would enable them
    do add special treatment to sys/conf/makeLINT.mk as well chosing
    one of the many configurations as LINT.

Modified:
  stable/8/sys/amd64/conf/Makefile
  stable/8/sys/i386/conf/Makefile
  stable/8/sys/ia64/conf/Makefile
  stable/8/sys/pc98/conf/Makefile
  stable/8/sys/powerpc/conf/Makefile
  stable/8/sys/sparc64/conf/Makefile
  stable/8/sys/sun4v/conf/Makefile
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)
  stable/8/sys/dev/xen/xenpci/   (props changed)

Modified: stable/8/sys/amd64/conf/Makefile
==============================================================================
--- stable/8/sys/amd64/conf/Makefile	Sat Mar 27 17:11:06 2010	(r205744)
+++ stable/8/sys/amd64/conf/Makefile	Sat Mar 27 17:14:55 2010	(r205745)
@@ -1,3 +1,5 @@
 # $FreeBSD$
 
+TARGET=amd64
+
 .include "${.CURDIR}/../../conf/makeLINT.mk"

Modified: stable/8/sys/i386/conf/Makefile
==============================================================================
--- stable/8/sys/i386/conf/Makefile	Sat Mar 27 17:11:06 2010	(r205744)
+++ stable/8/sys/i386/conf/Makefile	Sat Mar 27 17:14:55 2010	(r205745)
@@ -1,3 +1,5 @@
 # $FreeBSD$
 
+TARGET=i386
+
 .include "${.CURDIR}/../../conf/makeLINT.mk"

Modified: stable/8/sys/ia64/conf/Makefile
==============================================================================
--- stable/8/sys/ia64/conf/Makefile	Sat Mar 27 17:11:06 2010	(r205744)
+++ stable/8/sys/ia64/conf/Makefile	Sat Mar 27 17:14:55 2010	(r205745)
@@ -1,3 +1,5 @@
 # $FreeBSD$
 
+TARGET=ia64
+
 .include "${.CURDIR}/../../conf/makeLINT.mk"

Modified: stable/8/sys/pc98/conf/Makefile
==============================================================================
--- stable/8/sys/pc98/conf/Makefile	Sat Mar 27 17:11:06 2010	(r205744)
+++ stable/8/sys/pc98/conf/Makefile	Sat Mar 27 17:14:55 2010	(r205745)
@@ -1,3 +1,5 @@
 # $FreeBSD$
 
+TARGET=pc98
+
 .include "${.CURDIR}/../../conf/makeLINT.mk"

Modified: stable/8/sys/powerpc/conf/Makefile
==============================================================================
--- stable/8/sys/powerpc/conf/Makefile	Sat Mar 27 17:11:06 2010	(r205744)
+++ stable/8/sys/powerpc/conf/Makefile	Sat Mar 27 17:14:55 2010	(r205745)
@@ -1,3 +1,5 @@
 # $FreeBSD$
 
+TARGET=powerpc
+
 .include "${.CURDIR}/../../conf/makeLINT.mk"

Modified: stable/8/sys/sparc64/conf/Makefile
==============================================================================
--- stable/8/sys/sparc64/conf/Makefile	Sat Mar 27 17:11:06 2010	(r205744)
+++ stable/8/sys/sparc64/conf/Makefile	Sat Mar 27 17:14:55 2010	(r205745)
@@ -1,3 +1,5 @@
 # $FreeBSD$
 
+TARGET=sparc64
+
 .include "${.CURDIR}/../../conf/makeLINT.mk"

Modified: stable/8/sys/sun4v/conf/Makefile
==============================================================================
--- stable/8/sys/sun4v/conf/Makefile	Sat Mar 27 17:11:06 2010	(r205744)
+++ stable/8/sys/sun4v/conf/Makefile	Sat Mar 27 17:14:55 2010	(r205745)
@@ -1,3 +1,5 @@
 # $FreeBSD$
 
+TARGET=sun4v
+
 .include "${.CURDIR}/../../conf/makeLINT.mk"



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201003271714.o2RHEtll048138>