mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-20 17:32:57 +00:00
This adds a userspace interpretation of the nu801 driver used by Meraki hardware. Previously this was a driver that was added per target, but as multiple targets now have this driver, we should move to something that can be shared by all targets since no driver exists upstream. Co-developed-by: Christian Lamparter <chunkeey@gmail.com> Signed-off-by: Chris Blake <chrisrblake93@gmail.com> Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
42 lines
998 B
Makefile
42 lines
998 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=nu801
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://github.com/chunkeey/nu801.git
|
|
PKG_SOURCE_VERSION:=794a588fce3150129bb2e5bb37590c7daceb8927
|
|
|
|
PKG_MAINTAINER:=Christian Lamparter <chunkeey@gmail.com>
|
|
PKG_LICENSE:=GPL-3.0-or-later
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
define Package/nu801
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
SUBMENU:=Userspace GPIO Drivers
|
|
DEPENDS:=@!LINUX_5_4 +kmod-leds-uleds
|
|
KCONFIG:= \
|
|
CONFIG_GPIO_CDEV=y
|
|
TITLE:=NU801 LED Driver
|
|
endef
|
|
|
|
define Package/nu801/description
|
|
This package contains a userspace driver to power the NUMEN Tech. NU801 LED Driver.
|
|
endef
|
|
|
|
define Package/nu801/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/nu801 $(1)/usr/sbin/
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) ./files/nu801.init $(1)/etc/init.d/nu801
|
|
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,nu801))
|