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
This commit is contained in:
Justin Hibbits 2019-05-21 01:42:57 +00:00
parent e12be3218a
commit b2775610c0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=348028

View File

@ -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>