diff --git a/boot/zephyr/flash_map_extended.c b/boot/zephyr/flash_map_extended.c index c77f96cf1..ffa45006a 100644 --- a/boot/zephyr/flash_map_extended.c +++ b/boot/zephyr/flash_map_extended.c @@ -27,9 +27,9 @@ MCUBOOT_LOG_MODULE_DECLARE(mcuboot); #error "FLASH_DEVICE_ID could not be determined" #endif -static struct device *flash_dev; +static const struct device *flash_dev; -struct device *flash_device_get_binding(char *dev_name) +const struct device *flash_device_get_binding(char *dev_name) { if (!flash_dev) { flash_dev = device_get_binding(dev_name); diff --git a/boot/zephyr/include/flash_map_backend/flash_map_backend.h b/boot/zephyr/include/flash_map_backend/flash_map_backend.h index 20dd37914..8b5fd0ca6 100644 --- a/boot/zephyr/include/flash_map_backend/flash_map_backend.h +++ b/boot/zephyr/include/flash_map_backend/flash_map_backend.h @@ -38,7 +38,7 @@ extern "C" { * * Returns the flash device on success, or NULL on failure. */ -struct device *flash_device_get_binding(char *dev_name); +const struct device *flash_device_get_binding(char *dev_name); /* * Retrieve a memory-mapped flash device's base address. diff --git a/boot/zephyr/main.c b/boot/zephyr/main.c index 0eba4d71d..17ea693d7 100644 --- a/boot/zephyr/main.c +++ b/boot/zephyr/main.c @@ -169,6 +169,15 @@ static void do_boot(struct boot_rsp *rsp) cleanup_arm_nvic(); /* cleanup NVIC registers */ #endif +#if defined(CONFIG_BUILTIN_STACK_GUARD) && \ + defined(CONFIG_CPU_CORTEX_M_HAS_SPLIM) + /* Reset limit registers to avoid inflicting stack overflow on image + * being booted. + */ + __set_PSPLIM(0); + __set_MSPLIM(0); +#endif + #ifdef CONFIG_BOOT_INTR_VEC_RELOC #if defined(CONFIG_SW_VECTOR_RELAY) _vector_table_pointer = vt; @@ -346,7 +355,7 @@ void main(void) #ifdef CONFIG_MCUBOOT_SERIAL - struct device *detect_port; + struct device const *detect_port; uint32_t detect_value = !CONFIG_BOOT_SERIAL_DETECT_PIN_VAL; detect_port = device_get_binding(CONFIG_BOOT_SERIAL_DETECT_PORT); diff --git a/boot/zephyr/prj.conf b/boot/zephyr/prj.conf index 0f9d0e81d..d23ad6e42 100644 --- a/boot/zephyr/prj.conf +++ b/boot/zephyr/prj.conf @@ -50,3 +50,5 @@ CONFIG_FPROTECT=y CONFIG_LOG=y ### Ensure Zephyr logging changes don't use more resources CONFIG_LOG_DEFAULT_LEVEL=0 + +CONFIG_HW_STACK_PROTECTION=n diff --git a/boot/zephyr/sample.yaml b/boot/zephyr/sample.yaml index faef68e59..6c41d2820 100644 --- a/boot/zephyr/sample.yaml +++ b/boot/zephyr/sample.yaml @@ -5,16 +5,16 @@ sample: tests: sample.bootloader.mcuboot: tags: bootloader_mcuboot - platform_whitelist: nrf52840dk_nrf52840 frdm_k64f + platform_allow: nrf52840dk_nrf52840 frdm_k64f sample.bootloader.mcuboot.serial_recovery: extra_args: OVERLAY_CONFIG=serial_recovery.conf - platform_whitelist: nrf52840dk_nrf52840 + platform_allow: nrf52840dk_nrf52840 tags: bootloader_mcuboot sample.bootloader.mcuboot.usb_cdc_acm_recovery: tags: bootloader_mcuboot - platform_whitelist: nrf52840dongle_nrf52840 + platform_allow: nrf52840dongle_nrf52840 sample.bootloader.mcuboot.usb_cdc_acm_recovery_log: extra_args: OVERLAY_CONFIG=./usb_cdc_acm_log_recovery.conf DTC_OVERLAY_FILE=./boards/nrf52840_big.overlay - platform_whitelist: nrf52840dk_nrf52840 + platform_allow: nrf52840dk_nrf52840 tags: bootloader_mcuboot diff --git a/boot/zephyr/serial_adapter.c b/boot/zephyr/serial_adapter.c index 8787780e3..829752289 100644 --- a/boot/zephyr/serial_adapter.c +++ b/boot/zephyr/serial_adapter.c @@ -41,7 +41,7 @@ struct line_input { char line[CONFIG_BOOT_MAX_LINE_INPUT_LEN]; }; -static struct device *uart_dev; +static struct device const *uart_dev; static struct line_input line_bufs[2]; static sys_slist_t avail_queue; @@ -115,7 +115,7 @@ boot_console_init(void) } static void -boot_uart_fifo_callback(struct device *dev, void *user_data) +boot_uart_fifo_callback(const struct device *dev, void *user_data) { static struct line_input *cmd; uint8_t byte; diff --git a/scripts/setup.py b/scripts/setup.py index 058d0cb4e..bf35d9ffe 100644 --- a/scripts/setup.py +++ b/scripts/setup.py @@ -5,7 +5,7 @@ name="imgtool", version=imgtool_version, author="The MCUboot committers", - author_email="dev-mcuboot@lists.runtime.co", + author_email="mcuboot@groups.io", description=("MCUboot's image signing and key management"), license="Apache Software License", url="http://github.com/JuulLabs-OSS/mcuboot",