Code & Deploy
siGit Code
Git Hosting
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@samitouri
/
QOSamiQemu
QOSamiQemu
/
tests
/
tcg
/
s390x
/
softmmu.ld
Code
Commits
Issues
Pulls
Sessions
CI/CD
master
master
ld
20 lines
234 Bytes
Copy permalink
Copy
Raw
1
/*
2
* Linker script for the system test kernels.
3
*
4
* SPDX-License-Identifier: GPL-2.0-or-later
5
*/
6
7
ENTRY(_start)
8
9
SECTIONS {
10
. = 0;
11
12
.text : {
13
*(.head)
14
*(.text)
15
}
16
17
/DISCARD/ : {
18
*(*)
19
}
20
}