mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-27 20:33:54 -06:00

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-ID: <20231004090629.37473-6-philmd@linaro.org> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
20 lines
234 B
Text
20 lines
234 B
Text
/*
|
|
* Linker script for the system test kernels.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
ENTRY(_start)
|
|
|
|
SECTIONS {
|
|
. = 0;
|
|
|
|
.text : {
|
|
*(.head)
|
|
*(.text)
|
|
}
|
|
|
|
/DISCARD/ : {
|
|
*(*)
|
|
}
|
|
}
|