v1.0 fixes a bug with MCU communication, and allows shutting down individual ports over ubus. A summarry of commands can be shown with: ubus -v list poe Signed-off-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
35 lines
1 KiB
Makefile
35 lines
1 KiB
Makefile
## SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=realtek-poe
|
|
PKG_RELEASE:=$(AUTORELEASE)
|
|
PKG_LICENSE:=GPL-2.0
|
|
PKG_MAINTAINER:=Martin Kennedy <hurricos@gmail.com>
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://github.com/Hurricos/realtek-poe.git
|
|
PKG_SOURCE_VERSION:=39c93d39dd10da77b4fe48bc1d6bdd3c5978f866
|
|
PKG_MIRROR_HASH:=ad9652dda8d77281e4724e0104552e18e521cedd4e24f56b0483cf6c5ee5ff69
|
|
CMAKE_SOURCE_SUBDIR:=src
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
define Package/realtek-poe
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=Realtek PoE Switch Port daemon
|
|
DEPENDS:=@TARGET_realtek +libubox +libubus +libuci
|
|
endef
|
|
|
|
define Package/realtek-poe/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/realtek-poe $(1)/usr/bin/
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/files/etc/init.d/poe $(1)/etc/init.d/
|
|
$(INSTALL_CONF) $(PKG_BUILD_DIR)/files/etc/config/poe $(1)/etc/config/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,realtek-poe))
|