File tree Expand file tree Collapse file tree 1 file changed +24
-24
lines changed Expand file tree Collapse file tree 1 file changed +24
-24
lines changed Original file line number Diff line number Diff line change @@ -2,40 +2,40 @@ ENTRY(start)
2
2
3
3
SECTIONS
4
4
{
5
- . = 0x100000;
5
+ . = 0x100000;
6
6
7
- .text BLOCK (4K) : ALIGN (4K)
8
- {
7
+ .text BLOCK (4K) : ALIGN (4K)
8
+ {
9
9
Arch/i386/Boot/boot.ao
10
- *(.multiboot)
11
- *(.page_tables)
10
+ *(.multiboot)
11
+ *(.page_tables)
12
12
start_of_kernel_text = .;
13
- *(.text)
14
- *(.text.startup)
13
+ *(.text)
14
+ *(.text.startup)
15
15
end_of_kernel_text = .;
16
- }
16
+ }
17
17
18
- .rodata BLOCK (4K) : ALIGN (4K)
19
- {
20
- start_ctors = .;
21
- *(.ctors)
22
- end_ctors = .;
18
+ .rodata BLOCK (4K) : ALIGN (4K)
19
+ {
20
+ start_ctors = .;
21
+ *(.ctors)
22
+ end_ctors = .;
23
23
24
- *(.rodata)
25
- }
24
+ *(.rodata)
25
+ }
26
26
27
- .data BLOCK (4K) : ALIGN (4K)
28
- {
27
+ .data BLOCK (4K) : ALIGN (4K)
28
+ {
29
29
start_of_kernel_data = .;
30
- *(.data)
30
+ *(.data)
31
31
end_of_kernel_data = .;
32
- }
32
+ }
33
33
34
- .bss BLOCK (4K) : ALIGN (4K)
35
- {
34
+ .bss BLOCK (4K) : ALIGN (4K)
35
+ {
36
36
start_of_kernel_bss = .;
37
- *(COMMON)
38
- *(.bss)
37
+ *(COMMON)
38
+ *(.bss)
39
39
end_of_kernel_bss = .;
40
- }
40
+ }
41
41
}
You can’t perform that action at this time.
0 commit comments