pkarashchenko commented on a change in pull request #4908: URL: https://github.com/apache/incubator-nuttx/pull/4908#discussion_r757872070
########## File path: boards/arm/stm32h7/nucleo-h743zi/Kconfig ########## @@ -27,4 +27,66 @@ config STM32_ROMFS_IMAGEFILE depends on STM32_ROMFS default "../../../rom.img" + +config PROGMEM_OTA_PARTITION + bool "Progmem ota partitions" + default y + select MTD + select MTD_BYTE_WRITE + select MTD_PARTITION + select MTD_PROGMEM + select MTD_PROGMEM_ERASESTATE + +menuconfig APP_FORMAT_MCUBOOT + bool "MCUboot-bootable format" + default y + select PROGMEM_OTA_PARTITION + ---help--- + The MCUboot support of loading the firmware images. + +if APP_FORMAT_MCUBOOT + +config MCUBOOT_BOOTLOADER + bool "MCUboot bootloader application" + default y + ---help--- + This switch between linker scripts to allow an application be + built to another entry point address. Review comment: The MCUboot in nuttx-apps has same configuration option: https://github.com/apache/incubator-nuttx-apps/blob/c9f736005ac3278faf67d6c9458101bff7882d46/boot/mcuboot/Kconfig#L38 I'm not sure if it will work with two configuration options with the same name -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org