summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVishal Mahaveer <vishalm@ti.com>2017-10-19 15:35:21 -0500
committerVishal Mahaveer <vishalm@ti.com>2017-10-19 15:37:57 -0500
commita3e7543a913b4c5fd489cf7a4981158c2e8d5b37 (patch)
tree1d0596b02ffb46aeb53807ae3ea2297242f12d00
parentf7eaf5f284a1e80fe551087848e94f6630434956 (diff)
downloadjacinto6evm-a3e7543a913b4c5fd489cf7a4981158c2e8d5b37.tar.gz
jacinto6evm: remove obsolete storage_list.xml
storage_list resource overlay is no longer used, this was used prior to Android 5.0. Remove the old file from overlay. Change-Id: Ie93c6a7abd9dfe711e6ec3391981550a897e3988 Signed-off-by: Vishal Mahaveer <vishalm@ti.com>
-rw-r--r--overlay/frameworks/base/core/res/res/xml/storage_list.xml56
1 files changed, 0 insertions, 56 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
deleted file mode 100644
index 4d73c29..0000000
--- a/overlay/frameworks/base/core/res/res/xml/storage_list.xml
+++ /dev/null
@@ -1,56 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-**
-** Copyright 2011, The Android Open Source Project
-**
-** Licensed under the Apache License, Version 2.0 (the "License")
-** you may not use this file except in compliance with the License.
-** You may obtain a copy of the License at
-**
-** http://www.apache.org/licenses/LICENSE-2.0
-**
-** Unless required by applicable law or agreed to in writing, software
-** distributed under the License is distributed on an "AS IS" BASIS,
-** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-** See the License for the specific language governing permissions and
-** limitations under the License.
-*/
--->
-
-<!-- The <device> element should contain one or more <storage> elements.
- Exactly one of these should have the attribute primary="true".
- This storage will be the primary external storage and should have path="/storage/sdcard0".
- Each storage should have both a path and description attribute set.
- The following boolean attributes are optional:
-
- primary: this storage is the primary external storage
- removable: this is removable storage (for example, a real SD card)
- emulated: the storage is emulated via the FUSE sdcard daemon
- mtp-reserve: number of megabytes of storage MTP should reserve for free storage
- (used for emulated storage that is shared with system's data partition)
-
- A storage should not have both emulated and removable set to true
--->
-
-<StorageList xmlns:android="http://schemas.android.com/apk/res/android">
- <!-- internal emulated storage -->
- <storage
- android:storageDescription="@string/storage_internal"
- android:primary="true"
- android:emulated="true"
- android:mtpReserve="100" />
- <!-- external SD card -->
- <storage android:mountPoint="/storage/sdcard1"
- android:storageDescription="@string/storage_sd_card"
- android:removable="true" />
- <!-- external USB slots -->
- <storage android:mountPoint="/storage/usb0"
- android:storageDescription="@string/storage_usb"
- android:allowMassStorage="true"
- android:removable="true" />
- <!-- external USB slots -->
- <storage android:mountPoint="/storage/usb1"
- android:storageDescription="@string/storage_usb"
- android:allowMassStorage="true"
- android:removable="true" />
-</StorageList>