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 / netsnmp / Config.in
1 config BR2_PACKAGE_NETSNMP
2         bool "netsnmp"
3         depends on BR2_USE_MMU # fork()
4         help
5           Suite of applications used to implement SNMP v1, SNMP v2c, and
6           SNMP v3 using both IPv4 and IPv6.
7
8           http://net-snmp.sourceforge.net/
9
10 if BR2_PACKAGE_NETSNMP
11
12 config BR2_PACKAGE_NETSNMP_SERVER
13         bool "server"
14         default y
15         help
16           The snmpd server.
17
18 config BR2_PACKAGE_NETSNMP_CLIENTS
19         bool "clients"
20         default y
21         help
22           The net-snmp clients (snmpget, snmpwalk, etc).
23
24 config BR2_PACKAGE_NETSNMP_ENABLE_MIBS
25         bool "Install MIB files on target and enable MIB loading code"
26         default y
27         help
28           The net-snmp package contains a selection of MIB files.
29           Say yes if you want those MIB files installed on the target
30           and enable the code that parses the MIB files.
31
32 config BR2_PACKAGE_NETSNMP_WITH_MIB_MODULES
33         string "Build with these MIB modules"
34         default "host ucd-snmp/dlmod agentx"
35         help
36           Specify which MIB modules to include.
37
38 config BR2_PACKAGE_NETSNMP_WITHOUT_MIB_MODULES
39         string "Build without these MIB modules"
40         default "disman/event disman/schedule utilities"
41         help
42           Specify which MIB modules to exclude.
43
44 config BR2_PACKAGE_NETSNMP_ENABLE_DEBUGGING
45         bool "Enable debugging code"
46         help
47           By default net-snmp is compiled without debugging support
48           (--disable-debugging). Enable this options if you need debugging
49           support, including the ability to log with DEBUGMSG(),
50           DEBUGMSGTL() and companion macros.
51
52 config BR2_PACKAGE_NETSNMP_OPENSSL_INTERNAL
53         bool "Enable minimal internal OpenSSL code"
54         depends on !BR2_PACKAGE_OPENSSL
55         help
56           Enable a minimal internal copy of OpenSSL usable for USM
57           security. It will not enable the usage of SNMP over (D)TLS.
58
59 endif