diff mbox

pciutils: disallow on Blackfin

Message ID 1400600889-3386-1-git-send-email-thomas.petazzoni@free-electrons.com
State Accepted
Commit ffacbf7ec2e1011456f0994a7527491392d4d45a
Headers show

Commit Message

Thomas Petazzoni May 20, 2014, 3:48 p.m. UTC
Even though some Blackfin processors have PCI interfaces, the PCI
support is not supported by the Linux kernel: it has been marked as
broken since 2008. This means there's probably little interest for PCI
on Blackfin, and consequently little interest about getting pciutils
to build.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
 package/iprutils/Config.in | 1 +
 package/pciutils/Config.in | 2 ++
 2 files changed, 3 insertions(+)

Comments

Peter Korsgaard May 20, 2014, 8:21 p.m. UTC | #1
>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:

 > Even though some Blackfin processors have PCI interfaces, the PCI
 > support is not supported by the Linux kernel: it has been marked as
 > broken since 2008. This means there's probably little interest for PCI
 > on Blackfin, and consequently little interest about getting pciutils
 > to build.

 > Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>

You forgot to add references to the autobuilder failures. Committed with
that fixed, thanks.
diff mbox

Patch

diff --git a/package/iprutils/Config.in b/package/iprutils/Config.in
index a7e3cb3..1bc58e8 100644
--- a/package/iprutils/Config.in
+++ b/package/iprutils/Config.in
@@ -6,6 +6,7 @@  config BR2_PACKAGE_IPRUTILS
 	select BR2_PACKAGE_NCURSES_TARGET_MENU
 	select BR2_PACKAGE_LIBSYSFS
 	select BR2_PACKAGE_PCIUTILS
+	depends on !BR2_bfin # pciutils
 	help
 	  System utilities for IBM Power RAID devices
 
diff --git a/package/pciutils/Config.in b/package/pciutils/Config.in
index a082f23..d46df6c 100644
--- a/package/pciutils/Config.in
+++ b/package/pciutils/Config.in
@@ -1,5 +1,7 @@ 
 config BR2_PACKAGE_PCIUTILS
 	bool "pciutils"
+	# PCI not supported on Blackfin
+	depends on !BR2_bfin
 	help
 	  Various utilities dealing with the PCI bus.
 	  Provides things like setpci and lspci.