2020-11-05 13:32:05 +00:00
|
|
|
menuconfig SYSINFO
|
|
|
|
bool "Device System Information"
|
2018-07-31 09:44:11 +00:00
|
|
|
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.
|
2018-07-31 09:44:12 +00:00
|
|
|
|
2020-11-05 13:32:05 +00:00
|
|
|
if SYSINFO
|
2018-07-31 09:44:12 +00:00
|
|
|
|
2020-11-05 13:32:05 +00:00
|
|
|
config SPL_SYSINFO
|
2019-10-22 14:39:18 +00:00
|
|
|
depends on SPL_DM
|
|
|
|
bool "Enable board driver support in SPL"
|
2018-07-31 09:44:12 +00:00
|
|
|
|
2020-11-05 13:32:05 +00:00
|
|
|
config SYSINFO_GAZERBEAM
|
|
|
|
bool "Enable sysinfo driver for the Gazerbeam board"
|
2018-07-31 09:44:12 +00:00
|
|
|
help
|
|
|
|
Support querying device information for the gdsys Gazerbeam board.
|
|
|
|
|
2020-11-05 13:32:05 +00:00
|
|
|
config SYSINFO_SANDBOX
|
|
|
|
bool "Enable sysinfo driver for the Sandbox board"
|
2018-07-31 09:44:13 +00:00
|
|
|
help
|
|
|
|
Support querying device information for the Sandbox boards.
|
|
|
|
|
2020-11-05 13:32:11 +00:00
|
|
|
config SYSINFO_SMBIOS
|
|
|
|
bool "Provide a default sysinfo driver for SMBIOS information"
|
|
|
|
help
|
|
|
|
Some boards want to specify the manufacturer or product name but do
|
|
|
|
not need to have their own sysinfo driver. This includes a default
|
|
|
|
one which provides a way to specify this SMBIOS information in the
|
|
|
|
devicetree, without needing any board-specific functionality.
|
|
|
|
|
2018-07-31 09:44:12 +00:00
|
|
|
endif
|