Increased default number of categories to 1024, from Russell Coker.
This commit is contained in:
parent
113d2e023d
commit
0001e26f4f
|
@ -1,3 +1,4 @@
|
|||
- Increased default number of categories to 1024, from Russell Coker.
|
||||
- Added modules:
|
||||
cgroup (Dominick Grift)
|
||||
|
||||
|
|
4
Makefile
4
Makefile
|
@ -212,8 +212,8 @@ endif
|
|||
|
||||
# default MLS/MCS sensitivity and category settings.
|
||||
MLS_SENS ?= 16
|
||||
MLS_CATS ?= 256
|
||||
MCS_CATS ?= 256
|
||||
MLS_CATS ?= 1024
|
||||
MCS_CATS ?= 1024
|
||||
|
||||
ifeq ($(QUIET),y)
|
||||
verbose = @
|
||||
|
|
|
@ -60,11 +60,11 @@ MLS_SENS = 16
|
|||
|
||||
# Number of MLS Categories
|
||||
# The categories will be c0 to c(MLS_CATS-1).
|
||||
MLS_CATS = 256
|
||||
MLS_CATS = 1024
|
||||
|
||||
# Number of MCS Categories
|
||||
# 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
|
||||
# during build.
|
||||
|
|
|
@ -68,8 +68,8 @@ endif
|
|||
|
||||
# default MLS/MCS sensitivity and category settings.
|
||||
MLS_SENS ?= 16
|
||||
MLS_CATS ?= 256
|
||||
MCS_CATS ?= 256
|
||||
MLS_CATS ?= 1024
|
||||
MCS_CATS ?= 1024
|
||||
|
||||
ifeq ($(QUIET),y)
|
||||
verbose := @
|
||||
|
|
Loading…
Reference in New Issue