procd: make mDNS TXT record parsing more solid
[openwrt/openwrt.git] / package / network / config / ltq-vdsl-app / Makefile
1 # Copyright (C) 2010 OpenWrt.org
2 # Copyright (C) 2015-2016 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.17.18.6
12 PKG_RELEASE:=$(AUTORELEASE)
13 PKG_BASE_NAME:=dsl_cpe_control
14 PKG_SOURCE:=$(PKG_BASE_NAME)_vrx-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@OPENWRT
16 PKG_HASH:=da8bb929526a61aea0e153ef524331fcd472a1ebbc6d88ca017735a4f82ece02
17 PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_BASE_NAME)-$(PKG_VERSION)
18 PKG_LICENSE:=BSD-2-Clause
19
20 PKG_BUILD_DEPENDS:=ltq-vdsl
21
22 PKG_FLAGS:=nonshared
23 PKG_FIXUP:=autoreconf
24
25 include $(INCLUDE_DIR)/package.mk
26
27 define Package/ltq-vdsl-app
28 SECTION:=net
29 CATEGORY:=Network
30 TITLE:=Lantiq VDSL userland tool
31 URL:=http://www.lantiq.com/
32 DEPENDS:=@TARGET_lantiq_xrx200 +libpthread +librt +ltq-dsl-base +libubox +libubus
33 endef
34
35 define Package/ltq-vdsl-app/description
36 Userland tool needed to control Lantiq VDSL CPE
37 endef
38
39 # ltq-vdsl-app uses a header provided by the MEI driver which has some
40 # conditionals.
41 #
42 # Define them here with the default values they would get in the MEI driver,
43 # have the same view on both sides.
44 #
45 # If you change them, you need to change them for the ltq-vdsl-app as well
46 VDSL_APP_CFLAGS = \
47 -DMAX_CLI_PIPES=1 \
48 -DMEI_SUPPORT_DEBUG_STREAMS=1 \
49 -DMEI_SUPPORT_OPTIMIZED_FW_DL=1
50
51 CONFIGURE_ARGS += \
52 --enable-vrx \
53 --enable-vrx-device=vr9 \
54 --enable-driver-include="-I$(STAGING_DIR)/usr/include/drv_vdsl_cpe_api" \
55 --enable-device-driver-include="-I$(STAGING_DIR)/usr/include/vdsl/" \
56 --enable-ifxos \
57 --enable-ifxos-include="-I$(STAGING_DIR)/usr/include/ifxos" \
58 --enable-ifxos-library="-I$(STAGING_DIR)/usr/lib" \
59 --enable-add-appl-cflags="$(VDSL_APP_CFLAGS)" \
60 --enable-debug \
61 --disable-dti \
62 --with-channels-per-line="1"
63
64 CONFIGURE_ARGS += \
65 --enable-model=full \
66 --enable-dsl-ceoc=no
67 #CONFIGURE_ARGS += --enable-model=lite
68 #CONFIGURE_ARGS += --enable-model=footprint
69 #CONFIGURE_ARGS += --enable-model=typical
70 #CONFIGURE_ARGS += --enable-model=debug
71
72 define Package/ltq-vdsl-app/install
73 $(INSTALL_DIR) $(1)/etc/init.d $(1)/sbin $(1)/etc/hotplug.d/dsl
74 $(INSTALL_BIN) ./files/dsl_control $(1)/etc/init.d/
75 $(INSTALL_BIN) ./files/10_atm.sh $(1)/etc/hotplug.d/dsl
76 $(INSTALL_BIN) ./files/10_ptm.sh $(1)/etc/hotplug.d/dsl
77
78 $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/dsl_cpe_control $(1)/sbin/vdsl_cpe_control
79 $(INSTALL_BIN) ./files/dsl_cpe_pipe.sh $(1)/sbin/
80 endef
81
82 $(eval $(call BuildPackage,ltq-vdsl-app))