2015-11-24 20:40:11 +00:00
|
|
|
# Copyright (C) 2015 OpenWrt.org
|
|
|
|
# Copyright (C) 2015 Lantiq Beteiligungs GmbH & Co KG.
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=dsl_vr9_firmware_xdsl
|
|
|
|
PKG_VERSION:=05.07.04.03.00.06_05.07.01.08.00.01_osc
|
|
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=http://mirror2.openwrt.org/sources
|
|
|
|
PKG_MD5SUM:=4c8d9ca68dda88d3cfc0ca0fb946a63e
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
2015-11-25 22:33:17 +00:00
|
|
|
define Package/dsl-vrx200-firmware-xdsl-a
|
2015-11-24 20:40:11 +00:00
|
|
|
SECTION:=firmware
|
|
|
|
CATEGORY:=Firmware
|
2015-11-25 22:33:17 +00:00
|
|
|
TITLE:=VRX200 / VR9 CPE xDSL Annex A firmware
|
2015-11-24 20:40:11 +00:00
|
|
|
URL:=http://www.lantiq.com/
|
|
|
|
DEPENDS:=@TARGET_lantiq_xrx200
|
|
|
|
endef
|
|
|
|
|
2015-11-25 22:33:17 +00:00
|
|
|
define Package/dsl-vrx200-firmware-xdsl-a/description
|
|
|
|
VRX200 / VR9 CPE VDSL and ADSL Annex A firmware
|
2015-11-24 20:40:11 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Prepare
|
|
|
|
rm -rf $(PKG_BUILD_DIR)
|
|
|
|
mkdir -p $(PKG_BUILD_DIR)
|
|
|
|
$(TAR) -C $(PKG_BUILD_DIR) -xzf $(DL_DIR)/$(PKG_SOURCE)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
endef
|
|
|
|
|
2015-11-25 22:33:17 +00:00
|
|
|
define Package/dsl-vrx200-firmware-xdsl-a/install
|
2015-11-24 20:40:11 +00:00
|
|
|
$(INSTALL_DIR) $(1)/lib/firmware/
|
|
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/LICENSE $(1)/lib/firmware/xcpe_574306_571801.LICENSE
|
|
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/xcpe_574306_571801.bin $(1)/lib/firmware/
|
|
|
|
ln -s xcpe_574306_571801.bin $(1)/lib/firmware/vdsl.bin
|
2015-11-25 22:33:17 +00:00
|
|
|
ln -s xcpe_574306_571801.bin $(1)/lib/firmware/adsl-a.bin
|
2015-11-24 20:40:11 +00:00
|
|
|
endef
|
|
|
|
|
2015-11-25 22:33:17 +00:00
|
|
|
$(eval $(call BuildPackage,dsl-vrx200-firmware-xdsl-a))
|