PowerPC support by Daniel Dittmann.

/trunk/docs/CREDITS           |    3     3     0     0 +++
 /trunk/config/target.in       |    8     8     0     0 ++++++++
 /trunk/arch/powerpc/functions |    9     9     0     0 +++++++++
 /trunk/arch/powerpc/config.in |    1     1     0     0 +
 4 files changed, 21 insertions(+)
This commit is contained in:
Yann E. MORIN" 2008-05-18 20:50:13 +00:00
parent 99cb9d510c
commit db55511ac2
4 changed files with 21 additions and 0 deletions

1
arch/powerpc/config.in Normal file
View File

@ -0,0 +1 @@
# powerpc specific configuration file

9
arch/powerpc/functions Normal file
View File

@ -0,0 +1,9 @@
# Compute powerpc-specific values
CT_DoArchValues () {
# The architecture part of the tuple:
CT_TARGET_ARCH="${CT_ARCH}"
# The kernel ARCH:
CT_KERNEL_ARCH=powerpc
}

View File

@ -9,6 +9,7 @@ config ARCH
default "arm" if ARCH_ARM
default "ia64" if ARCH_IA64
default "mips" if ARCH_MIPS
default "powerpc" if ARCH_PPC
default "sh" if ARCH_SH
default "x86" if ARCH_x86
default "x86_64" if ARCH_x86_64
@ -36,6 +37,10 @@ config ARCH_MIPS
select ARCH_SUPPORTS_BOTH_ENDIAN
select ARCH_DEFAULT_BE
config ARCH_PPC
bool
prompt "powerpc"
config ARCH_SH
bool
prompt "sh (EXPERIMENTAL)"
@ -92,6 +97,9 @@ endif
if ARCH_MIPS
source config/arch/mips/config.in
endif
if ARCH_PPC
source config/arch/powerpc/config.in
endif
if ARCH_SH
source config/arch/sh/config.in
endif

View File

@ -46,6 +46,9 @@ And in order of appearance on the crossgcc ML:
Matthias Kaehlcke:
- fix building glibc-2.7 (and 2.6.1) with newer kernels
Daniel Dittmann:
- PowerPC support
Many others have contributed, either in form of patches, suggestions,
comments, or testing... Thank you to all of you!