diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2015-01-08 01:12:07 +0100 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2015-01-08 01:12:07 +0100 |
commit | 6cafaf4cf855975bf4bcc6bfe1686026e5b4f9a3 (patch) | |
tree | df2c023c7f1a5e0eb7d93cc4b9a77e0d95c9aafa /net/fastd/Config.in | |
parent | c55ce0bdfd066329dfac5328093d0b4846d2fd54 (diff) |
fastd: update configuration options
When updating fastd, some added and renamed CMake options had been forgotten, so
it was impossible to disable some feature to reduce its size.
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
Diffstat (limited to 'net/fastd/Config.in')
-rw-r--r-- | net/fastd/Config.in | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/net/fastd/Config.in b/net/fastd/Config.in index 8292245e6..5820b9796 100644 --- a/net/fastd/Config.in +++ b/net/fastd/Config.in @@ -11,6 +11,11 @@ config FASTD_ENABLE_METHOD_COMPOSED_GMAC depends on PACKAGE_fastd default y +config FASTD_ENABLE_METHOD_COMPOSED_UMAC + bool "Enable composed-umac method provider" + depends on PACKAGE_fastd + default y + config FASTD_ENABLE_METHOD_GENERIC_GMAC bool "Enable generic-gmac method provider" depends on PACKAGE_fastd @@ -21,6 +26,11 @@ config FASTD_ENABLE_METHOD_GENERIC_POLY1305 depends on PACKAGE_fastd default n +config FASTD_ENABLE_METHOD_GENERIC_UMAC + bool "Enable generic-umac method provider" + depends on PACKAGE_fastd + default y + config FASTD_ENABLE_METHOD_NULL bool "Enable null method" depends on PACKAGE_fastd @@ -58,6 +68,11 @@ config FASTD_ENABLE_MAC_GHASH depends on PACKAGE_fastd default y +config FASTD_ENABLE_MAC_UHASH + bool "Enable the UHASH message authentication code" + depends on PACKAGE_fastd + default y + config FASTD_WITH_CMDLINE_USER bool "Include support for setting user/group related options on the command line" @@ -79,7 +94,7 @@ config FASTD_WITH_CMDLINE_COMMANDS depends on PACKAGE_fastd default n -config FASTD_WITH_VERIFY +config FASTD_WITH_DYNAMIC_PEERS bool "Include support for on-verify handlers" depends on PACKAGE_fastd default n |