aboutsummaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2019-08-24 08:32:22 -0400
committerTom Rini <trini@konsulko.com>2019-08-24 08:32:22 -0400
commit3d8fab1e9e1ccaf609d63df85bd651458f05d436 (patch)
tree6a34a436e153ec4024eb84e800d008a8e79dc674 /cmd
parentb242d1b13e43906af288d8a8bdf396ba2cfbf2d1 (diff)
parent78f28773a55db9ed434e7b1920b94bb95167844f (diff)
downloadu-boot-3d8fab1e9e1ccaf609d63df85bd651458f05d436.zip
u-boot-3d8fab1e9e1ccaf609d63df85bd651458f05d436.tar.gz
u-boot-3d8fab1e9e1ccaf609d63df85bd651458f05d436.tar.bz2
Merge branch '2019-08-23-master-imports'
- Migrate CONFIG_MX_CYCLIC, CONFIG_FSL_USDHC and CONFIG_MXS_GPIO to Kconfig - Fix some SPL/TPL and ARM64 dependencies
Diffstat (limited to 'cmd')
-rw-r--r--cmd/Kconfig14
1 files changed, 14 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig
index 041de1d..05872fa 100644
--- a/cmd/Kconfig
+++ b/cmd/Kconfig
@@ -611,6 +611,20 @@ config CMD_MEMORY
base - print or set address offset
loop - initialize loop on address range
+config MX_CYCLIC
+ bool "Enable cyclic md/mw commands"
+ depends on CMD_MEMORY
+ help
+ Add the "mdc" and "mwc" memory commands. These are cyclic
+ "md/mw" commands.
+ Examples:
+
+ => mdc.b 10 4 500
+ This command will print 4 bytes (10,11,12,13) each 500 ms.
+
+ => mwc.l 100 12345678 10
+ This command will write 12345678 to address 100 all 10 ms.
+
config CMD_RANDOM
bool "random"
default y