/Zephyr-Core-3.6.0/scripts/logging/dictionary/ |
D | database_gen.py | 29 from elftools.elf.constants import SH_FLAGS 30 from elftools.elf.elffile import ELFFile 31 from elftools.elf.descriptions import describe_ei_data 32 from elftools.elf.sections import SymbolTableSection 102 def extract_elf_code_data_sections(elf, wildcards = None): argument 106 for sect in elf.iter_sections(): 126 def find_elf_sections(elf, sh_name): argument 128 for section in elf.iter_sections(): 143 def get_kconfig_symbols(elf): argument 145 for section in elf.iter_sections(): [all …]
|
/Zephyr-Core-3.6.0/cmake/toolchain/xtools/ |
D | target.cmake | 4 set(CROSS_COMPILE_TARGET_arm64 aarch64-zephyr-elf) 5 set(CROSS_COMPILE_TARGET_nios2 nios2-zephyr-elf) 6 set(CROSS_COMPILE_TARGET_riscv riscv64-zephyr-elf) 7 set(CROSS_COMPILE_TARGET_mips mipsel-zephyr-elf) 8 set(CROSS_COMPILE_TARGET_xtensa xtensa-zephyr-elf) 9 set(CROSS_COMPILE_TARGET_arc arc-zephyr-elf) 10 set(CROSS_COMPILE_TARGET_x86 x86_64-zephyr-elf) 11 set(CROSS_COMPILE_TARGET_sparc sparc-zephyr-elf)
|
/Zephyr-Core-3.6.0/scripts/build/ |
D | elf_parser.py | 12 from elftools.elf.elffile import ELFFile 13 from elftools.elf.sections import SymbolTableSection 22 def __init__(self, elf, sym): argument 23 self.elf = elf 25 self.data = self.elf.symbol_data(sym) 31 (format, size) = self.elf.native_struct_format 43 def __init__(self, elf, sym): argument 44 super().__init__(elf, sym) 45 self.flags = self._data_native_read(self.elf.ld_consts['_PM_DEVICE_STRUCT_FLAGS_OFFSET']) 49 return self.flags & (1 << self.elf.ld_consts["_PM_DEVICE_FLAG_PD"]) [all …]
|
D | gen_kobject_list.py | 63 from elftools.elf.elffile import ELFFile 64 from elftools.elf.sections import SymbolTableSection 482 def unpack_pointer(elf, data, offset): argument 483 endian_code = "<" if elf.little_endian else ">" 484 if elf.elfclass == 32: 495 def addr_deref(elf, addr): argument 496 for section in elf.iter_sections(): 503 return unpack_pointer(elf, data, offset) 508 def device_get_api_addr(elf, addr): argument 510 offset = 8 if elf.elfclass == 32 else 16 [all …]
|
D | gen_offset_header.py | 15 from elftools.elf.elffile import ELFFile 16 from elftools.elf.sections import SymbolTableSection
|
D | gen_app_partitions.py | 41 from elftools.elf.elffile import ELFFile 42 from elftools.elf.sections import SymbolTableSection 174 with open(args.elf, 'rb') as f: 198 partitions[partition_name][SRC] = args.elf 265 elif args.elf is not None:
|
/Zephyr-Core-3.6.0/boards/arm/cyclonev_socdk/support/ |
D | appli_debug_cmd.gdb | 4 # helper file for "west debug" command to load the .elf 5 # works if the .elf is located in "build" directory 11 restore ./build/zephyr/zephyr.elf 12 symbol-file -readnow ./build/zephyr/zephyr.elf
|
D | appli_dl_cmd.gdb | 4 # Helper file to use "west flash" with the .elf file 10 restore ./build/zephyr/zephyr.elf 11 symbol-file -readnow ./build/zephyr/zephyr.elf
|
/Zephyr-Core-3.6.0/scripts/coredump/coredump_parser/ |
D | elf_parser.py | 10 from elftools.elf.elffile import ELFFile 35 self.elf = None 40 self.elf = ELFFile(self.fd) 52 for section in self.elf.iter_sections(): 56 … if type(section) is not elftools.elf.sections.Section: # pylint: disable=unidiomatic-typecheck
|
/Zephyr-Core-3.6.0/cmake/toolchain/espressif/ |
D | target.cmake | 10 set(CROSS_COMPILE_TARGET_xtensa_esp32 xtensa-esp32-elf) 11 set(CROSS_COMPILE_TARGET_xtensa_esp32s2 xtensa-esp32s2-elf) 12 set(CROSS_COMPILE_TARGET_xtensa_esp32s3 xtensa-esp32s3-elf) 13 set(CROSS_COMPILE_TARGET_riscv_esp32c3 riscv32-esp-elf)
|
/Zephyr-Core-3.6.0/scripts/footprint/ |
D | size_report | 30 from elftools.elf.elffile import ELFFile 31 from elftools.elf.sections import SymbolTableSection 127 def get_symbols(elf, addr_ranges): argument 139 for section in elf.iter_sections(): 174 def get_section_ranges(elf): argument 184 for section in elf.iter_sections(): 251 def do_simple_name_matching(elf, symbol_dict, processed): argument 262 dwarfinfo = elf.get_dwarf_info() 372 def do_address_range_matching(elf, symbol_dict, processed): argument 393 dwarfinfo = elf.get_dwarf_info() [all …]
|
/Zephyr-Core-3.6.0/boards/arm/arty/ |
D | board.cmake | 4 …board_runner_args(openocd "--use-elf" "--config=${BOARD_DIR}/support/openocd_arty_a7_arm_designsta… 10 …board_runner_args(openocd "--use-elf" "--config=${BOARD_DIR}/support/openocd_arty_a7_arm_designsta…
|
/Zephyr-Core-3.6.0/soc/xtensa/intel_adsp/tools/ |
D | cavstwist.sh | 107 ELF=$BLDDIR/zephyr/zephyr.elf.mod 108 BOOT=$BLDDIR/zephyr/bootloader.elf.mod
|
/Zephyr-Core-3.6.0/include/zephyr/linker/ |
D | app_smem.ld | 15 * 2. Using A.cmd to generate A_prebuilt.elf. 16 * 3. Using A_prebuilt.elf to create B.ld. 18 * 5. Creating B_prebuilt.elf using B.cmd.
|
D | app_smem_pinned.ld | 19 * 2. Using A.cmd to generate A_prebuilt.elf. 20 * 3. Using A_prebuilt.elf to create B.ld. 22 * 5. Creating B_prebuilt.elf using B.cmd.
|
/Zephyr-Core-3.6.0/samples/subsys/llext/shell_loader/ |
D | README.rst | 42 load_hex :Load an elf file encoded in hex directly from the shell input. 54 This can be built into a relocatable elf usable on arm v7 platforms. It can be 63 …$ arm-zephyr-eabi-gcc -mlong-calls -mthumb -c -o hello_world.elf tests/subsys/llext/hello_world/he… 64 $ arm-zephyr-eabi-objdump -r -d -x hello_world.elf 66 hello_world.elf: file format elf32-littlearm 67 hello_world.elf 131 $ xxd -p hello_world.elf | tr -d '\n'
|
/Zephyr-Core-3.6.0/scripts/native_simulator/ |
D | .gitignore | 5 *.elf
|
/Zephyr-Core-3.6.0/boards/arm/rcar_h3_salvatorx/ |
D | board.cmake | 2 board_runner_args(openocd "--use-elf")
|
/Zephyr-Core-3.6.0/boards/arm/rcar_h3ulcb/ |
D | board.cmake | 2 board_runner_args(openocd "--use-elf")
|
/Zephyr-Core-3.6.0/boards/arm/rcar_spider/ |
D | board.cmake | 2 board_runner_args(openocd "--use-elf")
|
/Zephyr-Core-3.6.0/boards/riscv/hifive_unmatched/doc/ |
D | index.rst | 41 riscv64-zephyr-elf-gdb build/zephyr/zephyr.elf
|
/Zephyr-Core-3.6.0/boards/riscv/hifive_unleashed/doc/ |
D | index.rst | 41 riscv64-zephyr-elf-gdb build/zephyr/zephyr.elf
|
/Zephyr-Core-3.6.0/boards/arm/mps2_an521/ |
D | board.cmake | 28 set(QEMU_EXTRA_FLAGS "-device;loader,file=${REMOTE_ZEPHYR_DIR}/zephyr.elf") 31 set(QEMU_KERNEL_OPTION "-device;loader,file=${CPU0_BINARY_DIR}/zephyr.elf")
|
/Zephyr-Core-3.6.0/arch/arm/core/ |
D | elf.c | 11 LOG_MODULE_REGISTER(elf, CONFIG_LLEXT_LOG_LEVEL);
|
/Zephyr-Core-3.6.0/boards/arm/scobc_module1/ |
D | board.cmake | 4 board_runner_args(openocd "--use-elf" "--config=${BOARD_DIR}/support/openocd-ftdi.cfg")
|