Commit 30889ae5 authored by Andrzej Puzdrowski's avatar Andrzej Puzdrowski
Browse files

zephyr/Kconfig: fix CONFIG_MCUBOOT_INDICATION_LED usage



This option was reserved for serial recovery mode, while
it should be available for USB DFU as well.

Signed-off-by: default avatarAndrzej Puzdrowski <andrzej.puzdrowski@nordicsemi.no>
parent 2df4d57e
Loading
Loading
Loading
Loading
+8 −8
Original line number Diff line number Diff line
@@ -482,6 +482,14 @@ config MCUBOOT_LOG_THREAD_STACK_SIZE
	help
	  Set the internal stack size for MCUBoot log processing thread.

config MCUBOOT_INDICATION_LED
	bool "Turns on LED indication when device is in DFU"
	default n
	help
	  Device device activates the LED while in bootloader mode.
	  bootloader-led0 alias must be set in the device's .dts
	  definitions for this to work.

menuconfig MCUBOOT_SERIAL
	bool "MCUboot serial recovery"
	default n
@@ -527,14 +535,6 @@ config MCUBOOT_SERIAL_DIRECT_IMAGE_UPLOAD
	  Note that 0 is default upload target when no explicit
	  selection is done.

config MCUBOOT_INDICATION_LED
	bool "Turns on LED indication when device is in DFU"
	default n
	help
	  Device device activates the LED while in bootloader mode.
	  bootloader-led0 alias must be set in the device's .dts
	  definitions for this to work.

config BOOT_MAX_LINE_INPUT_LEN
	int "Maximum command line length"
	default 512