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>
46 lines
1.1 KiB
Plaintext
46 lines
1.1 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_B_L475E_IOT01A
|
|
|
|
config B_L475E_IOT01A_MTD_FLASH
|
|
bool "MTD driver for external 64Mbits flash memory"
|
|
default n
|
|
select STM32L4_DMA1
|
|
select STM32L4_QSPI
|
|
select MTD
|
|
select MTD_MX25RXX
|
|
select MTD_SMART
|
|
select MTD_SMART_MINIMIZE_RAM
|
|
select FS_SMARTFS
|
|
---help---
|
|
Configures an MTD device for use with the onboard external flash
|
|
using QuadSPI interface.
|
|
|
|
if B_L475E_IOT01A_MTD_FLASH
|
|
|
|
config B_L475E_IOT01A_MTD_FLASH_MINOR
|
|
int "Minor number for the flash memory /dev/smart entry"
|
|
default 0
|
|
---help---
|
|
Sets the minor number for the flash memory /dev/smart entry
|
|
|
|
config B_L475E_IOT01A_MTD_PART
|
|
bool "Enable partition support"
|
|
default n
|
|
select MTD_PARTITION
|
|
---help---
|
|
Enables creation of partitions on the external flash memory.
|
|
|
|
config B_L475E_IOT01A_MTD_PART_LIST
|
|
string "Flash partition size list"
|
|
default "512,8192,8192,16384"
|
|
depends on B_L475E_IOT01A_MTD_PART
|
|
---help---
|
|
Comma separated list of partition sizes in KB.
|
|
|
|
endif # B_L475E_IOT01A_MTD_FLASH
|
|
endif # ARCH_BOARD_B_L475E_IOT01A
|