mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2024-12-13 02:14:53 +00:00
7bba6b6f63
As also ramips/mt7621 now has a user of the ubnt-ledbar driver, make the package available on all targets by removing the dependency on @TARGET_mediatek_mt7622. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
35 lines
776 B
Makefile
35 lines
776 B
Makefile
#
|
|
# Copyright (C) 2008-2010 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
PKG_NAME:=ubnt-ledbar
|
|
PKG_RELEASE:=1
|
|
PKG_LICENSE:=GPL-2.0
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define KernelPackage/leds-ubnt-ledbar
|
|
SUBMENU:=LED modules
|
|
TITLE:=Ubiquiti UniFi 6 LR LED support
|
|
FILES:= \
|
|
$(PKG_BUILD_DIR)/leds-ubnt-ledbar.ko
|
|
AUTOLOAD:=$(call AutoProbe,leds-ubnt-ledbar,1)
|
|
DEPENDS:=+kmod-i2c-core
|
|
endef
|
|
|
|
define KernelPackage/leds-ubnt-ledbar/description
|
|
LED support for some Ubiquiti UniFi access points.
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(KERNEL_MAKE) M="$(PKG_BUILD_DIR)" modules
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,leds-ubnt-ledbar))
|