2013-03-15 02:43:13 +08:00
|
|
|
# Copyright (C) 2010 OpenWrt.org
|
2015-11-25 04:41:30 +08:00
|
|
|
# Copyright (C) 2015 Lantiq Beteiligungs GmbH & Co KG.
|
2013-03-15 02:43:13 +08:00
|
|
|
#
|
|
|
|
# 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:=ltq-vdsl-app
|
2015-11-25 04:41:30 +08:00
|
|
|
PKG_VERSION:=4.16.6.3
|
2013-03-15 02:43:13 +08:00
|
|
|
PKG_RELEASE:=1
|
2015-11-25 04:41:30 +08:00
|
|
|
PKG_BASE_NAME:=dsl_cpe_control
|
|
|
|
PKG_SOURCE:=$(PKG_BASE_NAME)_vrx-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=http://mirror2.openwrt.org/sources
|
|
|
|
PKG_MD5SUM:=8bedf330a456fe0864844e61b57da627
|
2015-09-15 04:09:22 +08:00
|
|
|
PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_BASE_NAME)-$(PKG_VERSION)
|
2014-11-02 20:20:54 +08:00
|
|
|
PKG_LICENSE:=BSD-2-Clause
|
2013-03-15 02:43:13 +08:00
|
|
|
|
|
|
|
PKG_BUILD_DEPENDS:=kmod-ltq-vdsl-vr9
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/ltq-vdsl-app
|
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
|
|
|
TITLE:=Lantiq VDSL userland tool
|
|
|
|
URL:=http://www.lantiq.com/
|
2015-12-05 01:42:51 +08:00
|
|
|
DEPENDS:=@TARGET_lantiq_xrx200 +libpthread +librt +atm-esi
|
2013-03-15 02:43:13 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/ltq-vdsl-app/description
|
|
|
|
Userland tool needed to control Lantiq VDSL CPE
|
|
|
|
endef
|
|
|
|
|
|
|
|
CONFIGURE_ARGS += \
|
|
|
|
--enable-vrx \
|
2015-12-14 01:04:12 +08:00
|
|
|
--enable-vrx-device=vr9 \
|
2013-03-15 02:43:13 +08:00
|
|
|
--enable-driver-include="-I$(STAGING_DIR)/usr/include/drv_vdsl_cpe_api" \
|
|
|
|
--enable-device-driver-include="-I$(STAGING_DIR)/usr/include/vdsl/" \
|
|
|
|
--enable-ifxos \
|
|
|
|
--enable-ifxos-include="-I$(STAGING_DIR)/usr/include/ifxos" \
|
|
|
|
--enable-ifxos-library="-I$(STAGING_DIR)/usr/lib" \
|
2015-12-14 01:04:12 +08:00
|
|
|
--enable-add-appl-cflags="-DMAX_CLI_PIPES=1" \
|
2015-12-14 01:04:02 +08:00
|
|
|
--enable-debug \
|
2015-12-14 01:04:12 +08:00
|
|
|
--disable-dti \
|
|
|
|
--with-channels-per-line="1" \
|
2013-03-15 02:43:13 +08:00
|
|
|
|
2015-12-05 04:26:17 +08:00
|
|
|
#CONFIGURE_ARGS += --enable-model=full
|
2013-03-15 02:43:13 +08:00
|
|
|
#CONFIGURE_ARGS += --enable-model=lite
|
|
|
|
#CONFIGURE_ARGS += --enable-model=footprint
|
2015-12-14 01:04:12 +08:00
|
|
|
CONFIGURE_ARGS += \
|
|
|
|
--enable-model=typical \
|
|
|
|
--enable-dsl-pm-showtime \
|
|
|
|
--disable-dsl-ceoc
|
2013-03-15 02:43:13 +08:00
|
|
|
#CONFIGURE_ARGS += --enable-model=debug
|
|
|
|
|
|
|
|
define Package/ltq-vdsl-app/install
|
2015-11-16 19:02:14 +08:00
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d $(1)/sbin
|
2013-03-15 02:43:13 +08:00
|
|
|
$(INSTALL_BIN) ./files/dsl_control $(1)/etc/init.d/
|
2015-11-16 19:02:14 +08:00
|
|
|
$(INSTALL_BIN) ./files/vdsl_cpe_control_wrapper $(1)/sbin/
|
2013-03-15 02:43:13 +08:00
|
|
|
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/dsl_cpe_control $(1)/sbin/vdsl_cpe_control
|
2015-11-25 04:41:18 +08:00
|
|
|
$(INSTALL_BIN) ./files/dsl_cpe_pipe.sh $(1)/sbin/
|
2013-03-15 02:43:13 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,ltq-vdsl-app))
|