svn commit: r367907 - head

Alfredo Dal'Ava Junior alfredo at FreeBSD.org
Fri Nov 20 18:42:02 UTC 2020


Author: alfredo
Date: Fri Nov 20 18:42:01 2020
New Revision: 367907
URL: https://svnweb.freebsd.org/changeset/base/367907

Log:
  [POWERPC64LE,POWEPCSPE] set default kernel config for powerpc64le and powerpcspe variants
  
  Default KERNCONF for powerpc64le should be GENERIC64, and powerpcspe should
  select MPC85XXSPE
  
  Reviewed by:	bdragon,emaste
  Sponsored by:	Eldorado Research Institute (eldorado.org.br)
  Differential Revision:	https://reviews.freebsd.org/D27257

Modified:
  head/Makefile.inc1

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1	Fri Nov 20 18:02:04 2020	(r367906)
+++ head/Makefile.inc1	Fri Nov 20 18:42:01 2020	(r367907)
@@ -1591,6 +1591,10 @@ KERNCONF=${KERNFAST}
 .endif
 .if ${TARGET_ARCH} == "powerpc64"
 KERNCONF?=	GENERIC64
+.elif ${TARGET_ARCH} == "powerpc64le"
+KERNCONF?=	GENERIC64LE
+.elif ${TARGET_ARCH} == "powerpcspe"
+KERNCONF?=	MPC85XXSPE
 .else
 KERNCONF?=	GENERIC
 .endif


More information about the svn-src-head mailing list