diff --git a/platform/robert/boot/src/stm32f_flash_boot.ld b/platform/robert/boot/src/stm32f_flash_boot.ld index 3219c141..f2475e2e 100644 --- a/platform/robert/boot/src/stm32f_flash_boot.ld +++ b/platform/robert/boot/src/stm32f_flash_boot.ld @@ -70,28 +70,28 @@ SECTIONS It is one task of the startup to copy the initial values from FLASH to RAM. */ .data : { . = ALIGN(4); - /* This is used by the startup in order to initialize the .data secion */ + /* This is used by the startup in order to initialize the .data section */ __data_start = .; *(.data) *(.data.*) . = ALIGN(4); - __data_end = .; /* This is used by the startup in order to initialize the .data secion */ + __data_end = .; /* This is used by the startup in order to initialize the .data section */ } >RAM AT>FLASH __data_load_start = LOADADDR(.data); /* This is the uninitialized data section */ .bss (NOLOAD) : { . = ALIGN(4); - __bss_start = .; /* This is used by the startup in order to initialize the .bss secion */ + __bss_start = .; /* This is used by the startup in order to initialize the .bss section */ *(.bss) *(.bss.*) *(COMMON) . = ALIGN(4); - __bss_end = .; /* This is used by the startup in order to initialize the .bss secion */ + __bss_end = .; /* This is used by the startup in order to initialize the .bss section */ } >RAM .stack (NOLOAD) : { diff --git a/platform/silk/boot/src/stm32f_flash_boot.ld.in b/platform/silk/boot/src/stm32f_flash_boot.ld.in index 37eeba85..d02ab872 100644 --- a/platform/silk/boot/src/stm32f_flash_boot.ld.in +++ b/platform/silk/boot/src/stm32f_flash_boot.ld.in @@ -96,28 +96,28 @@ SECTIONS .data : AT ( _sidata ) { . = ALIGN(4); - /* This is used by the startup in order to initialize the .data secion */ + /* This is used by the startup in order to initialize the .data section */ _sdata = .; *(.data) *(.data.*) . = ALIGN(4); - _edata = .; /* This is used by the startup in order to initialize the .data secion */ + _edata = .; /* This is used by the startup in order to initialize the .data section */ } >RAM /* This is the uninitialized data section */ .bss : { . = ALIGN(4); - _sbss = .; /* This is used by the startup in order to initialize the .bss secion */ + _sbss = .; /* This is used by the startup in order to initialize the .bss section */ *(.bss) *(.bss.*) *(COMMON) . = ALIGN(4); - _ebss = .; /* This is used by the startup in order to initialize the .bss secion */ + _ebss = .; /* This is used by the startup in order to initialize the .bss section */ } >RAM .stack : diff --git a/platform/snowy/boot/src/stm32f_flash_boot.ld.in b/platform/snowy/boot/src/stm32f_flash_boot.ld.in index 1589125a..6067f2b9 100644 --- a/platform/snowy/boot/src/stm32f_flash_boot.ld.in +++ b/platform/snowy/boot/src/stm32f_flash_boot.ld.in @@ -96,28 +96,28 @@ SECTIONS .data : AT ( _sidata ) { . = ALIGN(4); - /* This is used by the startup in order to initialize the .data secion */ + /* This is used by the startup in order to initialize the .data section */ _sdata = .; *(.data) *(.data.*) . = ALIGN(4); - _edata = .; /* This is used by the startup in order to initialize the .data secion */ + _edata = .; /* This is used by the startup in order to initialize the .data section */ } >RAM /* This is the uninitialized data section */ .bss : { . = ALIGN(4); - _sbss = .; /* This is used by the startup in order to initialize the .bss secion */ + _sbss = .; /* This is used by the startup in order to initialize the .bss section */ *(.bss) *(.bss.*) *(COMMON) . = ALIGN(4); - _ebss = .; /* This is used by the startup in order to initialize the .bss secion */ + _ebss = .; /* This is used by the startup in order to initialize the .bss section */ } >RAM .stack : diff --git a/platform/tintin/boot/src/stm32f_flash_boot.ld.in b/platform/tintin/boot/src/stm32f_flash_boot.ld.in index 8e89448d..c57d5e4a 100644 --- a/platform/tintin/boot/src/stm32f_flash_boot.ld.in +++ b/platform/tintin/boot/src/stm32f_flash_boot.ld.in @@ -162,14 +162,14 @@ SECTIONS It is one task of the startup to copy the initial values from FLASH to RAM. */ .data : { . = ALIGN(4); - /* This is used by the startup in order to initialize the .data secion */ + /* This is used by the startup in order to initialize the .data section */ __data_start = .; *(.data) *(.data.*) . = ALIGN(4); - __data_end = .; /* This is used by the startup in order to initialize the .data secion */ + __data_end = .; /* This is used by the startup in order to initialize the .data section */ } >RAM AT>FLASH __data_load_start = LOADADDR(.data); @@ -177,14 +177,14 @@ SECTIONS .bss (NOLOAD) : { . = ALIGN(4); - __bss_start = .; /* This is used by the startup in order to initialize the .bss secion */ + __bss_start = .; /* This is used by the startup in order to initialize the .bss section */ *(.bss) *(.bss.*) *(COMMON) . = ALIGN(4); - __bss_end = .; /* This is used by the startup in order to initialize the .bss secion */ + __bss_end = .; /* This is used by the startup in order to initialize the .bss section */ } >RAM .stack (NOLOAD) : diff --git a/python_libs/pblprog/loader/src/stm32f4_loader.ld b/python_libs/pblprog/loader/src/stm32f4_loader.ld index ba02ce40..bd6658be 100644 --- a/python_libs/pblprog/loader/src/stm32f4_loader.ld +++ b/python_libs/pblprog/loader/src/stm32f4_loader.ld @@ -59,28 +59,28 @@ SECTIONS It is one task of the startup to copy the initial values from FLASH to RAM. */ .data : { . = ALIGN(4); - /* This is used by the startup in order to initialize the .data secion */ + /* This is used by the startup in order to initialize the .data section */ __data_start = .; *(.data) *(.data.*) . = ALIGN(4); - __data_end = .; /* This is used by the startup in order to initialize the .data secion */ + __data_end = .; /* This is used by the startup in order to initialize the .data section */ } >RAM __data_load_start = LOADADDR(.data); /* This is the uninitialized data section */ .bss (NOLOAD) : { . = ALIGN(4); - __bss_start = .; /* This is used by the startup in order to initialize the .bss secion */ + __bss_start = .; /* This is used by the startup in order to initialize the .bss section */ *(.bss) *(.bss.*) *(COMMON) . = ALIGN(4); - __bss_end = .; /* This is used by the startup in order to initialize the .bss secion */ + __bss_end = .; /* This is used by the startup in order to initialize the .bss section */ } >RAM .stack (NOLOAD) : { diff --git a/src/fw/fw_common.ld b/src/fw/fw_common.ld index b55f574e..d2842593 100644 --- a/src/fw/fw_common.ld +++ b/src/fw/fw_common.ld @@ -133,7 +133,7 @@ SECTIONS { } >APP_RAM .kernel_data : ALIGN(8) { - __data_start = .; /* This is used by the startup in order to initialize the .data secion */ + __data_start = .; /* This is used by the startup in order to initialize the .data section */ *(.data) *(.data.*) @@ -144,7 +144,7 @@ SECTIONS { __data_load_start = LOADADDR(.kernel_data); .kernel_ro_bss (NOLOAD) : { - __bss_start = .; /* This is used by the startup in order to initialize the .bss secion */ + __bss_start = .; /* This is used by the startup in order to initialize the .bss section */ . = ALIGN(__unpriv_ro_bss_size__); __unpriv_ro_bss_start__ = .;