nuttx/binfmt/libelf
Tiago Medicci Serrano 84d39a8d9a binfmt/libelf: Enable ELF loader if text heap read is word-aligned
The ELF loader needs to load the app into the memory before
executing it from the same location. As expected, this memory space
should be able to execute code. For architectures containing data
and instruction buses, the instruction bus may not be able to be
accessed in a non-aligned way, which is usually required when
copying data to that location. Eventually, this same memory space
can be accessed through the data bus, using different address
ranges. This commit enables accessing the memory through the data
bus to copy the app's data before executing it when
`CONFIG_ARCH_HAVE_TEXT_HEAP_WORD_ALIGNED_READ` is enabled.
2024-07-31 02:33:12 +08:00
..
CMakeLists.txt
gnu-elf.ld
Kconfig binfmt: ELF support load to LMA 2023-09-04 12:23:26 +08:00
libelf_addrenv.c libs/modlib: Adding architecture-specific memory allocator for dynamic data loading 2023-10-26 01:53:38 +08:00
libelf_bind.c log messages of binfmt are very much. 2023-12-29 17:36:47 +08:00
libelf_coredump.c Revert "sched: replace some global variables to macro" 2024-06-06 22:00:25 +08:00
libelf_ctors.c
libelf_dtors.c
libelf_init.c enable O_CLOEXEC explicit 2023-09-22 13:51:00 +08:00
libelf_iobuffer.c
libelf_load.c binfmt/libelf: Enable ELF loader if text heap read is word-aligned 2024-07-31 02:33:12 +08:00
libelf_read.c binfmt: Support arch copy section by self for dynamic code loading 2023-09-04 12:23:26 +08:00
libelf_sections.c binfmt: The program headers are optional. 2023-09-05 12:31:31 +08:00
libelf_symbols.c log messages of binfmt are very much. 2023-12-29 17:36:47 +08:00
libelf_uninit.c binfmt: ELF support load to LMA 2023-09-04 12:23:26 +08:00
libelf_unload.c
libelf_verify.c
libelf.h binfmt: ELF support load to LMA 2023-09-04 12:23:26 +08:00
Make.defs