2004-10-08 14:52:54

by Clemens Buchacher

[permalink] [raw]
Subject: [patch] [SPARC]: Fix warning for changed section attributes

This fixes the "Ignoring changed section attributes" warning by commenting out
the attributes appended by gcc.

The previous 'fix' created a section '.text,#alloc' (literally), which I guess
was not intended.

Signed-off-by: Clemens Buchacher <[email protected]>
---

Runtime tested (Leon2 TSIM SPARC simulation)

arch/sparc/kernel/init_task.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)

--- a/arch/sparc/kernel/init_task.c 2004-10-06 20:19:25 +02:00
+++ b/arch/sparc/kernel/init_task.c 2004-10-06 20:19:25 +02:00
@@ -23,6 +23,6 @@
* in etrap.S which assumes it.
*/
union thread_union init_thread_union
- __attribute__((section (".text,#alloc")))
+ __attribute__((section (".text\"\n\t#")))
__attribute__((aligned (THREAD_SIZE)))
= { INIT_THREAD_INFO(init_task) };