diff options
author | Simon Glass <sjg@chromium.org> | 2015-04-28 20:25:11 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-04-29 21:02:33 -0600 |
commit | 8e2fac051a477cec406606afaf3d4cec7fbdcbd4 (patch) | |
tree | acbc20560f57b11a79966bb89051fee048a9cf21 /common/Kconfig | |
parent | 6388e357254e091fe857493511652a95467b5324 (diff) | |
download | u-boot-midas-8e2fac051a477cec406606afaf3d4cec7fbdcbd4.tar.gz u-boot-midas-8e2fac051a477cec406606afaf3d4cec7fbdcbd4.tar.bz2 u-boot-midas-8e2fac051a477cec406606afaf3d4cec7fbdcbd4.zip |
Add a 'cpu' command to print CPU information
Add a simple command which provides access to a list of available CPUs along
with descriptions and basic information.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'common/Kconfig')
-rw-r--r-- | common/Kconfig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/common/Kconfig b/common/Kconfig index 5d7e48a5b6..15759f75aa 100644 --- a/common/Kconfig +++ b/common/Kconfig @@ -31,6 +31,14 @@ config CMD_CONSOLE help Print console devices and information. +config CMD_CPU + bool "cpu" + help + Print information about available CPUs. This normally shows the + number of CPUs, type (e.g. manufacturer, architecture, product or + internal name) and clock frequency. Other information may be + available depending on the CPU driver. + config CMD_LICENSE bool "license" help |