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/mips | |
parent | 5ed063d10f647b7cdbd048c8acdf7d030f1a94e6 (diff) |
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/mips')
-rw-r--r-- | arch/mips/Kconfig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig index 315d89dbeb..31b622ff51 100644 --- a/arch/mips/Kconfig +++ b/arch/mips/Kconfig @@ -42,6 +42,7 @@ config TARGET_MALTA select SUPPORTS_CPU_MIPS64_R6 select SUPPORTS_LITTLE_ENDIAN select SWAP_IO_SPACE + imply CMD_DM config TARGET_VCT bool "Support vct" @@ -74,6 +75,7 @@ config ARCH_ATH79 bool "Support QCA/Atheros ath79" select DM select OF_CONTROL + imply CMD_DM config ARCH_BMIPS bool "Support BMIPS SoCs" @@ -83,11 +85,13 @@ config ARCH_BMIPS select OF_CONTROL select RAM select SYSRESET + imply CMD_DM config MACH_PIC32 bool "Support Microchip PIC32" select DM select OF_CONTROL + imply CMD_DM config TARGET_BOSTON bool "Support Boston" @@ -107,6 +111,7 @@ config TARGET_BOSTON select SUPPORTS_CPU_MIPS64_R2 select SUPPORTS_CPU_MIPS64_R6 select SUPPORTS_LITTLE_ENDIAN + imply CMD_DM config TARGET_XILFPGA bool "Support Imagination Xilfpga" @@ -120,6 +125,7 @@ config TARGET_XILFPGA select SUPPORTS_CPU_MIPS32_R1 select SUPPORTS_CPU_MIPS32_R2 select SUPPORTS_LITTLE_ENDIAN + imply CMD_DM help This supports IMGTEC MIPSfpga platform |