-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathConfig.uk
72 lines (58 loc) · 1.55 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
menuconfig LIBINETUTILS
bool "inetutils Unikraft library"
default n
if LIBINETUTILS
menuconfig INETUTILS_UKSTORE_SUPPORT
bool "Register getters with ukstore"
select LIBUKSTORE
default n
if INETUTILS_UKSTORE_SUPPORT
config INETUTILS_UKSTORE_SUPPORT_DEBUG
bool "Enable extra debug info for ukstore getters"
default n
endif
menuconfig INETUTILS_PROMETHEUS_SUPPORT
bool "Enable prometheus metric exporter"
default n
depends on INETUTILS_UKSTORE_SUPPORT
if INETUTILS_PROMETHEUS_SUPPORT
config INETUTILS_PROMETHEUS_PING
bool "Enable prometheus metric export for ping"
default n
endif
menuconfig LIBINETUTILS_LIBICMP
bool "Provide libicmp library"
default n
help
Provides a set of functions related to creating, encoding and decoding
ICMP packets using a custom ICMP struct type.
config LIBINETUTILS_PING
select LIBINETUTILS_LIBICMP
bool "Provide ping functionality"
default n
config LIBINETUTILS_TRACEROUTE
select LIBINETUTILS_LIBICMP
bool "Provide traceroute functionality"
default n
config LIBINETUTILS_MAIN_FUNCTION
bool "Provide an Inetutils main function"
default n
choice
prompt "Main function"
optional
config LIBINETUTILS_PING_MAIN_FUNCTION
depends on LIBINETUTILS_PING
select LIBINETUTILS_MAIN_FUNCTION
bool "Ping"
default n
help
Start the unikernel using the main function from `ping`
config LIBINETUTILS_TRACEROUTE_MAIN_FUNCTION
depends on LIBINETUTILS_TRACEROUTE
select LIBINETUTILS_MAIN_FUNCTION
bool "Traceroute"
default n
help
Start the unikernel using the main function from `traceroute`
endchoice
endif