1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-08-07 00:04:36 +03:00

Add SPIFFS Support

This commit is contained in:
ficeto
2015-05-13 19:50:31 +03:00
parent ee6d70d8ee
commit 6c6420eff6
22 changed files with 7239 additions and 1 deletions

View File

@@ -5,7 +5,7 @@ MEMORY
dport0_0_seg : org = 0x3FF00000, len = 0x10
dram0_0_seg : org = 0x3FFE8000, len = 0x14000
iram1_0_seg : org = 0x40100000, len = 0x8000
irom0_0_seg : org = 0x40210000, len = 0x6B000
irom0_0_seg : org = 0x40210000, len = 0x60000
}
PHDRS
@@ -20,6 +20,8 @@ PHDRS
/* Default entry point: */
ENTRY(call_user_start)
PROVIDE ( _SPIFFS_start = 0x40270000 );
PROVIDE ( _SPIFFS_end = 0x4027B000 );
PROVIDE(_memmap_vecbase_reset = 0x40000000);
/* Various memory-map dependent cache attribute settings: */
_memmap_cacheattr_wb_base = 0x00000110;
@@ -152,11 +154,13 @@ SECTIONS
{
_irom0_text_start = ABSOLUTE(.);
*core_esp8266_*.o(.literal*, .text*)
*spiffs*.o(.literal*, .text*)
*.cpp.o(.literal*, .text*)
*libm.a:(.literal .text .literal.* .text.*)
*libsmartconfig.a:(.literal .text .literal.* .text.*)
*(.irom0.literal .irom.literal .irom.text.literal .irom0.text .irom.text)
_irom0_text_end = ABSOLUTE(.);
_flash_code_end = ABSOLUTE(.);
} >irom0_0_seg :irom0_0_phdr
.text : ALIGN(4)