1
0
Fork 0
qemu/tests/tcg/i386/system/kernel.ld
Daniel Baumann ea34ddeea6
Adding upstream version 1:10.0.2+ds.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 14:27:05 +02:00

23 lines
196 B
Text

SECTIONS {
. = 0x100000;
.text : {
__load_st = .;
*(.head)
*(.text)
}
.rodata : {
*(.rodata)
}
.data : {
*(.data*)
__load_en = .;
}
.bss : {
*(.bss)
__bss_en = .;
}
}