diff --git a/sys/conf/NOTES b/sys/conf/NOTES index db8a02ba8fd4..6ab503633aad 100644 --- a/sys/conf/NOTES +++ b/sys/conf/NOTES @@ -806,6 +806,7 @@ options MAC_NONE options MAC_PARTITION options MAC_PORTACL options MAC_SEEOTHERUIDS +options MAC_STUB options MAC_TEST diff --git a/sys/conf/files b/sys/conf/files index 50ee0956f743..abda8dc81c57 100644 --- a/sys/conf/files +++ b/sys/conf/files @@ -1573,6 +1573,7 @@ security/mac_none/mac_none.c optional mac_none security/mac_partition/mac_partition.c optional mac_partition security/mac_portacl/mac_portacl.c optional mac_portacl security/mac_seeotheruids/mac_seeotheruids.c optional mac_seeotheruids +security/mac_stub/mac_stub.c optional mac_stub security/mac_test/mac_test.c optional mac_test ufs/ffs/ffs_alloc.c optional ffs ufs/ffs/ffs_balloc.c optional ffs diff --git a/sys/conf/options b/sys/conf/options index fe100c135a9d..3a1ed5e18477 100644 --- a/sys/conf/options +++ b/sys/conf/options @@ -115,6 +115,7 @@ MAC_NONE opt_dontuse.h MAC_PARTITION opt_dontuse.h MAC_PORTACL opt_dontuse.h MAC_SEEOTHERUIDS opt_dontuse.h +MAC_STUB opt_dontuse.h MAC_TEST opt_dontuse.h MD_ROOT opt_md.h MD_ROOT_SIZE opt_md.h diff --git a/sys/modules/Makefile b/sys/modules/Makefile index 91d86aad1d2d..10e370ac0a07 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -75,6 +75,7 @@ SUBDIR= accf_data \ mac_partition \ mac_portacl \ mac_seeotheruids \ + mac_stub \ mac_test \ mcd \ md \