mdio-tools: include mvls
authorRobert Marko <robert.marko@sartura.hr>
Tue, 7 Jun 2022 12:18:15 +0000 (14:18 +0200)
committerRosen Penev <rosenp@gmail.com>
Thu, 9 Jun 2022 18:06:41 +0000 (11:06 -0700)
mdio-tools have a app dedicated to reading Marvell Link Street switch
properties which is really usefull to not have to manually do it via
MDIO.

So, install the mvls binary as well.

Signed-off-by: Robert Marko <robert.marko@sartura.hr>
net/mdio-tools/Makefile

index 565b5211aedaa24b2cc21b2fe82fce9626162a84..683daf50231595af88096a784b7f960ce8cf83da 100644 (file)
@@ -1,7 +1,7 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=mdio-tools
-PKG_RELEASE:=1
+PKG_RELEASE:=2
 
 PKG_SOURCE_URL:=https://github.com/wkz/mdio-tools
 PKG_SOURCE_PROTO:=git
@@ -32,6 +32,7 @@ endef
 define Package/mdio-tools/install
        $(INSTALL_DIR) $(1)/usr/bin
        $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/mdio/mdio $(1)/usr/bin/
+       $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/mvls/mvls $(1)/usr/bin/
 endef
 
 define Build/Prepare