Rev 534 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 534 | Rev 813 | ||
---|---|---|---|
Line 9... | Line 9... | ||
9 | #define __ASM__ |
9 | #define __ASM__ |
10 | 10 | ||
11 | ENTRY(kernel_image_start) |
11 | ENTRY(kernel_image_start) |
12 | 12 | ||
13 | SECTIONS { |
13 | SECTIONS { |
14 | .image 0x0000000000001000: AT (0x0000000000001000) { |
14 | .image 0x0000000000100000: AT (0x0000000000100000) { |
15 | ktext_start = .; |
15 | ktext_start = .; |
16 | *(K_TEXT_START); |
16 | *(K_TEXT_START); |
17 | *(.text) |
17 | *(.text) |
18 | ktext_end = .; |
18 | ktext_end = .; |
19 | 19 | ||
Line 35... | Line 35... | ||
35 | kdata_end = .; |
35 | kdata_end = .; |
36 | } |
36 | } |
37 | 37 | ||
38 | _hardcoded_ktext_size = ktext_end - ktext_start; |
38 | _hardcoded_ktext_size = ktext_end - ktext_start; |
39 | _hardcoded_kdata_size = kdata_end - kdata_start; |
39 | _hardcoded_kdata_size = kdata_end - kdata_start; |
40 | _hardcoded_load_address = 0x0000000000001000; |
40 | _hardcoded_load_address = 0x0000000000100000; |
41 | 41 | ||
42 | } |
42 | } |