diff options
Diffstat (limited to 'package')
-rw-r--r-- | package/pciutils/Config.in | 3 | ||||
-rw-r--r-- | package/pciutils/pciutils.mk | 4 |
2 files changed, 7 insertions, 0 deletions
diff --git a/package/pciutils/Config.in b/package/pciutils/Config.in index bc026602f..07fc49b82 100644 --- a/package/pciutils/Config.in +++ b/package/pciutils/Config.in @@ -7,4 +7,7 @@ config BR2_PACKAGE_PCIUTILS Various utilities dealing with the PCI bus. Provides things like setpci and lspci. + You'll need a copy of pci.ids or pci.ids.gz in your + target skeleton to enjoy verbose output. + http://atrey.karlin.mff.cuni.cz/~mj/pciutils.html diff --git a/package/pciutils/pciutils.mk b/package/pciutils/pciutils.mk index 393162f62..2b999dfb5 100644 --- a/package/pciutils/pciutils.mk +++ b/package/pciutils/pciutils.mk @@ -18,10 +18,12 @@ define PCIUTILS_CONFIGURE_CMDS $(SED) 's/uname -s/echo Linux/' \ -e 's/uname -r/echo $(LINUX_HEADERS_VERSION)/' \ $(PCIUTILS_DIR)/lib/configure + $(SED) 's/^STRIP/#STRIP/' $(PCIUTILS_DIR)/Makefile endef define PCIUTILS_BUILD_CMDS $(MAKE) CC="$(TARGET_CC)" \ + HOST="$(KERNEL_ARCH)-linux" \ OPT="$(TARGET_CFLAGS)" \ LDFLAGS="$(TARGET_LDFLAGS)" \ RANLIB=$(TARGET_RANLIB) \ @@ -33,8 +35,10 @@ define PCIUTILS_BUILD_CMDS SHAREDIR=/usr/share/misc endef +# Ditch install-lib if SHARED is an option in the future define PCIUTILS_INSTALL_TARGET_CMDS $(MAKE) BUILDDIR=$(@D) -C $(@D) PREFIX=$(TARGET_DIR)/usr install + $(MAKE) BUILDDIR=$(@D) -C $(@D) PREFIX=$(TARGET_DIR)/usr install-lib endef $(eval $(call GENTARGETS,package,pciutils)) |