linker: update files with <zephyr/...> include prefix

Linker files were not migrated with the new <zephyr/...> prefix.  Note
that the conversion has been scripted, refer to #45388 for more details.

Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
This commit is contained in:
Gerard Marull-Paretas 2022-05-09 13:20:58 +02:00 committed by Anas Nashif
commit d342e4c4c1
164 changed files with 482 additions and 459 deletions

View file

@ -42,4 +42,4 @@ ITERABLE_SECTION_RAM(net_if_dev, 4) \
ITERABLE_SECTION_RAM(net_l2, 4) \
ITERABLE_SECTION_RAM(eth_bridge, 4)
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -5,12 +5,12 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <devicetree.h>
#include <zephyr/devicetree.h>
#include <offsets.h>
#include <linker/linker-defs.h>
#include <linker/linker-tool.h>
#include <sys/util.h>
#include <sys/mem_manage.h>
#include <zephyr/linker/linker-defs.h>
#include <zephyr/linker/linker-tool.h>
#include <zephyr/sys/util.h>
#include <zephyr/sys/mem_manage.h>
/* Bounds of physical RAM from DTS */
@ -241,7 +241,7 @@ ENTRY(epoint)
SECTIONS
{
#include <linker/rel-sections.ld>
#include <zephyr/linker/rel-sections.ld>
/DISCARD/ :
{
@ -389,7 +389,7 @@ SECTIONS
ZEPHYR_KERNEL_FUNCS_IN_SECT
#include <linker/kobject-text.ld>
#include <zephyr/linker/kobject-text.ld>
MMU_PAGE_ALIGN_PERM
@ -400,12 +400,12 @@ SECTIONS
lnkr_pinned_rodata_start = .;
#include <linker/common-rom.ld>
#include <linker/thread-local-storage.ld>
#include <zephyr/linker/common-rom.ld>
#include <zephyr/linker/thread-local-storage.ld>
SECTION_PROLOGUE(pinned.rodata,,)
{
#include <arch/x86/ia32/scripts/static_intr.ld>
#include <zephyr/arch/x86/ia32/scripts/static_intr.ld>
LIB_KERNEL_IN_SECT(rodata)
LIB_ARCH_X86_IN_SECT(rodata)
@ -429,7 +429,7 @@ SECTIONS
#include <snippets-rodata.ld>
#include <linker/kobject-rom.ld>
#include <zephyr/linker/kobject-rom.ld>
MMU_PAGE_ALIGN_PERM
@ -444,8 +444,8 @@ SECTIONS
. = ALIGN(4);
#include <arch/x86/ia32/scripts/shared_kernel_pages.ld>
#include <arch/x86/ia32/scripts/dynamic_intr.ld>
#include <zephyr/arch/x86/ia32/scripts/shared_kernel_pages.ld>
#include <zephyr/arch/x86/ia32/scripts/dynamic_intr.ld>
LIB_KERNEL_IN_SECT(data)
LIB_ARCH_X86_IN_SECT(data)
@ -460,9 +460,9 @@ SECTIONS
} GROUP_DATA_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
#include <linker/common-ram.ld>
#include <arch/x86/pagetables.ld>
#include <linker/kobject-data.ld>
#include <zephyr/linker/common-ram.ld>
#include <zephyr/arch/x86/pagetables.ld>
#include <zephyr/linker/kobject-data.ld>
lnkr_pinned_data_end = .;
@ -593,7 +593,7 @@ SECTIONS
*(.eini)
#ifndef CONFIG_LINKER_USE_PINNED_SECTION
#include <linker/kobject-text.ld>
#include <zephyr/linker/kobject-text.ld>
#endif
MMU_PAGE_ALIGN_PERM
@ -604,8 +604,8 @@ SECTIONS
__rodata_region_start = .;
#ifndef CONFIG_LINKER_USE_PINNED_SECTION
#include <linker/common-rom.ld>
#include <linker/thread-local-storage.ld>
#include <zephyr/linker/common-rom.ld>
#include <zephyr/linker/thread-local-storage.ld>
#endif
SECTION_PROLOGUE(_RODATA_SECTION_NAME,,)
@ -616,7 +616,7 @@ SECTIONS
#ifndef CONFIG_DYNAMIC_INTERRUPTS
#ifndef CONFIG_LINKER_USE_PINNED_SECTION
#include <arch/x86/ia32/scripts/static_intr.ld>
#include <zephyr/arch/x86/ia32/scripts/static_intr.ld>
#endif /* !CONFIG_LINKER_USE_PINNED_SECTION */
#endif /* CONFIG_DYNAMIC_INTERRUPTS */
@ -626,11 +626,11 @@ SECTIONS
*/
#include <snippets-rodata.ld>
#include <linker/kobject-rom.ld>
#include <zephyr/linker/kobject-rom.ld>
#endif
} GROUP_ROM_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
#include <linker/cplusplus-rom.ld>
#include <zephyr/linker/cplusplus-rom.ld>
MMU_PAGE_ALIGN_PERM
/* ROM ends here, position counter will now be in RAM areas */
@ -693,7 +693,7 @@ SECTIONS
__bss_num_words = (__bss_end - __bss_start) >> 2;
#include <linker/common-noinit.ld>
#include <zephyr/linker/common-noinit.ld>
MMU_PAGE_ALIGN_PERM
@ -708,7 +708,7 @@ SECTIONS
#ifdef CONFIG_DYNAMIC_INTERRUPTS
#ifndef CONFIG_LINKER_USE_PINNED_SECTION
#include <arch/x86/ia32/scripts/dynamic_intr.ld>
#include <zephyr/arch/x86/ia32/scripts/dynamic_intr.ld>
#endif /* !CONFIG_LINKER_USE_PINNED_SECTION */
#endif /* CONFIG_DYNAMIC_INTERRUPTS */
@ -718,7 +718,7 @@ SECTIONS
#include <snippets-rwdata.ld>
#ifndef CONFIG_LINKER_USE_PINNED_SECTION
#include <arch/x86/ia32/scripts/shared_kernel_pages.ld>
#include <zephyr/arch/x86/ia32/scripts/shared_kernel_pages.ld>
#endif /* !CONFIG_LINKER_USE_PINNED_SECTION */
. = ALIGN(4);
@ -726,14 +726,14 @@ SECTIONS
__data_rom_start = LOADADDR(_DATA_SECTION_NAME);
#include <linker/cplusplus-ram.ld>
#include <zephyr/linker/cplusplus-ram.ld>
#ifndef CONFIG_LINKER_USE_PINNED_SECTION
#include <linker/common-ram.ld>
#include <arch/x86/pagetables.ld>
#include <zephyr/linker/common-ram.ld>
#include <zephyr/arch/x86/pagetables.ld>
/* Must be last in RAM */
#include <linker/kobject-data.ld>
#include <zephyr/linker/kobject-data.ld>
#endif /* !CONFIG_LINKER_USE_PINNED_SECTION */
MMU_PAGE_ALIGN
@ -778,7 +778,7 @@ SECTIONS
*/
#include <snippets-sections.ld>
#include <linker/debug-sections.ld>
#include <zephyr/linker/debug-sections.ld>
/DISCARD/ : { *(.note.GNU-stack) }

View file

@ -9,9 +9,9 @@
* GNU and MWDT toolchains.
*/
#include <linker/sections.h>
#include <linker/linker-defs.h>
#include <linker/linker-tool.h>
#include <zephyr/linker/sections.h>
#include <zephyr/linker/linker-defs.h>
#include <zephyr/linker/linker-tool.h>
/* physical address of RAM */
#ifdef CONFIG_HARVARD
@ -69,7 +69,7 @@ MEMORY {
SECTIONS {
#include <linker/rel-sections.ld>
#include <zephyr/linker/rel-sections.ld>
GROUP_START(ROMABLE_REGION)
@ -85,14 +85,14 @@ SECTIONS {
*(.gnu.linkonce.t.*)
. = ALIGN(4);
#include <linker/kobject-text.ld>
#include <zephyr/linker/kobject-text.ld>
} GROUP_LINK_IN(ROMABLE_REGION)
__text_region_end = .;
__rodata_region_start = .;
#include <linker/common-rom.ld>
#include <linker/thread-local-storage.ld>
#include <zephyr/linker/common-rom.ld>
#include <zephyr/linker/thread-local-storage.ld>
SECTION_PROLOGUE(_RODATA_SECTION_NAME,,) {
*(".rodata")
@ -104,7 +104,7 @@ SECTIONS {
*/
#include <snippets-rodata.ld>
#include <linker/kobject-rom.ld>
#include <zephyr/linker/kobject-rom.ld>
#if defined(CONFIG_CPLUSPLUS) && !defined(CONFIG_CPP_STATIC_INIT_GNU) && defined(__MWDT_LINKER_CMD__)
. = ALIGN(4);
@ -117,7 +117,7 @@ SECTIONS {
#ifdef __MWDT_LINKER_CMD__
/* TODO: add mwdt specific ROM C++ sections */
#else
#include <linker/cplusplus-rom.ld>
#include <zephyr/linker/cplusplus-rom.ld>
#endif /* __MWDT_LINKER_CMD__ */
__rodata_region_end = .;
@ -169,7 +169,7 @@ SECTIONS {
__bss_end = ALIGN(4);
} GROUP_DATA_LINK_IN(RAMABLE_REGION, RAMABLE_REGION)
#include <linker/common-noinit.ld>
#include <zephyr/linker/common-noinit.ld>
GROUP_START(DATA_REGION)
@ -196,13 +196,13 @@ SECTIONS {
__data_region_load_start = LOADADDR(_DATA_SECTION_NAME);
#include <linker/common-ram.ld>
#include <linker/kobject-data.ld>
#include <zephyr/linker/common-ram.ld>
#include <zephyr/linker/kobject-data.ld>
#ifdef __MWDT_LINKER_CMD__
/* TODO: add mwdt specific RAM C++ sections */
#else
#include <linker/cplusplus-ram.ld>
#include <zephyr/linker/cplusplus-ram.ld>
#endif /* __MWDT_LINKER_CMD__ */
/* Located in generated directory. This file is populated by the
@ -237,7 +237,7 @@ SECTIONS {
*/
#include <snippets-sections.ld>
#include <linker/debug-sections.ld>
#include <zephyr/linker/debug-sections.ld>
SECTION_PROLOGUE(.ARC.attributes, 0,) {
KEEP(*(.ARC.attributes))

View file

@ -11,12 +11,12 @@
* Linker script for the Cortex-A and Cortex-R platforms.
*/
#include <linker/sections.h>
#include <zephyr/linker/sections.h>
#include <zephyr/devicetree.h>
#include <linker/devicetree_regions.h>
#include <linker/linker-defs.h>
#include <linker/linker-tool.h>
#include <zephyr/linker/devicetree_regions.h>
#include <zephyr/linker/linker-defs.h>
#include <zephyr/linker/linker-tool.h>
/* physical address of RAM */
#ifdef CONFIG_XIP
@ -89,7 +89,7 @@ ENTRY(CONFIG_KERNEL_ENTRY)
SECTIONS
{
#include <linker/rel-sections.ld>
#include <zephyr/linker/rel-sections.ld>
/*
* .plt and .iplt are here according to 'arm-zephyr-elf-ld --verbose',
@ -138,7 +138,7 @@ SECTIONS
z_mapped_start = .;
#endif
#include <linker/kobject-text.ld>
#include <zephyr/linker/kobject-text.ld>
*(.text)
*(".text.*")
@ -185,9 +185,9 @@ SECTIONS
__rodata_region_start = .;
} GROUP_LINK_IN(ROMABLE_REGION)
#include <linker/common-rom.ld>
#include <linker/thread-local-storage.ld>
#include <linker/cplusplus-rom.ld>
#include <zephyr/linker/common-rom.ld>
#include <zephyr/linker/thread-local-storage.ld>
#include <zephyr/linker/cplusplus-rom.ld>
SECTION_PROLOGUE(_RODATA_SECTION_NAME,,)
{
@ -200,7 +200,7 @@ SECTIONS
*/
#include <snippets-rodata.ld>
#include <linker/kobject-rom.ld>
#include <zephyr/linker/kobject-rom.ld>
/*
* For XIP images, in order to avoid the situation when __data_rom_start
@ -293,7 +293,7 @@ SECTIONS
__bss_end = ALIGN(4);
} GROUP_DATA_LINK_IN(RAMABLE_REGION, RAMABLE_REGION)
#include <linker/common-noinit.ld>
#include <zephyr/linker/common-noinit.ld>
SECTION_DATA_PROLOGUE(_DATA_SECTION_NAME,,)
{
@ -319,9 +319,9 @@ SECTIONS
__data_region_load_start = LOADADDR(_DATA_SECTION_NAME);
#include <linker/common-ram.ld>
#include <linker/kobject-data.ld>
#include <linker/cplusplus-ram.ld>
#include <zephyr/linker/common-ram.ld>
#include <zephyr/linker/kobject-data.ld>
#include <zephyr/linker/cplusplus-ram.ld>
/* Located in generated directory. This file is populated by the
* zephyr_linker_sources() Cmake function.
@ -374,7 +374,7 @@ GROUP_END(OCM)
*/
#include <snippets-sections.ld>
#include <linker/debug-sections.ld>
#include <zephyr/linker/debug-sections.ld>
SECTION_PROLOGUE(.ARM.attributes, 0,)
{

View file

@ -11,12 +11,12 @@
* Linker script for the Cortex-M platforms.
*/
#include <linker/sections.h>
#include <zephyr/linker/sections.h>
#include <zephyr/devicetree.h>
#include <linker/devicetree_regions.h>
#include <linker/linker-defs.h>
#include <linker/linker-tool.h>
#include <zephyr/linker/devicetree_regions.h>
#include <zephyr/linker/linker-defs.h>
#include <zephyr/linker/linker-tool.h>
/* physical address of RAM */
#ifdef CONFIG_XIP
@ -90,7 +90,7 @@ ENTRY(CONFIG_KERNEL_ENTRY)
SECTIONS
{
#include <linker/rel-sections.ld>
#include <zephyr/linker/rel-sections.ld>
/*
* .plt and .iplt are here according to 'arm-zephyr-elf-ld --verbose',
@ -131,7 +131,7 @@ SECTIONS
{
__text_region_start = .;
#include <linker/kobject-text.ld>
#include <zephyr/linker/kobject-text.ld>
*(.text)
*(".text.*")
@ -175,8 +175,8 @@ SECTIONS
__rodata_region_start = .;
#include <linker/common-rom.ld>
#include <linker/thread-local-storage.ld>
#include <zephyr/linker/common-rom.ld>
#include <zephyr/linker/thread-local-storage.ld>
SECTION_PROLOGUE(_RODATA_SECTION_NAME,,)
{
@ -189,7 +189,7 @@ SECTIONS
*/
#include <snippets-rodata.ld>
#include <linker/kobject-rom.ld>
#include <zephyr/linker/kobject-rom.ld>
/*
* For XIP images, in order to avoid the situation when __data_rom_start
@ -204,7 +204,7 @@ SECTIONS
. = ALIGN(4);
} GROUP_LINK_IN(ROMABLE_REGION)
#include <linker/cplusplus-rom.ld>
#include <zephyr/linker/cplusplus-rom.ld>
__rodata_region_end = .;
MPU_ALIGN(__rodata_region_end -__rom_region_start);
@ -272,7 +272,7 @@ SECTIONS
__bss_end = ALIGN(4);
} GROUP_DATA_LINK_IN(RAMABLE_REGION, RAMABLE_REGION)
#include <linker/common-noinit.ld>
#include <zephyr/linker/common-noinit.ld>
#endif /* CONFIG_USERSPACE */
@ -302,10 +302,10 @@ SECTIONS
__data_region_load_start = LOADADDR(_DATA_SECTION_NAME);
#include <linker/common-ram.ld>
#include <linker/kobject-data.ld>
#include <zephyr/linker/common-ram.ld>
#include <zephyr/linker/kobject-data.ld>
#include <linker/cplusplus-ram.ld>
#include <zephyr/linker/cplusplus-ram.ld>
/* Located in generated directory. This file is populated by the
* zephyr_linker_sources() Cmake function.
@ -426,7 +426,7 @@ GROUP_END(DTCM)
*/
#include <snippets-sections.ld>
#include <linker/debug-sections.ld>
#include <zephyr/linker/debug-sections.ld>
/DISCARD/ : { *(.note.GNU-stack) }

View file

@ -4,4 +4,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_a_r/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_a_r/scripts/linker.ld>

View file

@ -11,11 +11,11 @@
* Linker script for the Cortex-A platforms.
*/
#include <linker/sections.h>
#include <zephyr/linker/sections.h>
#include <zephyr/devicetree.h>
#include <linker/linker-defs.h>
#include <linker/linker-tool.h>
#include <zephyr/linker/linker-defs.h>
#include <zephyr/linker/linker-tool.h>
/* physical address of RAM */
#ifdef CONFIG_XIP
@ -70,7 +70,7 @@ ENTRY(CONFIG_KERNEL_ENTRY)
SECTIONS
{
#include <linker/rel-sections.ld>
#include <zephyr/linker/rel-sections.ld>
/*
* .plt and .iplt are here according to 'arm-zephyr-elf-ld --verbose',
@ -120,7 +120,7 @@ SECTIONS
*/
*(.glue_7t) *(.glue_7) *(.vfp11_veneer) *(.v4_bx)
#include <linker/kobject-text.ld>
#include <zephyr/linker/kobject-text.ld>
MMU_ALIGN;
} GROUP_ROM_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
@ -155,8 +155,8 @@ SECTIONS
__rodata_region_start = .;
#include <linker/common-rom.ld>
#include <linker/thread-local-storage.ld>
#include <zephyr/linker/common-rom.ld>
#include <zephyr/linker/thread-local-storage.ld>
SECTION_PROLOGUE(_RODATA_SECTION_NAME,,)
{
@ -171,11 +171,11 @@ SECTIONS
*/
#include <snippets-rodata.ld>
#include <linker/kobject-rom.ld>
#include <zephyr/linker/kobject-rom.ld>
} GROUP_ROM_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
#include <linker/cplusplus-rom.ld>
#include <zephyr/linker/cplusplus-rom.ld>
MMU_ALIGN;
__rodata_region_end = .;
@ -255,7 +255,7 @@ SECTIONS
__bss_end = ALIGN(4);
} GROUP_NOLOAD_LINK_IN(RAMABLE_REGION, RAMABLE_REGION)
#include <linker/common-noinit.ld>
#include <zephyr/linker/common-noinit.ld>
SECTION_DATA_PROLOGUE(_DATA_SECTION_NAME,,)
{
@ -278,9 +278,9 @@ SECTIONS
__data_region_load_start = LOADADDR(_DATA_SECTION_NAME);
#include <linker/common-ram.ld>
#include <linker/kobject-data.ld>
#include <linker/cplusplus-ram.ld>
#include <zephyr/linker/common-ram.ld>
#include <zephyr/linker/kobject-data.ld>
#include <zephyr/linker/cplusplus-ram.ld>
/* Located in generated directory. This file is populated by the
* zephyr_linker_sources() Cmake function.
@ -307,7 +307,7 @@ SECTIONS
*/
#include <snippets-sections.ld>
#include <linker/debug-sections.ld>
#include <zephyr/linker/debug-sections.ld>
SECTION_PROLOGUE(.ARM.attributes, 0,)
{

View file

@ -11,9 +11,9 @@
* @brief Linker command/script file for the MIPS platform
*/
#include <linker/sections.h>
#include <linker/linker-defs.h>
#include <linker/linker-tool.h>
#include <zephyr/linker/sections.h>
#include <zephyr/linker/linker-defs.h>
#include <zephyr/linker/linker-tool.h>
#define ROMABLE_REGION RAM
#define RAMABLE_REGION RAM
@ -44,7 +44,7 @@ PROVIDE (__stack = CONFIG_SRAM_BASE_ADDRESS + (CONFIG_SRAM_SIZE - 1) * 1024);
SECTIONS
{
#include <linker/rel-sections.ld>
#include <zephyr/linker/rel-sections.ld>
SECTION_PROLOGUE(_VECTOR_SECTION_NAME,,)
{
@ -74,8 +74,8 @@ SECTIONS
} GROUP_LINK_IN(REGION_TEXT)
__rodata_region_start = .;
#include <linker/common-rom.ld>
#include <linker/thread-local-storage.ld>
#include <zephyr/linker/common-rom.ld>
#include <zephyr/linker/thread-local-storage.ld>
SECTION_PROLOGUE(_RODATA_SECTION_NAME,,)
{
@ -92,7 +92,7 @@ SECTIONS
} GROUP_LINK_IN(REGION_RODATA)
#include <linker/cplusplus-rom.ld>
#include <zephyr/linker/cplusplus-rom.ld>
__rodata_region_end = .;
SECTION_PROLOGUE(.plt,,)
@ -126,7 +126,7 @@ SECTIONS
} GROUP_DATA_LINK_IN(REGION_DATA_VMA, REGION_DATA_LMA)
#include <linker/common-ram.ld>
#include <zephyr/linker/common-ram.ld>
/* Located in generated directory. This file is populated by the
* zephyr_linker_sources() Cmake function.
@ -179,7 +179,7 @@ SECTIONS
} GROUP_LINK_IN(REGION_BSS)
#include <linker/cplusplus-ram.ld>
#include <zephyr/linker/cplusplus-ram.ld>
_image_ram_end = .;
_end = .; /* end of image */
@ -189,7 +189,7 @@ SECTIONS
*/
#include <snippets-sections.ld>
#include <linker/debug-sections.ld>
#include <zephyr/linker/debug-sections.ld>
.mdebug.abi32 : {
KEEP(*(.mdebug.abi32))

View file

@ -11,10 +11,10 @@
* Linker script for the Nios II platform
*/
#include <linker/sections.h>
#include <zephyr/linker/sections.h>
#include <linker/linker-defs.h>
#include <linker/linker-tool.h>
#include <zephyr/linker/linker-defs.h>
#include <zephyr/linker/linker-tool.h>
/* These sections are specific to this CPU */
#define _EXCEPTION_SECTION_NAME exceptions
@ -79,7 +79,7 @@ ENTRY(CONFIG_KERNEL_ENTRY)
SECTIONS
{
#include <linker/rel-sections.ld>
#include <zephyr/linker/rel-sections.ld>
/*
* .plt and .iplt are here according to
@ -134,7 +134,7 @@ SECTIONS
__rodata_region_start = .;
#include <linker/common-rom.ld>
#include <zephyr/linker/common-rom.ld>
SECTION_PROLOGUE(_RODATA_SECTION_NAME,,)
{
@ -152,7 +152,7 @@ SECTIONS
. = ALIGN(4);
} GROUP_LINK_IN(ROMABLE_REGION)
#include <linker/cplusplus-rom.ld>
#include <zephyr/linker/cplusplus-rom.ld>
__rodata_region_end = .;
__rodata_region_size = __rodata_region_end - __rodata_region_start;
@ -186,7 +186,7 @@ SECTIONS
_image_ram_start = .;
#endif
#include <linker/common-ram.ld>
#include <zephyr/linker/common-ram.ld>
SECTION_DATA_PROLOGUE(_DATA_SECTION_NAME,,)
{
@ -229,7 +229,7 @@ SECTIONS
__data_size = __data_end - __data_start;
__data_load_start = LOADADDR(_DATA_SECTION_NAME);
#include <linker/cplusplus-ram.ld>
#include <zephyr/linker/cplusplus-ram.ld>
/* Located in generated directory. This file is populated by the
* zephyr_linker_sources() Cmake function.
@ -258,7 +258,7 @@ SECTIONS
__bss_end = ALIGN(4);
} GROUP_DATA_LINK_IN(RAMABLE_REGION, RAMABLE_REGION)
#include <linker/common-noinit.ld>
#include <zephyr/linker/common-noinit.ld>
/* Define linker symbols */
_image_ram_end = .;
@ -271,6 +271,6 @@ SECTIONS
*/
#include <snippets-sections.ld>
#include <linker/debug-sections.ld>
#include <zephyr/linker/debug-sections.ld>
}

View file

@ -12,10 +12,10 @@
* Linker script for the POSIX (native) platform
*/
#include <linker/sections.h>
#include <zephyr/linker/sections.h>
#include <linker/linker-defs.h>
#include <linker/linker-tool.h>
#include <zephyr/linker/linker-defs.h>
#include <zephyr/linker/linker-tool.h>
SECTIONS
@ -29,7 +29,7 @@ SECTION_PROLOGUE(rom_start,,)
#include <snippets-rom-start.ld>
} GROUP_LINK_IN(ROMABLE_REGION)
#include <linker/common-rom.ld>
#include <zephyr/linker/common-rom.ld>
SECTION_PROLOGUE(_RODATA_SECTION_NAME,,)
{
@ -47,14 +47,14 @@ SECTION_DATA_PROLOGUE(_DATA_SECTION_NAME,,)
#include <snippets-rwdata.ld>
} GROUP_DATA_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
#include <linker/common-ram.ld>
#include <zephyr/linker/common-ram.ld>
/* Located in generated directory. This file is populated by the
* zephyr_linker_sources() Cmake function.
*/
#include <snippets-ram-sections.ld>
#include <arch/posix/native_tasks.ld>
#include <zephyr/arch/posix/native_tasks.ld>
/* Located in generated directory. This file is populated by the
* zephyr_linker_sources() Cmake function.

View file

@ -14,11 +14,11 @@
#include <soc.h>
#include <zephyr/devicetree.h>
#include <linker/sections.h>
#include <linker/devicetree_regions.h>
#include <zephyr/linker/sections.h>
#include <zephyr/linker/devicetree_regions.h>
#include <linker/linker-defs.h>
#include <linker/linker-tool.h>
#include <zephyr/linker/linker-defs.h>
#include <zephyr/linker/linker-tool.h>
#ifdef CONFIG_XIP
#define ROMABLE_REGION ROM
@ -91,7 +91,7 @@ ENTRY(CONFIG_KERNEL_ENTRY)
SECTIONS
{
#include <linker/rel-sections.ld>
#include <zephyr/linker/rel-sections.ld>
/*
* The .plt and .iplt are here according to
@ -147,7 +147,7 @@ SECTIONS
*(.text)
*(".text.*")
*(.gnu.linkonce.t.*)
#include <linker/kobject-text.ld>
#include <zephyr/linker/kobject-text.ld>
#ifdef CONFIG_SOC_FLASH_RAMCODE_SECTION
. = ALIGN(0x1000);
_ram_code_start = .;
@ -161,8 +161,8 @@ SECTIONS
__text_region_end = .;
__rodata_region_start = .;
#include <linker/common-rom.ld>
#include <linker/thread-local-storage.ld>
#include <zephyr/linker/common-rom.ld>
#include <zephyr/linker/thread-local-storage.ld>
SECTION_PROLOGUE(_RODATA_SECTION_NAME,,)
{
@ -178,11 +178,11 @@ SECTIONS
* zephyr_linker_sources() Cmake function.
*/
#include <snippets-rodata.ld>
#include <linker/kobject-rom.ld>
#include <zephyr/linker/kobject-rom.ld>
. = ALIGN(4);
} GROUP_LINK_IN(ROMABLE_REGION)
#include <linker/cplusplus-rom.ld>
#include <zephyr/linker/cplusplus-rom.ld>
__rodata_region_end = .;
/* For non-XIP system, __rom_region_end symbol should be set to
@ -253,7 +253,7 @@ SECTIONS
__bss_end = ALIGN(4);
} GROUP_DATA_LINK_IN(RAMABLE_REGION, RAMABLE_REGION)
#include <linker/common-noinit.ld>
#include <zephyr/linker/common-noinit.ld>
SECTION_DATA_PROLOGUE(_DATA_SECTION_NAME,,)
{
@ -295,9 +295,9 @@ SECTIONS
__data_region_load_start = LOADADDR(_DATA_SECTION_NAME);
#include <linker/common-ram.ld>
#include <linker/kobject-data.ld>
#include <linker/cplusplus-ram.ld>
#include <zephyr/linker/common-ram.ld>
#include <zephyr/linker/kobject-data.ld>
#include <zephyr/linker/cplusplus-ram.ld>
/* Located in generated directory. This file is populated by the
* zephyr_linker_sources() Cmake function.
@ -373,7 +373,7 @@ GROUP_END(DTCM)
GROUP_END(RAMABLE_REGION)
#include <linker/debug-sections.ld>
#include <zephyr/linker/debug-sections.ld>
/DISCARD/ : { *(.note.GNU-stack) }

View file

@ -11,17 +11,17 @@
#include <soc.h>
#include <linker/sections.h>
#include <zephyr/linker/sections.h>
#include <linker/linker-defs.h>
#include <linker/linker-tool.h>
#include <zephyr/linker/linker-defs.h>
#include <zephyr/linker/linker-tool.h>
ENTRY(CONFIG_KERNEL_ENTRY)
SECTIONS
{
#include <linker/rel-sections.ld>
#include <zephyr/linker/rel-sections.ld>
__rom_region_start = .;
@ -41,8 +41,8 @@ SECTIONS
__text_region_end = .;
__rodata_region_start = .;
#include <linker/common-rom.ld>
#include <linker/thread-local-storage.ld>
#include <zephyr/linker/common-rom.ld>
#include <zephyr/linker/thread-local-storage.ld>
SECTION_PROLOGUE(_RODATA_SECTION_NAME,,)
{
@ -59,7 +59,7 @@ SECTIONS
} GROUP_LINK_IN(REGION_RODATA)
#include <linker/cplusplus-rom.ld>
#include <zephyr/linker/cplusplus-rom.ld>
__rodata_region_end = .;
__rodata_region_size = __rodata_region_end - __rodata_region_start;
@ -102,7 +102,7 @@ SECTIONS
__data_size = __data_end - __data_start;
__data_load_start = LOADADDR(_DATA_SECTION_NAME);
#include <linker/common-ram.ld>
#include <zephyr/linker/common-ram.ld>
/* Located in generated directory. This file is populated by the
* zephyr_linker_sources() Cmake function.
@ -152,7 +152,7 @@ SECTIONS
} GROUP_LINK_IN(REGION_BSS)
#include <linker/cplusplus-ram.ld>
#include <zephyr/linker/cplusplus-ram.ld>
_image_ram_end = .;
_end = .; /* end of image */
@ -162,7 +162,7 @@ SECTIONS
*/
#include <snippets-sections.ld>
#include <linker/debug-sections.ld>
#include <zephyr/linker/debug-sections.ld>
/DISCARD/ : { *(.note.GNU-stack) }
/DISCARD/ : { *(.gnu_debuglink) }

View file

@ -37,12 +37,12 @@
* order when programming the MMU.
*/
#include <linker/linker-defs.h>
#include <zephyr/linker/linker-defs.h>
#include <offsets.h>
#include <sys/util.h>
#include <sys/mem_manage.h>
#include <zephyr/sys/util.h>
#include <zephyr/sys/mem_manage.h>
#include <linker/linker-tool.h>
#include <zephyr/linker/linker-tool.h>
#if defined(CONFIG_XIP) || defined(Z_VM_KERNEL)
#define ROMABLE_REGION ROM
@ -75,7 +75,7 @@ ENTRY(epoint)
SECTIONS
{
#include <linker/rel-sections.ld>
#include <zephyr/linker/rel-sections.ld>
/DISCARD/ :
{
@ -195,7 +195,7 @@ SECTIONS
*(.gnu.linkonce.t.exc_*)
#include <linker/kobject-text.ld>
#include <zephyr/linker/kobject-text.ld>
MMU_PAGE_ALIGN_PERM
@ -206,19 +206,19 @@ SECTIONS
lnkr_pinned_rodata_start = .;
#include <linker/common-rom.ld>
#include <linker/thread-local-storage.ld>
#include <zephyr/linker/common-rom.ld>
#include <zephyr/linker/thread-local-storage.ld>
SECTION_PROLOGUE(pinned.rodata,,)
{
#include <arch/x86/ia32/scripts/static_intr.ld>
#include <zephyr/arch/x86/ia32/scripts/static_intr.ld>
*(.pinned_rodata)
*(.pinned_rodata.*)
#include <snippets-rodata.ld>
#include <linker/kobject-rom.ld>
#include <zephyr/linker/kobject-rom.ld>
MMU_PAGE_ALIGN_PERM
@ -233,17 +233,17 @@ SECTIONS
. = ALIGN(4);
#include <arch/x86/ia32/scripts/shared_kernel_pages.ld>
#include <arch/x86/ia32/scripts/dynamic_intr.ld>
#include <zephyr/arch/x86/ia32/scripts/shared_kernel_pages.ld>
#include <zephyr/arch/x86/ia32/scripts/dynamic_intr.ld>
*(.pinned_data)
*(.pinned_data.*)
} GROUP_DATA_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
#include <linker/common-ram.ld>
#include <arch/x86/pagetables.ld>
#include <linker/kobject-data.ld>
#include <zephyr/linker/common-ram.ld>
#include <zephyr/arch/x86/pagetables.ld>
#include <zephyr/linker/kobject-data.ld>
lnkr_pinned_data_end = .;
@ -321,7 +321,7 @@ SECTIONS
*(.eini)
#ifndef CONFIG_LINKER_USE_PINNED_SECTION
#include <linker/kobject-text.ld>
#include <zephyr/linker/kobject-text.ld>
#endif
MMU_PAGE_ALIGN_PERM
@ -332,8 +332,8 @@ SECTIONS
__rodata_region_start = .;
#ifndef CONFIG_LINKER_USE_PINNED_SECTION
#include <linker/common-rom.ld>
#include <linker/thread-local-storage.ld>
#include <zephyr/linker/common-rom.ld>
#include <zephyr/linker/thread-local-storage.ld>
#endif
SECTION_PROLOGUE(_RODATA_SECTION_NAME,,)
@ -344,7 +344,7 @@ SECTIONS
#ifndef CONFIG_DYNAMIC_INTERRUPTS
#ifndef CONFIG_LINKER_USE_PINNED_SECTION
#include <arch/x86/ia32/scripts/static_intr.ld>
#include <zephyr/arch/x86/ia32/scripts/static_intr.ld>
#endif /* !CONFIG_LINKER_USE_PINNED_SECTION */
#endif /* CONFIG_DYNAMIC_INTERRUPTS */
@ -354,11 +354,11 @@ SECTIONS
*/
#include <snippets-rodata.ld>
#include <linker/kobject-rom.ld>
#include <zephyr/linker/kobject-rom.ld>
#endif
} GROUP_ROM_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
#include <linker/cplusplus-rom.ld>
#include <zephyr/linker/cplusplus-rom.ld>
MMU_PAGE_ALIGN_PERM
/* ROM ends here, position counter will now be in RAM areas */
@ -433,7 +433,7 @@ SECTIONS
__bss_num_words = (__bss_end - __bss_start) >> 2;
#include <linker/common-noinit.ld>
#include <zephyr/linker/common-noinit.ld>
MMU_PAGE_ALIGN_PERM
@ -450,7 +450,7 @@ SECTIONS
#ifdef CONFIG_DYNAMIC_INTERRUPTS
#ifndef CONFIG_LINKER_USE_PINNED_SECTION
#include <arch/x86/ia32/scripts/dynamic_intr.ld>
#include <zephyr/arch/x86/ia32/scripts/dynamic_intr.ld>
#endif /* !CONFIG_LINKER_USE_PINNED_SECTION */
#endif /* CONFIG_DYNAMIC_INTERRUPTS */
@ -460,7 +460,7 @@ SECTIONS
#include <snippets-rwdata.ld>
#ifndef CONFIG_LINKER_USE_PINNED_SECTION
#include <arch/x86/ia32/scripts/shared_kernel_pages.ld>
#include <zephyr/arch/x86/ia32/scripts/shared_kernel_pages.ld>
#endif /* !CONFIG_LINKER_USE_PINNED_SECTION */
. = ALIGN(4);
@ -472,14 +472,14 @@ SECTIONS
__data_region_load_start = LOADADDR(_DATA_SECTION_NAME);
#include <linker/cplusplus-ram.ld>
#include <zephyr/linker/cplusplus-ram.ld>
#ifndef CONFIG_LINKER_USE_PINNED_SECTION
#include <linker/common-ram.ld>
#include <arch/x86/pagetables.ld>
#include <zephyr/linker/common-ram.ld>
#include <zephyr/arch/x86/pagetables.ld>
/* Must be last in RAM */
#include <linker/kobject-data.ld>
#include <zephyr/linker/kobject-data.ld>
#endif /* !CONFIG_LINKER_USE_PINNED_SECTION */
/* Located in generated directory. This file is populated by the
@ -529,7 +529,7 @@ SECTIONS
*/
#include <snippets-sections.ld>
#include <linker/debug-sections.ld>
#include <zephyr/linker/debug-sections.ld>
/DISCARD/ : { *(.note.GNU-stack) }

View file

@ -3,8 +3,8 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <linker/linker-defs.h>
#include <linker/linker-tool.h>
#include <zephyr/linker/linker-defs.h>
#include <zephyr/linker/linker-tool.h>
#define ROMABLE_REGION RAM
#define RAMABLE_REGION RAM
@ -95,7 +95,7 @@ SECTIONS
*(.text)
*(.text.*)
#include <linker/kobject-text.ld>
#include <zephyr/linker/kobject-text.ld>
MMU_PAGE_ALIGN_PERM
} GROUP_ROM_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
@ -104,8 +104,8 @@ SECTIONS
__text_region_size = __text_region_end - __text_region_start;
__rodata_region_start = .;
#include <linker/common-rom.ld>
#include <linker/thread-local-storage.ld>
#include <zephyr/linker/common-rom.ld>
#include <zephyr/linker/thread-local-storage.ld>
SECTION_PROLOGUE(_RODATA_SECTION_NAME,,)
{
@ -123,10 +123,10 @@ SECTIONS
_mmu_region_list_end = .;
#endif /* CONFIG_X86_MMU */
#include <linker/kobject-rom.ld>
#include <zephyr/linker/kobject-rom.ld>
} GROUP_ROM_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
#include <linker/cplusplus-rom.ld>
#include <zephyr/linker/cplusplus-rom.ld>
MMU_PAGE_ALIGN_PERM
__rodata_region_end = .;
@ -169,7 +169,7 @@ SECTIONS
__bss_num_dwords = (__bss_end - __bss_start) >> 2;
#include <linker/common-noinit.ld>
#include <zephyr/linker/common-noinit.ld>
#include <snippets-sections.ld>
@ -181,9 +181,9 @@ SECTIONS
#include <snippets-rwdata.ld>
} GROUP_DATA_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
#include <linker/common-ram.ld>
#include <linker/cplusplus-ram.ld>
#include <arch/x86/pagetables.ld>
#include <zephyr/linker/common-ram.ld>
#include <zephyr/linker/cplusplus-ram.ld>
#include <zephyr/arch/x86/pagetables.ld>
/* Located in generated directory. This file is populated by the
* zephyr_linker_sources() Cmake function.
@ -191,7 +191,7 @@ SECTIONS
#include <snippets-data-sections.ld>
/* Must be last in RAM */
#include <linker/kobject-data.ld>
#include <zephyr/linker/kobject-data.ld>
MMU_PAGE_ALIGN
_image_ram_end = .;
z_mapped_end = .;
@ -203,7 +203,7 @@ SECTIONS
z_mapped_size = z_mapped_end - z_mapped_start;
#include <linker/debug-sections.ld>
#include <zephyr/linker/debug-sections.ld>
/DISCARD/ :
{

View file

@ -28,7 +28,7 @@
#define ARCH_X86_MEMORY_LD
#include <zephyr/devicetree.h>
#include <sys/mem_manage.h>
#include <zephyr/sys/mem_manage.h>
/* Bounds of physical RAM from DTS */
#define PHYS_RAM_ADDR DT_REG_ADDR(DT_CHOSEN(zephyr_sram))

View file

@ -80,6 +80,6 @@
#if !defined(CONFIG_HAS_DYNAMIC_DEVICE_HANDLES)
SECTION_DATA_PROLOGUE(device_handles,,)
{
#include "linker/device-handles.ld"
#include <zephyr/linker/device-handles.ld>
} GROUP_ROM_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
#endif /* !CONFIG_HAS_DYNAMIC_DEVICE_HANDLES */

View file

@ -11,11 +11,11 @@
* Linker script for the Cortex-M platforms.
*/
#include <linker/sections.h>
#include <devicetree.h>
#include <zephyr/linker/sections.h>
#include <zephyr/devicetree.h>
#include <linker/linker-defs.h>
#include <linker/linker-tool.h>
#include <zephyr/linker/linker-defs.h>
#include <zephyr/linker/linker-tool.h>
/** enable CONFIG_SRAM2 or any other partition in soc Kconfig,
* this is just an example to show relocation of code/data/bss script
@ -36,4 +36,4 @@ MEMORY
#endif
}
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -11,11 +11,11 @@
* Linker script for the Cortex-M platforms.
*/
#include <linker/sections.h>
#include <devicetree.h>
#include <zephyr/linker/sections.h>
#include <zephyr/devicetree.h>
#include <linker/linker-defs.h>
#include <linker/linker-tool.h>
#include <zephyr/linker/linker-defs.h>
#include <zephyr/linker/linker-tool.h>
#if CONFIG_BOARD_NRF5340DK_NRF5340_CPUAPP
@ -44,4 +44,4 @@ MEMORY
#endif /* CONFIG_BOARD_NRF5340DK_NRF5340_CPUAPP */
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -11,7 +11,7 @@
#include <zephyr/zephyr.h>
#include <zephyr/sys/printk.h>
#include <zephyr/device.h>
#include <device.h>
#include <zephyr/drivers/pwm.h>
static const struct pwm_dt_spec pwm_led0 = PWM_DT_SPEC_GET(DT_ALIAS(pwm_led0));

View file

@ -0,0 +1,23 @@
&pinctrl {
pwm0_alt_default: pwm0_alt_default {
group1 {
psels = <NRF_PSEL(PWM_OUT0, 1, 1)>;
};
};
};
&pwm0 {
pinctrl-0 = <&pwm0_alt_default>;
/delete-property/ pinctrl-1;
pinctrl-names = "default";
};
/ {
servo: servo {
compatible = "pwm-servo";
pwms = <&pwm0 0 PWM_MSEC(20) PWM_POLARITY_NORMAL>;
min-pulse = <PWM_USEC(900)>;
max-pulse = <PWM_USEC(2100)>;
};
};

View file

@ -4,11 +4,11 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <linker/sections.h>
#include <devicetree.h>
#include <zephyr/linker/sections.h>
#include <zephyr/devicetree.h>
#include <linker/linker-defs.h>
#include <linker/linker-tool.h>
#include <zephyr/linker/linker-defs.h>
#include <zephyr/linker/linker-tool.h>
MEMORY
{
@ -20,4 +20,4 @@ SECTIONS
LINKER_DT_RESERVED_MEM_SECTIONS()
}
#include <arch/arm64/scripts/linker.ld>
#include <zephyr/arch/arm64/scripts/linker.ld>

View file

@ -8,7 +8,7 @@
* @brief Linker script for the HS Development Kit
*/
#include <devicetree.h>
#include <zephyr/devicetree.h>
/*
* SRAM base address and size
@ -19,4 +19,4 @@
#define SRAM_SIZE DT_REG_SIZE(DT_CHOSEN(zephyr_sram))
#endif
#include <arch/arc/v2/linker.ld>
#include <zephyr/arch/arc/v2/linker.ld>

View file

@ -8,7 +8,7 @@
* @brief Linker script for the Synopsys ARC IoT Development Kit
*/
#include <devicetree.h>
#include <zephyr/devicetree.h>
/*
* SRAM base address and size
@ -42,4 +42,4 @@
#define DCCM_SIZE DT_REG_SIZE(DT_INST(0, arc_dccm))
#endif
#include <arch/arc/v2/linker.ld>
#include <zephyr/arch/arc/v2/linker.ld>

View file

@ -8,7 +8,7 @@
* @brief Linker script for the Synopsys ARC IoT Development Kit
*/
#include <devicetree.h>
#include <zephyr/devicetree.h>
/*
* SRAM base address and size
@ -38,4 +38,4 @@
#define DCCM_SIZE DT_REG_SIZE(DT_INST(0, arc_dccm))
#endif
#include <arch/arc/v2/linker.ld>
#include <zephyr/arch/arc/v2/linker.ld>

View file

@ -8,7 +8,7 @@
* @brief Linker script for the Synopsys EM Starterkit platform.
*/
#include <devicetree.h>
#include <zephyr/devicetree.h>
/*
* DRAM base address and size
@ -39,4 +39,4 @@
#define DCCM_SIZE DT_REG_SIZE(DT_INST(0, arc_dccm))
#endif
#include <arch/arc/v2/linker.ld>
#include <zephyr/arch/arc/v2/linker.ld>

View file

@ -8,7 +8,7 @@
* @brief Linker script for the Synopsys EM Starterkit platform.
*/
#include <devicetree.h>
#include <zephyr/devicetree.h>
/* Instruction Closely Coupled Memory (ICCM) base address and size */
#if DT_NODE_HAS_PROP(DT_INST(0, arc_iccm), reg) && \
@ -33,4 +33,4 @@
#define SRAM_SIZE DT_REG_SIZE(DT_CHOSEN(zephyr_sram))
#endif
#include <arch/arc/v2/linker.ld>
#include <zephyr/arch/arc/v2/linker.ld>

View file

@ -4,7 +4,7 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <devicetree.h>
#include <zephyr/devicetree.h>
/*
* SRAM base address and size
@ -24,4 +24,4 @@
#define FLASH_SIZE DT_REG_SIZE(DT_CHOSEN(zephyr_flash))
#endif
#include <arch/arc/v2/linker.ld>
#include <zephyr/arch/arc/v2/linker.ld>

View file

@ -6,4 +6,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -6,4 +6,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -5,4 +5,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_a_r/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_a_r/scripts/linker.ld>

View file

@ -6,4 +6,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -6,4 +6,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -6,4 +6,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -6,4 +6,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -7,4 +7,4 @@ MEMORY
{
SRAM_NC (wx) : ORIGIN = CONFIG_SRAM_NC_BASE_ADDRESS, LENGTH = CONFIG_SRAM_NC_SIZE * 1024
}
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -6,4 +6,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -6,4 +6,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -6,4 +6,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -6,4 +6,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -5,4 +5,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -5,4 +5,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -5,4 +5,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -5,4 +5,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -5,4 +5,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -5,4 +5,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -5,4 +5,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -5,4 +5,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -5,4 +5,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -4,4 +4,4 @@
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -4,4 +4,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -12,4 +12,4 @@
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -3,4 +3,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -3,4 +3,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -6,4 +6,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -3,4 +3,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -11,4 +11,4 @@
* This is the linker script for both standard images and XIP images.
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -6,4 +6,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -6,4 +6,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -6,4 +6,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -6,4 +6,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -6,4 +6,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -6,4 +6,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -6,4 +6,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -6,4 +6,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -6,4 +6,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -4,4 +4,4 @@
* Copyright (c) 2020 Linumiz
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -4,4 +4,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -4,4 +4,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -5,7 +5,7 @@
*/
#include <devicetree.h>
#include <zephyr/devicetree.h>
MEMORY
{
@ -16,7 +16,7 @@ MEMORY
#endif
}
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>
SECTIONS
{

View file

@ -4,7 +4,7 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>
SECTIONS
{

View file

@ -4,4 +4,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -4,7 +4,7 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <devicetree.h>
#include <zephyr/devicetree.h>
#define IS_CHOSEN_SRAM(x) (DT_DEP_ORD(DT_NODELABEL(x)) == DT_DEP_ORD(DT_CHOSEN(zephyr_sram)))
@ -18,4 +18,4 @@ MEMORY
#endif
}
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -4,7 +4,7 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <linker/linker-tool.h>
#include <zephyr/linker/linker-tool.h>
#define IS_CHOSEN_SRAM(x) (DT_DEP_ORD(DT_NODELABEL(x)) == DT_DEP_ORD(DT_CHOSEN(zephyr_sram)))

View file

@ -9,4 +9,4 @@
*
* This is the linker script for both standard images and XIP images.
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -11,4 +11,4 @@
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -11,4 +11,4 @@
* This is the linker script for both standard images and XIP images.
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -11,4 +11,4 @@
* This is the linker script for both standard images and XIP images.
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -11,4 +11,4 @@
* This is the linker script for both standard images and XIP images.
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -11,4 +11,4 @@
* This is the linker script for both standard images and XIP images.
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -11,4 +11,4 @@
* This is the linker script for both standard images and XIP images.
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -11,4 +11,4 @@
* This is the linker script for both standard images and XIP images.
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -11,4 +11,4 @@
* This is the linker script for both standard images and XIP images.
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -12,4 +12,4 @@
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -12,4 +12,4 @@
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -12,4 +12,4 @@
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -4,4 +4,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -4,4 +4,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_a_r/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_a_r/scripts/linker.ld>

View file

@ -26,4 +26,4 @@ SECTIONS
}
#endif /* CONFIG_RP2_REQUIRES_SECOND_STAGE_BOOT */
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -13,4 +13,4 @@
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -12,4 +12,4 @@
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -12,4 +12,4 @@
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -12,4 +12,4 @@
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -12,4 +12,4 @@
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -12,4 +12,4 @@
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -12,4 +12,4 @@
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -12,4 +12,4 @@
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -12,4 +12,4 @@
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -12,4 +12,4 @@
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -12,4 +12,4 @@
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -6,4 +6,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>
#include <zephyr/arch/arm/aarch32/cortex_m/scripts/linker.ld>

Some files were not shown because too many files have changed in this diff Show more