mirror of
https://github.com/opnsense/src.git
synced 2026-06-10 17:22:46 -04:00
Add process descriptors support to the GENERIC kernel. It is already being
used by the tools in base systems and with sandboxing more and more tools the usage should only increase. Submitted by: Mariusz Zaborski <oshogbo@FreeBSD.org> Sponsored by: Google Summer of Code 2013 MFC after: 1 month
This commit is contained in:
parent
cb96d03ac5
commit
417ffc66fa
6 changed files with 8 additions and 2 deletions
|
|
@ -66,6 +66,7 @@ options HWPMC_HOOKS # Necessary kernel hooks for hwpmc(4)
|
|||
options AUDIT # Security event auditing
|
||||
options CAPABILITY_MODE # Capsicum capability mode
|
||||
options CAPABILITIES # Capsicum capabilities
|
||||
options PROCDESC # Support for process descriptors
|
||||
options MAC # TrustedBSD MAC Framework
|
||||
options KDTRACE_FRAME # Ensure frames are compiled in
|
||||
options KDTRACE_HOOKS # Kernel DTrace hooks
|
||||
|
|
|
|||
|
|
@ -67,6 +67,7 @@ options HWPMC_HOOKS # Necessary kernel hooks for hwpmc(4)
|
|||
options AUDIT # Security event auditing
|
||||
options CAPABILITY_MODE # Capsicum capability mode
|
||||
options CAPABILITIES # Capsicum capabilities
|
||||
options PROCDESC # Support for process descriptors
|
||||
options MAC # TrustedBSD MAC Framework
|
||||
options KDTRACE_HOOKS # Kernel DTrace hooks
|
||||
options DDB_CTF # Kernel ELF linker loads CTF data
|
||||
|
|
|
|||
|
|
@ -26,8 +26,8 @@ ident GENERIC
|
|||
makeoptions DEBUG=-g # Build kernel with debug information.
|
||||
|
||||
options AUDIT # Security event auditing
|
||||
options CAPABILITY_MODE # Capsicum capability mode
|
||||
options CAPABILITIES # Capsicum capabilities
|
||||
options CAPABILITY_MODE # Capsicum capability mode
|
||||
options CAPABILITIES # Capsicum capabilities
|
||||
options CD9660 # ISO 9660 Filesystem
|
||||
options COMPAT_FREEBSD7 # Compatible with FreeBSD7
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
|
|
@ -46,6 +46,7 @@ options NFS_ROOT # NFS usable as root device
|
|||
options P1003_1B_SEMAPHORES # POSIX-style semaphores
|
||||
options PREEMPTION # Enable kernel thread preemption
|
||||
options PRINTF_BUFR_SIZE=128 # Printf buffering to limit interspersion
|
||||
options PROCDESC # Support for process descriptors
|
||||
options PROCFS # Process filesystem (/proc)
|
||||
options PSEUDOFS # Pseudo-filesystem framework
|
||||
options SCHED_ULE # ULE scheduler
|
||||
|
|
|
|||
|
|
@ -65,6 +65,7 @@ options HWPMC_HOOKS # Necessary kernel hooks for hwpmc(4)
|
|||
options AUDIT # Security event auditing
|
||||
options CAPABILITY_MODE # Capsicum capability mode
|
||||
options CAPABILITIES # Capsicum capabilities
|
||||
options PROCDESC # Support for process descriptors
|
||||
options MAC # TrustedBSD MAC Framework
|
||||
options INCLUDE_CONFIG_FILE # Include this file in kernel
|
||||
options KDB # Kernel debugger related code
|
||||
|
|
|
|||
|
|
@ -69,6 +69,7 @@ options HWPMC_HOOKS # Necessary kernel hooks for hwpmc(4)
|
|||
options AUDIT # Security event auditing
|
||||
options CAPABILITY_MODE # Capsicum capability mode
|
||||
options CAPABILITIES # Capsicum capabilities
|
||||
options PROCDESC # Support for process descriptors
|
||||
options MAC # TrustedBSD MAC Framework
|
||||
options KDTRACE_HOOKS # Kernel DTrace hooks
|
||||
options DDB_CTF # Kernel ELF linker loads CTF data
|
||||
|
|
|
|||
|
|
@ -63,6 +63,7 @@ options HWPMC_HOOKS # Necessary kernel hooks for hwpmc(4)
|
|||
options AUDIT # Security event auditing
|
||||
options CAPABILITY_MODE # Capsicum capability mode
|
||||
options CAPABILITIES # Capsicum capabilities
|
||||
options PROCDESC # Support for process descriptors
|
||||
options MAC # TrustedBSD MAC Framework
|
||||
options INCLUDE_CONFIG_FILE # Include this file in kernel
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue