Skip to content

Commit

Permalink
Merge changes from topic 'marlin_merge_AU160' into nyc-mr1-dev
Browse files Browse the repository at this point in the history
* changes:
  marlin: enable preopt dexing and update system partition size
  Copy MBN configuration if modem does not have version info
  marlin: Update to AU160 proprietary drop
  • Loading branch information
TreeHugger Robot authored and Android (Google) Code Review committed May 11, 2016
2 parents 5142cea + af7d02c commit 35800f7
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 264 deletions.
2 changes: 1 addition & 1 deletion init.radio.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ else
fi

cur_version_info=`cat /firmware/radio/modem_pr/verinfo/ver_info.txt`
if [ "$prev_version_info" != "$cur_version_info" ]; then
if [ ! -f /firmware/verinfo/ver_info.txt -o "$prev_version_info" != "$cur_version_info" ]; then
rm -rf /data/misc/radio/modem_config
mkdir /data/misc/radio/modem_config
chmod 770 /data/misc/radio/modem_config
Expand Down
23 changes: 10 additions & 13 deletions marlin/BoardConfig.mk
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ OVERRIDE_RS_DRIVER:= libRSDriver_adreno.so

TARGET_USERIMAGES_USE_EXT4 := true
BOARD_BOOTIMAGE_PARTITION_SIZE := 0x04000000
BOARD_SYSTEMIMAGE_PARTITION_SIZE := 2457600000
BOARD_SYSTEMIMAGE_PARTITION_SIZE := 3221225472
#BOARD_SYSTEMIMAGE_FILE_SYSTEM_TYPE := squashfs
#BOARD_SYSTEMIMAGE_JOURNAL_SIZE := 0
#BOARD_SYSTEMIMAGE_SQUASHFS_COMPRESSOR := lz4
Expand Down Expand Up @@ -139,19 +139,16 @@ TARGET_PD_SERVICE_ENABLED := true
BOARD_QTI_CAMERA_32BIT_ONLY := true
TARGET_BOOTIMG_SIGNED := true

WITH_DEXPREOPT_BOOT_IMG_ONLY := true
WITH_DEXPREOPT := false
WITH_DEXPREOPT_PIC := false
## Enable dex pre-opt to speed up initial boot
# Enable dex pre-opt to speed up initial boot
ifeq ($(HOST_OS),linux)
ifeq ($(WITH_DEXPREOPT),)
WITH_DEXPREOPT := true
WITH_DEXPREOPT_PIC := true
ifneq ($(TARGET_BUILD_VARIANT),user)
# Retain classes.dex in APK's for non-user builds
DEX_PREOPT_DEFAULT := nostripping
endif
endif
ifeq ($(WITH_DEXPREOPT),)
WITH_DEXPREOPT := true
WITH_DEXPREOPT_PIC := true
ifneq ($(TARGET_BUILD_VARIANT),user)
# Retain classes.dex in APK's for non-user builds
DEX_PREOPT_DEFAULT := nostripping
endif
endif
endif

# HTC_SENSOR_HUB
Expand Down
14 changes: 7 additions & 7 deletions sailfish/BoardConfig.mk
Original file line number Diff line number Diff line change
Expand Up @@ -138,14 +138,14 @@ TARGET_BOOTIMG_SIGNED := true

# Enable dex pre-opt to speed up initial boot
ifeq ($(HOST_OS),linux)
ifeq ($(WITH_DEXPREOPT),)
WITH_DEXPREOPT := true
WITH_DEXPREOPT_PIC := true
ifneq ($(TARGET_BUILD_VARIANT),user)
# Retain classes.dex in APK's for non-user builds
DEX_PREOPT_DEFAULT := nostripping
endif
ifeq ($(WITH_DEXPREOPT),)
WITH_DEXPREOPT := true
WITH_DEXPREOPT_PIC := true
ifneq ($(TARGET_BUILD_VARIANT),user)
# Retain classes.dex in APK's for non-user builds
DEX_PREOPT_DEFAULT := nostripping
endif
endif
endif

# HTC_SENSOR_HUB
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
package org.codeaurora.ims;

import org.codeaurora.ims.internal.IQtiImsExtListener;
import org.codeaurora.ims.QtiViceInfo;
import android.telephony.Rlog;

/**
Expand Down Expand Up @@ -62,10 +61,6 @@ public void onGetPacketErrorCount(int status, long packetErrorCount) {
public void receiveCallDeflectResponse(int result) {
}

@Override
public void notifyRefreshViceInfo(QtiViceInfo viceInfo) {
}

@Override
public void receiveCallTransferResponse(int result) {
}
Expand Down
32 changes: 0 additions & 32 deletions telephony/ims/src/org/codeaurora/ims/QtiViceInfo.aidl

This file was deleted.

186 changes: 0 additions & 186 deletions telephony/ims/src/org/codeaurora/ims/QtiViceInfo.java

This file was deleted.

9 changes: 0 additions & 9 deletions telephony/ims/src/org/codeaurora/ims/internal/IQtiImsExt.aidl
Original file line number Diff line number Diff line change
Expand Up @@ -108,15 +108,6 @@ oneway interface IQtiImsExt {
void sendCallDeflectRequest(int phoneId, String deflectNumber,
IQtiImsExtListener listener);

/**
* Register for VICE dialog
*
* @param listener, provided if caller needs to be notified for get result.
* @return void
*
*/
void registerForViceRefreshInfo(IQtiImsExtListener listener);

/**
* sendCallTransferRequest
* Transfer an established call to given number or call id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@

package org.codeaurora.ims.internal;

import org.codeaurora.ims.QtiViceInfo;

/**
* Used by client application to get the result from lower layer by
* communicating with vendor.
Expand Down Expand Up @@ -98,15 +96,6 @@ oneway interface IQtiImsExtListener {
*/
void receiveCallDeflectResponse(int result);

/**
* Notifies client when Vice Dialog update is received
*
* @param <QtiViceInfo> - VICE Dialog
*
* @return void.
*/
void notifyRefreshViceInfo(in QtiViceInfo viceInfo);

/**
* Notifies client the result of call transfer request
*
Expand Down

0 comments on commit 35800f7

Please sign in to comment.