linux-zen-desktop/samples/acrn/guest.ld

10 lines
197 B
Plaintext
Raw Normal View History

2023-08-30 17:31:07 +02:00
/* SPDX-License-Identifier: GPL-2.0 */
OUTPUT_FORMAT(binary)
SECTIONS
{
.start : { *(.start) }
.text : { *(.text*) }
.rodata : { *(.rodata) }
.data : { *(.data) }
}