Skip to content

Commit

Permalink
parisc: Fix linker script breakage.
Browse files Browse the repository at this point in the history
Signed-off-by: Helge Deller <[email protected]>
Signed-off-by: Kyle McMartin <[email protected]>
  • Loading branch information
hdeller authored and Kyle McMartin committed Sep 28, 2009
1 parent 9609bfe commit 8cf06fc
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions arch/parisc/kernel/vmlinux.lds.S
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
#include <asm/cache.h>
#include <asm/page.h>
#include <asm/asm-offsets.h>
#include <asm/thread_info.h>

/* ld script to make hppa Linux kernel */
#ifndef CONFIG_64BIT
Expand Down Expand Up @@ -134,6 +135,15 @@ SECTIONS
__init_begin = .;
INIT_TEXT_SECTION(16384)
INIT_DATA_SECTION(16)
/* we have to discard exit text and such at runtime, not link time */
.exit.text :
{
EXIT_TEXT
}
.exit.data :
{
EXIT_DATA
}

PERCPU(PAGE_SIZE)
. = ALIGN(PAGE_SIZE);
Expand Down

0 comments on commit 8cf06fc

Please sign in to comment.