Lines Matching +full:- +full:bootloader
4 * SPDX-License-Identifier: Apache-2.0
15 #include <zephyr/linker/linker-defs.h>
27 * On Cortex-M0 platforms, the Vector Base address cannot be changed.
29 * A Zephyr image that is run from the mcuboot bootloader must relocate the
31 * bootloader.
33 * A zephyr image that is a bootloader does not have to relocate the
36 * Alternatively both switches SW_VECTOR_RELAY (for Bootloader image) and
37 * SW_VECTOR_RELAY_CLIENT (for image loaded by a bootloader) can be used to
43 * @note Zephyr applications that will not be loaded by a bootloader should
44 * pretend to be a bootloader if the SRAM vector table is not needed.
53 size_t vector_size = (size_t)_vector_end - (size_t)_vector_start; in relocate_vector_table()