#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#

menuconfig BOOT_MINIBOOT
	bool "Minimal bootloader"
	default n
	select BOARDCTL_BOOT_IMAGE
	---help---
		Enable support for the minimal NuttX based bootloader.

if BOOT_MINIBOOT

config MINIBOOT_SLOT_PATH
	string "Application firmware image slot path"
	default "/dev/ota0"
	---help---
		The path to the application firmware image slot character
		device driver.
		Default: /dev/ota0

config MINIBOOT_HEADER_SIZE
	hex "Application firmware image header size"
	default 0x200

endif # BOOT_MINIBOOT