Increased default number of categories to 1024, from Russell Coker.

This commit is contained in:
Chris PeBenito 2010-06-28 09:04:24 -04:00
parent 113d2e023d
commit 0001e26f4f
4 changed files with 7 additions and 6 deletions

View File

@ -1,3 +1,4 @@
- Increased default number of categories to 1024, from Russell Coker.
- Added modules: - Added modules:
cgroup (Dominick Grift) cgroup (Dominick Grift)

View File

@ -212,8 +212,8 @@ endif
# default MLS/MCS sensitivity and category settings. # default MLS/MCS sensitivity and category settings.
MLS_SENS ?= 16 MLS_SENS ?= 16
MLS_CATS ?= 256 MLS_CATS ?= 1024
MCS_CATS ?= 256 MCS_CATS ?= 1024
ifeq ($(QUIET),y) ifeq ($(QUIET),y)
verbose = @ verbose = @

View File

@ -60,11 +60,11 @@ MLS_SENS = 16
# Number of MLS Categories # Number of MLS Categories
# The categories will be c0 to c(MLS_CATS-1). # The categories will be c0 to c(MLS_CATS-1).
MLS_CATS = 256 MLS_CATS = 1024
# Number of MCS Categories # Number of MCS Categories
# The categories will be c0 to c(MLS_CATS-1). # The categories will be c0 to c(MLS_CATS-1).
MCS_CATS = 256 MCS_CATS = 1024
# Set this to y to only display status messages # Set this to y to only display status messages
# during build. # during build.

View File

@ -68,8 +68,8 @@ endif
# default MLS/MCS sensitivity and category settings. # default MLS/MCS sensitivity and category settings.
MLS_SENS ?= 16 MLS_SENS ?= 16
MLS_CATS ?= 256 MLS_CATS ?= 1024
MCS_CATS ?= 256 MCS_CATS ?= 1024
ifeq ($(QUIET),y) ifeq ($(QUIET),y)
verbose := @ verbose := @