123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- menu "System Application"
- choice
- prompt "System APP"
- config DVB_SYSTEM
- bool "DVB SYSTEM"
- config ISDB_SYSTEM
- bool "ISDB SYSTEM"
- config DTMB_SYSTEM
- bool "DTMB SYSTEM"
- config ATSC_SYSTEM
- bool "ATSC SYSTEM"
- config ANALOGUE_ONLY_SYSTEM
- bool "ANALOGUE ONLY SYSTEM"
- endchoice
- config AUS_DVB_SYSTEM
- depends on DVB_SYSTEM
- bool #"AUS DVB SYSTEM"
- default y
- menu "Product Location Select"
- config LOCATION_IS_CN
- depends on DTMB_SYSTEM || DVB_SYSTEM
- bool "location CN"
- config LOCATION_IS_JP
- depends on ISDB_SYSTEM
- bool "location JP"
- config LOCATION_IS_NA
- depends on ATSC_SYSTEM
- bool "location NA"
- config LOCATION_IS_MY
- depends on ATSC_SYSTEM
- bool "location MY"
- config LOCATION_IS_TW
- depends on DVB_SYSTEM
- bool "location TW"
- config LOCATION_IS_IN
- depends on ATSC_SYSTEM
- bool "location IN"
- config LOCATION_IS_SEA
- depends on ATSC_SYSTEM
- bool "location SEA"
- config LOCATION_IS_KR
- depends on ATSC_SYSTEM
- bool "location KR"
- config LOCATION_IS_ME
- depends on DVB_SYSTEM
- bool "location ME"
- config LOCATION_IS_SA
- depends on ISDB_SYSTEM || DVB_SYSTEM
- bool "location SA"
- config LOCATION_IS_EU
- depends on DVB_SYSTEM
- bool "location EU"
- config LOCATION_IS_AU
- depends on DVB_SYSTEM
- bool "location AU"
- config LOCATION_IS_HK
- depends on DTMB_SYSTEM
- bool "location HK"
- endmenu
-
- source aps/customer/Kconfig.atv
- if (DVB_SYSTEM) || (AUS_DVB_SYSTEM)
- source aps/customer/Kconfig.dvb
- endif
- if (ISDB_SYSTEM)
- source aps/customer/Kconfig.sbtvd
- endif
- if (DTMB_SYSTEM)
- source aps/customer/Kconfig.dtmb
- endif
- if (ATSC_SYSTEM)
- #source aps/customer/Kconfig.atsc
- endif
- source aps/customer/Kconfig.media
- source aps/customer/Kconfig.net
- source aps/customer/Kconfig.game
- # source aps/customer/Kconfig.karaoke
- if (DVB_SYSTEM) || (AUS_DVB_SYSTEM) || (DTMB_SYSTEM)
- comment "DTV System Functions Config"
- source aps/customer/Kconfig.dtvcommon
- endif
- endmenu # System Application
|