config/arch/sh.in
author Richard Strand <richard.strand@icomera.com>
Sun Jan 10 15:19:25 2010 +0000 (2010-01-10)
changeset 1720 3995b34ba925
parent 1345 27fec561af53
child 1782 5eda3399a797
permissions -rw-r--r--
scrips/functions: fix downloads using curl

By default curl doesn't folow redirects. This breaks sourceforge downloads.
Add the -L option to curl to fix this.

Curl also downloads the html as a file even when it gets a 404. This breaks
http downloads when using the failback system. Add the -f option to curl to fix
this.

Signed-off-by: Richard Strand <richard.strand@icomera.com>
yann@413
     1
# Super-H specific configuration file
yann@1269
     2
# depends on EXPERIMENTAL
yann@413
     3
yann@628
     4
config ARCH_sh
yann@1716
     5
    select ARCH_SUPPORTS_32
yann@1716
     6
    select ARCH_DEFAULT_32
yann@1345
     7
    select ARCH_USE_MMU
yann@628
     8
    select ARCH_SUPPORTS_BOTH_ENDIAN
yann@628
     9
    select ARCH_DEFAULT_LE
yann@630
    10
    help
yann@630
    11
      The Super-H architecture, as defined by:
yann@630
    12
        http://www.renesas.com/fmwk.jsp?cnt=superh_family_landing.jsp&fp=/products/mpumcu/superh_family/
yann@413
    13
yann@413
    14
choice
yann@413
    15
    bool
yann@413
    16
    prompt "Variant"
yann@413
    17
yann@413
    18
config ARCH_SH_SH3
yann@413
    19
    bool
yann@413
    20
    prompt "sh3"
yann@413
    21
yann@413
    22
config ARCH_SH_SH4
yann@413
    23
    bool
yann@413
    24
    prompt "sh4"
yann@413
    25
yann@413
    26
config ARCH_SH_SH4A
yann@413
    27
    bool
yann@413
    28
    prompt "sh4a"
yann@413
    29
yann@413
    30
endchoice
yann@413
    31
yann@413
    32
config ARCH_SH_VARIANT
yann@413
    33
    string
yann@413
    34
    default "sh3"   if ARCH_SH_SH3
yann@413
    35
    default "sh4"   if ARCH_SH_SH4
yann@413
    36
    default "sh4a"  if ARCH_SH_SH4A