config/arch/sh.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon Jan 11 22:47:58 2010 +0100 (2010-01-11)
changeset 1759 2e4f5f564362
parent 1345 27fec561af53
child 1782 5eda3399a797
permissions -rw-r--r--
libc/glibc: get rid of the now obsolete CVS stuff

It's now been a while that glibc switched to git from cvs.
Get rid of cvs to download glibc; this will make for a good
cleanup before we add git support! :-)
     1 # Super-H specific configuration file
     2 # depends on EXPERIMENTAL
     3 
     4 config ARCH_sh
     5     select ARCH_SUPPORTS_32
     6     select ARCH_DEFAULT_32
     7     select ARCH_USE_MMU
     8     select ARCH_SUPPORTS_BOTH_ENDIAN
     9     select ARCH_DEFAULT_LE
    10     help
    11       The Super-H architecture, as defined by:
    12         http://www.renesas.com/fmwk.jsp?cnt=superh_family_landing.jsp&fp=/products/mpumcu/superh_family/
    13 
    14 choice
    15     bool
    16     prompt "Variant"
    17 
    18 config ARCH_SH_SH3
    19     bool
    20     prompt "sh3"
    21 
    22 config ARCH_SH_SH4
    23     bool
    24     prompt "sh4"
    25 
    26 config ARCH_SH_SH4A
    27     bool
    28     prompt "sh4a"
    29 
    30 endchoice
    31 
    32 config ARCH_SH_VARIANT
    33     string
    34     default "sh3"   if ARCH_SH_SH3
    35     default "sh4"   if ARCH_SH_SH4
    36     default "sh4a"  if ARCH_SH_SH4A