scripts/build/libc/uClibc.sh
changeset 1910 207ad430c254
parent 1901 bdb3a98e064b
child 1977 d11009b668dd
child 2010 12853e4d2c52
     1.1 --- a/scripts/build/libc/uClibc.sh	Sun Apr 11 23:18:10 2010 +0200
     1.2 +++ b/scripts/build/libc/uClibc.sh	Wed Apr 07 09:18:20 2010 +0200
     1.3 @@ -190,11 +190,12 @@
     1.4  
     1.5      # Hack our target in the config file.
     1.6      case "${CT_ARCH}:${CT_ARCH_BITNESS}" in
     1.7 -        x86:32)     arch=i386;;
     1.8 -        x86:64)     arch=x86_64;;
     1.9 -        sh:32)      arch="sh";;
    1.10 -        sh:64)      arch="sh64";;
    1.11 -        *)          arch="${CT_ARCH}";;
    1.12 +        x86:32)      arch=i386;;
    1.13 +        x86:64)      arch=x86_64;;
    1.14 +        sh:32)       arch="sh";;
    1.15 +        sh:64)       arch="sh64";;
    1.16 +        blackfin:32) arch="bfin";;
    1.17 +        *)           arch="${CT_ARCH}";;
    1.18      esac
    1.19      # Also remove stripping: its the responsibility of the
    1.20      # firmware builder to strip or not.