mirror of
https://github.com/google/pebble.git
synced 2025-04-25 05:57:07 -04:00
spelling: section
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
parent
eddc390e76
commit
acad6e8efa
6 changed files with 22 additions and 22 deletions
|
@ -70,28 +70,28 @@ SECTIONS
|
||||||
It is one task of the startup to copy the initial values from FLASH to RAM. */
|
It is one task of the startup to copy the initial values from FLASH to RAM. */
|
||||||
.data : {
|
.data : {
|
||||||
. = ALIGN(4);
|
. = 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_start = .;
|
||||||
|
|
||||||
*(.data)
|
*(.data)
|
||||||
*(.data.*)
|
*(.data.*)
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = 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
|
} >RAM AT>FLASH
|
||||||
__data_load_start = LOADADDR(.data);
|
__data_load_start = LOADADDR(.data);
|
||||||
|
|
||||||
/* This is the uninitialized data section */
|
/* This is the uninitialized data section */
|
||||||
.bss (NOLOAD) : {
|
.bss (NOLOAD) : {
|
||||||
. = ALIGN(4);
|
. = 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)
|
||||||
*(.bss.*)
|
*(.bss.*)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = 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
|
} >RAM
|
||||||
|
|
||||||
.stack (NOLOAD) : {
|
.stack (NOLOAD) : {
|
||||||
|
|
|
@ -96,28 +96,28 @@ SECTIONS
|
||||||
.data : AT ( _sidata )
|
.data : AT ( _sidata )
|
||||||
{
|
{
|
||||||
. = ALIGN(4);
|
. = 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 = .;
|
_sdata = .;
|
||||||
|
|
||||||
*(.data)
|
*(.data)
|
||||||
*(.data.*)
|
*(.data.*)
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = 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
|
} >RAM
|
||||||
|
|
||||||
/* This is the uninitialized data section */
|
/* This is the uninitialized data section */
|
||||||
.bss :
|
.bss :
|
||||||
{
|
{
|
||||||
. = ALIGN(4);
|
. = 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)
|
||||||
*(.bss.*)
|
*(.bss.*)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = 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
|
} >RAM
|
||||||
|
|
||||||
.stack :
|
.stack :
|
||||||
|
|
|
@ -96,28 +96,28 @@ SECTIONS
|
||||||
.data : AT ( _sidata )
|
.data : AT ( _sidata )
|
||||||
{
|
{
|
||||||
. = ALIGN(4);
|
. = 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 = .;
|
_sdata = .;
|
||||||
|
|
||||||
*(.data)
|
*(.data)
|
||||||
*(.data.*)
|
*(.data.*)
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = 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
|
} >RAM
|
||||||
|
|
||||||
/* This is the uninitialized data section */
|
/* This is the uninitialized data section */
|
||||||
.bss :
|
.bss :
|
||||||
{
|
{
|
||||||
. = ALIGN(4);
|
. = 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)
|
||||||
*(.bss.*)
|
*(.bss.*)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = 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
|
} >RAM
|
||||||
|
|
||||||
.stack :
|
.stack :
|
||||||
|
|
|
@ -162,14 +162,14 @@ SECTIONS
|
||||||
It is one task of the startup to copy the initial values from FLASH to RAM. */
|
It is one task of the startup to copy the initial values from FLASH to RAM. */
|
||||||
.data : {
|
.data : {
|
||||||
. = ALIGN(4);
|
. = 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_start = .;
|
||||||
|
|
||||||
*(.data)
|
*(.data)
|
||||||
*(.data.*)
|
*(.data.*)
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = 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
|
} >RAM AT>FLASH
|
||||||
__data_load_start = LOADADDR(.data);
|
__data_load_start = LOADADDR(.data);
|
||||||
|
|
||||||
|
@ -177,14 +177,14 @@ SECTIONS
|
||||||
.bss (NOLOAD) :
|
.bss (NOLOAD) :
|
||||||
{
|
{
|
||||||
. = ALIGN(4);
|
. = 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)
|
||||||
*(.bss.*)
|
*(.bss.*)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = 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
|
} >RAM
|
||||||
|
|
||||||
.stack (NOLOAD) :
|
.stack (NOLOAD) :
|
||||||
|
|
|
@ -59,28 +59,28 @@ SECTIONS
|
||||||
It is one task of the startup to copy the initial values from FLASH to RAM. */
|
It is one task of the startup to copy the initial values from FLASH to RAM. */
|
||||||
.data : {
|
.data : {
|
||||||
. = ALIGN(4);
|
. = 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_start = .;
|
||||||
|
|
||||||
*(.data)
|
*(.data)
|
||||||
*(.data.*)
|
*(.data.*)
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = 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
|
} >RAM
|
||||||
__data_load_start = LOADADDR(.data);
|
__data_load_start = LOADADDR(.data);
|
||||||
|
|
||||||
/* This is the uninitialized data section */
|
/* This is the uninitialized data section */
|
||||||
.bss (NOLOAD) : {
|
.bss (NOLOAD) : {
|
||||||
. = ALIGN(4);
|
. = 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)
|
||||||
*(.bss.*)
|
*(.bss.*)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = 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
|
} >RAM
|
||||||
|
|
||||||
.stack (NOLOAD) : {
|
.stack (NOLOAD) : {
|
||||||
|
|
|
@ -133,7 +133,7 @@ SECTIONS {
|
||||||
} >APP_RAM
|
} >APP_RAM
|
||||||
|
|
||||||
.kernel_data : ALIGN(8) {
|
.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)
|
||||||
*(.data.*)
|
*(.data.*)
|
||||||
|
@ -144,7 +144,7 @@ SECTIONS {
|
||||||
__data_load_start = LOADADDR(.kernel_data);
|
__data_load_start = LOADADDR(.kernel_data);
|
||||||
|
|
||||||
.kernel_ro_bss (NOLOAD) : {
|
.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__);
|
. = ALIGN(__unpriv_ro_bss_size__);
|
||||||
__unpriv_ro_bss_start__ = .;
|
__unpriv_ro_bss_start__ = .;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue