diff options
Diffstat (limited to 'overlay')
-rw-r--r-- | overlay/frameworks/base/core/res/res/xml/storage_list.xml | 14 |
1 files changed, 8 insertions, 6 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 0bca789..99dd14a 100644 --- a/overlay/frameworks/base/core/res/res/xml/storage_list.xml +++ b/overlay/frameworks/base/core/res/res/xml/storage_list.xml @@ -33,15 +33,17 @@ --> <StorageList xmlns:android="http://schemas.android.com/apk/res/android"> - <storage android:mountPoint="/mnt/sdcard" + <storage android:mountPoint="/mnt/emmc" android:storageDescription="@string/storage_internal" - android:primary="true" - android:removable="false" /> + android:primary="false" + android:removable="false" + android:allowMassStorage="true" /> - <storage android:mountPoint="/mnt/emmc" + <storage android:mountPoint="/mnt/sdcard" android:storageDescription="@string/storage_sd_card" - android:primary="false" - android:removable="true" /> + android:primary="true" + android:removable="false" + android:allowMassStorage="true" /> <storage android:mountPoint="/mnt/usbdisk" android:storageDescription="@string/storage_usb" |