/usr/share/faumachine/experiments/test-pic/boot.lds is in faumachine-data 20110812-1.2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | OUTPUT_FORMAT("elf32-i386")
SECTIONS
{
. = 0x7c00;
text = .;
.text : {
*(.text)
}
etext = .;
.rodata : {
*(.rodata) *(.rodata.*)
}
.data : {
*(.data)
}
edata = .;
.bss : {
*(.bss)
}
end = .;
}
|