diff options
| author | Ingo Molnar <mingo@elte.hu> | 2008-12-12 11:59:39 +0100 | 
|---|---|---|
| committer | Ingo Molnar <mingo@elte.hu> | 2008-12-12 11:59:39 +0100 | 
| commit | fd10902797fc9d6abaf55d9c2e3c6698c90b10c7 (patch) | |
| tree | 0bc15b8b967e6f0973387e7c81f5b0dc9ce44e75 /arch/m32r/kernel | |
| parent | 5b3eec0c80038c8739ccd465b897a35c0dff1cc4 (diff) | |
| parent | 8b1fae4e4200388b64dd88065639413cb3f1051c (diff) | |
Merge commit 'v2.6.28-rc8' into x86/irq
Diffstat (limited to 'arch/m32r/kernel')
| -rw-r--r-- | arch/m32r/kernel/head.S | 4 | ||||
| -rw-r--r-- | arch/m32r/kernel/vmlinux.lds.S | 1 | 
2 files changed, 3 insertions, 2 deletions
| diff --git a/arch/m32r/kernel/head.S b/arch/m32r/kernel/head.S index 40180778a5c..90916067b9c 100644 --- a/arch/m32r/kernel/head.S +++ b/arch/m32r/kernel/head.S @@ -23,7 +23,7 @@ __INITDATA  /*   * References to members of the boot_cpu_data structure.   */ -	.text +.section .text.head, "ax"  	.global	start_kernel  	.global __bss_start  	.global _end @@ -133,7 +133,6 @@ loop1:  /*   * AP startup routine   */ -	.text  	.global	eit_vector  ENTRY(startup_AP)  ;; setup EVB @@ -230,6 +229,7 @@ ENTRY(startup_AP)  	nop  #endif  /* CONFIG_SMP */ +	.text  ENTRY(stack_start)  	.long	init_thread_union+8192  	.long	__KERNEL_DS diff --git a/arch/m32r/kernel/vmlinux.lds.S b/arch/m32r/kernel/vmlinux.lds.S index 15a6f36c06d..9db05df20c0 100644 --- a/arch/m32r/kernel/vmlinux.lds.S +++ b/arch/m32r/kernel/vmlinux.lds.S @@ -27,6 +27,7 @@ SECTIONS    _text = .;			/* Text and read-only data */    .boot : { *(.boot) } = 0    .text : { +	*(.text.head)  	TEXT_TEXT  	SCHED_TEXT  	LOCK_TEXT | 
