diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-03-24 15:37:57 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-03-24 15:37:57 +0000 |
commit | 573a4d02c03013872266b160d04fe604bb0e3dfc (patch) | |
tree | 2b084610db32345552dc1dac520bdb32db6d316a /selinux | |
parent | 65dffc48de553ce08c0083482d3ec7e71b25c151 (diff) | |
download | busybox-w32-573a4d02c03013872266b160d04fe604bb0e3dfc.tar.gz busybox-w32-573a4d02c03013872266b160d04fe604bb0e3dfc.tar.bz2 busybox-w32-573a4d02c03013872266b160d04fe604bb0e3dfc.zip |
SELinux: load_policy applet
git-svn-id: svn://busybox.net/trunk/busybox@18226 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'selinux')
-rw-r--r-- | selinux/Config.in | 7 | ||||
-rw-r--r-- | selinux/Kbuild | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/selinux/Config.in b/selinux/Config.in index 6c08e51b7..42bca66d6 100644 --- a/selinux/Config.in +++ b/selinux/Config.in | |||
@@ -34,6 +34,13 @@ config GETSEBOOL | |||
34 | help | 34 | help |
35 | Enable support to get SELinux boolean values. | 35 | Enable support to get SELinux boolean values. |
36 | 36 | ||
37 | config LOAD_POLICY | ||
38 | bool "load_policy" | ||
39 | default n | ||
40 | depends on SELINUX | ||
41 | help | ||
42 | Enable support to load SELinux policy. | ||
43 | |||
37 | config MATCHPATHCON | 44 | config MATCHPATHCON |
38 | bool "matchpathcon" | 45 | bool "matchpathcon" |
39 | default n | 46 | default n |
diff --git a/selinux/Kbuild b/selinux/Kbuild index 398d1368d..09cae4d2d 100644 --- a/selinux/Kbuild +++ b/selinux/Kbuild | |||
@@ -9,6 +9,7 @@ lib-y:= | |||
9 | lib-$(CONFIG_CHCON) += chcon.o | 9 | lib-$(CONFIG_CHCON) += chcon.o |
10 | lib-$(CONFIG_GETENFORCE) += getenforce.o | 10 | lib-$(CONFIG_GETENFORCE) += getenforce.o |
11 | lib-$(CONFIG_GETSEBOOL) += getsebool.o | 11 | lib-$(CONFIG_GETSEBOOL) += getsebool.o |
12 | lib-$(CONFIG_LOAD_POLICY) += load_policy.o | ||
12 | lib-$(CONFIG_MATCHPATHCON) += matchpathcon.o | 13 | lib-$(CONFIG_MATCHPATHCON) += matchpathcon.o |
13 | lib-$(CONFIG_RUNCON) += runcon.o | 14 | lib-$(CONFIG_RUNCON) += runcon.o |
14 | lib-$(CONFIG_SELINUXENABLED) += selinuxenabled.o | 15 | lib-$(CONFIG_SELINUXENABLED) += selinuxenabled.o |