]> Joshua Wise's Git repositories - netwatch.git/blame_incremental - aseg/aseg.lds
move packet to aseg-paging in preparation for aseg's deletion
[netwatch.git] / aseg / aseg.lds
... / ...
CommitLineData
1OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
2OUTPUT_ARCH(i386)
3
4SECTIONS
5{
6 . = 0xA8000;
7 .aseg : {
8 _start = .;
9 aseg.o
10 LONG(_stacktop);
11 LONG(smi_entry);
12 *(.data);
13 *(.rodata);
14
15 . = 0x8000;
16 *(.text);
17 }
18
19 . = 0x1FF80000;
20 .bss : {
21 _bss = .;
22 *(.bss);
23 _bssend = .;
24 }
25 .stack : {
26 . = . + 0x10000;
27 . = ALIGN(0x10);
28 _stacktop = .;
29 }
30
31 . = 0x10000;
32 .info : {
33 _start = .;
34 LONG(0x5754454E);
35 LONG(__firstrun_start);
36 }
37}
This page took 0.01943 seconds and 4 git commands to generate.