blob: 6fe48d0fd635fa0e35bd11831abb655e3cadf140 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
config ADK_COMPILE_RRS
tristate
default n
depends ADK_PACKAGE_RRS || ADK_PACKAGE_RRS_NOSSL
config ADK_PACKAGE_RRS
prompt "rrs............................... A reverse (connecting) remote shell, with SSL support"
tristate
default n
depends on ADK_CXX
select ADK_COMPILE_RRS
select ADK_PACKAGE_ZLIB
select ADK_PACKAGE_LIBOPENSSL
help
A reverse (connecting) remote shell, built with SSL support.
http://www.cycom.se/dl/rrs/
config ADK_PACKAGE_RRS_NOSSL
prompt "rrs-nossl......................... A reverse (connecting) remote shell, without SSL support"
tristate
default n
depends on ADK_CXX
select ADK_COMPILE_RRS
select ADK_PACKAGE_ZLIB
help
A reverse (connecting) remote shell, built without SSL support.
http://www.cycom.se/dl/rrs/
choice
prompt "C++ library to use"
depends on ADK_PACKAGE_RRS
default ADK_COMPILE_RRS_WITH_STDCXX if ADK_TARGET_LIB_GLIBC
default ADK_COMPILE_RRS_WITH_UCLIBCXX if ADK_TARGET_LIB_UCLIBC
config ADK_COMPILE_RRS_WITH_STDCXX
bool "Standard C++ library"
select ADK_PACKAGE_LIBSTDCXX
help
config ADK_COMPILE_RRS_WITH_UCLIBCXX
bool "Embedded uClibc++ library"
select ADK_PACKAGE_UCLIBCXX
help
endchoice
|