diff options
author | Pawit Pornkitprasan <p.pawit@gmail.com> | 2011-12-03 15:48:35 +0700 |
---|---|---|
committer | Pawit Pornkitprasan <p.pawit@gmail.com> | 2011-12-03 15:48:35 +0700 |
commit | 71012e283db265ba0d4b93400ea802e2a84c46bf (patch) | |
tree | 04ffc4252d993f52847aef1fc54f7be155a2cae6 /overlay | |
parent | ce640283f479237ff3e8e6a1a00d562eb4b25232 (diff) | |
download | device_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.xml | 6 |
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> |