svn commit: r348028 - head/stand/powerpc

Justin Hibbits jhibbits at FreeBSD.org
Tue May 21 01:42:59 UTC 2019


Author: jhibbits
Date: Tue May 21 01:42:57 2019
New Revision: 348028
URL: https://svnweb.freebsd.org/changeset/base/348028

Log:
  stand/powerpc: Only build loader.kboot for powerpc64
  
  kboot is only made for powerpc64 systems, not 32-bit systems.
  
  This unbreaks the build for powerpcspe.
  
  Reported by:	ngie

Modified:
  head/stand/powerpc/Makefile

Modified: head/stand/powerpc/Makefile
==============================================================================
--- head/stand/powerpc/Makefile	Tue May 21 01:27:08 2019	(r348027)
+++ head/stand/powerpc/Makefile	Tue May 21 01:42:57 2019	(r348028)
@@ -5,6 +5,9 @@ NO_OBJ=t
 .include <bsd.init.mk>
 
 SUBDIR.yes=		boot1.chrp ofw uboot
+
+.if "${TARGET_ARCH}" == "powerpc64"
 SUBDIR.${MK_FDT}+=	kboot
+.endif
 
 .include <bsd.subdir.mk>


More information about the svn-src-all mailing list