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.
22 through a file where each line specifies a list of files to be placed in the
39 ``code_relocation.c`` files. The ``linker_relocate.ld`` file creates
41 selected files.
63 all the files that need relocation.
65 ``zephyr_code_relocate(FILES src/*.c LOCATION SRAM2)``
67 Where the first argument is the file/files and the second
84 zephyr_code_relocate(FILES src/file1.c LOCATION SRAM2)
85 zephyr_code_relocate(FILES src/file2.c LOCATION SRAM)
93 zephyr_code_relocate(FILES src/file1.c LOCATION SRAM2_DATA)
94 zephyr_code_relocate(FILES src/file2.c LOCATION SRAM2_TEXT)
99 * Multiple files can be passed to the FILES argument, or CMake generator
100 expressions can be used to relocate a comma-separated list of files
105 zephyr_code_relocate(FILES ${sources} LOCATION SRAM)
106 zephyr_code_relocate(FILES $<TARGET_PROPERTY:my_tgt,SOURCES> LOCATION SRAM)
111 By default, all sections of the specified files will be relocated. If
122 zephyr_code_relocate(FILES src/file1.c FILTER ".*\\.func1|.*\\.func2" LOCATION SRAM2_TEXT)
137 zephyr_code_relocate(FILES src/file1.c LOCATION SRAM2_TEXT NOKEEP)
147 used when we want to move the content of a specific file (or set of files) to a
156 zephyr_code_relocate(FILES src/xip_external_flash.c LOCATION EXTFLASH_TEXT NOCOPY)
157 zephyr_code_relocate(FILES src/xip_external_flash.c LOCATION SRAM_DATA)
173 Take care if relocating kernel/arch files, some contain early initialization
187 This test will place .text, .data, .bss from 3 files to various parts in the SRAM