config/companion_libs/mpc.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Wed Oct 21 18:22:05 2009 +0200 (2009-10-21)
changeset 1594 9c0766bed0d2
parent 1534 d4ddf19a1968
child 1615 50b25816f5bb
permissions -rw-r--r--
arch/arm: add support for noMMU

Some ARM cores do not have an MMU (eg. Cortex-Mx and Cortex-Rx series).
Thus, allow the user to configure out the MMU for ARM.
     1 # MPC options
     2 
     3 choice
     4     bool
     5     prompt "MPC version"
     6 # Don't remove next line
     7 # CT_INSERT_VERSION_BELOW
     8 
     9 config MPC_V_0_7
    10     bool
    11     prompt "0.7"
    12 
    13 config MPC_V_0_6
    14     bool
    15     prompt "0.6"
    16 
    17 endchoice
    18 
    19 config MPC_VERSION
    20     string
    21 # Don't remove next line
    22 # CT_INSERT_VERSION_STRING_BELOW
    23     default "0.7" if MPC_V_0_7
    24     default "0.6" if MPC_V_0_6