Changeset c89ae25 in mainline for kernel/arch/arm32


Ignore:
Timestamp:
2023-10-27T17:24:14Z (2 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
master, topic/msim-upgrade, topic/simplify-dev-export
Children:
34120f10, b169619
Parents:
0373af9
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2023-10-27 17:03:39)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2023-10-27 17:24:14)
Message:

Fix and enable —gc-sections in /kernel and /boot

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/arm32/_link.ld.in

    r0373af9 rc89ae25  
    2828        .text : {
    2929                ktext_start = .;
    30                 *(.text);
     30                *(.text .text.*);
    3131                ktext_end = .;
    3232        }
    3333        .data : {
    3434                kdata_start = .;
    35                 *(.data);                       /* initialized data */
    36                 *(.bss);                        /* uninitialized static variables */
     35                *(.data .data.*);                       /* initialized data */
     36                *(.bss .bss.*);                        /* uninitialized static variables */
    3737                *(COMMON);                      /* global variables */
    3838
     
    4040                *(.eh_frame .eh_frame.*);       /* stack unwinding data */
    4141                *(.eh_frame_hdr .eh_frame_hdr.*);
    42                 *(.sdata);
    43                 *(.reginfo);
     42                *(.sdata .sdata.*);
    4443        }
    4544        .sbss : {
    46                 *(.sbss);
    47                 *(.scommon);
     45                *(.sbss .sbss.*);
     46                *(.scommon .scommon.*);
    4847        }
    4948
Note: See TracChangeset for help on using the changeset viewer.