]> Joshua Wise's Git repositories - netwatch.git/blame - aseg/aseg.lds
slight grubload cleanups; use __RAW__ defined by build scripts instead of __linux__
[netwatch.git] / aseg / aseg.lds
CommitLineData
f54c68a0
JW
1OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
2OUTPUT_ARCH(i386)
3SECTIONS
4{
5 . = 0xA8000;
4bea7daf 6 .aseg : {
f54c68a0
JW
7 _start = .;
8 aseg.o
4bea7daf
JW
9 LONG(_stacktop);
10 LONG(_bss);
11 LONG(_bssend - _bss);
12 LONG(__start);
13 *(.text);
14 *(.data);
15 *(.rodata);
16 }
17
18 . = 0x1FF80000;
19 .bss : {
20 _bss = .;
21 *(.bss);
22 _bssend = .;
23 }
24 .stack : {
25 . = . + 0x10000;
26 . = ALIGN(0x10);
27 _stacktop = .;
f54c68a0
JW
28 }
29}
This page took 0.024785 seconds and 4 git commands to generate.