arch/alpha/config.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Fri Jun 27 14:55:22 2008 +0000 (2008-06-27)
changeset 630 2789bdd1a950
parent 628 87802cb25a0f
child 631 2761b358f9e6
permissions -rw-r--r--
Update the architecture API: architecture help is mandatory.
Update all architectures (some with pointer to the specs, when available).

/trunk/docs/overview.txt | 8 8 0 0 ++++++++
/trunk/arch/arm/config.in | 3 3 0 0 +++
/trunk/arch/powerpc/config.in | 3 3 0 0 +++
/trunk/arch/ia64/config.in | 3 3 0 0 +++
/trunk/arch/alpha/config.in | 2 2 0 0 ++
/trunk/arch/x86/config.in | 3 3 0 0 +++
/trunk/arch/mips/config.in | 3 3 0 0 +++
/trunk/arch/sh/config.in | 3 3 0 0 +++
/trunk/arch/x86_64/config.in | 3 3 0 0 +++
9 files changed, 31 insertions(+)
     1 # Alpha specific configuration file
     2 
     3 config ARCH_alpha
     4     help
     5       The Alpha architecture.
     6 
     7 choice
     8     bool
     9     prompt "Variant"
    10 
    11 config ARCH_ALPHA_EV4
    12     bool
    13     prompt "EV4"
    14 
    15 config ARCH_ALPHA_EV45
    16     bool
    17     prompt "EV45"
    18 
    19 config ARCH_ALPHA_EV5
    20     bool
    21     prompt "EV5"
    22 
    23 config ARCH_ALPHA_EV56
    24     bool
    25     prompt "EV56"
    26 
    27 config ARCH_ALPHA_EV6
    28     bool
    29     prompt "EV6"
    30 
    31 config ARCH_ALPHA_EV67
    32     bool
    33     prompt "EV67"
    34 
    35 endchoice
    36 
    37 config ARCH_ALPHA_VARIANT
    38     string
    39     default "ev4"   if ARCH_ALPHA_EV4
    40     default "ev45"  if ARCH_ALPHA_EV45
    41     default "ev5"   if ARCH_ALPHA_EV5
    42     default "ev56"  if ARCH_ALPHA_EV56
    43     default "ev6"   if ARCH_ALPHA_EV6
    44     default "ev67"  if ARCH_ALPHA_EV67
    45 
    46 config ARCH_CPU
    47     default "ev4"   if ARCH_ALPHA_EV4
    48     default "ev45"  if ARCH_ALPHA_EV45
    49     default "ev5"   if ARCH_ALPHA_EV5
    50     default "ev56"  if ARCH_ALPHA_EV56
    51     default "ev6"   if ARCH_ALPHA_EV6
    52     default "ev67"  if ARCH_ALPHA_EV67
    53 
    54 config ARCH_TUNE
    55     default "ev4"   if ARCH_ALPHA_EV4
    56     default "ev45"  if ARCH_ALPHA_EV45
    57     default "ev5"   if ARCH_ALPHA_EV5
    58     default "ev56"  if ARCH_ALPHA_EV56
    59     default "ev6"   if ARCH_ALPHA_EV6
    60     default "ev67"  if ARCH_ALPHA_EV67