git: 4292390bd62f - stable/13 - modules: Only build sdhci_fdt for arm and arm64

Emmanuel Vadot manu at FreeBSD.org
Thu Jul 22 17:07:24 UTC 2021


The branch stable/13 has been updated by manu:

URL: https://cgit.FreeBSD.org/src/commit/?id=4292390bd62fe8286ed92b09ab7c1ae04323c36b

commit 4292390bd62fe8286ed92b09ab7c1ae04323c36b
Author:     Emmanuel Vadot <manu at FreeBSD.org>
AuthorDate: 2021-05-13 18:23:59 +0000
Commit:     Emmanuel Vadot <manu at FreeBSD.org>
CommitDate: 2021-07-22 16:51:33 +0000

    modules: Only build sdhci_fdt for arm and arm64
    
    Other FDT platform (like powerpc64* or riscv64) don't have gpio built
    by default so just compile the module for those two arches.
    
    Fixes:  9e08f82058cb ("modules: Add sdhci_fdt module")
    (cherry picked from commit 0b426a1c2cef14ded10ded6ec737d5c116182996)
---
 sys/modules/Makefile | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/sys/modules/Makefile b/sys/modules/Makefile
index 911aebe88269..f01354e5e315 100644
--- a/sys/modules/Makefile
+++ b/sys/modules/Makefile
@@ -493,7 +493,6 @@ SUBDIR+=	iscsi_initiator
 
 .if !empty(OPT_FDT)
 SUBDIR+=	fdt
-_sdhci_fdt=	sdhci_fdt
 .endif
 
 # Linuxulator
@@ -620,6 +619,10 @@ _em=		em
 _rockchip=	rockchip
 .endif
 
+.if ${MACHINE_CPUARCH} == "aarch64" || ${MACHINE_CPUARCH} == "arm"
+_sdhci_fdt=	sdhci_fdt
+.endif
+
 .if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"
 _agp=		agp
 _an=		an


More information about the dev-commits-src-all mailing list