PowerPC support by Daniel Dittmann.
author"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun May 18 20:50:13 2008 +0000 (2008-05-18)
changeset 5209c6df3bf0c7a
parent 519 d5a34b110180
child 521 859941cfbb0d
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(+)
arch/powerpc/config.in
arch/powerpc/functions
config/target.in
docs/CREDITS
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/arch/powerpc/config.in	Sun May 18 20:50:13 2008 +0000
     1.3 @@ -0,0 +1,1 @@
     1.4 +# powerpc specific configuration file
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/arch/powerpc/functions	Sun May 18 20:50:13 2008 +0000
     2.3 @@ -0,0 +1,9 @@
     2.4 +# Compute powerpc-specific values
     2.5 +
     2.6 +CT_DoArchValues () {
     2.7 +    # The architecture part of the tuple:
     2.8 +    CT_TARGET_ARCH="${CT_ARCH}"
     2.9 +
    2.10 +    # The kernel ARCH:
    2.11 +    CT_KERNEL_ARCH=powerpc
    2.12 +}
     3.1 --- a/config/target.in	Sun May 18 15:31:17 2008 +0000
     3.2 +++ b/config/target.in	Sun May 18 20:50:13 2008 +0000
     3.3 @@ -9,6 +9,7 @@
     3.4      default "arm"     if ARCH_ARM
     3.5      default "ia64"    if ARCH_IA64
     3.6      default "mips"    if ARCH_MIPS
     3.7 +    default "powerpc" if ARCH_PPC
     3.8      default "sh"      if ARCH_SH
     3.9      default "x86"     if ARCH_x86
    3.10      default "x86_64"  if ARCH_x86_64
    3.11 @@ -36,6 +37,10 @@
    3.12      select ARCH_SUPPORTS_BOTH_ENDIAN
    3.13      select ARCH_DEFAULT_BE
    3.14  
    3.15 +config ARCH_PPC
    3.16 +    bool
    3.17 +    prompt "powerpc"
    3.18 +
    3.19  config ARCH_SH
    3.20      bool
    3.21      prompt "sh (EXPERIMENTAL)"
    3.22 @@ -92,6 +97,9 @@
    3.23  if ARCH_MIPS
    3.24  source config/arch/mips/config.in
    3.25  endif
    3.26 +if ARCH_PPC
    3.27 +source config/arch/powerpc/config.in
    3.28 +endif
    3.29  if ARCH_SH
    3.30  source config/arch/sh/config.in
    3.31  endif
     4.1 --- a/docs/CREDITS	Sun May 18 15:31:17 2008 +0000
     4.2 +++ b/docs/CREDITS	Sun May 18 20:50:13 2008 +0000
     4.3 @@ -46,6 +46,9 @@
     4.4    Matthias Kaehlcke:
     4.5      - fix building glibc-2.7 (and 2.6.1) with newer kernels
     4.6  
     4.7 +  Daniel Dittmann:
     4.8 +    - PowerPC support
     4.9 +
    4.10    Many others have contributed, either in form of patches, suggestions,
    4.11    comments, or testing... Thank you to all of you!
    4.12