diff options
author | Scott Wood <scottwood@freescale.com> | 2007-08-20 13:39:58 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-08-22 01:27:28 -0400 |
commit | 2f1d4899321be87bc5f0c4ee0e62c9d9ced05f80 (patch) | |
tree | 5e22af6c9ba7a508fd8d1c97673c8159f61f4e99 /arch/powerpc/boot/ops.h | |
parent | d0f53fafc016b3f4f20f63ecf52f6df8774bcb3c (diff) |
[POWERPC] bootwrapper: Move linker symbols into ops.h
Most of these were previously used by numerous C files and
redeclared in each one.
Signed-off-by: Scott Wood <scottwood@freescale.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/boot/ops.h')
-rw-r--r-- | arch/powerpc/boot/ops.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/powerpc/boot/ops.h b/arch/powerpc/boot/ops.h index 2bc2f02db741..e4b6139d2d6e 100644 --- a/arch/powerpc/boot/ops.h +++ b/arch/powerpc/boot/ops.h | |||
@@ -196,4 +196,14 @@ static inline void exit(void) | |||
196 | extern unsigned long timebase_period_ns; | 196 | extern unsigned long timebase_period_ns; |
197 | void udelay(long delay); | 197 | void udelay(long delay); |
198 | 198 | ||
199 | extern char _start[]; | ||
200 | extern char __bss_start[]; | ||
201 | extern char _end[]; | ||
202 | extern char _vmlinux_start[]; | ||
203 | extern char _vmlinux_end[]; | ||
204 | extern char _initrd_start[]; | ||
205 | extern char _initrd_end[]; | ||
206 | extern char _dtb_start[]; | ||
207 | extern char _dtb_end[]; | ||
208 | |||
199 | #endif /* _PPC_BOOT_OPS_H_ */ | 209 | #endif /* _PPC_BOOT_OPS_H_ */ |