21 lines
235 B
Plaintext
21 lines
235 B
Plaintext
|
/*
|
||
|
* Linker script for the softmmu test kernels.
|
||
|
*
|
||
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
*/
|
||
|
|
||
|
ENTRY(_start)
|
||
|
|
||
|
SECTIONS {
|
||
|
. = 0;
|
||
|
|
||
|
.text : {
|
||
|
*(.head)
|
||
|
*(.text)
|
||
|
}
|
||
|
|
||
|
/DISCARD/ : {
|
||
|
*(*)
|
||
|
}
|
||
|
}
|