diff options
author | Nicolas Thill <nico@openwrt.org> | 2010-04-16 11:09:24 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2010-04-16 11:09:24 +0000 |
commit | 67af84873abfb495ec6198e0c5c35d5dfeb01b51 (patch) | |
tree | 94b227b895dc9680bc2c69c2e1398f5037b5a401 | |
parent | ff5d8ea696d3a16ec85e292e4fa147e1ff0ab7a2 (diff) | |
download | upstream-67af84873abfb495ec6198e0c5c35d5dfeb01b51.tar.gz upstream-67af84873abfb495ec6198e0c5c35d5dfeb01b51.tar.bz2 upstream-67af84873abfb495ec6198e0c5c35d5dfeb01b51.zip |
yckage/ifx-tapidemo: move configuration in submenu
SVN-Revision: 20921
-rw-r--r-- | package/ifx-tapidemo/Config.in | 3 | ||||
-rw-r--r-- | package/ifx-tapidemo/Makefile | 5 |
2 files changed, 5 insertions, 3 deletions
diff --git a/package/ifx-tapidemo/Config.in b/package/ifx-tapidemo/Config.in index 32594ba9cb..42ec5fa1c3 100644 --- a/package/ifx-tapidemo/Config.in +++ b/package/ifx-tapidemo/Config.in @@ -1,3 +1,5 @@ +menu "Configuration" + depends on PACKAGE_ifx-tapidemo choice prompt "board selection" default VOICE_CPE_TAPIDEMO_BOARD_EASY50712_V3 if TARGET_ifxmips_platform_danube @@ -34,3 +36,4 @@ config VOICE_CPE_TAPIDEMO_FAX_T.38_FW help enable T.38 fax relay demo. +endmenu diff --git a/package/ifx-tapidemo/Makefile b/package/ifx-tapidemo/Makefile index 217d4641a5..b294d9d3a7 100644 --- a/package/ifx-tapidemo/Makefile +++ b/package/ifx-tapidemo/Makefile @@ -26,6 +26,7 @@ define Package/ifx-tapidemo URL:=http://www.lantiq.com/ MAINTAINER:=Lantiq DEPENDS:=+kmod-ifx-tapi +kmod-ifx-vmmc @BROKEN + MENU:=1 endef define Package/ifx-tapidemo/description @@ -33,9 +34,7 @@ define Package/ifx-tapidemo/description endef define Package/ifx-tapidemo/config - if PACKAGE_ifx-tapidemo - source "$(SOURCE)/Config.in" - endif + source "$(SOURCE)/Config.in" endef CONFIGURE_ARGS += \ |