2018-06-15 09:56:05 +00:00
|
|
|
# Copyright (C) 2012 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=ltq-vdsl-fw
|
2018-06-20 12:38:13 +00:00
|
|
|
PKG_VERSION:=6.8.6
|
2019-09-21 13:09:55 +00:00
|
|
|
PKG_RELEASE:=3
|
2018-06-15 09:56:05 +00:00
|
|
|
|
2018-06-15 10:21:03 +00:00
|
|
|
PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>
|
2018-06-15 09:56:05 +00:00
|
|
|
|
2018-06-19 15:55:22 +00:00
|
|
|
PKG_FLAGS:=nonshared
|
|
|
|
|
2018-06-15 09:56:05 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
2018-06-15 10:21:03 +00:00
|
|
|
define Package/ltq-vdsl-vr9-vectoring-fw-installer
|
|
|
|
TITLE:=VDSL2 Vectoring Firmware installer
|
2018-06-15 09:56:05 +00:00
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
|
|
|
DEPENDS:=@TARGET_lantiq_xrx200 +kmod-ltq-vdsl-vr9
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Prepare
|
|
|
|
$(INSTALL_DIR) $(PKG_BUILD_DIR)
|
|
|
|
$(CP) ./src/* $(PKG_BUILD_DIR)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
|
|
CFLAGS="$(TARGET_CFLAGS)" \
|
|
|
|
LDFLAGS="$(TARGET_LDFLAGS)" \
|
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR)
|
|
|
|
endef
|
|
|
|
|
2018-06-21 10:00:12 +00:00
|
|
|
define Package/ltq-vdsl-vr9-vectoring-fw-installer/install
|
2018-06-15 09:56:05 +00:00
|
|
|
$(INSTALL_DIR) $(1)/sbin
|
|
|
|
$(CP) $(PKG_BUILD_DIR)/w921v_fw_cutter $(PKG_BUILD_DIR)/vdsl_fw_install.sh $(1)/sbin/
|
|
|
|
endef
|
|
|
|
|
2018-06-15 10:21:03 +00:00
|
|
|
$(eval $(call BuildPackage,ltq-vdsl-vr9-vectoring-fw-installer))
|