summaryrefslogtreecommitdiffstats
path: root/overlay
diff options
context:
space:
mode:
authorMike Lockwood <lockwood@android.com>2011-07-11 09:23:20 -0400
committerMike Lockwood <lockwood@android.com>2011-07-11 09:23:20 -0400
commit8b30aa01bcbc129f65a8103937753caf3aba916a (patch)
tree1d7af66f60bc5bc67b27f5f32055fa76138d1626 /overlay
parentf846319ba1c362f500a596d806b6fbb119bacee8 (diff)
downloaddevice_samsung_crespo-8b30aa01bcbc129f65a8103937753caf3aba916a.zip
device_samsung_crespo-8b30aa01bcbc129f65a8103937753caf3aba916a.tar.gz
device_samsung_crespo-8b30aa01bcbc129f65a8103937753caf3aba916a.tar.bz2
Set 4GB max file size for SD card to match FAT32 limit
Bug: 4561836 Change-Id: Iad8995349e2a48aabba82b362948b8cc78a89fe5 Signed-off-by: Mike Lockwood <lockwood@android.com>
Diffstat (limited to 'overlay')
-rw-r--r--overlay/frameworks/base/core/res/res/xml/storage_list.xml4
1 files changed, 3 insertions, 1 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 806edda..9670ba5 100644
--- a/overlay/frameworks/base/core/res/res/xml/storage_list.xml
+++ b/overlay/frameworks/base/core/res/res/xml/storage_list.xml
@@ -29,6 +29,7 @@
mtpReserve: (integer) number of megabytes of storage MTP should reserve for free storage
(used for emulated storage that is shared with system's data partition)
allowMassStorage: (boolean) true if this volume can be shared via USB mass storage
+ maxFileSize: (integer) maximum file size in megabytes
A storage should not have both emulated and removable set to true
-->
@@ -38,5 +39,6 @@
<storage android:mountPoint="/mnt/sdcard"
android:storageDescription="@string/storage_usb"
android:primary="true"
- android:allowMassStorage="true" />
+ android:allowMassStorage="true"
+ android:maxFileSize="4096" />
</StorageList>