1# $FreeBSD$ 2 3SYSDIR?=${.CURDIR}/../.. 4.include "${SYSDIR}/conf/kern.opts.mk" 5 6SUBDIR= geom_bde \ 7 geom_cache \ 8 geom_concat \ 9 geom_gate \ 10 geom_journal \ 11 geom_label \ 12 geom_linux_lvm \ 13 geom_mirror \ 14 geom_mountver \ 15 geom_multipath \ 16 geom_nop \ 17 geom_part \ 18 geom_raid \ 19 geom_raid3 \ 20 geom_sched \ 21 geom_shsec \ 22 geom_stripe \ 23 geom_uzip \ 24 geom_vinum \ 25 geom_virstor \ 26 geom_zero 27 28.if ${MK_CCD} != "no" || defined(ALL_MODULES) 29SUBDIR+= geom_ccd 30.endif 31 32# Alignment issues in g_eli_auth_run() on MIPS64 causes kernel panic 33.if ${MACHINE_ARCH} != "mips64" && ${MACHINE_ARCH} != "mips64el" 34SUBDIR+= geom_eli 35.endif 36 37.include <bsd.subdir.mk> 38