From f214f1e1096350fe4854c0217302fb86af849619 Mon Sep 17 00:00:00 2001 From: Artem-Nesterenko2005 <144232708+Artem-Nesterenko2005@users.noreply.github.com> Date: Wed, 30 Oct 2024 15:18:02 +0000 Subject: [PATCH] Delete esp32.ld --- examples/c-examples/xtensa-esp32/ld/esp32.ld | 65 -------------------- 1 file changed, 65 deletions(-) delete mode 100644 examples/c-examples/xtensa-esp32/ld/esp32.ld diff --git a/examples/c-examples/xtensa-esp32/ld/esp32.ld b/examples/c-examples/xtensa-esp32/ld/esp32.ld deleted file mode 100644 index b892ed4..0000000 --- a/examples/c-examples/xtensa-esp32/ld/esp32.ld +++ /dev/null @@ -1,65 +0,0 @@ -/* - * GNU linker script for Espressif ESP32 - */ - -/* Default entry point */ -ENTRY( call_start_cpu0 ); - -/* Specify main memory areas */ -MEMORY -{ - /* Use values from the ESP-IDF 'bootloader' component. - /* TODO: Use human-readable lengths */ - /* TODO: Use the full memory map - this is just a test */ - iram_seg ( RX ) : ORIGIN = 0x40080400, len = 0xFC00 - dram_seg ( RW ) : ORIGIN = 0x3FFF0000, len = 0x1000 -} - -/* Define output sections */ -SECTIONS { - /* The program code and other data goes into Instruction RAM */ - .iram.text : - { - . = ALIGN(16); - KEEP(*(.entry.text)) - *(.text) - *(.text*) - KEEP (*(.init)) - KEEP (*(.fini)) - *(.rodata) - *(.rodata*) - - . = ALIGN(4); - _etext = .; - } >iram_seg - - /* Initialized data goes into Data RAM */ - _sidata = .; - .data : AT(_sidata) - { - . = ALIGN(4); - _sdata = .; - *(.data) - *(.data*) - - . = ALIGN(4); - _edata = .; - } >dram_seg - - /* Uninitialized data also goes into Data RAM */ - .bss : - { - . = ALIGN(4); - _sbss = .; - *(.bss) - *(.bss*) - *(COMMON) - - . = ALIGN(4); - _ebss = .; - } >dram_seg - - . = ALIGN(4); - PROVIDE ( end = . ); - PROVIDE ( _end = . ); -}