This file contains hidden or 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
#!/usr/bin/env python | |
import sys | |
import logging | |
from struct import pack, unpack | |
logging.basicConfig(level=logging.INFO, | |
format='%(asctime)s %(levelname)s %(message)s', | |
filename='/var/log/ejabberd/extauth.log', | |
filemode='a') |
This file contains hidden or 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
# Your snippets | |
# | |
# Atom snippets allow you to enter a simple prefix in the editor and hit tab to | |
# expand the prefix into a larger code block with templated values. | |
# | |
# You can create a new snippet in this file by typing "snip" and then hitting | |
# tab. | |
# | |
# An example CoffeeScript snippet to expand log to console.log: | |
# |
This file contains hidden or 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
diff --git a/device_mint.mk b/device_mint.mk | |
index 2e335e1..97e646c 100644 | |
--- a/device_mint.mk | |
+++ b/device_mint.mk | |
@@ -60,3 +60,11 @@ TARGET_BUILD_VARIANT := userdebug | |
PRODUCT_AAPT_CONFIG := normal ldpi mdpi nodpi | |
PRODUCT_AAPT_PREF_CONFIG := ldpi | |
+# These are the hardware-specific settings that are stored in system properties. | |
+# Note that the only such settings should be the ones that are too low-level to |
This file contains hidden or 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
diff --git a/ril/com/android/internal/telephony/SamsungBCMRIL.java b/ril/com/android/internal/telephony/SamsungBCMRIL.java | |
index c38a22a..12c27fc 100644 | |
--- a/ril/com/android/internal/telephony/SamsungBCMRIL.java | |
+++ b/ril/com/android/internal/telephony/SamsungBCMRIL.java | |
@@ -37,8 +37,13 @@ import java.util.ArrayList; | |
*/ | |
public class SamsungBCMRIL extends RIL implements CommandsInterface { | |
public SamsungBCMRIL(Context context, int networkMode, int cdmaSubscription) { | |
- super(context, networkMode, cdmaSubscription); | |
- mQANElements = 5; |