Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 13 Sep 2020 18:24:15 +0000 (UTC)
From:      Brandon Bergren <bdragon@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r365694 - in head: include sys/modules
Message-ID:  <202009131824.08DIOFbN034424@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bdragon
Date: Sun Sep 13 18:24:15 2020
New Revision: 365694
URL: https://svnweb.freebsd.org/changeset/base/365694

Log:
  [PowerPC64LE] Ensure nvram is built on powerpc64le.
  
  Fix some cases where conditionals that were trying to exclude powerpcspe
  were also excluding powerpc64le.
  
  Sponsored by:	Tag1 Consulting, Inc.

Modified:
  head/include/Makefile
  head/sys/modules/Makefile

Modified: head/include/Makefile
==============================================================================
--- head/include/Makefile	Sun Sep 13 17:36:43 2020	(r365693)
+++ head/include/Makefile	Sun Sep 13 18:24:15 2020	(r365694)
@@ -93,7 +93,7 @@ INCS+=		iconv.h
 LSUBDIRS+=	dev/usb
 .endif
 
-.if ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "powerpc64"
+.if ${MACHINE_CPUARCH} == "powerpc" && ${MACHINE_ARCH} != "powerpcspe"
 _dev_powermac_nvram=	dev/powermac_nvram
 .endif
 

Modified: head/sys/modules/Makefile
==============================================================================
--- head/sys/modules/Makefile	Sun Sep 13 17:36:43 2020	(r365693)
+++ head/sys/modules/Makefile	Sun Sep 13 18:24:15 2020	(r365694)
@@ -784,7 +784,7 @@ _ipmi=		ipmi
 _ixl=		ixl
 _nvram=		opal_nvram
 .endif
-.if ${MACHINE_ARCH} == "powerpc64" || ${MACHINE_ARCH} == "powerpc"
+.if ${MACHINE_CPUARCH} == "powerpc" && ${MACHINE_ARCH} != "powerpcspe"
 # Don't build powermac_nvram for powerpcspe, it's never supported.
 _nvram+=	powermac_nvram
 .endif



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