dect
/
linux-2.6
Archived
13
0
Fork 0

m68knommu: Split the .init section into INIT_TEXT_SECTION and INIT_DATA_SECTION.

Signed-off-by: Tim Abbott <tabbott@ksplice.com>
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
This commit is contained in:
Tim Abbott 2009-10-18 13:23:55 -04:00 committed by Greg Ungerer
parent 995bcd3dc1
commit 53749f735a
1 changed files with 4 additions and 13 deletions

View File

@ -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