Module Name: src Committed By: martin Date: Thu Apr 18 16:12:31 UTC 2024
Modified Files: src/share/mk [netbsd-9]: bsd.own.mk Log Message: Pull up following revision(s) (requested by riastradh in ticket #1834): share/mk/bsd.own.mk: revision 1.1177 ZFS works fine on my v210, so let's enable it for sparc64 To generate a diff of this commit: cvs rdiff -u -r1.1149.2.7 -r1.1149.2.8 src/share/mk/bsd.own.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/share/mk/bsd.own.mk diff -u src/share/mk/bsd.own.mk:1.1149.2.7 src/share/mk/bsd.own.mk:1.1149.2.8 --- src/share/mk/bsd.own.mk:1.1149.2.7 Thu Apr 18 15:24:20 2024 +++ src/share/mk/bsd.own.mk Thu Apr 18 16:12:31 2024 @@ -1,4 +1,4 @@ -# $NetBSD: bsd.own.mk,v 1.1149.2.7 2024/04/18 15:24:20 martin Exp $ +# $NetBSD: bsd.own.mk,v 1.1149.2.8 2024/04/18 16:12:31 martin Exp $ # This needs to be before bsd.init.mk .if defined(BSD_MK_COMPAT_FILE) @@ -998,9 +998,10 @@ SOFTFLOAT_BITS= 32 .endif # -# We want to build zfs only for amd64 and aarch64 by default for now. +# We want to build zfs only for amd64, aarch64 and sparc64 by default for now. # -.if ${MACHINE} == "amd64" || ${MACHINE_ARCH} == "aarch64" +.if ${MACHINE} == "amd64" || ${MACHINE_ARCH} == "aarch64" || \ + ${MACHINE} == "sparc64" MKZFS?= yes .endif