diff options
author | Tom Rini | 2018-01-26 13:22:40 -0500 |
---|---|---|
committer | Tom Rini | 2018-01-26 13:22:40 -0500 |
commit | 748277c415ff5bd74d6913928cab2a3da6a0b69f (patch) | |
tree | 696d1e5f0a37c3d80752a30fafb37ea2763bbe2e /cmd | |
parent | ab12aa24e619b5e81cbde7de88c6d9a19f04313b (diff) | |
parent | a6968ecb0ad6b06552c97005eba265a4c5761626 (diff) |
Merge git://git.denx.de/u-boot-sunxi
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/Kconfig | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index 35fe9d50016..676011dcdc4 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -397,6 +397,7 @@ menu "Memory commands" config CMD_CRC32 bool "crc32" select HASH + default n if ARCH_SUNXI default y help Compute CRC32. @@ -538,6 +539,7 @@ config CMD_LZMADEC config CMD_UNZIP bool "unzip" + default n if ARCH_SUNXI default y if CMD_BOOTI help Uncompress a zip-compressed memory region. @@ -746,12 +748,14 @@ config CMD_I2C config CMD_LOADB bool "loadb" + default n if ARCH_SUNXI default y help Load a binary file over serial line. config CMD_LOADS bool "loads" + default n if ARCH_SUNXI default y help Load an S-Record file over serial line @@ -1134,6 +1138,7 @@ config CMD_GETTIME # TODO: rename to CMD_SLEEP config CMD_MISC bool "sleep" + default n if ARCH_SUNXI default y help Delay execution for some time |