diff options
author | Siva Durga Prasad Paladugu | 2016-07-19 10:42:22 +0530 |
---|---|---|
committer | Michal Simek | 2016-07-22 14:06:11 +0200 |
commit | 4d25507f3df9b7c06e04b40b6d42f895493c5435 (patch) | |
tree | f5f351aa31ed16e525f8dd4b780e5ce4ff89d336 | |
parent | 2ae9fbe00f71b8e48a04a13a71a9f6b42b70f158 (diff) |
Kconfig: Move option CONFIG_SYS_NO_FLASH to Kconfig
Move config option CONFIG_SYS_NO_FLASH as Kconfig
option. All the boards which needs to enable this
option can be done through defconfigs
Signed-off-by: Siva Durga Prasad Paladugu <sivadur@xilinx.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
-rw-r--r-- | common/Kconfig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/common/Kconfig b/common/Kconfig index 8adc821ae0b..46e7173c7c9 100644 --- a/common/Kconfig +++ b/common/Kconfig @@ -197,3 +197,9 @@ config CONSOLE_RECORD_IN_SIZE tstc() and getc() will use this in preference to real device input. The buffer is allocated immediately after the malloc() region is ready. + +config SYS_NO_FLASH + bool "Disable support for parallel NOR flash" + default n + help + This option is used to disable support for parallel NOR flash. |