diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-09-25 08:18:36 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-09-25 08:18:36 +0000 |
commit | d8fc1c0a74b81009c855cc532432cdd3c8a47a7a (patch) | |
tree | 5aec45164836cd0ba4c1345d0cd42a5fd054d442 /target | |
parent | b5879204756c1dc70c137c65c8ddda7909643811 (diff) | |
download | buildroot-novena-d8fc1c0a74b81009c855cc532432cdd3c8a47a7a.tar.gz buildroot-novena-d8fc1c0a74b81009c855cc532432cdd3c8a47a7a.zip |
- remove one invariant in toolchain type selection.
Diffstat (limited to 'target')
-rw-r--r-- | target/device/Toolchain.in | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/target/device/Toolchain.in b/target/device/Toolchain.in index 67881cd96..5be7f709d 100644 --- a/target/device/Toolchain.in +++ b/target/device/Toolchain.in @@ -1,21 +1,11 @@ +if BR2_TOOLCHAIN_EXTERNAL_SOURCE choice prompt "Source location:" - default BR2_TOOLCHAIN_NORMAL if!BR2_avr32 default BR2_TOOLCHAIN_ATMEL_AVR32 if BR2_avr32 - depends on BR2_TOOLCHAIN_BUILDROOT help Select whether to use the toolchain built by the buildroot system or an external pre-built toolchain. -config BR2_TOOLCHAIN_NORMAL - bool "Use default sources for toolchain" - depends on !BR2_avr32 - help - Download vanilla binutils, gcc, uclibc and gdb from their - main download locations, and apply patches from the - "toolchain/<package>" directores. - I.E: Do not download a prepatched vendor source suite. - config BR2_TOOLCHAIN_ATMEL_AVR32 bool "Use prepatched source for AVR32 toolchain" depends on BR2_avr32 @@ -53,3 +43,4 @@ config BR2_VENDOR_GDB_RELEASE config BR2_VENDOR_PATCH_DIR string default "target/device/Atmel/toolchain/avr32" if BR2_TOOLCHAIN_ATMEL_AVR32 +endif |