aboutsummaryrefslogtreecommitdiffstats
path: root/android/avd/hardware-properties.ini
diff options
context:
space:
mode:
Diffstat (limited to 'android/avd/hardware-properties.ini')
-rw-r--r--android/avd/hardware-properties.ini76
1 files changed, 76 insertions, 0 deletions
diff --git a/android/avd/hardware-properties.ini b/android/avd/hardware-properties.ini
index 89acf9f..7473e7d 100644
--- a/android/avd/hardware-properties.ini
+++ b/android/avd/hardware-properties.ini
@@ -143,6 +143,12 @@ default = yes
abstract = Cache partition support
description = Whether we use a /cache partition on the device.
+name = disk.cachePartition.path
+type = string
+default =
+abstract = Cache partition
+description = Cache partition to use on the device. Ignored if disk.cachePartition is not 'yes'.
+
name = disk.cachePartition.size
type = diskSize
abstract = Cache partition size
@@ -187,3 +193,73 @@ type = boolean
default = yes
abstract = Proximity support
description = Whether there is an proximity in the device.
+
+# Path to the kernel image.
+name = disk.kernel.path
+type = string
+default =
+abstract = Path to the kernel image
+description = Path to the kernel image.
+
+# Path to the ramdisk image.
+name = disk.ramDisk.path
+type = string
+default =
+abstract = Path to the ramdisk image
+description = Path to the ramdisk image.
+
+# Path to the system partition.
+name = disk.systemPartition.path
+type = string
+default = <init>
+abstract = Path to system partition image
+description = Path to read/write system partition image during emulation. If special value '<init>' is used, a temporary file will be created, populated with the content of .initPath
+
+# Initial path to the system partition.
+name = disk.systemPartition.initPath
+type = string
+default =
+abstract = Initial system partition image
+description = Only used if .path is '<init>', path to an initial system image that will be copied into the temporary system image file before launch.
+
+# System partition size.
+name = disk.systemPartition.size
+type = diskSize
+default = 0
+abstract = Ideal size of system partition
+description = ideal size of system partition. Ignored if smaller than the size of .path (or .initPath). Otherwise, gives the maximum size the partition is allowed to grow dynamically.
+
+# Path to the data partition.
+name = disk.dataPartition.path
+type = string
+default = <temp>
+abstract = Path to data partition file
+description = Path to data partition file. Cannot be empty. Special value <temp> means using a temporary file. If disk.dataPartition.initPath is not empty, its content will be copied to the disk.dataPartition.path file at boot-time.
+
+# Initial path to the data partition.
+name = disk.dataPartition.initPath
+type = string
+default =
+abstract = Initial data partition
+description = If not empty, its content will be copied to the disk.dataPartition.path file at boot-time.
+
+# Data partition size.
+name = disk.dataPartition.size
+type = diskSize
+default = 0
+abstract = Ideal size of data partition
+description = ideal size of data partition. Ignored if smaller than the size of .path (or .initPath). Otherwise, gives the maximum size the partition is allowed to grow dynamically.
+
+# Path to the snapshots partition.
+name = disk.snapshots.path
+type = string
+default =
+abstract = Path to snapshots
+description = Path to a 'snapshot storage' file, where all snapshots are stored, including the default snapshot.
+
+# Path to SD Card image file.
+name = disk.sdCard.path
+type = string
+default =
+abstract = Path to SD Card image file
+description = Path to SD Card image file. Ignored if disk.sdCard is not set to 'yes'.