lantiq: move esi calls to dsl_cpe_control scripts to fix ordering wrt. loading vr9...
[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
52 ifeq ($(CONFIG_IFX_CLI),y)
53 CONFIGURE_ARGS += \
54         --enable-cli-support
55 endif
56
57 CONFIGURE_ARGS += --enable-model=full
58 #CONFIGURE_ARGS += --enable-model=lite
59 #CONFIGURE_ARGS += --enable-model=footprint
60 #CONFIGURE_ARGS += --enable-model=typical
61 #CONFIGURE_ARGS += --enable-model=debug
62
63 define Package/ltq-vdsl-app/install
64         $(INSTALL_DIR) $(1)/etc/init.d $(1)/sbin
65         $(INSTALL_BIN) ./files/dsl_control $(1)/etc/init.d/
66         $(INSTALL_BIN) ./files/vdsl_cpe_control_wrapper $(1)/sbin/
67
68         $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/dsl_cpe_control $(1)/sbin/vdsl_cpe_control
69         $(INSTALL_BIN) ./files/dsl_cpe_pipe.sh $(1)/sbin/
70 endef
71
72 $(eval $(call BuildPackage,ltq-vdsl-app))