diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-10-14 04:48:44 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-10-14 04:48:44 +0000 |
commit | be039374f3bd1c76535387ac4d079506804be270 (patch) | |
tree | 1f7dbab3c217ea7ce4b5962913cb707672a65bd9 /selinux | |
parent | 4a4575686eca96e7d393ba5c08ae3549bed2c1f0 (diff) | |
download | busybox-w32-be039374f3bd1c76535387ac4d079506804be270.tar.gz busybox-w32-be039374f3bd1c76535387ac4d079506804be270.tar.bz2 busybox-w32-be039374f3bd1c76535387ac4d079506804be270.zip |
setsebool: new applet (Yuichi Nakamura <ynakam@hitachisoft.jp>)
Diffstat (limited to 'selinux')
-rw-r--r-- | selinux/Config.in | 8 | ||||
-rw-r--r-- | selinux/Kbuild | 1 |
2 files changed, 9 insertions, 0 deletions
diff --git a/selinux/Config.in b/selinux/Config.in index 77f89c798..c2fc08dbf 100644 --- a/selinux/Config.in +++ b/selinux/Config.in | |||
@@ -104,5 +104,13 @@ config FEATURE_SETFILES_CHECK_OPTION | |||
104 | Support "-c" option (check the validity of the contexts against | 104 | Support "-c" option (check the validity of the contexts against |
105 | the specified binary policy) for setfiles. Requires libsepol. | 105 | the specified binary policy) for setfiles. Requires libsepol. |
106 | 106 | ||
107 | config SETSEBOOL | ||
108 | bool "setsebool" | ||
109 | default n | ||
110 | depends on SELINUX | ||
111 | help | ||
112 | Enable support for change boolean. | ||
113 | semanage and -P option is not supported yet. | ||
114 | |||
107 | endmenu | 115 | endmenu |
108 | 116 | ||
diff --git a/selinux/Kbuild b/selinux/Kbuild index 08f49c867..ce353e066 100644 --- a/selinux/Kbuild +++ b/selinux/Kbuild | |||
@@ -16,3 +16,4 @@ lib-$(CONFIG_SELINUXENABLED) += selinuxenabled.o | |||
16 | lib-$(CONFIG_SETENFORCE) += setenforce.o | 16 | lib-$(CONFIG_SETENFORCE) += setenforce.o |
17 | lib-$(CONFIG_SETFILES) += setfiles.o | 17 | lib-$(CONFIG_SETFILES) += setfiles.o |
18 | lib-$(CONFIG_RESTORECON) += setfiles.o | 18 | lib-$(CONFIG_RESTORECON) += setfiles.o |
19 | lib-$(CONFIG_SETSEBOOL) += setsebool.o | ||