Last change
on this file since 58466 was 58466, checked in by vboxsync, 9 years ago |
EFI/Firmware: Merged in the svn:eol-style, svn:mime-type and trailing whitespace cleanup that was done after the initial UDK2014.SP1 import: svn merge /vendor/edk2/UDK2014.SP1 /vendor/edk2/current .
|
-
Property svn:eol-style
set to
native
|
File size:
708 bytes
|
Line | |
---|
1 | /* OUTPUT_FORMAT(efi-bsdrv-x86_64) */
|
---|
2 | SECTIONS
|
---|
3 | {
|
---|
4 | /* . = 0 + SIZEOF_HEADERS; */
|
---|
5 | . = 0x280;
|
---|
6 | .text ALIGN(0x20) :
|
---|
7 | {
|
---|
8 | *(.text .stub .text.* .gnu.linkonce.t.*)
|
---|
9 | . = ALIGN(0x20);
|
---|
10 | } =0x90909090
|
---|
11 | .data ALIGN(0x40) :
|
---|
12 | {
|
---|
13 | *(
|
---|
14 | .rodata .rodata.* .gnu.linkonce.r.*
|
---|
15 | .data .data.* .gnu.linkonce.d.*
|
---|
16 | .bss .bss.*
|
---|
17 | *COM*
|
---|
18 | )
|
---|
19 | . = ALIGN(0x20);
|
---|
20 | }
|
---|
21 | .eh_frame ALIGN(0x20) :
|
---|
22 | {
|
---|
23 | KEEP (*(.eh_frame))
|
---|
24 | }
|
---|
25 | .got ALIGN(0x20) :
|
---|
26 | {
|
---|
27 | *(.got .got.*)
|
---|
28 | . = ALIGN(0x20);
|
---|
29 | }
|
---|
30 | .rela ALIGN(0x20) :
|
---|
31 | {
|
---|
32 | *(.rela .rela.*)
|
---|
33 | }
|
---|
34 | /DISCARD/ : {
|
---|
35 | *(.note.GNU-stack) *(.gnu_debuglink)
|
---|
36 | *(.interp)
|
---|
37 | *(.dynsym)
|
---|
38 | *(.dynstr)
|
---|
39 | *(.dynamic)
|
---|
40 | *(.hash)
|
---|
41 | *(.comment)
|
---|
42 | }
|
---|
43 | }
|
---|
44 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.