The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / rsh-redone / Config.in
1 config BR2_PACKAGE_RSH_REDONE
2         bool "rsh-redone"
3         help
4           Rsh-redone is a reimplementation of the remote shell clients and
5           servers. It is written from the ground up to avoid the bugs found
6           in the standard clients and servers. It also fully supports IPv6.
7
8           http://packages.debian.org/source/sid/rsh-redone
9
10 if BR2_PACKAGE_RSH_REDONE
11
12 config BR2_PACKAGE_RSH_REDONE_RLOGIN
13         bool "rlogin"
14
15 config BR2_PACKAGE_RSH_REDONE_RLOGIND
16         bool "rlogind"
17         depends on !BR2_STATIC_LIBS
18         depends on BR2_ENABLE_LOCALE && BR2_USE_WCHAR
19         select BR2_PACKAGE_LINUX_PAM
20
21 comment "rlogind needs a toolchain w/ wchar, locale, dynamic library"
22         depends on !(BR2_ENABLE_LOCALE && BR2_USE_WCHAR) \
23                 || BR2_STATIC_LIBS
24
25 config BR2_PACKAGE_RSH_REDONE_RSH
26         bool "rsh"
27
28 config BR2_PACKAGE_RSH_REDONE_RSHD
29         bool "rshd"
30         depends on BR2_ENABLE_LOCALE && BR2_USE_WCHAR
31         depends on !BR2_STATIC_LIBS
32         select BR2_PACKAGE_LINUX_PAM
33
34 comment "rshd needs a toolchain w/ wchar, locale, dynamic library"
35         depends on !(BR2_ENABLE_LOCALE && BR2_USE_WCHAR) \
36                 || BR2_STATIC_LIBS
37
38 endif