mirror of
https://github.com/ivoszbg/uniLoader.git
synced 2026-08-15 05:18:32 +00:00
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.
29 lines
803 B
Plaintext
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
|