diff options
author | Simon Glass <sjg@chromium.org> | 2017-08-04 16:34:45 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-08-11 15:41:56 -0400 |
commit | efce2442d31a51322f2cab366285f91e5c9edc70 (patch) | |
tree | 9ac9c89b643b4966ae531758807c70537cb396b8 /cmd | |
parent | 0941f597a2bdb80164658c8fe165ee8da4ece6fc (diff) | |
download | u-boot-efce2442d31a51322f2cab366285f91e5c9edc70.tar.gz u-boot-efce2442d31a51322f2cab366285f91e5c9edc70.tar.bz2 u-boot-efce2442d31a51322f2cab366285f91e5c9edc70.zip |
Convert CONFIG_CMD_SDRAM to Kconfig
This converts the following to Kconfig:
CONFIG_CMD_SDRAM
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/Kconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index cf89fd73d2..507e8a3402 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -785,6 +785,13 @@ config CMD_SAVES Provides a way to save a binary file using the Motorola S-Record format over the serial line. +config CMD_SDRAM + bool "sdram - Print SDRAM configuration information" + help + Provides information about attached SDRAM. This assumed that the + SDRAM has an EEPROM with information that can be read using the + I2C bus. This is only available on some boards. + config CMD_SF bool "sf" help |