Lines Matching +full:hold +full:- +full:time +full:- +full:2 +full:x
1 .. zephyr:code-sample:: llext-shell-loader
3 :relevant-api: llext_apis
21 .. zephyr-app-commands::
22 :zephyr-app: samples/subsys/llext/shell_loader
33 All the llext system related commands are available as sub-commands of llext
36 .. code-block:: console
39 llext - Loadable extension commands
61 .. code-block:: console
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
75 0 .text 00000038 00000000 00000000 00000034 2**2
77 1 .data 00000000 00000000 00000000 0000006c 2**0
79 2 .bss 00000000 00000000 00000000 0000006c 2**0
81 3 .rodata 00000025 00000000 00000000 0000006c 2**2
83 4 .comment 00000021 00000000 00000000 00000091 2**0
85 5 .ARM.attributes 0000002a 00000000 00000000 000000b2 2**0
105 2: af00 add r7, sp, #0
108 8: 4b08 ldr r3, [pc, #32] ; (2c <hello_world+0x2c>)
114 16: 4b05 ldr r3, [pc, #20] ; (2c <hello_world+0x2c>)
124 2c: 00000000 .word 0x00000000
125 2c: R_ARM_ABS32 printk
131 $ xxd -p hello_world.elf | tr -d '\n'
135 .. code-block:: console
143 .. code-block:: console
149 …2 of which are meant to hold addresses into the .rodata sections where the strings are located. A …