xref: /qemu/tests/tcg/s390x/softmmu.ld (revision 1527c6b6fa6c6775523287e33f78b41afc7ba46c)
1e902126cSIlya Leoshkevich/*
2*7893e42dSPhilippe Mathieu-Daudé * Linker script for the system test kernels.
3e902126cSIlya Leoshkevich *
4e902126cSIlya Leoshkevich * SPDX-License-Identifier: GPL-2.0-or-later
5e902126cSIlya Leoshkevich */
6e902126cSIlya Leoshkevich
7e902126cSIlya LeoshkevichENTRY(_start)
8e902126cSIlya Leoshkevich
9e902126cSIlya LeoshkevichSECTIONS {
10e902126cSIlya Leoshkevich    . = 0;
11e902126cSIlya Leoshkevich
12e902126cSIlya Leoshkevich    .text : {
13e902126cSIlya Leoshkevich        *(.head)
14e902126cSIlya Leoshkevich        *(.text)
15e902126cSIlya Leoshkevich    }
16e902126cSIlya Leoshkevich
17e902126cSIlya Leoshkevich    /DISCARD/ : {
18e902126cSIlya Leoshkevich        *(*)
19e902126cSIlya Leoshkevich    }
20e902126cSIlya Leoshkevich}
21