diff options
author | John Crispin <john@openwrt.org> | 2010-03-31 11:12:33 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2010-03-31 11:12:33 +0000 |
commit | 00cb9df7b817384bb9751fe6acaab29f0dd6a404 (patch) | |
tree | 0c5eb147d7008381779269b1a020d188d26c6c12 /package/ifx-tapidemo/Config.in | |
parent | 6bfe50b36490ded3f09d7c9841850cbf8c8869f3 (diff) | |
download | upstream-00cb9df7b817384bb9751fe6acaab29f0dd6a404.tar.gz upstream-00cb9df7b817384bb9751fe6acaab29f0dd6a404.tar.bz2 upstream-00cb9df7b817384bb9751fe6acaab29f0dd6a404.zip |
adds voip support
SVN-Revision: 20637
Diffstat (limited to 'package/ifx-tapidemo/Config.in')
-rw-r--r-- | package/ifx-tapidemo/Config.in | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/package/ifx-tapidemo/Config.in b/package/ifx-tapidemo/Config.in new file mode 100644 index 0000000000..32594ba9cb --- /dev/null +++ b/package/ifx-tapidemo/Config.in @@ -0,0 +1,36 @@ +choice + prompt "board selection" + default VOICE_CPE_TAPIDEMO_BOARD_EASY50712_V3 if TARGET_ifxmips_platform_danube + default VOICE_CPE_TAPIDEMO_BOARD_EASY508xx if TARGET_ifxmips_platform_ar9 + default VOICE_CPE_TAPIDEMO_BOARD_EASY80910 if TARGET_ifxmips_platform_vr9 + default VOICE_CPE_TAPIDEMO_BOARD_EASY50812 + help + Select the target platform. + + config VOICE_CPE_TAPIDEMO_BOARD_EASY50712 + bool "Danube reference board" + + config VOICE_CPE_TAPIDEMO_BOARD_EASY50712_V3 + bool "Danube reference board V3" + + config VOICE_CPE_TAPIDEMO_BOARD_EASY508xx + bool "AR9/GR9 reference board" + + config VOICE_CPE_TAPIDEMO_BOARD_EASY80910 + bool "VR9 reference board" +endchoice + +config VOICE_CPE_TAPIDEMO_QOS + bool "enable QOS support" + default n + help + Option to enable the KPI2UDP RTP packet acceleration path + (highly recommended for VoIP). + +config VOICE_CPE_TAPIDEMO_FAX_T.38_FW + bool "enable T.38 fax relay" + depends on (TARGET_ifxmips_platform_ar9 || TARGET_ifxmips_platform_vr9) + default n + help + enable T.38 fax relay demo. + |