Changeset eb7c33ad in rtems


Ignore:
Timestamp:
05/03/21 12:04:53 (3 years ago)
Author:
Sebastian Huber <sebastian.huber@…>
Branches:
master
Children:
d692c62d
Parents:
5b97821
git-author:
Sebastian Huber <sebastian.huber@…> (05/03/21 12:04:53)
git-committer:
Sebastian Huber <sebastian.huber@…> (05/03/21 12:05:19)
Message:

bsps/riscv: Support RTEMS_NOINIT in linkcmds

Update #3866.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • spec/build/bsps/riscv/linkcmdsbase.yml

    r5b97821 reb7c33ad  
    317317    } > REGION_RTEMSSTACK AT > REGION_RTEMSSTACK
    318318    bsp_section_rtemsstack_size = bsp_section_rtemsstack_end - bsp_section_rtemsstack_begin;
     319
     320    .noinit (NOLOAD) : ${LINKCMDS_ALIGN_DIRECTIVE} {
     321      bsp_section_noinit_begin = .;
     322      *(.noinit*)
     323      bsp_section_noinit_end = .;
     324    } > REGION_WORK AT > REGION_WORK
     325    bsp_section_noinit_size = bsp_section_noinit_end - bsp_section_noinit_begin;
    319326
    320327    .work (NOLOAD) : ${LINKCMDS_ALIGN_DIRECTIVE} {
Note: See TracChangeset for help on using the changeset viewer.