@@ -450,6 +450,7 @@ config BOOT_USB_DFU_DETECT_PIN
450450 default 13 if BOARD_NRF52DK_NRF52832
451451 default 23 if BOARD_NRF5340_DK_NRF5340_CPUAPP || BOARD_NRF5340_DK_NRF5340_CPUAPP_NS
452452 default 43 if BOARD_BL5340_DVK_CPUAPP || BOARD_BL5340_DVK_CPUAPP_NS
453+ default -1
453454 help
454455 Pin on the DFU detect port that triggers DFU mode.
455456
@@ -558,10 +559,12 @@ endchoice
558559
559560config BOOT_WATCHDOG_FEED
560561 bool "Feed the watchdog while doing swap"
562+ default y if WATCHDOG
561563 default y if SOC_FAMILY_NRF
562- imply NRFX_WDT
563- imply NRFX_WDT0
564- imply NRFX_WDT1
564+ # for nRF nrfx based implementation is available
565+ imply NRFX_WDT if SOC_FAMILY_NRF
566+ imply NRFX_WDT0 if SOC_FAMILY_NRF
567+ imply NRFX_WDT1 if SOC_FAMILY_NRF
565568 help
566569 Enables implementation of MCUBOOT_WATCHDOG_FEED() macro which is
567570 used to feed watchdog while doing time consuming operations.
@@ -571,18 +574,8 @@ config BOOT_IMAGE_ACCESS_HOOKS
571574 help
572575 Allow to provide procedures for override or extend native
573576 MCUboot's routines required for access the image data and the image
574- update.
575-
576- config BOOT_IMAGE_ACCESS_HOOKS_FILE
577- string "Hooks implementation file path"
578- depends on BOOT_IMAGE_ACCESS_HOOKS
579- help
580- Path to the file which implements hooks.
581- You can use either absolute or relative path.
582- In case relative path is used, the build system assumes that it starts
583- from the directory where the MCUBoot KConfig configuration file is
584- located. If the key file is not there, the build system uses relative
585- path that starts from the zephyr port cmake directory (boot/zephyr/).
577+ update. It is up to the project customization to add required source
578+ files to the build.
586579
587580config MCUBOOT_ACTION_HOOKS
588581 bool "Enable hooks for responding to MCUboot status changes"
0 commit comments