xref: /dragonfly/stand/boot/pc32/btx/btx/btx.ldscript (revision 7d3e9a5b)
1PHDRS
2{
3	text PT_LOAD;
4}
5
6SECTIONS {
7	. = 0x9000;
8	.text   : { *(.text) } :text
9	.data	: { *(.data) }
10	.bss	: { *(.bss) }
11}
12