diff options
author | Robert Griebl <griebl@gmx.de> | 2002-06-04 20:06:25 +0000 |
---|---|---|
committer | Robert Griebl <griebl@gmx.de> | 2002-06-04 20:06:25 +0000 |
commit | c9aca4561ddb1165890fae0c8b921a2504c6273f (patch) | |
tree | 584aaddcc5ef4d9e715f27e9d1d8dad98b7a5074 /sysdeps/linux | |
parent | bc28f7a1e19397666e687a6a1ba38deff9fd1030 (diff) | |
download | busybox-c9aca4561ddb1165890fae0c8b921a2504c6273f.tar.gz |
Implement two types of suid/sgid support for BusyBox:
1) tinylogin like with compile time selection and a chown root.root
2) Runtime configurable via /etc/busybox.conf (docu is in the works)
[Parts of this patch may overlap with my other two patches]
Diffstat (limited to 'sysdeps/linux')
-rw-r--r-- | sysdeps/linux/config.in | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sysdeps/linux/config.in b/sysdeps/linux/config.in index f1b064a40..e2ae0e8c4 100644 --- a/sysdeps/linux/config.in +++ b/sysdeps/linux/config.in @@ -16,6 +16,14 @@ bool 'Enable locale support (system needs locale for this to work)' CONFIG_LOCAL bool 'Support for devfs' CONFIG_FEATURE_DEVFS bool 'Support compress format (.Z) in unzip operations' CONFIG_FEATURE_UNCOMPRESS bool 'Clean up all memory before exiting (usually not needed)' CONFIG_FEATURE_CLEAN_UP +bool 'Support for SUID/SGID handling' CONFIG_FEATURE_SUID +if [ "$CONFIG_FEATURE_SUID" = "y" ]; then + bool ' Runtime configuration via /etc/busybox.conf' CONFIG_FEATURE_SUID_CONFIG +fi +bool 'Use busybox password and group functions' CONFIG_USE_BB_PWD_GRP +if [ "$CONFIG_USE_BB_PWD_GRP" = "y" ]; then + bool ' Use busybox shadow password functions' CONFIG_USE_BB_SHADOW +fi endmenu source archival/config.in @@ -27,7 +35,7 @@ source init/config.in source miscutils/config.in source modutils/config.in source networking/config.in -source pwd_grp/config.in +source loginutils/config.in source procps/config.in source shell/config.in source shellutils/config.in |