diff options
Diffstat (limited to 'cmd/Kconfig')
-rw-r--r-- | cmd/Kconfig | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index e0101ca6f82..eb615552a00 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -1238,6 +1238,7 @@ config CMD_FPGAD config CMD_FUSE bool "fuse - support for the fuse subssystem" + depends on !COMPILE_TEST help (deprecated - needs conversion to driver model) This allows reading, sensing, programming or overriding fuses @@ -1289,6 +1290,7 @@ config CMD_GPT_RENAME config CMD_IDE bool "ide - Support for IDE drivers" + depends on !COMPILE_TEST select IDE help Provides an 'ide' command which allows accessing the IDE drive, @@ -1558,6 +1560,7 @@ config CMD_NVME config CMD_ONENAND bool "onenand - access to onenand device" depends on MTD + depends on !COMPILE_TEST help OneNAND is a brand of NAND ('Not AND' gate) flash which provides various useful features. This command allows reading, writing, @@ -1567,6 +1570,7 @@ config CMD_ONENAND config USE_ONENAND_BOARD_INIT bool "Call onenand_board_init() in the onenand command" depends on CMD_ONENAND + depends on !COMPILE_TEST config CMD_OSD bool "osd" @@ -2433,7 +2437,7 @@ config CMD_SLEEP config CMD_MP bool "support for multiprocessor commands" - depends on MP + depends on MP && !CPU default y help This enables commands to bringup different processors @@ -2891,6 +2895,7 @@ config JFFS2_PART_SIZE config CMD_MTDPARTS bool "MTD partition support" + depends on !COMPILE_TEST depends on MTD select MTD_PARTITIONS help @@ -3004,7 +3009,7 @@ config CMD_EVENT config CMD_IRQ bool "irq - Show information about interrupts" - depends on !ARM && !MIPS && !RISCV && !SH + depends on NIOS2 || PPC || X86 help This enables two commands: |