Commit 10f204e5 authored by Greg Ungerer's avatar Greg Ungerer Committed by Greg Ungerer

m68knommu: rename BSS define in linker script

The "BSS" define name now used in asm-generic/vmlinux.lds.h
(introduced in commit ef53dae8)
clashes with the internal "BSS" define in the m68knommu vmlinux.lds.S
linker script. So rename it.
Signed-off-by: default avatarGreg Ungerer <gerg@uclinux.org>
parent c23b6538
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
#define TEXT ram #define TEXT ram
#define DATA ram #define DATA ram
#define INIT ram #define INIT ram
#define BSS ram #define BSSS ram
#endif #endif
#if defined(CONFIG_ROMKERNEL) || defined(CONFIG_HIMEMKERNEL) #if defined(CONFIG_ROMKERNEL) || defined(CONFIG_HIMEMKERNEL)
#define RAM_START CONFIG_RAMBASE #define RAM_START CONFIG_RAMBASE
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
#define TEXT rom #define TEXT rom
#define DATA ram #define DATA ram
#define INIT ram #define INIT ram
#define BSS ram #define BSSS ram
#endif #endif
#ifndef DATA_ADDR #ifndef DATA_ADDR
...@@ -192,7 +192,7 @@ SECTIONS { ...@@ -192,7 +192,7 @@ SECTIONS {
. = ALIGN(4) ; . = ALIGN(4) ;
_ebss = . ; _ebss = . ;
_end = . ; _end = . ;
} > BSS } > BSSS
DISCARDS DISCARDS
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment