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/Kconfig | |
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/Kconfig')
-rw-r--r-- | arch/Kconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/Kconfig b/arch/Kconfig index 7967fa50ac..bf1b4a9afa 100644 --- a/arch/Kconfig +++ b/arch/Kconfig @@ -50,6 +50,7 @@ config NIOS2 select DM select OF_CONTROL select SUPPORT_OF_CONTROL + imply CMD_DM config PPC bool "PowerPC architecture" @@ -77,6 +78,7 @@ config SANDBOX select LZO select SPI select SUPPORT_OF_CONTROL + imply CMD_DM imply CMD_GETTIME imply CMD_HASH imply CMD_IO @@ -107,6 +109,7 @@ config X86 select USE_PRIVATE_LIBGCC select X86_TSC_TIMER imply BLK + imply CMD_DM imply CMD_FPGA_LOADMK imply CMD_GETTIME imply CMD_IO |