summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xBoardConfig.mk2
-rwxr-xr-xinit.smdkv310.rc8
-rwxr-xr-xoverlay/frameworks/base/core/res/res/xml/storage_list.xml9
3 files changed, 9 insertions, 10 deletions
diff --git a/BoardConfig.mk b/BoardConfig.mk
index 529c73a..7c6771a 100755
--- a/BoardConfig.mk
+++ b/BoardConfig.mk
@@ -96,7 +96,7 @@ WIFI_DRIVER_FW_PATH_P2P := "/system/vendor/firmware/fw_bcmdhd_p2p.bin"
WIFI_DRIVER_FW_PATH_AP := "/system/vendor/firmware/fw_bcmdhd_apsta.bin"
# Touchscreen
-BOARD_USE_LEGACY_TOUCHSCREEN := true
+#BOARD_USE_LEGACY_TOUCHSCREEN := true
# Bluetooth
BOARD_HAVE_BLUETOOTH := true
diff --git a/init.smdkv310.rc b/init.smdkv310.rc
index 64f4674..62a62a6 100755
--- a/init.smdkv310.rc
+++ b/init.smdkv310.rc
@@ -25,9 +25,6 @@ on early-init
# ko files for vibrator
insmod /lib/modules/vibrator.ko
-# ko files for bthid
- insmod /lib/modules/bthid.ko
-
# ko files for FM Radio
insmod /lib/modules/Si4709_driver.ko
@@ -47,7 +44,7 @@ on post-fs-data
chown drmrpc drmrpc /data/smc/counter.bin
chown drmrpc drmrpc /data/smc/storage.bin
chown drmrpc drmrpc /data/smc/system.bin
- setprop wifi.interface "eth0"
+ setprop wifi.interface "wlan0"
setprop vold.post_fs_data_done 1
@@ -266,8 +263,7 @@ service iprenew_bnep0 /system/bin/dhcpcd -n
disabled
oneshot
-service wpa_supplicant /system/bin/wpa_supplicant \
- -Dnl80211 -iwlan0 -puse_p2p_group_interface=1 -e/data/misc/wifi/entropy.bin
+service wpa_supplicant /system/bin/wpa_supplicant -Dnl80211 -iwlan0 -puse_p2p_group_interface=1 -e/data/misc/wifi/entropy.bin
class main
socket wpa_wlan0 dgram 0660 wifi wifi
disabled
diff --git a/overlay/frameworks/base/core/res/res/xml/storage_list.xml b/overlay/frameworks/base/core/res/res/xml/storage_list.xml
index d2af288..2040601 100755
--- a/overlay/frameworks/base/core/res/res/xml/storage_list.xml
+++ b/overlay/frameworks/base/core/res/res/xml/storage_list.xml
@@ -36,15 +36,18 @@
<storage android:mountPoint="/mnt/sdcard"
android:storageDescription="@string/storage_usb"
android:primary="true"
- android:removable="false" />
+ android:removable="false"
+ android:allowMassStorage="true" />
<storage android:mountPoint="/mnt/sdcard/extStorages/SdCard"
android:storageDescription="@string/storage_sd_card"
android:primary="false"
- android:removable="true" />
+ android:removable="true"
+ android:allowMassStorage="true" />
<storage android:mountPoint="/mnt/sdcard/extStorages/UsbDisk"
android:storageDescription="@string/storage_usb"
android:primary="false"
- android:removable="true" />
+ android:removable="true"
+ android:allowMassStorage="true" />
</StorageList>