Skip to content

Commit

Permalink
RC2
Browse files Browse the repository at this point in the history
  • Loading branch information
hroark13 committed Jun 13, 2015
1 parent 67754a2 commit 48476ad
Show file tree
Hide file tree
Showing 3 changed files with 71 additions and 15 deletions.
3 changes: 0 additions & 3 deletions hroarks-install-script
Expand Up @@ -43,9 +43,6 @@ ui_print("Copying system/xbin");
package_extract_dir("system/xbin", "/system/xbin");
ui_print("Copying system/build.prop");
package_extract_file("system/build.prop", "/system/build.prop");
ui_print("Fixing up sensors");
mount("ext4", "EMMC", "/dev/block/platform/msm_sdcc.1/by-name/persist", "/persist");
delete("persist/sns.reg");
ui_print("Creating Symlinks");
symlink("../xbin/su", "/system/bin/su");
symlink("/system/lib/modules/pronto/pronto_wlan.ko", "/system/lib/modules/wlan.ko");
Expand Down
48 changes: 45 additions & 3 deletions overlay/frameworks/base/core/res/res/values/config.xml
Expand Up @@ -21,6 +21,51 @@
for different hardware and product builds. Do not translate. -->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">

<!-- An Array of "[Connection name],[ConnectivityManager.TYPE_xxxx],
[associated radio-type],[priority],[restoral-timer(ms)],[dependencyMet] -->
<!-- the 5th element "resore-time" indicates the number of milliseconds to delay
before automatically restore the default connection. Set -1 if the connection
does not require auto-restore. -->
<!-- the 6th element indicates boot-time dependency-met value. -->
<string-array translatable="false" name="networkAttributes">
<item>"wifi,1,1,1,-1,true"</item>
<item>"mobile,0,0,0,-1,true"</item>
<item>"mobile_mms,2,0,2,60000,true"</item>
<item>"mobile_supl,3,0,2,60000,true"</item>
<item>"mobile_dun,4,0,3,60000,true"</item>
<item>"mobile_hipri,5,0,3,60000,true"</item>
<item>"mobile_bluetooth,7,7,1,-1,true"</item>
<item>"wifi_p2p,13,1,0,-1,true"</item>
</string-array>

<!-- An Array of "[ConnectivityManager connectionType],
[# simultaneous connection types]" -->
<string-array translatable="false" name="radioAttributes">
<item>"1,1"</item>
<item>"0,1"</item>
<item>"7,1"</item>
</string-array>

<!-- List of regexpressions describing the interface (if any) that represent tetherable
USB interfaces. If the device doesn't want to support tething over USB this should
be empty. An example would be "usb.*" -->
<string-array translatable="false" name="config_tether_usb_regexs">
<item>"rndis0"</item>
</string-array>

<!-- Array of ConnectivityManager.TYPE_xxxx values allowable for tethering -->
<!-- Common options are [1, 4] for TYPE_WIFI and TYPE_MOBILE_DUN or
<!== [0,1,5,7] for TYPE_MOBILE, TYPE_WIFI, TYPE_MOBILE_HIPRI and TYPE_BLUETOOTH -->
<integer-array translatable="false" name="config_tether_upstream_types">
<item>0</item>
<item>1</item>
<item>5</item>
<item>7</item>
</integer-array>

<!-- The default iface on which to monitor data use -->
<string name="config_datause_iface">rmnet0</string>

<!-- Flag indicating whether we should enable the automatic brightness in Settings.
config_hardware_automatic_brightness_available is not set, so we will use software implementation -->
<bool name="config_automatic_brightness_available">true</bool>
Expand Down Expand Up @@ -226,9 +271,6 @@
<!-- Is the device capable of hot swapping an UICC Card -->
<bool name="config_hotswapCapable">true</bool>

<!-- Default interface to monitor data use -->
<string name="config_datause_iface">rmnet0</string>

<!-- Boolean indicating if restoring network selection should be skipped -->
<!-- The restoring is handled by modem if it is true-->
<bool name="skip_restoring_network_selection">true</bool>
Expand Down
35 changes: 26 additions & 9 deletions system.prop
@@ -1,4 +1,3 @@

# Audio
ro.qc.sdk.audio.fluencetype=none
persist.audio.fluence.voicecall=true
Expand All @@ -21,9 +20,15 @@ camera2.portability.force_api=1
# Display
ro.sf.lcd_density=320
ro.opengles.version=196608
debug.composition.type=dyn
debug.hwc.dynThreshold=1.5
debug.sf.fb_always_on=1
debug.sf.hw=1
debug.egl.hw=1
debug.composition.type=c2d
persist.hwc.mdpcomp.enable=true
debug.mdpcomp.logs=0
dev.pm.dyn_samplingrate=1


# GPS
ro.qc.sdk.izat.premium_enabled=0
Expand All @@ -44,15 +49,9 @@ mm.enable.qcom_parser=37491
mm.enable.smoothstreaming=true
vidc.debug.level=1

# Memory
ro.config.low_ram=true
config.disable_atlas=true
ro.config.max_starting_bg=4
persist.sys.force_highendgfx=true

# Qualcomm
ro.vendor.extension_library=/system/vendor/lib/libqc-opt.so
ro.qualcomm.cabl=0
ro.qualcomm.cabl=1
ro.min_freq_0=787200
ro.min_freq=787000

Expand Down Expand Up @@ -105,3 +104,21 @@ wifi.interface=wlan0

# Disable Screen button
qemu.hw.mainkeys=1

persist.demo.hdmirotationlock=false
ro.hdmi.enable=true
persist.cne.feature=1
debug.sf.fb_always_on=1
persist.demo.hdmirotationlock=false
ro.hdmi.enable=true
qcom.hw.aac.encoder=true
persist.fuse_sdcard=true
ro.qualcomm.cabl=1
ro.nfc.port=I2C
persist.debug.wfd.enable=1
persist.sys.wfd.virtual=0
persist.camera.tintless=enable
dmid=3067269873
persist.sys.fuse.dir=sdcard
ro.config.sec_storage=3
drm.service.enabled=true

0 comments on commit 48476ad

Please sign in to comment.