config/arch/arm.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Thu Oct 23 13:45:48 2008 +0000 (2008-10-23)
changeset 965 45ddf096def1
parent 898 fe3eda71a9d0
child 1345 27fec561af53
permissions -rw-r--r--
Push the calculation of the tuple's kernel part down to kernel's build scripts:
- update the kernel script's API with the function CT_DiKernelTupleValues
- update doc accordingly (also with the architecture change, missing in the previous commit)
- small clean-up in the main script, remove useless test

/trunk/scripts/build/kernel/bare-metal.sh | 5 5 0 0 +++++
/trunk/scripts/build/kernel/linux.sh | 5 5 0 0 +++++
/trunk/scripts/crosstool.sh | 31 13 18 0 +++++++++++++------------------
/trunk/scripts/functions | 15 8 7 0 ++++++++-------
/trunk/docs/overview.txt | 13 9 4 0 +++++++++----
5 files changed, 40 insertions(+), 29 deletions(-)
yann@628
     1
# ARM specific configuration file
yann@628
     2
yann@628
     3
config ARCH_arm
yann@628
     4
    select ARCH_SUPPORTS_BOTH_ENDIAN
yann@628
     5
    select ARCH_DEFAULT_LE
yann@631
     6
    select ARCH_SUPPORT_ARCH
yann@631
     7
    select ARCH_SUPPORT_CPU
yann@631
     8
    select ARCH_SUPPORT_TUNE
yann@631
     9
    select ARCH_SUPPORT_FPU
yann@630
    10
    help
yann@630
    11
      The ARM architecture, as defined by:
yann@630
    12
        http://www.arm.com/
yann@385
    13
yann@385
    14
config ARCH_ARM_EABI
yann@385
    15
    bool
yann@823
    16
    prompt "Use EABI"
yann@385
    17
    default n
yann@385
    18
    help
yann@385
    19
      Set up the toolchain so that it generates EABI-compliant binaries.
yann@503
    20
yann@820
    21
config ARCH_ARM_ABI_OK
yann@820
    22
    bool
yann@820
    23
    default y
yann@820
    24
    depends on ! ARCH_ARM_EABI
yann@820
    25
    select ARCH_SUPPORT_ABI
yann@820
    26