mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00

This introduces the build framework for simple i386 system tests. The first test is the eponymous "Hello World" which simply outputs the text on the serial port and then exits. I've included the framework for x86_64 but it is not in this series as it is a work in progress. Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
23 lines
195 B
Text
23 lines
195 B
Text
SECTIONS {
|
|
. = 0x100000;
|
|
|
|
.text : {
|
|
__load_st = .;
|
|
*(.head)
|
|
*(.text)
|
|
}
|
|
|
|
.rodata : {
|
|
*(.rodata)
|
|
}
|
|
|
|
.data : {
|
|
*(.data)
|
|
__load_en = .;
|
|
}
|
|
|
|
.bss : {
|
|
*(.bss)
|
|
__bss_en = .;
|
|
}
|
|
}
|