1 config BR2_PACKAGE_RSH_REDONE
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.
8 http://packages.debian.org/source/sid/rsh-redone
10 if BR2_PACKAGE_RSH_REDONE
12 config BR2_PACKAGE_RSH_REDONE_RLOGIN
15 config BR2_PACKAGE_RSH_REDONE_RLOGIND
17 depends on !BR2_STATIC_LIBS
18 depends on BR2_ENABLE_LOCALE && BR2_USE_WCHAR
19 depends on !BR2_TOOLCHAIN_USES_MUSL # linux-pam
20 depends on BR2_USE_MMU # linux-pam
21 select BR2_PACKAGE_LINUX_PAM
23 comment "rlogind needs a uClibc or glibc toolchain w/ wchar, locale, dynamic library"
24 depends on !(BR2_ENABLE_LOCALE && BR2_USE_WCHAR) \
25 || BR2_STATIC_LIBS || BR2_TOOLCHAIN_USES_MUSL
27 config BR2_PACKAGE_RSH_REDONE_RSH
30 config BR2_PACKAGE_RSH_REDONE_RSHD
32 depends on BR2_ENABLE_LOCALE && BR2_USE_WCHAR
33 depends on !BR2_STATIC_LIBS
34 depends on !BR2_TOOLCHAIN_USES_MUSL # linux-pam
35 depends on BR2_USE_MMU # linux-pam
36 select BR2_PACKAGE_LINUX_PAM
38 comment "rshd needs a uClibc or glibc toolchain w/ wchar, locale, dynamic library"
39 depends on !(BR2_ENABLE_LOCALE && BR2_USE_WCHAR) \
40 || BR2_STATIC_LIBS || BR2_TOOLCHAIN_USES_MUSL