From 4ae78e70f7b0f099a1e103cbcc160129b47b1d03 Mon Sep 17 00:00:00 2001 From: Alfredo Dal'Ava Junior Date: Fri, 20 Nov 2020 18:42:01 +0000 Subject: [PATCH] [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 --- Makefile.inc1 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile.inc1 b/Makefile.inc1 index 2e8d543f9f16..74ad5d3808e0 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -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