svn commit: r209915 - projects/ppc64
Nathan Whitehorn
nwhitehorn at FreeBSD.org
Sun Jul 11 22:47:47 UTC 2010
Author: nwhitehorn
Date: Sun Jul 11 22:47:46 2010
New Revision: 209915
URL: http://svn.freebsd.org/changeset/base/209915
Log:
Set default kernel on powerpc64 to GENERIC64. This is a hack, but there
isn't an obviously better solution.
Modified:
projects/ppc64/Makefile.inc1
Modified: projects/ppc64/Makefile.inc1
==============================================================================
--- projects/ppc64/Makefile.inc1 Sun Jul 11 22:00:40 2010 (r209914)
+++ projects/ppc64/Makefile.inc1 Sun Jul 11 22:47:46 2010 (r209915)
@@ -719,8 +719,12 @@ KERNCONF=${KERNFAST}
KERNCONF= ${KERNEL}
KERNWARN=
.else
+.if ${TARGET_ARCH} == "powerpc64"
+KERNCONF?= GENERIC64
+.else
KERNCONF?= GENERIC
.endif
+.endif
INSTKERNNAME?= kernel
KERNSRCDIR?= ${.CURDIR}/sys
More information about the svn-src-projects
mailing list