Skip to content

Commit

Permalink
Merge pull request TheMuppets#45 from fitsnugly/ics
Browse files Browse the repository at this point in the history
toro: Add VZW props to get VZW apps working
  • Loading branch information
bekriebel committed Feb 24, 2012
2 parents c1d9611 + 93f6872 commit 2f4aea2
Show file tree
Hide file tree
Showing 7 changed files with 49 additions and 2 deletions.
15 changes: 13 additions & 2 deletions toro/device-toro.mk
Expand Up @@ -25,7 +25,11 @@ PRODUCT_COPY_FILES += \
$(LOCAL_PATH)/proprietary/libpn544_fw.so:system/vendor/firmware/libpn544_fw.so \
$(LOCAL_PATH)/proprietary/libsecril-client.so:system/lib/libsecril-client.so \
$(LOCAL_PATH)/proprietary/libsec-ril_lte.so:system/vendor/lib/libsec-ril_lte.so \
$(LOCAL_PATH)/proprietary/sirfgps.conf:system/vendor/etc/sirfgps.conf
$(LOCAL_PATH)/proprietary/sirfgps.conf:system/vendor/etc/sirfgps.conf \
$(LOCAL_PATH)/proprietary/com.vzw.hardware.ehrpd.xml:system/etc/permissions/com.vzw.hardware.ehrpd.xml \
$(LOCAL_PATH)/proprietary/com.vzw.hardware.lte.xml:system/etc/permissions/com.vzw.hardware.lte.xml \
$(LOCAL_PATH)/proprietary/com.vzw.vzwapnlib.xml:system/etc/permissions/com.vzw.vzwapnlib.xml


# Disabled Samsung blob(s)
# $(LOCAL_PATH)/proprietary/libsyncml_core.so:system/lib/libsyncml_core.so \
Expand All @@ -35,7 +39,14 @@ PRODUCT_COPY_FILES += \

PRODUCT_PACKAGES += \
RTN #Cell information. Dial *#*#786#*#*
RTN \
VZWAPNLib \
VZWAPNService

# PRODUCT_PACKAGES descriptions
# RTN #Cell information. Dial *#*#786#*#*
# VZWAPNLib
# VZWAPNService

# Disabled PRODUCT_PACKAGES
# BIP #Onboot SIM Service?
Expand Down
19 changes: 19 additions & 0 deletions toro/proprietary/Android.mk
Expand Up @@ -67,3 +67,22 @@ LOCAL_MODULE_TAGS := optional
LOCAL_CERTIFICATE := platform
LOCAL_MODULE_SUFFIX := $(COMMON_ANDROID_PACKAGE_SUFFIX)
include $(BUILD_PREBUILT)

include $(CLEAR_VARS)
LOCAL_MODULE := VZWAPNLib
LOCAL_SRC_FILES := $(LOCAL_MODULE).apk
LOCAL_MODULE_CLASS := APPS
LOCAL_MODULE_TAGS := optional
LOCAL_CERTIFICATE := platform
LOCAL_MODULE_SUFFIX := $(COMMON_ANDROID_PACKAGE_SUFFIX)
include $(BUILD_PREBUILT)

include $(CLEAR_VARS)
LOCAL_MODULE := VZWAPNService
LOCAL_SRC_FILES := $(LOCAL_MODULE).apk
LOCAL_MODULE_CLASS := APPS
LOCAL_MODULE_TAGS := optional
LOCAL_CERTIFICATE := platform
LOCAL_MODULE_SUFFIX := $(COMMON_ANDROID_PACKAGE_SUFFIX)
include $(BUILD_PREBUILT)

Binary file added toro/proprietary/VZWAPNLib.apk
Binary file not shown.
Binary file added toro/proprietary/VZWAPNService.apk
Binary file not shown.
6 changes: 6 additions & 0 deletions toro/proprietary/com.vzw.hardware.ehrpd.xml
@@ -0,0 +1,6 @@
<!-- This is the standard set of telephony features for a Verizon eHRPD phone. -->

<permissions>
<feature name="com.vzw.hardware.ehrpd"/>
</permissions>

6 changes: 6 additions & 0 deletions toro/proprietary/com.vzw.hardware.lte.xml
@@ -0,0 +1,6 @@
<!-- This is the standard set of telephony features for a Verizon LTE phone. -->

<permissions>
<feature name="com.vzw.hardware.lte"/>
</permissions>

5 changes: 5 additions & 0 deletions toro/proprietary/com.vzw.vzwapnlib.xml
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<permissions>
<library name="com.vzw.apnlib"
file="/system/app/VZWAPNLib.apk"/>
</permissions>

0 comments on commit 2f4aea2

Please sign in to comment.