blob: ea944eaa3cb151e73eba7a0e48564f3d0fcbe5bd [file] [log] [blame] [edit]
/*
* Linker script for the softmmu test kernels.
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
ENTRY(_start)
SECTIONS {
. = 0;
.text : {
*(.head)
*(.text)
}
/DISCARD/ : {
*(*)
}
}