mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Include the ufs module if ALL_MODULES is defined so that it gets
built by LINT. Also override a number of knobs for enabling and disabling various modules in the ALL_MODULES case to further increase LINT's module coverage. Submitted by: ru
This commit is contained in:
parent
ec4270c021
commit
ce3ae5c7e3
1 changed files with 10 additions and 4 deletions
|
|
@ -1,12 +1,14 @@
|
|||
# $FreeBSD$
|
||||
|
||||
.if exists(${.CURDIR}/../opencrypto) && !defined(NOCRYPT)
|
||||
.if !defined(NOCRYPT) || defined(ALL_MODULES)
|
||||
.if exists(${.CURDIR}/../opencrypto)
|
||||
_crypto= crypto
|
||||
_cryptodev= cryptodev
|
||||
.endif
|
||||
.if exists(${.CURDIR}/../crypto) && !defined(NOCRYPT)
|
||||
.if exists(${.CURDIR}/../crypto)
|
||||
_random= random
|
||||
.endif
|
||||
.endif
|
||||
|
||||
SUBDIR= accf_data \
|
||||
accf_http \
|
||||
|
|
@ -145,11 +147,11 @@ SUBDIR= accf_data \
|
|||
wlan \
|
||||
xl
|
||||
|
||||
.if defined(WANT_EXT2FS_MODULE)
|
||||
.if defined(WANT_EXT2FS_MODULE) || defined(ALL_MODULES)
|
||||
SUBDIR+=ext2fs
|
||||
.endif
|
||||
|
||||
.if !defined(NO_IPFILTER)
|
||||
.if !defined(NO_IPFILTER) || defined(ALL_MODULES)
|
||||
SUBDIR+=ipfilter
|
||||
.endif
|
||||
|
||||
|
|
@ -294,6 +296,10 @@ SUBDIR+=gem
|
|||
SUBDIR+=hme
|
||||
.endif
|
||||
|
||||
.if defined(ALL_MODULES)
|
||||
SUBDIR+=ufs
|
||||
.endif
|
||||
|
||||
.if defined(MODULES_OVERRIDE) && !defined(ALL_MODULES)
|
||||
SUBDIR=${MODULES_OVERRIDE}
|
||||
.endif
|
||||
|
|
|
|||
Loading…
Reference in a new issue