* [Buildroot] [PATCH 1/2] dmraid: disable on ARC arch
@ 2014-02-06 22:56 Ryan Barnett
2014-02-06 22:56 ` [Buildroot] [PATCH 2/2] gpsd: disable for microblaze arch Ryan Barnett
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Ryan Barnett @ 2014-02-06 22:56 UTC (permalink / raw)
To: buildroot
The ARC compiler has an internal failure while compiling this package
so disable this package for this architecture.
Fixes:
http://autobuild.buildroot.net/results/ef6/ef6a0e2d382ae202bb8f0e9fc9f5e48c90119faf
Signed-off-by: Ryan Barnett <rjbarnet@rockwellcollins.com>
---
package/dmraid/Config.in | 2 ++
1 file changed, 2 insertions(+)
diff --git a/package/dmraid/Config.in b/package/dmraid/Config.in
index 028b46c..2f0c5b4 100644
--- a/package/dmraid/Config.in
+++ b/package/dmraid/Config.in
@@ -2,6 +2,7 @@ config BR2_PACKAGE_DMRAID
bool "dmraid"
depends on BR2_LARGEFILE
depends on BR2_USE_MMU # lvm2
+ depends on !BR2_arc
select BR2_PACKAGE_LVM2
help
dmraid discovers, activates, deactivates and displays properties
@@ -13,3 +14,4 @@ config BR2_PACKAGE_DMRAID
comment "dmraid needs a toolchain w/ largefile"
depends on BR2_USE_MMU
depends on !BR2_LARGEFILE
+ depends on !BR2_arc
--
1.8.3.2
^ permalink raw reply related [flat|nested] 5+ messages in thread* [Buildroot] [PATCH 2/2] gpsd: disable for microblaze arch
2014-02-06 22:56 [Buildroot] [PATCH 1/2] dmraid: disable on ARC arch Ryan Barnett
@ 2014-02-06 22:56 ` Ryan Barnett
2014-02-08 21:54 ` Peter Korsgaard
2014-02-07 8:00 ` [Buildroot] [PATCH 1/2] dmraid: disable on ARC arch Thomas Petazzoni
2014-02-08 21:52 ` Peter Korsgaard
2 siblings, 1 reply; 5+ messages in thread
From: Ryan Barnett @ 2014-02-06 22:56 UTC (permalink / raw)
To: buildroot
gpsd will fail on an internal compiler error for the microblaze
architecture so disabling it on that architecture.
Fixes:
http://autobuild.buildroot.org/results/42d/42da870722f24e4202d8265597771a0449e74cfd
Signed-off-by: Ryan Barnett <rjbarnet@rockwellcollins.com>
---
package/gpsd/Config.in | 2 ++
package/sconeserver/Config.in | 1 +
2 files changed, 3 insertions(+)
diff --git a/package/gpsd/Config.in b/package/gpsd/Config.in
index 5954e77..ee47836 100644
--- a/package/gpsd/Config.in
+++ b/package/gpsd/Config.in
@@ -1,12 +1,14 @@
comment "gpsd needs a toolchain w/ threads"
depends on BR2_USE_MMU
depends on !BR2_TOOLCHAIN_HAS_THREADS
+ depends on !BR2_microblaze
config BR2_PACKAGE_GPSD
bool "gpsd"
# Uses fork()
depends on BR2_USE_MMU
depends on BR2_TOOLCHAIN_HAS_THREADS
+ depends on !BR2_microblaze
help
gpsd is a service daemon that monitors one or more GPSes or AIS
receivers attached to a host computer through serial or USB ports,
diff --git a/package/sconeserver/Config.in b/package/sconeserver/Config.in
index 1dc41d2..ccb9c00 100644
--- a/package/sconeserver/Config.in
+++ b/package/sconeserver/Config.in
@@ -67,6 +67,7 @@ config BR2_PACKAGE_SCONESERVER_LOCATION
bool "location"
depends on BR2_USE_MMU # gpsd
depends on BR2_TOOLCHAIN_HAS_THREADS # gpsd
+ depends on !BR2_microblaze # gpsd
select BR2_PACKAGE_GPSD
help
Location module for Sconeserver
--
1.8.3.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH 1/2] dmraid: disable on ARC arch
2014-02-06 22:56 [Buildroot] [PATCH 1/2] dmraid: disable on ARC arch Ryan Barnett
2014-02-06 22:56 ` [Buildroot] [PATCH 2/2] gpsd: disable for microblaze arch Ryan Barnett
@ 2014-02-07 8:00 ` Thomas Petazzoni
2014-02-08 21:52 ` Peter Korsgaard
2 siblings, 0 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2014-02-07 8:00 UTC (permalink / raw)
To: buildroot
Dear Ryan Barnett,
On Thu, 6 Feb 2014 23:56:56 +0100, Ryan Barnett wrote:
> diff --git a/package/dmraid/Config.in b/package/dmraid/Config.in
> index 028b46c..2f0c5b4 100644
> --- a/package/dmraid/Config.in
> +++ b/package/dmraid/Config.in
> @@ -2,6 +2,7 @@ config BR2_PACKAGE_DMRAID
> bool "dmraid"
> depends on BR2_LARGEFILE
> depends on BR2_USE_MMU # lvm2
> + depends on !BR2_arc
I believe it would be good to have a comment above this line that says
why it's disabled. Maybe something like:
# causes an internal compiler error on ARC
Ditto for the gpsd issue on Microblaze.
And maybe Cc the ARC and Microblaze "maintainers" : Anton Kolesov
<Anton.Kolesov@synopsys.com> for ARC, and Spenser Gilliland
<spenser@gillilanding.com> for Microblaze.
Thanks!
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH 1/2] dmraid: disable on ARC arch
2014-02-06 22:56 [Buildroot] [PATCH 1/2] dmraid: disable on ARC arch Ryan Barnett
2014-02-06 22:56 ` [Buildroot] [PATCH 2/2] gpsd: disable for microblaze arch Ryan Barnett
2014-02-07 8:00 ` [Buildroot] [PATCH 1/2] dmraid: disable on ARC arch Thomas Petazzoni
@ 2014-02-08 21:52 ` Peter Korsgaard
2 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2014-02-08 21:52 UTC (permalink / raw)
To: buildroot
>>>>> "Ryan" == Ryan Barnett <ryanbarnett3@gmail.com> writes:
> The ARC compiler has an internal failure while compiling this package
> so disable this package for this architecture.
> Fixes:
> http://autobuild.buildroot.net/results/ef6/ef6a0e2d382ae202bb8f0e9fc9f5e48c90119faf
> Signed-off-by: Ryan Barnett <rjbarnet@rockwellcollins.com>
Committed with a comment added explaining why, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2014-02-08 21:54 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-06 22:56 [Buildroot] [PATCH 1/2] dmraid: disable on ARC arch Ryan Barnett
2014-02-06 22:56 ` [Buildroot] [PATCH 2/2] gpsd: disable for microblaze arch Ryan Barnett
2014-02-08 21:54 ` Peter Korsgaard
2014-02-07 8:00 ` [Buildroot] [PATCH 1/2] dmraid: disable on ARC arch Thomas Petazzoni
2014-02-08 21:52 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox