All uncommitted work from ESP32 GDB stub development session. Includes: - GDB stub (uos_gdbstub.c/.h/_entry.S) - Startup vector table rewrite - ESP32 HAL integration files - Boot chain design docs - AGENTS.md absolute rules (commit before refactor, no unauthorized changes) - All prior deepseek session work This commit prevents further data loss. No claims of correctness.
37 lines
1.2 KiB
Text
37 lines
1.2 KiB
Text
[scheme:bt_default]
|
|
entries:
|
|
bt_bss -> dram0_bss
|
|
bt_common -> dram0_bss
|
|
data -> dram0_data
|
|
|
|
# For the following fragments, order matters for
|
|
# 'ALIGN(4) ALIGN(4, post) SURROUND(sym)', which generates:
|
|
#
|
|
# . = ALIGN(4)
|
|
# _sym_start
|
|
# ...
|
|
# . = ALIGN(4)
|
|
# _sym_end
|
|
|
|
[mapping:bt]
|
|
archive: libbt.a
|
|
entries:
|
|
if ESP_ALLOW_BSS_SEG_EXTERNAL_MEMORY = y:
|
|
* (bt_extram_bss);
|
|
bt_bss -> extern_ram ALIGN(4) ALIGN(4, post) SURROUND(bt_bss),
|
|
bt_common -> extern_ram ALIGN(4) ALIGN(4, post) SURROUND(bt_common),
|
|
data -> dram0_data ALIGN(4) ALIGN(4, post) SURROUND(bt_data)
|
|
else:
|
|
* (bt_default);
|
|
bt_bss -> dram0_bss ALIGN(4) ALIGN(4, post) SURROUND(bt_bss),
|
|
bt_common -> dram0_bss ALIGN(4) ALIGN(4, post) SURROUND(bt_common),
|
|
data -> dram0_data ALIGN(4) ALIGN(4, post) SURROUND(bt_data)
|
|
|
|
|
|
[mapping:btdm]
|
|
archive: libbtdm_app.a
|
|
entries:
|
|
* (bt_default);
|
|
bt_bss -> dram0_bss ALIGN(4) ALIGN(4, post) SURROUND(bt_controller_bss),
|
|
bt_common -> dram0_bss ALIGN(4) ALIGN(4, post) SURROUND(bt_controller_common),
|
|
data -> dram0_data ALIGN(4) ALIGN(4, post) SURROUND(bt_controller_data)
|