nuttx/boards/arm/stm32h7/nucleo-h743zi/Kconfig
2020-11-22 00:28:49 -08:00

47 lines
1.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_NUCLEO_H743ZI
choice
prompt "STM Nucleo-144 Board Variant"
default STM_NUCLEO144_MB1364
config STM_NUCLEO144_MB1364
bool "Nucleo-H743ZI2 (MB1364)"
---help---
This is the current version of the Nucelo-144 for the H743ZI
config STM_NUCLEO144_MB1137
bool "Nucleo-H743ZI (MB1137)"
---help---
This is the origional version of the Nucelo-144 for the H743ZI
endchoice
config STM32_ROMFS
bool "Automount baked-in ROMFS image"
default n
depends on FS_ROMFS
---help---
Select STM32_ROMFS_IMAGEFILE, STM32_ROMFS_DEV_MINOR, STM32_ROMFS_MOUNTPOINT
config STM32_ROMFS_DEV_MINOR
int "Minor for the block device backing the data"
depends on STM32_ROMFS
default 64
config STM32_ROMFS_MOUNTPOINT
string "Mountpoint of the custom romfs image"
depends on STM32_ROMFS
default "/rom"
config STM32_ROMFS_IMAGEFILE
string "ROMFS image file to include into build"
depends on STM32_ROMFS
default "../../../rom.img"
endif # ARCH_BOARD_NUCLEO_H743ZI