dropbear: Make utmp and putuline support configurable via seperate config options
[openwrt/svn-archive/archive.git] / package / network / services / dropbear / Config.in
index 19ef71c0b21551f5951b44668481d8cc2ea944d7..7c2edd79f23708f9ef01c6a62a54073b0c7a33ed 100644 (file)
@@ -3,7 +3,7 @@ menu "Configuration"
 
 config DROPBEAR_CURVE25519
        bool "Curve25519 support"
-       default n
+       default y
        help
                This enables the following key exchange algorithm:
                  curve25519-sha256@libssh.org
@@ -32,4 +32,19 @@ config DROPBEAR_ECC
 
                Increases binary size by about 23 kB (MIPS).
 
+config DROPBEAR_UTMP
+       bool "Utmp support"
+       default n
+       depends on BUSYBOX_CONFIG_FEATURE_UTMP
+       help
+               This enables dropbear utmp support, the file /var/run/utmp is used to
+               track who is currently logged in.
+
+config DROPBEAR_PUTUTLINE
+       bool "Pututline support"
+       default n
+       depends on DROPBEAR_UTMP
+       help
+               Dropbear will use pututline() to write the utmp structure into the utmp file.
+
 endmenu