forked from unikraft/lib-click
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConfig.uk
94 lines (78 loc) · 1.75 KB
/
Config.uk
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
### Invisible option for dependencies
config APP_DEPENDENCIES
bool
default y
menuconfig LIBCLICK
bool "The Click modular router"
select LIBPOSIX_USER
select LIBNEWLIBC
select LIBLWIP
default y
if LIBCLICK
config LIBCLICK_MAIN
bool "Enable Click main function"
default n
help
Define main function instead of click_main function
config LIBCLICK_ELEMS_AQM
bool "Enable AQM elements"
default y
help
Build with IP elements
config LIBCLICK_ELEMS_ETHERNET
bool "Enable Ethernet elements"
default y
help
Build with Ethernet elements
config LIBCLICK_ELEMS_ETHERSWITCH
bool "Enable Ethernet switch elements"
default y
help
Build with Ethernet switch elements
config LIBCLICK_ELEMS_ICMP
bool "Enable ICMP elements"
default y
help
Build with ICMP elements
config LIBCLICK_ELEMS_IP
bool "Enable IP elements"
default y
help
Build with adaptive queue management elements
config LIBCLICK_ELEMS_UNIKRAFT
bool "Enable Unikraft networking"
default y
help
Build with Unikraft FromDevice and ToDevice elements
config LIBCLICK_ELEMS_LOCAL
bool "Enable local elements"
default y
help
Build with local elements
config LIBCLICK_ELEMS_SIMPLE
bool "Enable simple elements"
default y
help
Build with simple elements
config LIBCLICK_ELEMS_STANDARD
bool "Enable standard elements"
default y
help
Build with standard elements
config LIBCLICK_ELEMS_TCPUDP
bool "Enable TCP/UDP elements"
default y
help
Build with TCP/UDP elements
config LIBCLICK_ELEMS_THREADS
bool "Enable multi-threading elements"
default y
help
Build with multi-threading elements
config LIBCLICK_ELEMS_USERLEVEL
bool "Enable userlevel elements [BROKEN]"
default n
help
Build with Click userlevel elements.
Be aware this currently doesn't compile.
endif