summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--init.aries.rc4
-rw-r--r--overlay/frameworks/base/core/res/res/values/config.xml15
2 files changed, 16 insertions, 3 deletions
diff --git a/init.aries.rc b/init.aries.rc
index 50e1ad4..6d40d71 100644
--- a/init.aries.rc
+++ b/init.aries.rc
@@ -96,6 +96,10 @@ on post-fs-data
# download cache
mkdir /data/download 0770 system cache
+ # logs
+ mkdir /data/log 0775 root root
+ chmod 0775 /data/log
+
setprop vold.post_fs_data_done 1
service aries-ril-daemon /system/bin/rild
diff --git a/overlay/frameworks/base/core/res/res/values/config.xml b/overlay/frameworks/base/core/res/res/values/config.xml
index fd9031f..04b1035 100644
--- a/overlay/frameworks/base/core/res/res/values/config.xml
+++ b/overlay/frameworks/base/core/res/res/values/config.xml
@@ -175,9 +175,6 @@
<!-- Boolean indicating whether the wifi chipset has p2p support -->
<bool translatable="false" name="config_wifi_p2p_support">true</bool>
- <!-- Boolean indicating whether the wifi chipset has background scan support -->
- <bool translatable="false" name="config_wifi_background_scan_support">true</bool>
-
<!-- Vibrator pattern for a very short but reliable vibration for soft keyboard tap -->
<integer-array name="config_keyboardTapVibePattern">
<item>30</item>
@@ -206,4 +203,16 @@
<bool name="config_bluetooth_wide_band_speech">false</bool>
<bool name="config_ui_enableFadingMarquee">false</bool>
+
+ <!-- Hardware 'face' keys present on the device, stored as a bit field.
+ This integer should equal the sum of the corresponding value for each
+ of the following keys present:
+ 1 - Home
+ 2 - Back
+ 4 - Menu
+ 8 - Search
+ 16 - App switch
+ For example, a device with Home, Back and Menu keys would set this
+ config to 7. -->
+ <integer name="config_deviceHardwareKeys">7</integer>
</resources>