diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2012-03-19 16:48:24 -0300 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-04-04 22:46:07 +0200 |
commit | 1eb46725de8c74f28ed5d3894bd81b7d9ab35272 (patch) | |
tree | 445b4932aac0a142f1abb1c515520fd9dac1b4eb | |
parent | 360b31caf71477b07ed1c54b9ae4de5aa3c3176c (diff) |
toolchain/microblaze: fix up big-endian characteristics
The big-endian microblaze external toolchain is missing vital
characteristics being set, such as LARGEFILE support, IPV6 and so on.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Tested-by: Stephan Hoffmann <sho@reLinux.de>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | toolchain/toolchain-external/Config.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/toolchain/toolchain-external/Config.in b/toolchain/toolchain-external/Config.in index 991684fc0..49ea7fa21 100644 --- a/toolchain/toolchain-external/Config.in +++ b/toolchain/toolchain-external/Config.in @@ -461,6 +461,11 @@ config BR2_TOOLCHAIN_EXTERNAL_XILINX_MICROBLAZEEL_V2 config BR2_TOOLCHAIN_EXTERNAL_XILINX_MICROBLAZEBE_V2 bool "Xilinx Big Endian Microblaze GNU Tools" depends on BR2_microblazebe + select BR2_LARGEFILE + select BR2_INET_IPV6 + select BR2_INET_RPC + select BR2_ENABLE_LOCALE + select BR2_USE_WCHAR help Toolchain for the Microblaze architecture, from http://wiki.xilinx.com/mb-gnu-tools |