Skip to content

Commit 7f05060

Browse files
committed
Fix linker script for 512k(no SPIFFS) variant (esp8266#966)
thanks @sven337
1 parent deb6898 commit 7f05060

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/sdk/ld/eagle.flash.512k0.ld

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ MEMORY
1010
irom0_0_seg : org = 0x40201010, len = 0x79ff0
1111
}
1212

13-
PROVIDE ( _SPIFFS_start = 0 );
14-
PROVIDE ( _SPIFFS_end = 0 );
13+
PROVIDE ( _SPIFFS_start = 0x4027B000 );
14+
PROVIDE ( _SPIFFS_end = 0x4027B000 );
1515
PROVIDE ( _SPIFFS_page = 0 );
1616
PROVIDE ( _SPIFFS_block = 0 );
1717

0 commit comments

Comments
 (0)