From: Robert Marko Date: Tue, 7 Jun 2022 12:18:15 +0000 (+0200) Subject: mdio-tools: include mvls X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=44149099e739db3d5c4a088f4a6e7d6cb9ed37b7;p=openwrt-packages.git mdio-tools: include mvls 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 --- diff --git a/net/mdio-tools/Makefile b/net/mdio-tools/Makefile index 565b5211a..683daf502 100644 --- a/net/mdio-tools/Makefile +++ b/net/mdio-tools/Makefile @@ -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