brintos

brintos / linux-shallow public Read only

0
0
Text · 197 B · 5127c68 Raw
10 lines · plain
1/* SPDX-License-Identifier: GPL-2.0 */2OUTPUT_FORMAT(binary)3SECTIONS4{5        .start : { *(.start) }6        .text : { *(.text*) }7        .rodata : { *(.rodata) }8        .data : { *(.data) }9}10