diff options
author | Will Moore <will.moore@beraninstruments.com> | 2011-10-25 13:22:18 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-10-26 11:24:30 +0200 |
commit | aeea387d82fc84272ebc216665cf9aeb5567438e (patch) | |
tree | 3b8e891aad7f295562a32e7b516c831de4a943b1 /package/dropbear/Config.in | |
parent | 40fcbc359e84dc92662324168ad97f83dbf031ed (diff) | |
download | buildroot-novena-aeea387d82fc84272ebc216665cf9aeb5567438e.tar.gz buildroot-novena-aeea387d82fc84272ebc216665cf9aeb5567438e.zip |
dropbear: add options to disable wtmp / lastlog logging
Buildroot does not have wtmp or lastlog support by default so allow dropbear
to be configured to stop using them and hence to stop generating system log
error messages.
[Peter: invert to positive options, and disable by default]
Signed-off-by: Will Moore <will.moore@beraninstruments.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/dropbear/Config.in')
-rw-r--r-- | package/dropbear/Config.in | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/package/dropbear/Config.in b/package/dropbear/Config.in index c30228f20..0903ad160 100644 --- a/package/dropbear/Config.in +++ b/package/dropbear/Config.in @@ -23,3 +23,17 @@ config BR2_PACKAGE_DROPBEAR_SMALL Tradeoffs are slower hashes and ciphers, and disabling of the blowfish cipher and zlib. + +config BR2_PACKAGE_DROPBEAR_WTMP + bool "log dropbear access to wtmp" + depends on BR2_PACKAGE_DROPBEAR + help + Enable logging of dropbear access to wtmp. Notice that + Buildroot does not generate wtmp by default. + +config BR2_PACKAGE_DROPBEAR_LASTLOG + bool "log dropbear access to lastlog" + depends on BR2_PACKAGE_DROPBEAR + help + Enable logging of dropbear access to lastlog. Notice that + Buildroot does not generate lastlog by default. |