diff options
author | Michal Simek <michal.simek@xilinx.com> | 2018-07-23 15:55:14 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-07-30 07:18:48 -0400 |
commit | 08a00cba06a7e608ae65e3d7ea225cf8c639429d (patch) | |
tree | a5342e260c5db2fc4cba1d2bc147cefc552d7227 /arch/arm/mach-rmobile | |
parent | 5ed063d10f647b7cdbd048c8acdf7d030f1a94e6 (diff) | |
download | u-boot-08a00cba06a7e608ae65e3d7ea225cf8c639429d.tar.gz |
dm: Change CMD_DM enabling
CMD_DM is used for debug purpose and it shouldn't be enabled by default
via Kconfig. Unfortunately this is in the tree for quite a long time
that's why solution is to use imply DM for all targets which are
enabling DM.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Joe Hershberger <joe.hershberger@ni.com>
Diffstat (limited to 'arch/arm/mach-rmobile')
-rw-r--r-- | arch/arm/mach-rmobile/Kconfig.32 | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/arm/mach-rmobile/Kconfig.32 b/arch/arm/mach-rmobile/Kconfig.32 index 308f9de4c44..bdca9bb9052 100644 --- a/arch/arm/mach-rmobile/Kconfig.32 +++ b/arch/arm/mach-rmobile/Kconfig.32 @@ -46,6 +46,7 @@ config TARGET_BLANCHE select DM select DM_SERIAL select USE_TINY_PRINTF + imply CMD_DM config TARGET_GOSE bool "Gose board" @@ -54,6 +55,7 @@ config TARGET_GOSE select SPL_TINY_MEMSET select SUPPORT_SPL select USE_TINY_PRINTF + imply CMD_DM config TARGET_KOELSCH bool "Koelsch board" @@ -62,6 +64,7 @@ config TARGET_KOELSCH select SPL_TINY_MEMSET select SUPPORT_SPL select USE_TINY_PRINTF + imply CMD_DM config TARGET_LAGER bool "Lager board" @@ -70,6 +73,7 @@ config TARGET_LAGER select SPL_TINY_MEMSET select SUPPORT_SPL select USE_TINY_PRINTF + imply CMD_DM config TARGET_KZM9G bool "KZM9D board" @@ -81,6 +85,7 @@ config TARGET_ALT select SPL_TINY_MEMSET select SUPPORT_SPL select USE_TINY_PRINTF + imply CMD_DM config TARGET_SILK bool "Silk board" @@ -89,6 +94,7 @@ config TARGET_SILK select SPL_TINY_MEMSET select SUPPORT_SPL select USE_TINY_PRINTF + imply CMD_DM config TARGET_PORTER bool "Porter board" @@ -97,6 +103,7 @@ config TARGET_PORTER select SPL_TINY_MEMSET select SUPPORT_SPL select USE_TINY_PRINTF + imply CMD_DM config TARGET_STOUT bool "Stout board" @@ -105,6 +112,7 @@ config TARGET_STOUT select SPL_TINY_MEMSET select SUPPORT_SPL select USE_TINY_PRINTF + imply CMD_DM endchoice |