diff options
author | Andreas Ehmanns <universeii@gmx.de> | 2013-11-18 15:34:45 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-04-12 17:10:15 +0200 |
commit | b7e5163ea28074bca8236501f9658bb111c27025 (patch) | |
tree | 02bd1780b400cb4765a69014b2db210095f288d8 /package/rsh-redone/Config.in | |
parent | 36ed6bec0900b1f2afa305318569435283b25d16 (diff) | |
download | buildroot-b7e5163ea28074bca8236501f9658bb111c27025.tar.gz buildroot-b7e5163ea28074bca8236501f9658bb111c27025.zip |
rsh-redone: enable rshd and rlogind
[Thomas: add dependency on linux-pam for rshd and rlogind, adjust
commit message.]
Signed-off-by Andreas Ehmanns <universeii@gmx.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/rsh-redone/Config.in')
-rw-r--r-- | package/rsh-redone/Config.in | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/package/rsh-redone/Config.in b/package/rsh-redone/Config.in index 5a9036278e..d26ca2baeb 100644 --- a/package/rsh-redone/Config.in +++ b/package/rsh-redone/Config.in @@ -16,15 +16,23 @@ if BR2_PACKAGE_RSH_REDONE config BR2_PACKAGE_RSH_REDONE_RLOGIN bool "rlogin" -# requires PAM -#config BR2_PACKAGE_RSH_REDONE_RLOGIND -# bool "rlogind" +config BR2_PACKAGE_RSH_REDONE_RLOGIND + bool "rlogind" + select BR2_PACKAGE_LINUX_PAM + depends on BR2_ENABLE_LOCALE && BR2_USE_WCHAR + +comment "rlogind needs a toolchain w/ wchar, locale" + depends on !(BR2_ENABLE_LOCALE && BR2_USE_WCHAR) config BR2_PACKAGE_RSH_REDONE_RSH bool "rsh" -# requires PAM -#config BR2_PACKAGE_RSH_REDONE_RSHD -# bool "rshd" +config BR2_PACKAGE_RSH_REDONE_RSHD + bool "rshd" + select BR2_PACKAGE_LINUX_PAM + depends on BR2_ENABLE_LOCALE && BR2_USE_WCHAR + +comment "rshd needs a toolchain w/ wchar, locale" + depends on !(BR2_ENABLE_LOCALE && BR2_USE_WCHAR) endif |