Lines Matching full:files
9 required files and place them in the required memory region. The memory region
15 of ``__attribute__((section("name")))`` for a bunch of files together.
31 ``code_relocation.c`` files. The ``linker_relocate.ld`` file creates
33 selected files.
55 all the files that need relocation.
57 ``zephyr_code_relocate(FILES src/*.c LOCATION SRAM2)``
59 Where the first argument is the file/files and the second
76 zephyr_code_relocate(FILES src/file1.c LOCATION SRAM2)
77 zephyr_code_relocate(FILES src/file2.c LOCATION SRAM)
85 zephyr_code_relocate(FILES src/file1.c LOCATION SRAM2_DATA)
86 zephyr_code_relocate(FILES src/file2.c LOCATION SRAM2_TEXT)
91 * Multiple files can be passed to the FILES argument, or CMake generator
92 expressions can be used to relocate a comma-separated list of files
97 zephyr_code_relocate(FILES ${sources} LOCATION SRAM)
98 zephyr_code_relocate(FILES $<TARGET_PROPERTY:my_tgt,SOURCES> LOCATION SRAM)
105 used when we want to move the content of a specific file (or set of files) to a
114 zephyr_code_relocate(FILES src/xip_external_flash.c LOCATION EXTFLASH_TEXT NOCOPY)
115 zephyr_code_relocate(FILES src/xip_external_flash.c LOCATION SRAM_DATA)
137 This test will place .text, .data, .bss from 3 files to various parts in the SRAM