diff options
author | Rob Landley <rob@landley.net> | 2015-04-15 20:53:00 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2015-04-15 20:53:00 -0500 |
commit | 08f51b53be06671f4bd6f57467182fd2b081b2c4 (patch) | |
tree | 1e370d599dd22ff6f0648662fda07f1e516023d1 /Config.in | |
parent | 77d74244b4eb7e56fccf1f7c9a2a681beea1cc72 (diff) | |
download | toybox-08f51b53be06671f4bd6f57467182fd2b081b2c4.tar.gz |
Put SELINUX in a a menu, and add config option for SMACK.
Diffstat (limited to 'Config.in')
-rw-r--r-- | Config.in | 30 |
1 files changed, 25 insertions, 5 deletions
@@ -35,12 +35,32 @@ config TOYBOX_SUID chown root:root toybox; chmod +s toybox +choice + prompt "Security Blanket" + default TOYBOX_LSM_NONE + help + Select a Linux Security Module to complicate your system + until you can't find holes in it. + +config TOYBOX_LSM_NONE + bool "None" + help + Don't try to achieve "watertight" by plugging the holes in a + collander, instead use conventional unix security (and possibly + Linux Containers) for a simple straightforward system. + config TOYBOX_SELINUX - bool "SELinux support" - default n - help - Include SELinux options in commands such as ls, and add - SELinux-specific commands such as chcon to the Android menu. + bool "SELinux support" + help + Include SELinux options in commands such as ls, and add + SELinux-specific commands such as chcon to the Android menu. + +config TOYBOX_SMACK + bool "SMACK support" + help + Include SMACK options in commands like ls for systems like Tizen. + +endchoice config TOYBOX_FLOAT bool "Floating point support" |