aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClay Murphy <claym@google.com>2015-06-09 22:08:05 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2015-06-09 22:08:05 +0000
commitf7607c05bf36cf5b234c1e34b81e10d62b26646d (patch)
tree61fa7485d699af70abfbef802a38e88555a7b0f3
parentfced4ac6397143f98be841ecf4e2cf251b60b2fd (diff)
parent953d98cc47130aeff6dfcd7bda79f5f7b9090c5b (diff)
downloadsource.android.com-f7607c05bf36cf5b234c1e34b81e10d62b26646d.tar.gz
Merge "Replace sparsefile with sparseimage" into mnc-dev
-rw-r--r--src/source/initializing.jd4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/source/initializing.jd b/src/source/initializing.jd
index 829a9759..f7863e6f 100644
--- a/src/source/initializing.jd
+++ b/src/source/initializing.jd
@@ -201,7 +201,7 @@ saves space while allowing to grow later as the need arises. Be sure to select
<p>You can also create it from a shell with the following command:</p>
<pre><code># hdiutil create -type SPARSE -fs 'Case-sensitive Journaled HFS+' -size 40g ~/android.dmg
</code></pre>
-<p>This will create a <code>.dmg</code> (or possibly a <code>.dmg.sparsefile</code>) file which, once mounted, acts as a drive with the required formatting for Android development.
+<p>This will create a <code>.dmg</code> (or possibly a <code>.dmg.sparseimage</code>) file which, once mounted, acts as a drive with the required formatting for Android development.
<p>If you need a larger volume later, you can also resize the sparse image with the following command:</p>
<pre><code># hdiutil resize -size &lt;new-size-you-want&gt;g ~/android.dmg.sparseimage
</code></pre>
@@ -212,7 +212,7 @@ To mount the image when you execute <code>mountAndroid</code>:</p>
<pre><code># mount the android file image
function mountAndroid { hdiutil attach ~/android.dmg -mountpoint /Volumes/android; }
</code></pre>
-<p><strong>Note</strong>: If your system created a <code>.dmg.sparsefile</code> file, replace <code>~/android.dmg</code> with <code>~/android.dmg.sparsefile</code>.</p>
+<p><strong>Note</strong>: If your system created a <code>.dmg.sparseimage</code> file, replace <code>~/android.dmg</code> with <code>~/android.dmg.sparseimage</code>.</p>
</li>
<li>
<p>To unmount it when you execute <code>umountAndroid</code>:</p>