-
Notifications
You must be signed in to change notification settings - Fork 0
/
Config.uk
40 lines (34 loc) · 954 Bytes
/
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
menuconfig PLAT_RASPI
bool "Raspberry Pi 3B"
default n
depends on ARCH_ARM_64
help
Create a Unikraft image that runs as a Raspberry Pi 3B
if (PLAT_RASPI)
menu "Console Options"
config RASPI_PRINTF_SERIAL_CONSOLE
bool "Serial console for printf"
default y
depends on ARCH_ARM_64
help
Choose serial console for printf
config RASPI_KERNEL_SERIAL_CONSOLE
bool "Serial console for the kernel prints"
default n
depends on ARCH_ARM_64
help
Choose serial console for the kernel printing
config RASPI_DEBUG_SERIAL_CONSOLE
bool "Serial console for the debug prints"
default n
depends on ARCH_ARM_64
help
Choose serial console for the debug printing
endmenu
menu "Profiling"
config RASPI_WATERMARK_STACK
bool "Watermark Stack"
default n
depends on ARCH_ARM_64
endmenu
endif