You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.1 KiB
42 lines
1.1 KiB
|
|
CUR_PATH := vendor/rockchip/common
|
|
|
|
#########################################################
|
|
# 3G Dongle SUPPORT
|
|
#########################################################
|
|
ifeq ($(strip $(BOARD_HAVE_DONGLE)),true)
|
|
|
|
PRODUCT_COPY_FILES += \
|
|
$(CUR_PATH)/phone/etc/ppp/ip-down:system/etc/ppp/ip-down \
|
|
$(CUR_PATH)/phone/etc/ppp/ip-up:system/etc/ppp/ip-up \
|
|
$(CUR_PATH)/phone/etc/ppp/call-pppd:system/etc/ppp/call-pppd \
|
|
$(CUR_PATH)/phone/etc/operator_table:system/etc/operator_table
|
|
|
|
PRODUCT_PACKAGES += \
|
|
rild \
|
|
chat
|
|
|
|
ifneq ($(BUILD_WITH_EC20),true)
|
|
PRODUCT_PACKAGES += \
|
|
usb_dongle \
|
|
usb_modeswitch \
|
|
libril-rk29-dataonly
|
|
endif
|
|
|
|
ifeq ($(strip $(PRODUCT_MODEM)), DTS4108C)
|
|
PRODUCT_COPY_FILES += \
|
|
$(CUR_PATH)/phone/bin/rild_dts4108c:system/bin/rild \
|
|
$(CUR_PATH)/phone/lib/libreference-ril-dts4108c.so:system/lib/libreference-ril.so \
|
|
$(CUR_PATH)/phone/lib/libril-dts4108c.so:system/lib/libril.so
|
|
|
|
endif
|
|
|
|
PRODUCT_PROPERTY_OVERRIDES += ro.boot.noril=false
|
|
endif
|
|
|
|
PRODUCT_PROPERTY_OVERRIDES += \
|
|
keyguard.no_require_sim=true \
|
|
ro.com.android.dataroaming=true \
|
|
ril.function.dataonly=1
|
|
|