Changeset e10dec0 in rtems


Ignore:
Timestamp:
04/30/21 13:47:10 (3 years ago)
Author:
Sebastian Huber <sebastian.huber@…>
Branches:
master
Children:
2df9541
Parents:
a84bf96
git-author:
Sebastian Huber <sebastian.huber@…> (04/30/21 13:47:10)
git-committer:
Sebastian Huber <sebastian.huber@…> (05/02/21 16:41:21)
Message:

bsps: Support RTEMS_NOINIT in linkcmds

Update #3866.

Location:
bsps
Files:
62 edited

Legend:

Unmodified
Added
Removed
  • bsps/arm/include/bsp/arm-cp15-start.h

    ra84bf96 re10dec0  
    7979    .flags = ARMV7_MMU_DATA_READ_WRITE_CACHED \
    8080  }, { \
     81    .begin = (uint32_t) bsp_section_noinit_begin, \
     82    .end = (uint32_t) bsp_section_noinit_end, \
     83    .flags = ARMV7_MMU_DATA_READ_WRITE_CACHED \
     84  }, { \
    8185    .begin = (uint32_t) bsp_section_work_begin, \
    8286    .end = (uint32_t) bsp_section_work_end, \
     
    100104  }
    101105
    102 #define ARMV7_CP15_START_WORKSPACE_ENTRY_INDEX 9
     106#define ARMV7_CP15_START_WORKSPACE_ENTRY_INDEX 10
    103107
    104108BSP_START_DATA_SECTION extern const arm_cp15_start_section_config
  • bsps/arm/include/bsp/linker-symbols.h

    ra84bf96 re10dec0  
    9797LINKER_SYMBOL(bsp_section_rtemsstack_size)
    9898
     99LINKER_SYMBOL(bsp_section_noinit_begin)
     100LINKER_SYMBOL(bsp_section_noinit_end)
     101LINKER_SYMBOL(bsp_section_noinit_size)
     102
    99103LINKER_SYMBOL(bsp_section_work_begin)
    100104LINKER_SYMBOL(bsp_section_work_end)
  • bsps/arm/shared/start/linkcmds.base

    ra84bf96 re10dec0  
    338338        } > REGION_WORK AT > REGION_WORK
    339339        bsp_section_rtemsstack_size = bsp_section_rtemsstack_end - bsp_section_rtemsstack_begin;
     340
     341        .noinit (NOLOAD) : ALIGN_WITH_INPUT {
     342                bsp_section_noinit_begin = .;
     343                *(.noinit*)
     344                bsp_section_noinit_end = .;
     345        } > REGION_WORK AT > REGION_WORK
     346        bsp_section_noinit_size = bsp_section_noinit_end - bsp_section_noinit_begin;
    340347
    341348        .work : ALIGN_WITH_INPUT {
  • bsps/bfin/TLL6527M/start/linkcmds

    ra84bf96 re10dec0  
    129129    } > sdram
    130130
     131    .noinit (NOLOAD) : {
     132        *(.noinit*)
     133    } > sdram
     134
    131135    .rtemsstack (NOLOAD) : {
    132136        *(SORT(.rtemsstack.*))
  • bsps/bfin/bf537Stamp/start/linkcmds

    ra84bf96 re10dec0  
    137137    } > sdram
    138138
     139    .noinit (NOLOAD) : {
     140        *(.noinit*)
     141    } > sdram
     142
    139143    .rtemsstack (NOLOAD) : {
    140144        *(SORT(.rtemsstack.*))
  • bsps/bfin/eZKit533/start/linkcmds

    ra84bf96 re10dec0  
    126126    } > sdram
    127127
     128    .noinit (NOLOAD) : {
     129        *(.noinit*)
     130    } > sdram
     131
    128132    .rtemsstack (NOLOAD) : {
    129133        *(SORT(.rtemsstack.*))
  • bsps/i386/pc386/start/linkcmds

    ra84bf96 re10dec0  
    206206  . = ALIGN(32 / 8);
    207207  _end = .; PROVIDE (end = .);
     208  .noinit (NOLOAD) : {
     209    *(.noinit*)
     210  }
    208211  .rtemsstack (NOLOAD) : {
    209212    *(SORT(.rtemsstack.*))
  • bsps/lm32/lm32_evr/start/linkcmds

    ra84bf96 re10dec0  
    252252    _clear_end = .;
    253253
     254  } > sdram
     255
     256  .noinit (NOLOAD) : {
     257    *(.noinit*)
    254258  } > sdram
    255259
  • bsps/lm32/milkymist/start/linkcmds

    ra84bf96 re10dec0  
    250250    . = ALIGN (16);
    251251    _clear_end = .;
     252  } > sdram
     253
     254  .noinit (NOLOAD) : {
     255    *(.noinit*)
    252256  } > sdram
    253257
  • bsps/m68k/av5282/start/linkcmds

    ra84bf96 re10dec0  
    184184        } >ram
    185185
     186        .noinit (NOLOAD) : {
     187                *(.noinit*)
     188        } >ram
     189
    186190        .rtemsstack (NOLOAD) : {
    187191                *(SORT(.rtemsstack.*))
  • bsps/m68k/av5282/start/linkcmdsflash

    ra84bf96 re10dec0  
    184184        }
    185185
     186        .noinit (NOLOAD) : {
     187                *(.noinit*)
     188        }
     189
    186190        .rtemsstack (NOLOAD) : {
    187191                *(SORT(.rtemsstack.*))
  • bsps/m68k/av5282/start/linkcmdsram

    ra84bf96 re10dec0  
    183183        } >ram
    184184
     185        .noinit (NOLOAD) : {
     186                *(.noinit*)
     187        } >ram
     188
    185189        .rtemsstack (NOLOAD) : {
    186190                *(SORT(.rtemsstack.*))
  • bsps/m68k/csb360/start/linkcmds

    ra84bf96 re10dec0  
    159159  } > ram
    160160
     161  .noinit (NOLOAD) : {
     162       *(.noinit*)
     163  } >ram
     164
    161165  .rtemsstack (NOLOAD) : {
    162166        *(SORT(.rtemsstack.*))
  • bsps/m68k/gen68340/start/linkcmds

    ra84bf96 re10dec0  
    190190        } >ram
    191191
     192        .noinit (NOLOAD) : {
     193                *(.noinit*)
     194        } >ram
     195
    192196        .rtemsstack (NOLOAD) : {
    193197                *(SORT(.rtemsstack.*))
  • bsps/m68k/gen68360/start/linkcmds

    ra84bf96 re10dec0  
    154154        } >ram
    155155
     156        .noinit (NOLOAD) : {
     157                *(.noinit*)
     158        } > ram
     159
    156160        .rtemsstack (NOLOAD) : {
    157161                *(SORT(.rtemsstack.*))
  • bsps/m68k/gen68360/start/linkcmds.bootp

    ra84bf96 re10dec0  
    156156        } >myram
    157157
     158        .noinit (NOLOAD) : {
     159                *(.noinit*)
     160        } >mvram
     161
    158162        .rtemsstack (NOLOAD) : {
    159163                *(SORT(.rtemsstack.*))
  • bsps/m68k/gen68360/start/linkcmds.prom

    ra84bf96 re10dec0  
    154154        } >ram
    155155
     156        .noinit (NOLOAD) : {
     157                *(.noinit*)
     158        } > ram
     159
    156160        .rtemsstack (NOLOAD) : {
    157161                *(SORT(.rtemsstack.*))
  • bsps/m68k/mcf5206elite/start/linkcmds

    ra84bf96 re10dec0  
    192192  } > ram
    193193
     194  .noinit (NOLOAD) : {
     195    *(.noinit*)
     196  } >ram
     197
    194198  .rtemsstack (NOLOAD) : {
    195199    *(SORT(.rtemsstack.*))
  • bsps/m68k/mcf5206elite/start/linkcmds.flash

    ra84bf96 re10dec0  
    191191  } > ram
    192192
     193  .noinit (NOLOAD) : {
     194    *(.noinit*)
     195  } >ram
     196
    193197  .rtemsstack (NOLOAD) : {
    194198    *(SORT(.rtemsstack.*))
  • bsps/m68k/mcf52235/start/linkcmds

    ra84bf96 re10dec0  
    172172    } >sram
    173173
     174    .noinit (NOLOAD) : {
     175        *(.noinit*)
     176    } >sram
     177
    174178    .rtemsstack (NOLOAD) : {
    175179        *(SORT(.rtemsstack.*))
  • bsps/m68k/mcf5225x/start/linkcmds

    ra84bf96 re10dec0  
    172172    } >sram
    173173
     174    .noinit (NOLOAD) : {
     175        *(.noinit*)
     176    } >sram
     177
    174178    .rtemsstack (NOLOAD) : {
    175179        *(SORT(.rtemsstack.*))
  • bsps/m68k/mcf5235/start/linkcmds

    ra84bf96 re10dec0  
    191191        } > dram
    192192
     193        .noinit (NOLOAD) : {
     194                *(.noinit*)
     195        } > dram
     196
    193197        .rtemsstack (NOLOAD) : {
    194198                *(SORT(.rtemsstack.*))
  • bsps/m68k/mcf5235/start/linkcmdsflash

    ra84bf96 re10dec0  
    196196        } >ram
    197197
     198        .noinit (NOLOAD) : {
     199                *(.noinit*)
     200        } > ram
     201
    198202        .rtemsstack (NOLOAD) : {
    199203                *(SORT(.rtemsstack.*))
  • bsps/m68k/mcf5235/start/linkcmdsram

    ra84bf96 re10dec0  
    191191        } >ram
    192192
     193        .noinit (NOLOAD) : {
     194                *(.noinit*)
     195        } > ram
     196
    193197        .rtemsstack (NOLOAD) : {
    194198                *(SORT(.rtemsstack.*))
  • bsps/m68k/mcf5329/start/linkcmds

    ra84bf96 re10dec0  
    180180        PROVIDE (_end = .);
    181181        _clear_end = .;
     182    } > dram
     183
     184    .noinit (NOLOAD) : {
     185        *(.noinit*)
    182186        WorkAreaBase = .;
    183187    } > dram
  • bsps/m68k/mcf5329/start/linkcmdsflash

    ra84bf96 re10dec0  
    176176        PROVIDE (_end = .);
    177177        _clear_end = .;
     178    } > dram
     179
     180    .noinit (NOLOAD) : {
     181        *(.noinit*)
    178182        WorkAreaBase = .;
    179183    } > dram
  • bsps/m68k/mrm332/start/linkcmds

    ra84bf96 re10dec0  
    195195    _clear_end = .;
    196196  } > ram
     197  .noinit (NOLOAD) : {
     198    *(.noinit*)
     199  } > ram
    197200  .rtemsstack (NOLOAD) : {
    198201    *(SORT(.rtemsstack.*))
  • bsps/m68k/shared/start/linkcmds.base

    ra84bf96 re10dec0  
    249249        } > REGION_DATA AT > REGION_DATA
    250250        bsp_section_bss_size = bsp_section_bss_end - bsp_section_bss_begin;
     251
     252        .noinit (NOLOAD) : ALIGN_WITH_INPUT {
     253                bsp_section_noinit_begin = .;
     254                *(.noinit*)
     255                bsp_section_noinit_end = .;
     256        } > REGION_DATA AT > REGION_DATA
     257        bsp_section_noinit_size = bsp_section_noinit_end - bsp_section_noinit_begin;
    251258
    252259        .rtemsstack (NOLOAD) : ALIGN_WITH_INPUT {
  • bsps/m68k/uC5282/start/linkcmds

    ra84bf96 re10dec0  
    200200    } >ram
    201201
     202    .noinit (NOLOAD) : {
     203       *(.noinit*)
     204    } >ram
     205
    202206    .rtemsstack (NOLOAD) : {
    203207        *(SORT(.rtemsstack.*))
  • bsps/mips/csb350/start/linkcmds

    ra84bf96 re10dec0  
    193193  } >ram
    194194
     195  .noinit (NOLOAD) : {
     196    *(.noinit*)
     197  } >ram
     198
    195199  .rtemsstack (NOLOAD) : {
    196200    *(SORT(.rtemsstack.*))
  • bsps/mips/hurricane/start/linkcmds

    ra84bf96 re10dec0  
    171171  }
    172172
     173  .noinit (NOLOAD) : {
     174    *(.noinit*)
     175  }
     176
    173177  .rtemsstack (NOLOAD) : {
    174178    *(SORT(.rtemsstack.*))
  • bsps/mips/jmr3904/start/linkcmds

    ra84bf96 re10dec0  
    168168  }
    169169
     170  .noinit (NOLOAD) : {
     171    *(.noinit*)
     172  }
     173
    170174  .rtemsstack (NOLOAD) : {
    171175    *(SORT(.rtemsstack.*))
  • bsps/mips/malta/start/linkcmds

    ra84bf96 re10dec0  
    169169  }
    170170
     171  .noinit (NOLOAD) : {
     172    *(.noinit*)
     173  }
     174
    171175  .rtemsstack (NOLOAD) : {
    172176    *(SORT(.rtemsstack.*))
  • bsps/mips/rbtx4925/start/linkcmds

    ra84bf96 re10dec0  
    171171  }
    172172
     173  .noinit (NOLOAD) : {
     174    *(.noinit*)
     175  }
     176
    173177  .rtemsstack (NOLOAD) : {
    174178    *(SORT(.rtemsstack.*))
  • bsps/mips/rbtx4938/start/linkcmds

    ra84bf96 re10dec0  
    171171  }
    172172
     173  .noinit (NOLOAD) : {
     174    *(.noinit*)
     175  }
     176
    173177  .rtemsstack (NOLOAD) : {
    174178    *(SORT(.rtemsstack.*))
  • bsps/moxie/moxiesim/start/linkcmds

    ra84bf96 re10dec0  
    231231  _bss_end__ = . ; __bss_end__ = . ; __end__ = . ;
    232232  PROVIDE (end = .);
     233  .noinit (NOLOAD) : {
     234    *(.noinit*)
     235  }
    233236  .rtemsstack (NOLOAD) : {
    234237    *(SORT(.rtemsstack.*))
  • bsps/nios2/nios2_iss/start/linkcmds

    ra84bf96 re10dec0  
    268268    } > onchip_memory_0
    269269
     270    .noinit (NOLOAD) : {
     271        *(.noinit*)
     272    } > onchip_memory_0
     273
    270274    .rtemsstack (NOLOAD) : {
    271275        _stack_low = ABSOLUTE(.);
  • bsps/or1k/shared/start/linkcmds.base

    ra84bf96 re10dec0  
    286286  bsp_section_bss_size = bsp_section_bss_end - bsp_section_bss_begin;
    287287
     288  .noinit (NOLOAD) : ALIGN_WITH_INPUT {
     289    bsp_section_noinit_begin = .;
     290    *(.noinit*)
     291    bsp_section_noinit_end = .;
     292  } > REGION_BSS AT > REGION_BSS
     293  bsp_section_noinit_size = bsp_section_noinit_end - bsp_section_noinit_begin;
     294
    288295  .rtemsstack (NOLOAD) : ALIGN_WITH_INPUT{
    289296    *(SORT(.rtemsstack.*))
  • bsps/powerpc/gen5200/start/linkcmds.gen5200_base

    ra84bf96 re10dec0  
    295295        bsp_section_data_size = bsp_section_data_end - bsp_section_data_start;
    296296        bsp_section_bss_size = bsp_section_bss_end - bsp_section_bss_start;
     297
     298        .noinit (NOLOAD) : {
     299                *(.noinit*)
     300        } > RAM
    297301
    298302        .rtemsstack (NOLOAD) : {
  • bsps/powerpc/haleakala/start/linkcmds

    ra84bf96 re10dec0  
    251251    sbss.size = sbss.end - sbss.start;
    252252
     253    .noinit (NOLOAD) : {
     254        *(.noinit*)
     255    } >RAM
     256
    253257    .rtemsstack (NOLOAD) : {
    254258        *(SORT(.rtemsstack.*))
  • bsps/powerpc/include/bsp/linker-symbols.h

    ra84bf96 re10dec0  
    9494LINKER_SYMBOL(bsp_section_rtemsstack_size)
    9595
     96LINKER_SYMBOL(bsp_section_noinit_begin)
     97LINKER_SYMBOL(bsp_section_noinit_end)
     98LINKER_SYMBOL(bsp_section_noinit_size)
     99
    96100LINKER_SYMBOL(bsp_section_work_begin)
    97101LINKER_SYMBOL(bsp_section_work_end)
  • bsps/powerpc/mpc8260ads/start/linkcmds

    ra84bf96 re10dec0  
    290290    clear_end = .;
    291291
     292    .noinit (NOLOAD) : {
     293        *(.noinit*)
     294    } >ram
     295
    292296    .rtemsstack (NOLOAD) : {
    293297        *(SORT(.rtemsstack.*))
  • bsps/powerpc/qoriq/start/mmu-config.c

    ra84bf96 re10dec0  
    134134        ENTRY_RW(bsp_section_bss_begin, bsp_section_bss_size),
    135135        ENTRY_RW(bsp_section_rtemsstack_begin, bsp_section_rtemsstack_size),
     136        ENTRY_RW(bsp_section_noinit_begin, bsp_section_noinit_size),
    136137        ENTRY_RW(bsp_section_stack_begin, bsp_section_stack_size),
    137138        ENTRY_IO(bsp_section_nocache_begin, bsp_section_nocache_size),
  • bsps/powerpc/shared/start/linkcmds.base

    ra84bf96 re10dec0  
    343343        } > REGION_RTEMSSTACK AT > REGION_RTEMSSTACK
    344344        bsp_section_rtemsstack_size = bsp_section_rtemsstack_end - bsp_section_rtemsstack_begin;
     345
     346        .noinit (NOLOAD) : ALIGN_WITH_INPUT {
     347                bsp_section_noinit_begin = .;
     348                *(.noinit*)
     349                bsp_section_noinit_end = .;
     350        } > REGION_WORK AT > REGION_WORK
     351        bsp_section_noinit_size = bsp_section_noinit_end - bsp_section_noinit_begin;
    345352
    346353        .work : ALIGN_WITH_INPUT {
  • bsps/powerpc/shared/start/linkcmds.share

    ra84bf96 re10dec0  
    253253  . = ALIGN(16);
    254254   PROVIDE (__bss_end = .);
     255  } > CODE
     256  .noinit (NOLOAD) : {
     257    *(.noinit*)
    255258  } > CODE
    256259  .rtemsstack (NOLOAD) : {
  • bsps/powerpc/ss555/start/linkcmds

    ra84bf96 re10dec0  
    234234  PROVIDE(_end = bss.end);
    235235
     236  .noinit (NOLOAD) : {
     237    *(.noinit*)
     238  }
     239
    236240  .rtemsstack (NOLOAD) : {
    237241    *(SORT(.rtemsstack.*))
  • bsps/powerpc/virtex4/start/linkcmds

    ra84bf96 re10dec0  
    253253  PROVIDE(__bsp_ram_start = .);
    254254
     255  .noinit (NOLOAD) : {
     256    *(.noinit*)
     257  } >RAM
     258
    255259  .rtemsstack (NOLOAD) : {
    256260    *(SORT(.rtemsstack.*))
  • bsps/powerpc/virtex5/start/linkcmds

    ra84bf96 re10dec0  
    253253  PROVIDE(__bsp_ram_start = .);
    254254
     255  .noinit (NOLOAD) : {
     256    *(.noinit*)
     257  } >RAM
     258
    255259  .rtemsstack (NOLOAD) : {
    256260    *(SORT(.rtemsstack.*))
  • bsps/riscv/include/bsp/linker-symbols.h

    ra84bf96 re10dec0  
    6464LINKER_SYMBOL(bsp_section_rtemsstack_size)
    6565
     66LINKER_SYMBOL(bsp_section_noinit_begin)
     67LINKER_SYMBOL(bsp_section_noinit_end)
     68LINKER_SYMBOL(bsp_section_noinit_size)
     69
    6670LINKER_SYMBOL(bsp_section_work_begin)
    6771LINKER_SYMBOL(bsp_section_work_end)
  • bsps/riscv/shared/start/linkcmds.base.in

    ra84bf96 re10dec0  
    314314        } > REGION_RTEMSSTACK AT > REGION_RTEMSSTACK
    315315        bsp_section_rtemsstack_size = bsp_section_rtemsstack_end - bsp_section_rtemsstack_begin;
     316
     317        .noinit (NOLOAD) : @RISCV_LINKER_ALIGN_DIRECTIVE@ {
     318                bsp_section_noinit_begin = .;
     319                *(.noinit*)
     320                bsp_section_noinit_end = .;
     321        } > REGION_WORK AT > REGION_WORK
     322        bsp_section_noinit_size = bsp_section_noinit_end - bsp_section_noinit_begin;
    316323
    317324        .work (NOLOAD) : @RISCV_LINKER_ALIGN_DIRECTIVE@ {
  • bsps/sh/gensh1/start/linkcmds

    ra84bf96 re10dec0  
    188188  PROVIDE (end = .);
    189189
     190  .noinit (NOLOAD) : {
     191    *(.noinit*)
     192  } > ram
     193
    190194  .rtemsstackidle (NOLOAD) : {
    191195    *(SORT(.rtemsstack.idle*))
  • bsps/sh/gensh2/start/linkcmds

    ra84bf96 re10dec0  
    199199  PROVIDE (end = .);
    200200
     201  .noinit (NOLOAD) : {
     202    *(.noinit*)
     203  } > ram
     204
    201205  .rtemsstackidle (NOLOAD) : {
    202206    *(SORT(.rtemsstack.idle*))
  • bsps/sh/gensh2/start/linkcmds.ram

    ra84bf96 re10dec0  
    201201  PROVIDE (end = .);
    202202
     203  .noinit (NOLOAD) : {
     204    *(.noinit*)
     205  } > ram
     206
    203207  .rtemsstackidle (NOLOAD) : {
    204208    *(SORT(.rtemsstack.idle*))
  • bsps/sh/gensh2/start/linkcmds.rom

    ra84bf96 re10dec0  
    202202  PROVIDE (end = .);
    203203
     204  .noinit (NOLOAD) : {
     205    *(.noinit*)
     206  } > ram
     207
    204208  .rtemsstackidle (NOLOAD) : {
    205209    *(SORT(.rtemsstack.idle*))
  • bsps/sh/gensh4/start/linkcmds

    ra84bf96 re10dec0  
    146146  } > ram
    147147
     148  .noinit (NOLOAD) : {
     149    *(.noinit*)
     150  } > ram
     151
    148152  .rtemsstack (NOLOAD) : {
    149153    *(SORT(.rtemsstack.*))
  • bsps/sh/gensh4/start/linkcmds.rom

    ra84bf96 re10dec0  
    187187   . = ALIGN(32 / 8);
    188188   __bss_end = .;
     189  } > ram
     190
     191  .noinit (NOLOAD) : {
     192    *(.noinit*)
    189193  } > ram
    190194
  • bsps/sh/gensh4/start/linkcmds.rom2ram

    ra84bf96 re10dec0  
    192192      *(.rela.bss .rela.bss.* .rela.gnu.linkonce.b.*)
    193193    } >ram
     194
     195  .noinit (NOLOAD) : {
     196    *(.noinit*)
     197  } > ram
    194198
    195199  .rtemsstack (NOLOAD) : {
  • bsps/sh/shsim/start/linkcmds

    ra84bf96 re10dec0  
    204204  PROVIDE (end = .);
    205205
     206  .noinit (NOLOAD) : {
     207    *(.noinit*)
     208  } > ram
     209
    206210  .rtemsstack (NOLOAD) : {
    207211    *(SORT(.rtemsstack.*))
  • bsps/sparc/shared/start/linkcmds.base

    ra84bf96 re10dec0  
    155155      *(.rela.rtemsrwset*)
    156156    } >ram
     157  .noinit (NOLOAD) : {
     158      *(.noinit*)
     159  } > ram
    157160  .rtemsstack (NOLOAD) : {
    158161    *(SORT(.rtemsstack.*))
  • bsps/sparc64/shared/start/linkcmds

    ra84bf96 re10dec0  
    180180  } > ram
    181181
     182  .noinit (NOLOAD) : {
     183    *(.noinit*)
     184  } > ram
     185
    182186  .rtemsstack (NOLOAD) : {
    183187    *(SORT(.rtemsstack.*))
  • bsps/v850/gdbv850sim/start/linkcmds

    ra84bf96 re10dec0  
    192192        *(.bss)
    193193        *(COMMON)
     194  }
     195  .noinit (NOLOAD) : {
     196    *(.noinit*)
    194197  }
    195198  .rtemsstack (NOLOAD) : {
  • bsps/x86_64/amd64/start/linkcmds

    ra84bf96 re10dec0  
    1111 *   - Added HeapSize, RamBase, RamSize, WorkBase
    1212 *   - rtemssroset section
     13 *   - noinit section
    1314 *   - rtemsstack section
    1415 */
     
    232233  . = ALIGN(64 / 8);
    233234  _end = .; PROVIDE (end = .);
     235  .noinit (NOLOAD) :
     236  {
     237    *(.noinit*)
     238  }
    234239  .rtemsstack (NOLOAD) :
    235240  {
Note: See TracChangeset for help on using the changeset viewer.