stm32/boards: Remove stray '+' characters at start of lines in ld files.
Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
parent
3f589e2f39
commit
10c6f03cbe
@ -29,10 +29,10 @@ _ram_end = ORIGIN(RAM) + LENGTH(RAM);
|
||||
_heap_start = _ebss; /* heap starts just after statically allocated memory */
|
||||
_heap_end = _sstack;
|
||||
|
||||
+/* Filesystem cache in RAM, and storage in flash */
|
||||
+_micropy_hw_internal_flash_storage_ram_cache_start = ORIGIN(SRAM2);
|
||||
+_micropy_hw_internal_flash_storage_ram_cache_end = ORIGIN(SRAM2) + LENGTH(SRAM2);
|
||||
+_micropy_hw_internal_flash_storage_start = ORIGIN(FLASH_FS);
|
||||
+_micropy_hw_internal_flash_storage_end = ORIGIN(FLASH_FS) + LENGTH(FLASH_FS);
|
||||
+_micropy_hw_internal_flash_storage2_start = ORIGIN(FLASH_FS2);
|
||||
+_micropy_hw_internal_flash_storage2_end = ORIGIN(FLASH_FS2) + LENGTH(FLASH_FS2);
|
||||
/* Filesystem cache in RAM, and storage in flash */
|
||||
_micropy_hw_internal_flash_storage_ram_cache_start = ORIGIN(SRAM2);
|
||||
_micropy_hw_internal_flash_storage_ram_cache_end = ORIGIN(SRAM2) + LENGTH(SRAM2);
|
||||
_micropy_hw_internal_flash_storage_start = ORIGIN(FLASH_FS);
|
||||
_micropy_hw_internal_flash_storage_end = ORIGIN(FLASH_FS) + LENGTH(FLASH_FS);
|
||||
_micropy_hw_internal_flash_storage2_start = ORIGIN(FLASH_FS2);
|
||||
_micropy_hw_internal_flash_storage2_end = ORIGIN(FLASH_FS2) + LENGTH(FLASH_FS2);
|
||||
|
@ -29,10 +29,10 @@ _ram_end = ORIGIN(RAM) + LENGTH(RAM);
|
||||
_heap_start = _ebss; /* heap starts just after statically allocated memory */
|
||||
_heap_end = _sstack;
|
||||
|
||||
+/* Filesystem cache in RAM, and storage in flash */
|
||||
+_micropy_hw_internal_flash_storage_ram_cache_start = ORIGIN(SRAM2);
|
||||
+_micropy_hw_internal_flash_storage_ram_cache_end = ORIGIN(SRAM2) + LENGTH(SRAM2);
|
||||
+_micropy_hw_internal_flash_storage_start = ORIGIN(FLASH_FS);
|
||||
+_micropy_hw_internal_flash_storage_end = ORIGIN(FLASH_FS) + LENGTH(FLASH_FS);
|
||||
+_micropy_hw_internal_flash_storage2_start = ORIGIN(FLASH_FS2);
|
||||
+_micropy_hw_internal_flash_storage2_end = ORIGIN(FLASH_FS2) + LENGTH(FLASH_FS2);
|
||||
/* Filesystem cache in RAM, and storage in flash */
|
||||
_micropy_hw_internal_flash_storage_ram_cache_start = ORIGIN(SRAM2);
|
||||
_micropy_hw_internal_flash_storage_ram_cache_end = ORIGIN(SRAM2) + LENGTH(SRAM2);
|
||||
_micropy_hw_internal_flash_storage_start = ORIGIN(FLASH_FS);
|
||||
_micropy_hw_internal_flash_storage_end = ORIGIN(FLASH_FS) + LENGTH(FLASH_FS);
|
||||
_micropy_hw_internal_flash_storage2_start = ORIGIN(FLASH_FS2);
|
||||
_micropy_hw_internal_flash_storage2_end = ORIGIN(FLASH_FS2) + LENGTH(FLASH_FS2);
|
||||
|
Loading…
Reference in New Issue
Block a user