-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/cm-10.1' into ubuntu
Conflicts: ramdisk/init.huawei.rc
- Loading branch information
Showing
12 changed files
with
137 additions
and
158 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
BLUETOOTH_UART_DEVICE_PORT = "/dev/ttyHS0" | ||
FW_PATCHFILE_LOCATION = "/system/etc/bluetooth/" | ||
BT_WAKE_VIA_PROC = TRUE | ||
LPM_IDLE_TIMEOUT_MULTIPLE = 5 | ||
BTVND_DBG = TRUE | ||
BTVND_DBG = FALSE | ||
BTHW_DBG = TRUE | ||
VNDUSERIAL_DBG = TRUE | ||
UPIO_DBG = TRUE | ||
FW_PATCH_SETTLEMENT_DELAY_MS = 50 | ||
LPM_SLEEP_MODE = 0 | ||
VNDUSERIAL_DBG = FALSE | ||
UPIO_DBG = FALSE | ||
SCO_PCM_IF_CLOCK_RATE = 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/system/bin/sh | ||
|
||
# Determined by arch/arm/mach-msm/hardware_self_adapt.c | ||
cat /proc/app_info | grep -A1 "framebuffer_boosted:" | grep -q "1" | ||
boosted=$? | ||
|
||
mount -o remount,rw /system | ||
|
||
if [ -f /system/lib/libcm.so ]; then | ||
rm /system/lib/libcm.so | ||
fi | ||
|
||
# Link the correct libcm.so to /system/lib/libcm.so depending on framebuffer memory | ||
# (which can be used to determine the baseband early on). | ||
if [ $boosted == 0 ]; then | ||
ln -s /system/lib/109808/libcm.so /system/lib/libcm.so | ||
mount -o remount,ro /system | ||
exit 0 | ||
fi | ||
|
||
ln -s /system/lib/2030/libcm.so /system/lib/libcm.so | ||
mount -o remount,ro /system |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Android fstab file. | ||
# The filesystem that contains the filesystem checker binary (typically /system) cannot | ||
# specify MF_CHECK, and must come before any filesystems that do specify MF_CHECK | ||
|
||
#<src> <mnt_point> <type> <mnt_flags and options> <fs_mgr_flags> | ||
/dev/block/mmcblk0p12 /system ext4 ro,barrier=1 wait | ||
/dev/block/mmcblk0p6 /cache ext4 nodev,barrier=1 wait,check | ||
/dev/block/mmcblk0p19 /data ext4 nodev,noauto_da_alloc,barrier=1 wait,check |
Oops, something went wrong.