Rev 2 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2 | Rev 16 | ||
|---|---|---|---|
| Line 122... | Line 122... | ||
| 122 | 122 | ||
| 123 | . = ALIGN(4); |
123 | . = ALIGN(4); |
| 124 | _edata = .; /* define a global symbol at data end */ |
124 | _edata = .; /* define a global symbol at data end */ |
| 125 | } >RAM AT> FLASH |
125 | } >RAM AT> FLASH |
| 126 | 126 | ||
| - | 127 | ||
| - | 128 | ||
| - | 129 | /* NVRAM image section : nothing gets stored here but the addresses are set up */ |
|
| - | 130 | .eeprom_data (NOLOAD) : |
|
| - | 131 | { |
|
| - | 132 | . = ALIGN(1024) ; |
|
| - | 133 | _eeprom_base = .; |
|
| - | 134 | KEEP ( *(.EEPROM_Data)) /* any __attribute__((section(".EEPROM_Data"))) section info to be put in here */ |
|
| - | 135 | } >FLASH |
|
| - | 136 | ||
| - | 137 | ||
| - | 138 | ||
| - | 139 | ||
| - | 140 | ||
| - | 141 | ||
| - | 142 | ||
| 127 | 143 | ||
| 128 | /* Uninitialized data section */ |
144 | /* Uninitialized data section */ |
| 129 | . = ALIGN(4); |
145 | . = ALIGN(4); |
| 130 | .bss : |
146 | .bss : |
| 131 | { |
147 | { |
| Line 161... | Line 177... | ||
| 161 | libm.a ( * ) |
177 | libm.a ( * ) |
| 162 | libgcc.a ( * ) |
178 | libgcc.a ( * ) |
| 163 | } |
179 | } |
| 164 | 180 | ||
| 165 | .ARM.attributes 0 : { *(.ARM.attributes) } |
181 | .ARM.attributes 0 : { *(.ARM.attributes) } |
| - | 182 | ||
| - | 183 | ||
| - | 184 | ||
| - | 185 | ||
| - | 186 | ||
| - | 187 | ||
| 166 | } |
188 | } |