diff options
author | John Johansen <john.johansen@canonical.com> | 2010-07-29 23:46:33 -0400 |
---|---|---|
committer | James Morris <jmorris@namei.org> | 2010-08-02 01:38:39 -0400 |
commit | 016d825fe02cd20fd8803ca37a1e6d428fe878f6 (patch) | |
tree | b36bafad46e09a1a62f3521536a703c58540f675 /security/apparmor/Kconfig | |
parent | 484ca79c653121d3c79fffb86e1deea724f2e20b (diff) |
AppArmor: Enable configuring and building of the AppArmor security module
Kconfig and Makefiles to enable configuration and building of AppArmor.
Signed-off-by: John Johansen <john.johansen@canonical.com>
Signed-off-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'security/apparmor/Kconfig')
-rw-r--r-- | security/apparmor/Kconfig | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/security/apparmor/Kconfig b/security/apparmor/Kconfig new file mode 100644 index 00000000000..72555b9ca7d --- /dev/null +++ b/security/apparmor/Kconfig | |||
@@ -0,0 +1,31 @@ | |||
1 | config SECURITY_APPARMOR | ||
2 | bool "AppArmor support" | ||
3 | depends on SECURITY | ||
4 | select AUDIT | ||
5 | select SECURITY_PATH | ||
6 | select SECURITYFS | ||
7 | select SECURITY_NETWORK | ||
8 | default n | ||
9 | help | ||
10 | This enables the AppArmor security module. | ||
11 | Required userspace tools (if they are not included in your | ||
12 | distribution) and further information may be found at | ||
13 | http://apparmor.wiki.kernel.org | ||
14 | |||
15 | If you are unsure how to answer this question, answer N. | ||
16 | |||
17 | config SECURITY_APPARMOR_BOOTPARAM_VALUE | ||
18 | int "AppArmor boot parameter default value" | ||
19 | depends on SECURITY_APPARMOR | ||
20 | range 0 1 | ||
21 | default 1 | ||
22 | help | ||
23 | This option sets the default value for the kernel parameter | ||
24 | 'apparmor', which allows AppArmor to be enabled or disabled | ||
25 | at boot. If this option is set to 0 (zero), the AppArmor | ||
26 | kernel parameter will default to 0, disabling AppArmor at | ||
27 | boot. If this option is set to 1 (one), the AppArmor | ||
28 | kernel parameter will default to 1, enabling AppArmor at | ||
29 | boot. | ||
30 | |||
31 | If you are unsure how to answer this question, answer 1. | ||