diff options
author | rwatson <rwatson@FreeBSD.org> | 2003-08-21 16:48:39 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2003-08-21 16:48:39 +0000 |
commit | 589403136df712534f6543fb9a9ee70a9e056e2e (patch) | |
tree | 459e8bdae46de0c83702cdd62337190b5be81cf1 | |
parent | 3c949f158185e323da2a225b98565f3af9f14fc8 (diff) | |
download | FreeBSD-src-589403136df712534f6543fb9a9ee70a9e056e2e.zip FreeBSD-src-589403136df712534f6543fb9a9ee70a9e056e2e.tar.gz |
Hook up mac_stub to the modules Makefile.
Hook up mac_stub in files and options.
Reference mac_stub in NOTES.
-rw-r--r-- | sys/conf/NOTES | 1 | ||||
-rw-r--r-- | sys/conf/files | 1 | ||||
-rw-r--r-- | sys/conf/options | 1 | ||||
-rw-r--r-- | sys/modules/Makefile | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/sys/conf/NOTES b/sys/conf/NOTES index db8a02b..6ab5036 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 50ee095..abda8dc 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 fe100c1..3a1ed5e 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 91d86aa..10e370a 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 \ |