aboutsummaryrefslogtreecommitdiff
path: root/tests/tcg/s390x/softmmu.ld
blob: ea944eaa3cb151e73eba7a0e48564f3d0fcbe5bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * Linker script for the softmmu test kernels.
 *
 * SPDX-License-Identifier: GPL-2.0-or-later
 */

ENTRY(_start)

SECTIONS {
    . = 0;

    .text : {
        *(.head)
        *(.text)
    }

    /DISCARD/ : {
        *(*)
    }
}