mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
8c86f96d20
Make the board driver available in the SPL too. The board driver is a way to provide useful information about the board and that can be useful in the SPL too. Signed-off-by: Jean-Jacques Hiblot <jjhiblot@ti.com> Reviewed-by: Simon Glass <sjg@chromium.org>
25 lines
674 B
Text
25 lines
674 B
Text
menuconfig BOARD
|
|
bool "Device Information"
|
|
help
|
|
Support methods to query hardware configurations from internal
|
|
mechanisms (e.g. reading GPIO values, determining the presence of
|
|
devices on busses, etc.). This enables the usage of U-Boot with
|
|
modular board architectures.
|
|
|
|
if BOARD
|
|
|
|
config SPL_BOARD
|
|
depends on SPL_DM
|
|
bool "Enable board driver support in SPL"
|
|
|
|
config BOARD_GAZERBEAM
|
|
bool "Enable board driver for the Gazerbeam board"
|
|
help
|
|
Support querying device information for the gdsys Gazerbeam board.
|
|
|
|
config BOARD_SANDBOX
|
|
bool "Enable board driver for the Sandbox board"
|
|
help
|
|
Support querying device information for the Sandbox boards.
|
|
|
|
endif
|