mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-19 04:57:55 +00:00
bb0e13c24f
Also fix up flashrom-x230.sh command only read bios area
49 lines
1.1 KiB
Plaintext
49 lines
1.1 KiB
Plaintext
modules-$(CONFIG_PCIUTILS) += pciutils
|
|
|
|
pciutils_depends := $(musl_dep)
|
|
|
|
#pciutils_version := git
|
|
#pciutils_repo := https://github.com/osresearch/pciutils
|
|
|
|
pciutils_version := 3.5.4
|
|
pciutils_dir := pciutils-$(pciutils_version)
|
|
pciutils_tar := pciutils-$(pciutils_version).tar.xz
|
|
pciutils_url := https://www.kernel.org/pub/software/utils/pciutils/$(pciutils_tar)
|
|
pciutils_hash := 64293c6ab9318c40ef262b76d87bd9097531759752bac556e50979b1e63cfe66
|
|
|
|
# IDSDIR must be set to a constant during the build,
|
|
# but not during the install to make the libpci.so.3
|
|
# reproducible. Otherwise the build path will be embedded
|
|
# in the library and executables.
|
|
|
|
pciutils_target := \
|
|
$(MAKE_JOBS) \
|
|
$(CROSS_TOOLS) \
|
|
ZLIB=no \
|
|
HWDB=no \
|
|
LIBKMOD=no \
|
|
SHARED=yes \
|
|
IDSDIR="/" \
|
|
PREFIX="/" \
|
|
&& \
|
|
$(MAKE) \
|
|
-C $(build)/$(pciutils_dir) \
|
|
$(CROSS_TOOLS) \
|
|
ZLIB=no \
|
|
HWDB=no \
|
|
LIBKMOD=no \
|
|
SHARED=yes \
|
|
PREFIX="/" \
|
|
DESTDIR="$(INSTALL)" \
|
|
install \
|
|
install-lib \
|
|
|
|
pciutils_output := \
|
|
lspci \
|
|
|
|
pciutils_libraries := \
|
|
lib/libpci.so.3.5.4 \
|
|
../../install/lib/libpci.so.3\
|
|
|
|
pciutils_configure :=
|