summaryrefslogtreecommitdiffstats
path: root/overlay
diff options
context:
space:
mode:
authorPawit Pornkitprasan <p.pawit@gmail.com>2011-12-03 15:48:35 +0700
committerPawit Pornkitprasan <p.pawit@gmail.com>2011-12-03 15:48:35 +0700
commit71012e283db265ba0d4b93400ea802e2a84c46bf (patch)
tree04ffc4252d993f52847aef1fc54f7be155a2cae6 /overlay
parentce640283f479237ff3e8e6a1a00d562eb4b25232 (diff)
downloaddevice_samsung_aries-common-71012e283db265ba0d4b93400ea802e2a84c46bf.zip
device_samsung_aries-common-71012e283db265ba0d4b93400ea802e2a84c46bf.tar.gz
device_samsung_aries-common-71012e283db265ba0d4b93400ea802e2a84c46bf.tar.bz2
Allow mass storage mount in system
(setprop persist.sys.usb.config mass_storage,adb and reboot to take effect)
Diffstat (limited to 'overlay')
-rw-r--r--overlay/frameworks/base/core/res/res/xml/storage_list.xml6
1 files changed, 4 insertions, 2 deletions
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 b31728a..6e511b7 100644
--- a/overlay/frameworks/base/core/res/res/xml/storage_list.xml
+++ b/overlay/frameworks/base/core/res/res/xml/storage_list.xml
@@ -36,10 +36,12 @@
<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/emmc"
android:storageDescription="@string/storage_sd_card"
android:primary="false"
- android:removable="true" />
+ android:removable="true"
+ android:allowMassStorage="true" />
</StorageList>