mirror of
https://github.com/apache/nuttx.git
synced 2026-05-31 23:40:19 +08:00
Kconfig files: Fix some dependencies that have CONFIG_ in the variable name
This commit is contained in:
@@ -1369,7 +1369,7 @@ config SAM34_HSMCI_WRPROOF
|
|||||||
|
|
||||||
config SAM34_HSMCI_XFRDEBUG
|
config SAM34_HSMCI_XFRDEBUG
|
||||||
bool "HSMCI transfer debug"
|
bool "HSMCI transfer debug"
|
||||||
depends on DEBUG_FS && CONFIG_DEBUG_INFO
|
depends on DEBUG_FS_INFO
|
||||||
default n
|
default n
|
||||||
---help---
|
---help---
|
||||||
Enable special debug instrumentation analyze HSMCI data transfers.
|
Enable special debug instrumentation analyze HSMCI data transfers.
|
||||||
@@ -1381,7 +1381,7 @@ config SAM34_HSMCI_XFRDEBUG
|
|||||||
|
|
||||||
config SAM34_HSMCI_CMDDEBUG
|
config SAM34_HSMCI_CMDDEBUG
|
||||||
bool "HSMCI command debug"
|
bool "HSMCI command debug"
|
||||||
depends on DEBUG_FS && CONFIG_DEBUG_INFO
|
depends on DEBUG_FS_INFO
|
||||||
default n
|
default n
|
||||||
---help---
|
---help---
|
||||||
Enable special debug instrumentation analyze HSMCI commands. This
|
Enable special debug instrumentation analyze HSMCI commands. This
|
||||||
|
|||||||
@@ -2857,7 +2857,7 @@ config SAMA5_HSMCI_WRPROOF
|
|||||||
|
|
||||||
config SAMA5_HSMCI_XFRDEBUG
|
config SAMA5_HSMCI_XFRDEBUG
|
||||||
bool "HSMCI transfer debug"
|
bool "HSMCI transfer debug"
|
||||||
depends on DEBUG_FS && CONFIG_DEBUG_INFO
|
depends on DEBUG_FS_INFO
|
||||||
default n
|
default n
|
||||||
---help---
|
---help---
|
||||||
Enable special debug instrumentation analyze HSMCI data transfers.
|
Enable special debug instrumentation analyze HSMCI data transfers.
|
||||||
@@ -2869,7 +2869,7 @@ config SAMA5_HSMCI_XFRDEBUG
|
|||||||
|
|
||||||
config SAMA5_HSMCI_CMDDEBUG
|
config SAMA5_HSMCI_CMDDEBUG
|
||||||
bool "HSMCI command debug"
|
bool "HSMCI command debug"
|
||||||
depends on DEBUG_FS && CONFIG_DEBUG_INFO
|
depends on DEBUG_FS_INFO
|
||||||
default n
|
default n
|
||||||
---help---
|
---help---
|
||||||
Enable special debug instrumentation analyze HSMCI commands. This
|
Enable special debug instrumentation analyze HSMCI commands. This
|
||||||
|
|||||||
@@ -1634,7 +1634,7 @@ config SAMV7_HSMCI_UNALIGNED
|
|||||||
|
|
||||||
config SAMV7_HSMCI_XFRDEBUG
|
config SAMV7_HSMCI_XFRDEBUG
|
||||||
bool "HSMCI transfer debug"
|
bool "HSMCI transfer debug"
|
||||||
depends on DEBUG_FS && CONFIG_DEBUG_INFO
|
depends on DEBUG_FS_INFO
|
||||||
default n
|
default n
|
||||||
---help---
|
---help---
|
||||||
Enable special debug instrumentation analyze HSMCI data transfers.
|
Enable special debug instrumentation analyze HSMCI data transfers.
|
||||||
@@ -1646,7 +1646,7 @@ config SAMV7_HSMCI_XFRDEBUG
|
|||||||
|
|
||||||
config SAMV7_HSMCI_CMDDEBUG
|
config SAMV7_HSMCI_CMDDEBUG
|
||||||
bool "HSMCI command debug"
|
bool "HSMCI command debug"
|
||||||
depends on DEBUG_FS && CONFIG_DEBUG_INFO
|
depends on DEBUG_FS_INFO
|
||||||
default n
|
default n
|
||||||
---help---
|
---help---
|
||||||
Enable special debug instrumentation analyze HSMCI commands. This
|
Enable special debug instrumentation analyze HSMCI commands. This
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ config ELF_BUFFERINCR
|
|||||||
config ELF_DUMPBUFFER
|
config ELF_DUMPBUFFER
|
||||||
bool "Dump ELF buffers"
|
bool "Dump ELF buffers"
|
||||||
default n
|
default n
|
||||||
depends on DEBUG_FEATURES && CONFIG_DEBUG_INFO
|
depends on DEBUG_INFO
|
||||||
---help---
|
---help---
|
||||||
Dump various ELF buffers for debug purposes
|
Dump various ELF buffers for debug purposes
|
||||||
|
|
||||||
|
|||||||
@@ -6,4 +6,4 @@
|
|||||||
config NXFLAT_DUMPBUFFER
|
config NXFLAT_DUMPBUFFER
|
||||||
bool "Dump NXFLAT buffers"
|
bool "Dump NXFLAT buffers"
|
||||||
default n
|
default n
|
||||||
depends on DEBUG_FEATURES && CONFIG_DEBUG_INFO
|
depends on DEBUG_INFO
|
||||||
|
|||||||
@@ -64,6 +64,6 @@ endif # PCODE_TEST_FS
|
|||||||
config PCODE_DUMPBUFFER
|
config PCODE_DUMPBUFFER
|
||||||
bool "Dump P-code buffers"
|
bool "Dump P-code buffers"
|
||||||
default n
|
default n
|
||||||
depends on DEBUG_FEATURES && CONFIG_DEBUG_INFO
|
depends on DEBUG_INFO
|
||||||
---help---
|
---help---
|
||||||
Dump various P-code buffers for debug purposes
|
Dump various P-code buffers for debug purposes
|
||||||
|
|||||||
@@ -179,7 +179,7 @@ config MXT_NPOLLWAITERS
|
|||||||
config MXT_DISABLE_CONFIG_DEBUG_INFO
|
config MXT_DISABLE_CONFIG_DEBUG_INFO
|
||||||
bool "Disable verbose debug output"
|
bool "Disable verbose debug output"
|
||||||
default y
|
default y
|
||||||
depends on CONFIG_DEBUG_INFO && DEBUG_INPUT
|
depends on DEBUG_INPUT_INFO
|
||||||
---help---
|
---help---
|
||||||
The maXTouch tends to generate interrupts at a high rate during the
|
The maXTouch tends to generate interrupts at a high rate during the
|
||||||
contact. If verbose debug is enabled in this driver, you may not
|
contact. If verbose debug is enabled in this driver, you may not
|
||||||
|
|||||||
+1
-1
@@ -1013,7 +1013,7 @@ config MODULE_BUFFERINCR
|
|||||||
config MODULE_DUMPBUFFER
|
config MODULE_DUMPBUFFER
|
||||||
bool "Dump module buffers"
|
bool "Dump module buffers"
|
||||||
default n
|
default n
|
||||||
depends on DEBUG_FEATURES && CONFIG_DEBUG_INFO
|
depends on DEBUG_INFO
|
||||||
---help---
|
---help---
|
||||||
Dump various module buffers for debug purposes
|
Dump various module buffers for debug purposes
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user