Skip to content

Commit

Permalink
m68knommu: Split the .init section into INIT_TEXT_SECTION and INIT_DA…
Browse files Browse the repository at this point in the history
…TA_SECTION.

Signed-off-by: Tim Abbott <tabbott@ksplice.com>
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
  • Loading branch information
Tim Abbott authored and Greg Ungerer committed Dec 4, 2009
1 parent 995bcd3 commit 53749f7
Showing 1 changed file with 4 additions and 13 deletions.
17 changes: 4 additions & 13 deletions arch/m68knommu/kernel/vmlinux.lds.S
Original file line number Diff line number Diff line change
Expand Up @@ -154,22 +154,13 @@ SECTIONS {
_edata = . ;
} > DATA

.init : {
.init.text : {
. = ALIGN(PAGE_SIZE);
__init_begin = .;
} > INIT
.init : {
_sinittext = .;
INIT_TEXT
_einittext = .;
INIT_DATA
INIT_SETUP(16)
INIT_CALLS
CON_INITCALL
SECURITY_INITCALL
INIT_RAM_FS
} > INIT
.init : {
INIT_TEXT_SECTION(PAGE_SIZE) > INIT
INIT_DATA_SECTION(16) > INIT
.init.data : {
. = ALIGN(PAGE_SIZE);
__init_end = .;
} > INIT
Expand Down

0 comments on commit 53749f7

Please sign in to comment.