* [Buildroot] [PATCH] toolchain/microblaze: fix up big-endian characteristics
@ 2012-03-19 19:48 Gustavo Zacarias
2012-03-20 2:58 ` Spenser Gilliland
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Gustavo Zacarias @ 2012-03-19 19:48 UTC (permalink / raw)
To: buildroot
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>
---
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 014bfc5..ee79339 100644
--- a/toolchain/toolchain-external/Config.in
+++ b/toolchain/toolchain-external/Config.in
@@ -447,6 +447,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
--
1.7.3.4
^ permalink raw reply related [flat|nested] 4+ messages in thread* [Buildroot] [PATCH] toolchain/microblaze: fix up big-endian characteristics
2012-03-19 19:48 [Buildroot] [PATCH] toolchain/microblaze: fix up big-endian characteristics Gustavo Zacarias
@ 2012-03-20 2:58 ` Spenser Gilliland
2012-04-04 17:26 ` Stephan Hoffmann
2012-04-04 20:46 ` Peter Korsgaard
2 siblings, 0 replies; 4+ messages in thread
From: Spenser Gilliland @ 2012-03-20 2:58 UTC (permalink / raw)
To: buildroot
I need this patch as well.
Thanks,
Spenser
On Mon, Mar 19, 2012 at 2:48 PM, Gustavo Zacarias
<gustavo@zacarias.com.ar> wrote:
> 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>
> ---
> ?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 014bfc5..ee79339 100644
> --- a/toolchain/toolchain-external/Config.in
> +++ b/toolchain/toolchain-external/Config.in
> @@ -447,6 +447,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
> --
> 1.7.3.4
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
Spenser Gilliland
Computer Engineer
Doctoral Candidate
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH] toolchain/microblaze: fix up big-endian characteristics
2012-03-19 19:48 [Buildroot] [PATCH] toolchain/microblaze: fix up big-endian characteristics Gustavo Zacarias
2012-03-20 2:58 ` Spenser Gilliland
@ 2012-04-04 17:26 ` Stephan Hoffmann
2012-04-04 20:46 ` Peter Korsgaard
2 siblings, 0 replies; 4+ messages in thread
From: Stephan Hoffmann @ 2012-04-04 17:26 UTC (permalink / raw)
To: buildroot
Am 19.03.2012 20:48, schrieb Gustavo Zacarias:
> 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>
> ---
> 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 014bfc5..ee79339 100644
> --- a/toolchain/toolchain-external/Config.in
> +++ b/toolchain/toolchain-external/Config.in
> @@ -447,6 +447,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
--
reLinux - Stephan Hoffmann
Am Schmidtgrund 124 50765 K?ln
Tel. +49.221.95595-19 Fax: -64
www.reLinux.de sho at reLinux.de
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH] toolchain/microblaze: fix up big-endian characteristics
2012-03-19 19:48 [Buildroot] [PATCH] toolchain/microblaze: fix up big-endian characteristics Gustavo Zacarias
2012-03-20 2:58 ` Spenser Gilliland
2012-04-04 17:26 ` Stephan Hoffmann
@ 2012-04-04 20:46 ` Peter Korsgaard
2 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2012-04-04 20:46 UTC (permalink / raw)
To: buildroot
>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:
Gustavo> The big-endian microblaze external toolchain is missing vital
Gustavo> characteristics being set, such as LARGEFILE support, IPV6 and
Gustavo> so on.
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-04-04 20:46 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-19 19:48 [Buildroot] [PATCH] toolchain/microblaze: fix up big-endian characteristics Gustavo Zacarias
2012-03-20 2:58 ` Spenser Gilliland
2012-04-04 17:26 ` Stephan Hoffmann
2012-04-04 20:46 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox