fffe894baf48ad6e4ebfdcd0f1d24766e5622746
[openwrt/openwrt.git] / package / network / config / ltq-vdsl-app / Makefile
1 # Copyright (C) 2010 OpenWrt.org
2 # Copyright (C) 2015 Lantiq Beteiligungs GmbH & Co KG.
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6
7 include $(TOPDIR)/rules.mk
8 include $(INCLUDE_DIR)/kernel.mk
9
10 PKG_NAME:=ltq-vdsl-app
11 PKG_VERSION:=4.16.6.3
12 PKG_RELEASE:=1
13 PKG_BASE_NAME:=dsl_cpe_control
14 PKG_SOURCE:=$(PKG_BASE_NAME)_vrx-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://mirror2.openwrt.org/sources
16 PKG_MD5SUM:=8bedf330a456fe0864844e61b57da627
17 PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_BASE_NAME)-$(PKG_VERSION)
18 PKG_LICENSE:=BSD-2-Clause
19
20 PKG_BUILD_DEPENDS:=kmod-ltq-vdsl-vr9
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/ltq-vdsl-app
25 SECTION:=net
26 CATEGORY:=Network
27 TITLE:=Lantiq VDSL userland tool
28 URL:=http://www.lantiq.com/
29 DEPENDS:=@TARGET_lantiq_xrx200 +libpthread +librt +atm-esi
30 endef
31
32 define Package/ltq-vdsl-app/description
33 Userland tool needed to control Lantiq VDSL CPE
34 endef
35
36 CONFIGURE_ARGS += \
37 --with-max-device="1" \
38 --with-lines-per-device="1" \
39 --with-channels-per-line="1" \
40 --enable-vrx \
41 --enable-driver-include="-I$(STAGING_DIR)/usr/include/drv_vdsl_cpe_api" \
42 --enable-device-driver-include="-I$(STAGING_DIR)/usr/include/vdsl/" \
43 --enable-add-appl-cflags="-DMAX_CLI_PIPES=1" \
44 --enable-ifxos \
45 --enable-ifxos-include="-I$(STAGING_DIR)/usr/include/ifxos" \
46 --enable-ifxos-library="-I$(STAGING_DIR)/usr/lib" \
47 --enable-dsl-ceoc=no \
48 --enable-vrx-device=vr9 \
49 --disable-dti \
50 --enable-debug \
51 --enable-dsl-pm-showtime
52
53 ifeq ($(CONFIG_IFX_CLI),y)
54 CONFIGURE_ARGS += \
55 --enable-cli-support
56 endif
57
58 #CONFIGURE_ARGS += --enable-model=full
59 #CONFIGURE_ARGS += --enable-model=lite
60 #CONFIGURE_ARGS += --enable-model=footprint
61 CONFIGURE_ARGS += --enable-model=typical
62 #CONFIGURE_ARGS += --enable-model=debug
63
64 define Package/ltq-vdsl-app/install
65 $(INSTALL_DIR) $(1)/etc/init.d $(1)/sbin
66 $(INSTALL_BIN) ./files/dsl_control $(1)/etc/init.d/
67 $(INSTALL_BIN) ./files/vdsl_cpe_control_wrapper $(1)/sbin/
68
69 $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/dsl_cpe_control $(1)/sbin/vdsl_cpe_control
70 $(INSTALL_BIN) ./files/dsl_cpe_pipe.sh $(1)/sbin/
71 endef
72
73 $(eval $(call BuildPackage,ltq-vdsl-app))