a1c991d921
Move boards to boards folder * boards: rename configs folder to boards This is the proposed layout after the change: boards: - folder containing board folders <board>: - name of each board drivers: - extra drivers specific for platform include: - header files for the boars scripts: - extra scripts specific for platform src: - board specific code tools: - extra tools specific for platform <config>: - board specific configuration(s) Note: <xxx> names are dependent on platform This is a logical change to aim to the arch layout but this is a huge change it should be done in several steps to lower the risk. Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com> * Kconfig: replace configs with boards The change is needed after the path change Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com> * Makefile: replace configs with boards The change is needed after the path change Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com> * Makefile.*: replace configs with boards The change is needed after the path change Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com> * Make.defs: replace configs with boards The change is needed after the path change Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com> * .sh: replace configs with boards The change is needed after the path change Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com> * .mk: replace configs with boards The change is needed after the path change Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com> * .c & .h: replace configs with boards The change is needed after the path change Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com> * .bat: replace configs with boards The change is needed after the path change Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com> Approved-by: Gregory Nutt <gnutt@nuttx.org>
80 lines
2.2 KiB
Plaintext
80 lines
2.2 KiB
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
if ARCH_BOARD_SHENZHOU
|
|
|
|
if LCD
|
|
menu "LCD Controller Selection"
|
|
|
|
comment "Disable Unused LCD Controllers"
|
|
|
|
config STM32_ILI1505_DISABLE
|
|
bool "Disable ILI1505"
|
|
default n
|
|
---help---
|
|
This may be defined to disable support for the ILI1505 LCD controller
|
|
You might want to eliminate unused LCD controll support in order to
|
|
reduce the FLASH footprint.
|
|
|
|
config STM32_ILI9300_DISABLE
|
|
bool "Disable ILI9300"
|
|
default n
|
|
---help---
|
|
This may be defined to disable support for the ILI9300 LCD controller
|
|
You might want to eliminate unused LCD controll support in order to
|
|
reduce the FLASH footprint.
|
|
|
|
config STM32_ILI9320_DISABLE
|
|
bool "Disable ILI9320"
|
|
default n
|
|
---help---
|
|
This may be defined to disable support for the ILI9320 LCD controller
|
|
You might want to eliminate unused LCD controll support in order to
|
|
reduce the FLASH footprint.
|
|
|
|
config STM32_ILI9321_DISABLE
|
|
bool "Disable ILI9321"
|
|
default n
|
|
---help---
|
|
This may be defined to disable support for the ILI9321 LCD controller
|
|
You might want to eliminate unused LCD controll support in order to
|
|
reduce the FLASH footprint.
|
|
|
|
config STM32_ILI9325_DISABLE
|
|
bool "Disable ILI9325"
|
|
default n
|
|
---help---
|
|
This may be defined to disable support for the ILI9325 LCD controller
|
|
You might want to eliminate unused LCD controll support in order to
|
|
reduce the FLASH footprint.
|
|
|
|
config STM32_ILI9328_DISABLE
|
|
bool "Disable ILI9328"
|
|
default n
|
|
---help---
|
|
This may be defined to disable support for the ILI9328 LCD controller
|
|
You might want to eliminate unused LCD controll support in order to
|
|
reduce the FLASH footprint.
|
|
|
|
config STM32_ILI9331_DISABLE
|
|
bool "Disable ILI9331"
|
|
default n
|
|
---help---
|
|
This may be defined to disable support for the ILI9331 LCD controller
|
|
You might want to eliminate unused LCD controll support in order to
|
|
reduce the FLASH footprint.
|
|
|
|
config STM32_ILI9919_DISABLE
|
|
bool "Disable ILI9919"
|
|
default n
|
|
---help---
|
|
This may be defined to disable support for the ILI9919 LCD controller
|
|
You might want to eliminate unused LCD controll support in order to
|
|
reduce the FLASH footprint.
|
|
|
|
endmenu
|
|
endif
|
|
endif
|