diff options
| author | Simon Glass <[email protected]> | 2023-11-12 19:58:28 -0700 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-11-28 12:53:04 -0500 |
| commit | 6f646d13f4308fcea0b73d46907ad11036afebd8 (patch) | |
| tree | cf4a3846d793fca73edb6223d3cd94586b5d4bc4 /drivers/sysinfo | |
| parent | d2a1b432a8c10eef247fc580c4cc434e284b13f0 (diff) | |
sysinfo: Allow displaying more info on startup
At present only the model name is shown on start. Some boards want to
display more information. Add some more options to allow display of the
manufacturer as well as the version and date of any prior-stage
firmware.
This is useful for coreboot, at least. If other boards have more
information to display, it is easy to add it, now.
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'drivers/sysinfo')
| -rw-r--r-- | drivers/sysinfo/Kconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/sysinfo/Kconfig b/drivers/sysinfo/Kconfig index e35f7cb1791..2030e4babc9 100644 --- a/drivers/sysinfo/Kconfig +++ b/drivers/sysinfo/Kconfig @@ -8,6 +8,13 @@ menuconfig SYSINFO if SYSINFO +config SYSINFO_EXTRA + bool "Show extra information on startup" + help + Enable this to see extra information on startup. Normally only the + model is shown, but with this option the vendor and any prior-stage + firmware's version and date are shown as well. + config SPL_SYSINFO depends on SPL_DM bool "Enable board driver support in SPL" |
