Files
uniLoader/lib/Kconfig
Ivaylo Ivanov bcec9ef385 lib: CONFIG_UART_DEBUG -> CONFIG_EARLYCON
Better reflects its purpose now. Done with:
$ rg -l '\bCONFIG_UART_DEBUG\b' | xargs sed -i 's/\bCONFIG_UART_DEBUG\b/CONFIG_EARLYCON/g'

..and then manually edited the Kconfig entry.
2026-05-28 22:05:30 +02:00

29 lines
803 B
Plaintext

menu "Libraries"
config SIMPLE_FB
bool "Support for Simple Framebuffer"
default y
help
Say Y if you want to have Framebuffer output.
config EARLYCON
bool "Support for UART early console"
default n
help
Say Y if you want to have UART early console output. Keep
in mind that your board files need to provide uart_puts
functionality in order for this to work.
config LIBFDT
bool "Support for libfdt"
default y
help
Say Y if you want to have libfdt features.
config FDT_BUF_SIZE
int "Size of the static buffer for the Flattened Device Tree"
default 500000
depends on LIBFDT
help
This option specifies the size (in bytes) of the buffer used for DTB modifying. The default value of 500 KB should be sufficient even for downstream device trees.
endmenu