2 # Copyright (C) 2011 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
8 include $(TOPDIR
)/rules.mk
9 include $(INCLUDE_DIR
)/kernel.mk
15 PKG_SOURCE
:=drv_tapi-
$(PKG_VERSION
).
tar.bz2
16 PKG_SOURCE_URL
:=http
://mirror2.openwrt.org
/sources
17 PKG_MD5SUM
:=edb43b494832c540cc035493d18db58f
19 include $(INCLUDE_DIR
)/package.mk
21 define KernelPackage
/ltq-tapi
22 SUBMENU
:=Voice over IP
23 TITLE
:=Lantiq TAPI subsystem
24 URL
:=http
://www.lantiq.com
/
25 DEPENDS
:=+kmod-ltq-ifxos @TARGET_lantiq
26 FILES
:=$(PKG_BUILD_DIR
)/src
/drv_tapi.ko
27 AUTOLOAD
:=$(call AutoLoad
,20,drv_tapi
)
28 MAINTAINER
:=John Crispin
<blogic@openwrt.org
>
31 define KernelPackage
/ltq-tapi
/description
32 Voice Subsystem Telephony API High Level Driver
35 define KernelPackage
/ltq-tapi
/config
36 source
"$(SOURCE)/Config.in"
42 --enable-kernelbuild
="$(LINUX_DIR)" \
43 --enable-kernelincl
="$(LINUX_DIR)/include" \
44 --with-ifxos-incl
=$(STAGING_DIR
)/usr
/include/ifxos \
45 $(call autoconf_bool
,CONFIG_IFX_DRV_TAPI_EVENT_LOGGER
,el-debug
) \
46 $(call autoconf_bool
,CONFIG_VOICE_CPE_TAPI_FAX
,fax t38
) \
47 $(call autoconf_bool
,CONFIG_VOICE_CPE_TAPI_CID
,cid
) \
48 $(call autoconf_bool
,CONFIG_VOICE_CPE_TAPI_DECT
,dect
) \
49 $(call autoconf_bool
,CONFIG_VOICE_CPE_TAPI_KPI
,kpi
) \
50 $(call autoconf_bool
,CONFIG_VOICE_CPE_TAPI_QOS
,qos
) \
51 $(call autoconf_bool
,CONFIG_VOICE_CPE_TAPI_LT_GR909
,lt
) \
52 $(call autoconf_bool
,CONFIG_VOICE_CPE_TAPI_STATISTICS
,statistics
) \
53 $(call autoconf_bool
,CONFIG_VOICE_CPE_TAPI_METERING
,metering
) \
54 $(call autoconf_bool
,CONFIG_VOICE_CPE_TAPI_HDLC
,hdlc
) \
55 $(call autoconf_bool
,CONFIG_VOICE_CPE_TAPI_TRACES
,trace
) \
56 $(call autoconf_bool
,CONFIG_VOICE_CPE_TAPI_LINUX_HOTPLUG
,hotplug
)
58 define Build
/Configure
59 (cd
$(PKG_BUILD_DIR
); aclocal
&& autoconf
&& automake
)
60 $(call Build
/Configure
/Default
)
63 define Build
/InstallDev
64 $(INSTALL_DIR
) $(1)/usr
/include/drv_tapi
65 $(CP
) --dereference
$(PKG_BUILD_DIR
)/include/* $(1)/usr
/include/drv_tapi
66 (cd
$(1)/usr
/include/drv_tapi
&& ln
-s .
include && ln
-s ..
/ifxos
/ifx_types.h .
)
69 $(eval
$(call KernelPackage
,ltq-tapi
))