summaryrefslogtreecommitdiff
path: root/config/binutils/elf2flt.in
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2009-05-20 20:13:13 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2009-05-20 20:13:13 (GMT)
commit45747a64532234fc700eca0712b5a81393ee9565 (patch)
tree6f639b60d370bb75e71bec560299d156ec81c643 /config/binutils/elf2flt.in
parent5a32a8b8e823c3286bc2bc764a0b134cc27ca762 (diff)
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(-)
Diffstat (limited to 'config/binutils/elf2flt.in')
-rw-r--r--config/binutils/elf2flt.in50
1 files changed, 50 insertions, 0 deletions
diff --git a/config/binutils/elf2flt.in b/config/binutils/elf2flt.in
new file mode 100644
index 0000000..0b1ef72
--- /dev/null
+++ b/config/binutils/elf2flt.in
@@ -0,0 +1,50 @@
+# elf2flt options
+
+if ARCH_BINFMT_FLAT
+
+comment "elf2flt"
+
+config ELF2FLT_VERSION
+ string
+
+choice
+ bool
+ prompt "elf2flt version"
+
+config ELF2FLT_CVSHEAD
+ bool
+ prompt "CVS Head"
+ help
+ Grab the latest version of elf2flt from the CVS repository
+
+config ELF2FLT_CVS_SNAPSHOT
+ bool
+ prompt "CVS Snapshot"
+
+# CT_INSERT_VERSION_ABOVE
+# Don't remove above line!
+endchoice
+
+config ELF2FLT_CVS_SNAPSHOT_SPEC
+ string
+ depends on ELF2FLT_CVS_SNAPSHOT
+ default ""
+ prompt "CVS refspec for elf2flt"
+ help
+ What you enter here will be passed verbatim to the cvs checkout command
+ so be careful!
+
+config ELF2FLT_VERSION
+ string
+ default "head" if ELF2FLT_CVSHEAD
+# CT_INSERT_VERSION_STRING_ABOVE
+# Don't remove above line!
+
+config ELF2FLT_EXTRA_CONFIG
+ string
+ prompt "elf2flt extra config"
+ default ""
+ help
+ Extra flags passed onto ./configure when configuring
+
+endif