Disable geom_eli module build on MIPS64 as it has alignment

issues and causes kernel panic.
ELI metadata is also not aligned properly for MIPS64 case.

Sponsored by:	DARPA, AFRL
Sponsored by:	HEIF5
This commit is contained in:
Ruslan Bukin 2016-10-20 17:10:26 +00:00
parent c867306e60
commit 68a18b821e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=307677

View File

@ -6,7 +6,6 @@ SYSDIR?=${.CURDIR}/../..
SUBDIR= geom_bde \
geom_cache \
geom_concat \
geom_eli \
geom_gate \
geom_journal \
geom_label \
@ -30,4 +29,9 @@ SUBDIR= geom_bde \
SUBDIR+= geom_ccd
.endif
# Alignment issues in g_eli_auth_run() on MIPS64 causes kernel panic
.if ${MACHINE_ARCH} != "mips64" && ${MACHINE_ARCH} != "mips64el"
SUBDIR+= geom_eli
.endif
.include <bsd.subdir.mk>