1config BR2_PACKAGE_RSH_REDONE 2 bool "rsh-redone" 3 help 4 Rsh-redone is a reimplementation of the remote shell clients 5 and servers. It is written from the ground up to avoid the 6 bugs found in the standard clients and servers. It also 7 fully supports IPv6. 8 9 http://packages.debian.org/source/sid/rsh-redone 10 11if BR2_PACKAGE_RSH_REDONE 12 13config BR2_PACKAGE_RSH_REDONE_RLOGIN 14 bool "rlogin" 15 16config BR2_PACKAGE_RSH_REDONE_RLOGIND 17 bool "rlogind" 18 depends on !BR2_STATIC_LIBS 19 depends on BR2_ENABLE_LOCALE && BR2_USE_WCHAR 20 depends on !BR2_TOOLCHAIN_USES_MUSL 21 depends on BR2_USE_MMU # linux-pam 22 select BR2_PACKAGE_LINUX_PAM 23 24comment "rlogind needs a uClibc or glibc toolchain w/ wchar, locale, dynamic library" 25 depends on !(BR2_ENABLE_LOCALE && BR2_USE_WCHAR) \ 26 || BR2_STATIC_LIBS || BR2_TOOLCHAIN_USES_MUSL 27 28config BR2_PACKAGE_RSH_REDONE_RSH 29 bool "rsh" 30 31config BR2_PACKAGE_RSH_REDONE_RSHD 32 bool "rshd" 33 depends on BR2_ENABLE_LOCALE && BR2_USE_WCHAR 34 depends on !BR2_STATIC_LIBS 35 depends on BR2_USE_MMU # linux-pam 36 select BR2_PACKAGE_LINUX_PAM 37 38comment "rshd needs a toolchain w/ wchar, locale, dynamic library" 39 depends on !(BR2_ENABLE_LOCALE && BR2_USE_WCHAR) \ 40 || BR2_STATIC_LIBS 41 42endif 43