We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f54af50 commit 01ab464Copy full SHA for 01ab464
arch/csky/kernel/vmlinux.lds.S
@@ -23,13 +23,8 @@ SECTIONS
23
. = PAGE_OFFSET + PHYS_OFFSET_OFFSET;
24
25
_start = .;
26
- __init_begin = .;
27
HEAD_TEXT_SECTION
28
- INIT_TEXT_SECTION(PAGE_SIZE)
29
- INIT_DATA_SECTION(PAGE_SIZE)
30
- PERCPU_SECTION(L1_CACHE_BYTES)
31
. = ALIGN(PAGE_SIZE);
32
- __init_end = .;
33
34
.text : AT(ADDR(.text) - LOAD_OFFSET) {
35
_text = .;
@@ -49,7 +44,12 @@ SECTIONS
49
44
50
45
/* __init_begin __init_end must be page aligned for free_initmem */
51
46
52
-
47
+ __init_begin = .;
48
+ INIT_TEXT_SECTION(PAGE_SIZE)
+ INIT_DATA_SECTION(PAGE_SIZE)
+ PERCPU_SECTION(L1_CACHE_BYTES)
+ . = ALIGN(PAGE_SIZE);
+ __init_end = .;
53
54
_sdata = .;
55
RO_DATA(PAGE_SIZE)
0 commit comments