diff options
| author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2008-12-06 11:20:22 +0000 | 
|---|---|---|
| committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2008-12-06 11:20:22 +0000 | 
| commit | 8a18733367054dd6a3a68633d25633f672ae87c0 (patch) | |
| tree | 2fb91397657fe4ee711ebda7b2f0c2cf1ac619af /demos | |
| parent | d8b450d8a085817ad26528cb58059da22ebea462 (diff) | |
| download | ChibiOS-8a18733367054dd6a3a68633d25633f672ae87c0.tar.gz ChibiOS-8a18733367054dd6a3a68633d25633f672ae87c0.tar.bz2 ChibiOS-8a18733367054dd6a3a68633d25633f672ae87c0.zip  | |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@530 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos')
| -rw-r--r-- | demos/ARM7-LPC214x-G++/ch.ld | 90 | ||||
| -rw-r--r-- | demos/ARM7-LPC214x-GCC-minimal/ch.ld | 90 | ||||
| -rw-r--r-- | demos/ARM7-LPC214x-GCC/ch.ld | 90 | 
3 files changed, 135 insertions, 135 deletions
diff --git a/demos/ARM7-LPC214x-G++/ch.ld b/demos/ARM7-LPC214x-G++/ch.ld index 81ab80dc6..b0425dbca 100644 --- a/demos/ARM7-LPC214x-G++/ch.ld +++ b/demos/ARM7-LPC214x-G++/ch.ld @@ -30,16 +30,16 @@ __stacks_total_size__	= __und_stack_size__ + __abt_stack_size__ + __fiq_stack_si  MEMORY
  {
 -	flash : org = 0x00000000, len = 512k - 12k
 -	ram : org = 0x40000200, len = 32k - 0x200 - 288
 +    flash : org = 0x00000000, len = 512k - 12k
 +    ram : org = 0x40000200, len = 32k - 0x200 - 288
  }
 -__ram_start__		= ORIGIN(ram);
 -__ram_size__		= LENGTH(ram);
 -__ram_end__		= __ram_start__ + __ram_size__;
 -__dma_start__		= 0x7FD00000;
 -__dma_size__		= 8k;
 -__dma_end__		= 0x7FD00000 + __dma_size__;
 +__ram_start__       = ORIGIN(ram);
 +__ram_size__        = LENGTH(ram);
 +__ram_end__         = __ram_start__ + __ram_size__;
 +__dma_start__       = 0x7FD00000;
 +__dma_size__        = 8k;
 +__dma_end__         = 0x7FD00000 + __dma_size__;
  SECTIONS
  {
 @@ -47,46 +47,46 @@ SECTIONS  	.text :
  	{
 -		_text = .;
 -                KEEP(*(vectors))
 -                *(.text)
 -		*(.text.*);
 -		*(.rodata);
 -		*(.rodata.*);
 -		*(.glue_7t);
 -		*(.glue_7);
 -		*(.gcc*);
 -		*(.ctors);
 -		*(.dtors);
 -		. = ALIGN(4);
 -		_etext = .;
 -	} > flash
 +        _text = .;
 +        KEEP(*(vectors))
 +        *(.text)
 +        *(.text.*);
 +        *(.rodata);
 +        *(.rodata.*);
 +        *(.glue_7t);
 +        *(.glue_7);
 +        *(.gcc*);
 +        *(.ctors);
 +        *(.dtors);
 +        . = ALIGN(4);
 +        _etext = .;
 +    } > flash
 -	_textdata = _etext;
 +    _textdata = _etext;
 -	.data :
 -	{
 -		_data = .;
 -		*(.data)
 -		. = ALIGN(4);
 -		*(.data.*)
 -		. = ALIGN(4);
 -		*(.ramtext)
 -		. = ALIGN(4);
 -		_edata = .;
 -	} > ram AT > flash
 +    .data :
 +    {
 +        _data = .;
 +        *(.data)
 +        . = ALIGN(4);
 +        *(.data.*)
 +        . = ALIGN(4);
 +        *(.ramtext)
 +        . = ALIGN(4);
 +        _edata = .;
 +    } > ram AT > flash
 -	.bss :
 -	{
 -		_bss_start = .;
 -		*(.bss)
 -		. = ALIGN(4);
 -		*(.bss.*)
 -		. = ALIGN(4);
 -		*(COMMON)
 -		. = ALIGN(4);
 -		_bss_end = .;
 -	} > ram    
 +    .bss :
 +    {
 +        _bss_start = .;
 +        *(.bss)
 +        . = ALIGN(4);
 +        *(.bss.*)
 +        . = ALIGN(4);
 +        *(COMMON)
 +        . = ALIGN(4);
 +        _bss_end = .;
 +    } > ram    
  }
  PROVIDE(end = .);
 diff --git a/demos/ARM7-LPC214x-GCC-minimal/ch.ld b/demos/ARM7-LPC214x-GCC-minimal/ch.ld index 81ab80dc6..b0425dbca 100644 --- a/demos/ARM7-LPC214x-GCC-minimal/ch.ld +++ b/demos/ARM7-LPC214x-GCC-minimal/ch.ld @@ -30,16 +30,16 @@ __stacks_total_size__	= __und_stack_size__ + __abt_stack_size__ + __fiq_stack_si  MEMORY
  {
 -	flash : org = 0x00000000, len = 512k - 12k
 -	ram : org = 0x40000200, len = 32k - 0x200 - 288
 +    flash : org = 0x00000000, len = 512k - 12k
 +    ram : org = 0x40000200, len = 32k - 0x200 - 288
  }
 -__ram_start__		= ORIGIN(ram);
 -__ram_size__		= LENGTH(ram);
 -__ram_end__		= __ram_start__ + __ram_size__;
 -__dma_start__		= 0x7FD00000;
 -__dma_size__		= 8k;
 -__dma_end__		= 0x7FD00000 + __dma_size__;
 +__ram_start__       = ORIGIN(ram);
 +__ram_size__        = LENGTH(ram);
 +__ram_end__         = __ram_start__ + __ram_size__;
 +__dma_start__       = 0x7FD00000;
 +__dma_size__        = 8k;
 +__dma_end__         = 0x7FD00000 + __dma_size__;
  SECTIONS
  {
 @@ -47,46 +47,46 @@ SECTIONS  	.text :
  	{
 -		_text = .;
 -                KEEP(*(vectors))
 -                *(.text)
 -		*(.text.*);
 -		*(.rodata);
 -		*(.rodata.*);
 -		*(.glue_7t);
 -		*(.glue_7);
 -		*(.gcc*);
 -		*(.ctors);
 -		*(.dtors);
 -		. = ALIGN(4);
 -		_etext = .;
 -	} > flash
 +        _text = .;
 +        KEEP(*(vectors))
 +        *(.text)
 +        *(.text.*);
 +        *(.rodata);
 +        *(.rodata.*);
 +        *(.glue_7t);
 +        *(.glue_7);
 +        *(.gcc*);
 +        *(.ctors);
 +        *(.dtors);
 +        . = ALIGN(4);
 +        _etext = .;
 +    } > flash
 -	_textdata = _etext;
 +    _textdata = _etext;
 -	.data :
 -	{
 -		_data = .;
 -		*(.data)
 -		. = ALIGN(4);
 -		*(.data.*)
 -		. = ALIGN(4);
 -		*(.ramtext)
 -		. = ALIGN(4);
 -		_edata = .;
 -	} > ram AT > flash
 +    .data :
 +    {
 +        _data = .;
 +        *(.data)
 +        . = ALIGN(4);
 +        *(.data.*)
 +        . = ALIGN(4);
 +        *(.ramtext)
 +        . = ALIGN(4);
 +        _edata = .;
 +    } > ram AT > flash
 -	.bss :
 -	{
 -		_bss_start = .;
 -		*(.bss)
 -		. = ALIGN(4);
 -		*(.bss.*)
 -		. = ALIGN(4);
 -		*(COMMON)
 -		. = ALIGN(4);
 -		_bss_end = .;
 -	} > ram    
 +    .bss :
 +    {
 +        _bss_start = .;
 +        *(.bss)
 +        . = ALIGN(4);
 +        *(.bss.*)
 +        . = ALIGN(4);
 +        *(COMMON)
 +        . = ALIGN(4);
 +        _bss_end = .;
 +    } > ram    
  }
  PROVIDE(end = .);
 diff --git a/demos/ARM7-LPC214x-GCC/ch.ld b/demos/ARM7-LPC214x-GCC/ch.ld index 81ab80dc6..b0425dbca 100644 --- a/demos/ARM7-LPC214x-GCC/ch.ld +++ b/demos/ARM7-LPC214x-GCC/ch.ld @@ -30,16 +30,16 @@ __stacks_total_size__	= __und_stack_size__ + __abt_stack_size__ + __fiq_stack_si  MEMORY
  {
 -	flash : org = 0x00000000, len = 512k - 12k
 -	ram : org = 0x40000200, len = 32k - 0x200 - 288
 +    flash : org = 0x00000000, len = 512k - 12k
 +    ram : org = 0x40000200, len = 32k - 0x200 - 288
  }
 -__ram_start__		= ORIGIN(ram);
 -__ram_size__		= LENGTH(ram);
 -__ram_end__		= __ram_start__ + __ram_size__;
 -__dma_start__		= 0x7FD00000;
 -__dma_size__		= 8k;
 -__dma_end__		= 0x7FD00000 + __dma_size__;
 +__ram_start__       = ORIGIN(ram);
 +__ram_size__        = LENGTH(ram);
 +__ram_end__         = __ram_start__ + __ram_size__;
 +__dma_start__       = 0x7FD00000;
 +__dma_size__        = 8k;
 +__dma_end__         = 0x7FD00000 + __dma_size__;
  SECTIONS
  {
 @@ -47,46 +47,46 @@ SECTIONS  	.text :
  	{
 -		_text = .;
 -                KEEP(*(vectors))
 -                *(.text)
 -		*(.text.*);
 -		*(.rodata);
 -		*(.rodata.*);
 -		*(.glue_7t);
 -		*(.glue_7);
 -		*(.gcc*);
 -		*(.ctors);
 -		*(.dtors);
 -		. = ALIGN(4);
 -		_etext = .;
 -	} > flash
 +        _text = .;
 +        KEEP(*(vectors))
 +        *(.text)
 +        *(.text.*);
 +        *(.rodata);
 +        *(.rodata.*);
 +        *(.glue_7t);
 +        *(.glue_7);
 +        *(.gcc*);
 +        *(.ctors);
 +        *(.dtors);
 +        . = ALIGN(4);
 +        _etext = .;
 +    } > flash
 -	_textdata = _etext;
 +    _textdata = _etext;
 -	.data :
 -	{
 -		_data = .;
 -		*(.data)
 -		. = ALIGN(4);
 -		*(.data.*)
 -		. = ALIGN(4);
 -		*(.ramtext)
 -		. = ALIGN(4);
 -		_edata = .;
 -	} > ram AT > flash
 +    .data :
 +    {
 +        _data = .;
 +        *(.data)
 +        . = ALIGN(4);
 +        *(.data.*)
 +        . = ALIGN(4);
 +        *(.ramtext)
 +        . = ALIGN(4);
 +        _edata = .;
 +    } > ram AT > flash
 -	.bss :
 -	{
 -		_bss_start = .;
 -		*(.bss)
 -		. = ALIGN(4);
 -		*(.bss.*)
 -		. = ALIGN(4);
 -		*(COMMON)
 -		. = ALIGN(4);
 -		_bss_end = .;
 -	} > ram    
 +    .bss :
 +    {
 +        _bss_start = .;
 +        *(.bss)
 +        . = ALIGN(4);
 +        *(.bss.*)
 +        . = ALIGN(4);
 +        *(COMMON)
 +        . = ALIGN(4);
 +        _bss_end = .;
 +    } > ram    
  }
  PROVIDE(end = .);
  | 
