summaryrefslogtreecommitdiffstats
path: root/target/device/Toolchain.in
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2007-09-28 21:54:36 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2007-09-28 21:54:36 +0000
commitbb9e6a7d9e1632b17525151673d5d68ab5765a7c (patch)
tree3297fd0b1e5ccf5d9691c4160f1cd921a8b847c2 /target/device/Toolchain.in
parent41d2a92fee88e7cbb8f10b96289348d3a52684be (diff)
downloadbuildroot-novena-bb9e6a7d9e1632b17525151673d5d68ab5765a7c.tar.gz
buildroot-novena-bb9e6a7d9e1632b17525151673d5d68ab5765a7c.zip
- naming convention is Config.in resp. Config.in.foo
Adjust some accordingly
Diffstat (limited to 'target/device/Toolchain.in')
-rw-r--r--target/device/Toolchain.in81
1 files changed, 0 insertions, 81 deletions
diff --git a/target/device/Toolchain.in b/target/device/Toolchain.in
deleted file mode 100644
index 57cfe5318..000000000
--- a/target/device/Toolchain.in
+++ /dev/null
@@ -1,81 +0,0 @@
-if BR2_TOOLCHAIN_EXTERNAL_SOURCE
-choice
- prompt "Source location:"
- default BR2_TOOLCHAIN_ATMEL_AVR32 if BR2_avr32
- help
- Select whether to use the toolchain built by the buildroot
- system or an external pre-built toolchain.
-
-config BR2_TOOLCHAIN_ATMEL_AVR32
- bool "Use prepatched source for AVR32 toolchain"
- depends on BR2_avr32
- select BR2_GCC_VERSION_4_1_2
- select BR2_BINUTILS_VERSION_2_17
- select BR2_UCLIBC_VERSION_0_9_28_3
-
-config BR2_TOOLCHAIN_UNKNOWNVENDOR
- bool "Use prepatched source from unknown vendor"
-
-endchoice
-
-if BR2_TOOLCHAIN_ATMEL_AVR32
-config BR2_VENDOR_SITE
- string
- default "$(BR2_ATMEL_MIRROR)/Source" if BR2_TOOLCHAIN_ATMEL_AVR32
-
-config BR2_VENDOR_SUFFIX
- string
- default "-avr32" if BR2_TOOLCHAIN_ATMEL_AVR32
-
-config BR2_VENDOR_BINUTILS_RELEASE
- string
- default "-2.0" if BR2_TOOLCHAIN_ATMEL_AVR32
-
-config BR2_VENDOR_GCC_RELEASE
- string
- default "-2.2" if BR2_TOOLCHAIN_ATMEL_AVR32
-
-config BR2_VENDOR_UCLIBC_RELEASE
- string
- default "-2.0" if BR2_TOOLCHAIN_ATMEL_AVR32
-
-config BR2_VENDOR_GDB_RELEASE
- string
- default "-2.0" if BR2_TOOLCHAIN_ATMEL_AVR32
-
-config BR2_VENDOR_PATCH_DIR
- string
- default "target/device/Atmel/toolchain/avr32" if BR2_TOOLCHAIN_ATMEL_AVR32
-endif
-if BR2_TOOLCHAIN_UNKNOWNVENDOR
-config BR2_VENDOR_SITE
- string "vendor site"
- default "http://vendor.com/somewhere/"
-
-config BR2_VENDOR_SUFFIX
- string "vendor suffix"
- default ""
-
-config BR2_VENDOR_BINUTILS_RELEASE
- string "binutils suffix"
- default ""
-
-config BR2_VENDOR_GCC_RELEASE
- string "gcc suffix"
- default ""
-
-config BR2_VENDOR_UCLIBC_RELEASE
- string "uClibc suffix"
- default ""
-
-config BR2_VENDOR_GDB_RELEASE
- string "gdb suffix"
- default ""
-
-config BR2_VENDOR_PATCH_DIR
- string "local accumulated patchdir"
- default "target/device/$(VENDOR)/toolchain/"
-endif
-
-
-endif