From bb9e6a7d9e1632b17525151673d5d68ab5765a7c Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Fri, 28 Sep 2007 21:54:36 +0000 Subject: - naming convention is Config.in resp. Config.in.foo Adjust some accordingly --- target/device/Atmel/Config.in.mirrors | 27 ++++++++++++ target/device/Atmel/Mirrors.in | 27 ------------ target/device/Config.in.mirrors | 17 ++++++++ target/device/Config.in.target | 0 target/device/Config.in.toolchain | 81 +++++++++++++++++++++++++++++++++++ target/device/Mirrors.in | 17 -------- target/device/Target.in | 0 target/device/Toolchain.in | 81 ----------------------------------- 8 files changed, 125 insertions(+), 125 deletions(-) create mode 100644 target/device/Atmel/Config.in.mirrors delete mode 100644 target/device/Atmel/Mirrors.in create mode 100644 target/device/Config.in.mirrors create mode 100644 target/device/Config.in.target create mode 100644 target/device/Config.in.toolchain delete mode 100644 target/device/Mirrors.in delete mode 100644 target/device/Target.in delete mode 100644 target/device/Toolchain.in (limited to 'target/device') diff --git a/target/device/Atmel/Config.in.mirrors b/target/device/Atmel/Config.in.mirrors new file mode 100644 index 000000000..f938c8926 --- /dev/null +++ b/target/device/Atmel/Config.in.mirrors @@ -0,0 +1,27 @@ +menu "Atmel Mirrors" + +config BR2_ATMEL_MIRROR + string "Atmel AVR32/AT91 download site" + default "ftp://at91dist:distrib@81.80.104.162/AT91_Third_Party_Design_Flow/Linux_Host/" + help + Unofficial site for AVR32/AT91 Buildroot patches, or your local mirror. + Atmel does not currently support buildroot, but this site makes + available neccessary patches and prepatched packages useful + to extend a buildroot for AVR32 or AT91 ARM based boards. + Issues with contents of this server needs to be highlighted + on the buildroot mailing list and + should not be addressed directly to Atmel + Atmel provides support for their AVR32 chips on + http://avr32linux.org/ or http://www.avrfreaks.net/ + Atmel provides support for AT91 chips on www.at91.com. + Commercial AT91 Linux support is through www.timesys.com + Community AT91 Linux support is through http://maxim.org.za/AT91_26.html + +config BR2_AT91_PATCH_MIRROR + string "Atmel AT91 Linux Patch download site" + default "http://maxim.org.za/AT91RM9200/2.6/" + help + Patches for the AT91 generated by the Linux community + usually ends up here, courtesy of Andrew Victor + +endmenu diff --git a/target/device/Atmel/Mirrors.in b/target/device/Atmel/Mirrors.in deleted file mode 100644 index f938c8926..000000000 --- a/target/device/Atmel/Mirrors.in +++ /dev/null @@ -1,27 +0,0 @@ -menu "Atmel Mirrors" - -config BR2_ATMEL_MIRROR - string "Atmel AVR32/AT91 download site" - default "ftp://at91dist:distrib@81.80.104.162/AT91_Third_Party_Design_Flow/Linux_Host/" - help - Unofficial site for AVR32/AT91 Buildroot patches, or your local mirror. - Atmel does not currently support buildroot, but this site makes - available neccessary patches and prepatched packages useful - to extend a buildroot for AVR32 or AT91 ARM based boards. - Issues with contents of this server needs to be highlighted - on the buildroot mailing list and - should not be addressed directly to Atmel - Atmel provides support for their AVR32 chips on - http://avr32linux.org/ or http://www.avrfreaks.net/ - Atmel provides support for AT91 chips on www.at91.com. - Commercial AT91 Linux support is through www.timesys.com - Community AT91 Linux support is through http://maxim.org.za/AT91_26.html - -config BR2_AT91_PATCH_MIRROR - string "Atmel AT91 Linux Patch download site" - default "http://maxim.org.za/AT91RM9200/2.6/" - help - Patches for the AT91 generated by the Linux community - usually ends up here, courtesy of Andrew Victor - -endmenu diff --git a/target/device/Config.in.mirrors b/target/device/Config.in.mirrors new file mode 100644 index 000000000..8d4b068c3 --- /dev/null +++ b/target/device/Config.in.mirrors @@ -0,0 +1,17 @@ +menu "Mirrors and Download locations" + +config BR2_SOURCEFORGE_MIRROR + string "Sourceforge mirror site" + default "easynews" + help + Sourceforge has a system of mirror sites. Some sites may be + closer to your location, and sometimes mirror sites go down + and are no longer available. This option allows you to select + your preferred Sourceforge mirror site. + + The list of mirrors is available here: + http://prdownloads.sourceforge.net/index-sf.html?download + +source "target/device/Atmel/Config.in.mirrors" + +endmenu diff --git a/target/device/Config.in.target b/target/device/Config.in.target new file mode 100644 index 000000000..e69de29bb diff --git a/target/device/Config.in.toolchain b/target/device/Config.in.toolchain new file mode 100644 index 000000000..57cfe5318 --- /dev/null +++ b/target/device/Config.in.toolchain @@ -0,0 +1,81 @@ +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 diff --git a/target/device/Mirrors.in b/target/device/Mirrors.in deleted file mode 100644 index 194138f15..000000000 --- a/target/device/Mirrors.in +++ /dev/null @@ -1,17 +0,0 @@ -menu "Mirrors and Download locations" - -config BR2_SOURCEFORGE_MIRROR - string "Sourceforge mirror site" - default "easynews" - help - Sourceforge has a system of mirror sites. Some sites may be - closer to your location, and sometimes mirror sites go down - and are no longer available. This option allows you to select - your preferred Sourceforge mirror site. - - The list of mirrors is available here: - http://prdownloads.sourceforge.net/index-sf.html?download - -source "target/device/Atmel/Mirrors.in" - -endmenu diff --git a/target/device/Target.in b/target/device/Target.in deleted file mode 100644 index e69de29bb..000000000 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 -- cgit v1.2.3