123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- menu "NET Modules"
- config SUPPORT_NETWORK
- bool "NET"
- default n
- help
- Selecting this option causes net function included.
- menu "Connect Mode"
- depends on SUPPORT_NETWORK
- config SUPPORT_ETHERNET
- bool "ethernet"
- config ETHERNET_MAC_ADDRESS
- depends on SUPPORT_NETWORK && SUPPORT_ETHERNET
- string "MAC Address"
- default "00:11:22:33:44:55"
- help
- Input the MAC address with the format "xx:xx:xx:xx:xx:xx".
- Don't forget the colons!
- config SUPPORT_WIFI
- bool "wifi"
- menu "Dongle"
- depends on SUPPORT_WIFI
- config SUPPORT_RTL8188
- bool "Support RTL8188"
- config SUPPORT_RTL8188FTV
- bool "Support RTL8188FTV"
- config SUPPORT_NORMAL_MTK7601
- bool "Support Normal MTK7601"
- config SUPPORT_RDA5995
- bool "Support RDA5995"
- config SUPPORT_RTL8723BU
- bool "Support RTL8723BU"
- config SUPPORT_RTL8723DU
- bool "Support RTL8723DU"
- config SUPPORT_RTL8733BU
- bool "Support RTL8733BU"
- config SUPPORT_ATBM6023
- bool "Support ATBM6023"
- config SUPPORT_ATBM6132
- bool "Support ATBM6132"
- config SUPPORT_AIC8800
- bool "Support AIC8800"
- endmenu
-
- endmenu
- menu "NET_SOURCE"
- depends on SUPPORT_NETWORK
- config SUPPORT_NETAPP
- bool "Support Network App"
- default n
- help
- Selecting this option causes network APP included.
-
- menu "Applications"
- depends on SUPPORT_NETAPP
- config SUPPORT_NEW_AIRPLAY
- bool "Support New Airplay"
- default n
- select FORCE_DISABLE_BYPASS_MODE
- help
- Selecting this option to support Airplay (including mirroring)
- config SUPPORT_MIRACAST
- bool "Support Miracast"
- default n
- help
- This will enable Miracast function which is peer-to-peer wireless
- screencast standard formed via WI-FI Direct connections in a manner
- similar to Bluetooth.
- This function works under Kernel v3.0.8, please make sure you have
- choice the correct Kernel version.
- Location -> Kernel hacking -> Kernel version
- config SUPPORT_MIRACAST_HDCP
- depends on SUPPORT_MIRACAST
- bool "Miracast Support HDCP"
- default n
- help
- Selecting this option to support HDCP.
-
- config SUPPORT_DLNA
- bool "Support DLNA"
- default n
- help
- Selecting this option causes DLNA function included.
- config SUPPORT_MIRACAST_DLNA_INONE
- depends on SUPPORT_MIRACAST && SUPPORT_DLNA
- bool "Support MIRACAST DLNA IN ONE"
- default n
- help
- Selecting this option causes MIRACAST DLNA function together.
-
- config SUPPORT_DASH
- bool "Support DASH"
- default n
- help
- Selecting this option causes DASH function included.
-
- config SUPPORT_ONLINE_STREAMING
- bool "Support Online streaming"
- default n
- help
- Selecting this option causes network streaming function included.
-
- choice
- depends on SUPPORT_ONLINE_STREAMING
- prompt "Play"
- config SUPPORT_NET_PLAY_RTSP
- bool "RTSP"
- config SUPPORT_NET_PLAY_HTTP
- bool "HTTP"
- help
- Selecting this option to enable auto play rtsp or http stream in network source
- endchoice
-
- endmenu # "Applications"
- endmenu # "NET SOURCE"
-
-
- config SUPPORT_NET_SETTING
- depends on SUPPORT_NETWORK
- bool "Support network setting UI"
- default n
- help
- Selecting this option to enable network configuration UI
-
- config SUPPORT_NET_OTA
- depends on SUPPORT_NETWORK
- bool "Support Network OTA"
- default n
- help
- Selecting this option causes network OTA function included.
-
- choice
- depends on SUPPORT_NET_OTA
- prompt "Storage for BIN file"
- config SUPPORT_NET_OTA_FROM_USB
- bool "USB disk"
- config SUPPORT_NET_OTA_FROM_MEM
- bool "Memory"
- help
- Selecting the storage for downloaded OTA Bin file
- endchoice
- config SUPPORT_USB_MCAST
- depends on SUPPORT_NETWORK
- bool "Support USB Mcast"
- default n
- help
- Support USB Mcast
-
- config SUPPORT_ANDROID_MCAST
- depends on SUPPORT_USB_MCAST
- bool
- prompt "SUPPORT Android Mcast"
- default n
- config SUPPORT_ANDROID_MCAST_SELF
- depends on SUPPORT_ANDROID_MCAST
- bool
- prompt "SUPPORT Android Mcast by Self"
- default n
-
- config SUPPORT_IPHONE_ICAST
- depends on SUPPORT_USB_MCAST
- bool
- prompt "SUPPORT Iphone Icast"
- default n
-
- config SUPPORT_IPTV
- bool "IPTV"
- default n
- help
- None
- endmenu # "NET Modules"
|