Update Buildroot to 2019.02.3 (#415)
* Update Buildroot to 2019-02.3 * Fix enter script * Update ova_defconfig * Fix network manager * Remove runc patches * Use same docker version * Fix build * Fix vmtools * Fix depens * Fix handling with tempfiles * Fix permission handling * Fix cp * Cleanup * Fix mounts
This commit is contained in:
27
buildroot/package/linux-tools/linux-tool-pci.mk.in
Normal file
27
buildroot/package/linux-tools/linux-tool-pci.mk.in
Normal file
@@ -0,0 +1,27 @@
|
||||
################################################################################
|
||||
#
|
||||
# pci
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LINUX_TOOLS += pci
|
||||
|
||||
PCI_MAKE_OPTS = $(LINUX_MAKE_FLAGS)
|
||||
|
||||
define PCI_BUILD_CMDS
|
||||
$(Q)if ! grep install $(LINUX_DIR)/tools/pci/Makefile >/dev/null 2>&1 ; then \
|
||||
echo "Your kernel version is too old and does not have install section in the pci tools." ; \
|
||||
echo "At least kernel 4.20 must be used." ; \
|
||||
exit 1 ; \
|
||||
fi
|
||||
|
||||
$(TARGET_MAKE_ENV) $(MAKE) -C $(LINUX_DIR)/tools/pci \
|
||||
$(PCI_MAKE_OPTS)
|
||||
endef
|
||||
|
||||
define PCI_INSTALL_TARGET_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE) -C $(LINUX_DIR)/tools/pci \
|
||||
$(PCI_MAKE_OPTS) \
|
||||
DESTDIR=$(TARGET_DIR) \
|
||||
install
|
||||
endef
|
||||
Reference in New Issue
Block a user