PageRenderTime 33ms CodeModel.GetById 28ms app.highlight 4ms RepoModel.GetById 0ms app.codeStats 0ms

/arch/x86/kernel/acpi/realmode/wakeup.lds.S

https://bitbucket.org/cresqo/cm7-p500-kernel
Assembly | 64 lines | 53 code | 11 blank | 0 comment | 2 complexity | 9f9395d29a55e066ab99db9c174d0728 MD5 | raw file
Possible License(s): LGPL-2.0, AGPL-1.0, GPL-2.0
 1/*
 2 * wakeup.ld
 3 *
 4 * Linker script for the real-mode wakeup code
 5 */
 6#undef i386
 7#include "wakeup.h"
 8
 9OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
10OUTPUT_ARCH(i386)
11ENTRY(_start)
12
13SECTIONS
14{
15	. = 0;
16	.text : {
17		 *(.text*)
18	}
19
20	. = ALIGN(16);
21	.rodata : {
22		*(.rodata*)
23	}
24
25	.videocards : {
26		video_cards = .;
27		*(.videocards)
28		video_cards_end = .;
29	}
30
31	. = ALIGN(16);
32	.data : {
33		 *(.data*)
34	}
35
36	.signature : {
37		end_signature = .;
38		LONG(0x65a22c82)
39	}
40
41	. = ALIGN(16);
42	.bss :	{
43		__bss_start = .;
44		*(.bss)
45		__bss_end = .;
46	}
47
48	. = HEADER_OFFSET;
49	.header : {
50		*(.header)
51	}
52
53	. = ALIGN(16);
54	_end = .;
55
56	/DISCARD/ : {
57		*(.note*)
58	}
59
60	/*
61	 * The ASSERT() sink to . is intentional, for binutils 2.14 compatibility:
62	 */
63	. = ASSERT(_end <= WAKEUP_SIZE, "Wakeup too big!");
64}