7893e42d5d
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>
21 lines
234 B
Plaintext
21 lines
234 B
Plaintext
/*
|
|
* Linker script for the system test kernels.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
ENTRY(_start)
|
|
|
|
SECTIONS {
|
|
. = 0;
|
|
|
|
.text : {
|
|
*(.head)
|
|
*(.text)
|
|
}
|
|
|
|
/DISCARD/ : {
|
|
*(*)
|
|
}
|
|
}
|