config/binutils/elf2flt.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Wed May 20 20:13:13 2009 +0000 (2009-05-20)
changeset 1345 27fec561af53
child 1535 073d351bdcd3
permissions -rw-r--r--
Merge the uClinux/noMMU stuff back to /trunk:
- merge Linux and uClinux back to a single kernel
- add ARCH_USE_MMU and acquainted config options that
architectures can auto-select
- make binutils and elf2flt two "Binary utilities" that
go in a single common sub-{menu,directory} structure

-------- diffstat follows --------
/trunk/scripts/build/kernel/uclinux.sh | 2 0 2 0 -
/trunk/scripts/build/kernel/linux.sh | 206 204 2 0 +++++++++++++++++++++++++++++
/trunk/scripts/build/kernel/linux-common.sh | 198 0 198 0 ----------------------------
/trunk/scripts/build/binutils.sh | 232 0 232 0 --------------------------------
/trunk/scripts/build/elf2flt.sh | 150 0 150 0 ---------------------
/trunk/scripts/crosstool-NG.sh.in | 6 4 2 0 +
/trunk/config/kernel/linux.in | 249 249 0 0 +++++++++++++++++++++++++++++++++++
/trunk/config/kernel/linux.in-common | 252 0 252 0 -----------------------------------
/trunk/config/kernel/uclinux.in | 21 0 21 0 ---
/trunk/config/target.in | 23 22 1 0 +++
/trunk/config/elf2flt.in | 49 0 49 0 -------
/trunk/config/libc/glibc.in | 2 1 1 0
/trunk/config/libc/eglibc.in | 2 1 1 0
/trunk/config/config.in | 1 0 1 0 -
/trunk/config/arch/sh.in | 1 1 0 0 +
/trunk/config/arch/arm.in | 2 1 1 0
/trunk/config/arch/powerpc.in | 1 1 0 0 +
/trunk/config/arch/ia64.in | 1 1 0 0 +
/trunk/config/arch/alpha.in | 1 1 0 0 +
/trunk/config/arch/x86.in | 1 1 0 0 +
/trunk/config/arch/mips.in | 1 1 0 0 +
/trunk/config/arch/powerpc64.in | 1 1 0 0 +
22 files changed, 489 insertions(+), 913 deletions(-)
     1 # elf2flt options
     2 
     3 if ARCH_BINFMT_FLAT
     4 
     5 comment "elf2flt"
     6 
     7 config ELF2FLT_VERSION
     8     string
     9 
    10 choice
    11     bool
    12     prompt "elf2flt version"
    13 
    14 config ELF2FLT_CVSHEAD
    15     bool
    16     prompt "CVS Head"
    17     help
    18       Grab the latest version of elf2flt from the CVS repository
    19 
    20 config ELF2FLT_CVS_SNAPSHOT
    21     bool
    22     prompt "CVS Snapshot"
    23 
    24 # CT_INSERT_VERSION_ABOVE
    25 # Don't remove above line!
    26 endchoice
    27 
    28 config ELF2FLT_CVS_SNAPSHOT_SPEC
    29     string
    30     depends on ELF2FLT_CVS_SNAPSHOT
    31     default ""
    32     prompt "CVS refspec for elf2flt"
    33     help
    34        What you enter here will be passed verbatim to the cvs checkout command
    35        so be careful!
    36 
    37 config ELF2FLT_VERSION
    38     string
    39     default "head" if ELF2FLT_CVSHEAD
    40 # CT_INSERT_VERSION_STRING_ABOVE
    41 # Don't remove above line!
    42 
    43 config ELF2FLT_EXTRA_CONFIG
    44     string
    45     prompt "elf2flt extra config"
    46     default ""
    47     help
    48       Extra flags passed onto ./configure when configuring
    49 
    50 endif