Commit b348a54a authored by Lucas Russo's avatar Lucas Russo

Makefile: install just the pcie driver and lib, not udev rules

Udev rules are installed by our scripts/Makefile
as they are specific to our project
parent 5dd012a4
......@@ -322,11 +322,12 @@ ifeq ($(wildcard $(DRIVER_OBJ)),)
@echo "PCI driver not found!";
endif
# Install just the driver and lib, not udev rules
pcie_driver_install:
$(MAKE) -C $(PCIE_DRIVER_DIR) install
$(MAKE) -C $(PCIE_DRIVER_DIR) core_driver_install lib_driver_install
pcie_driver_uninstall:
$(MAKE) -C $(PCIE_DRIVER_DIR) uninstall
$(MAKE) -C $(PCIE_DRIVER_DIR) core_driver_uninstall lib_driver_uninstall
pcie_driver_clean:
$(MAKE) -C $(PCIE_DRIVER_DIR) clean
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment