• R/O
  • HTTP
  • SSH
  • HTTPS

コミット

よく使われているワード(クリックで追加)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

development


コミットメタ情報

リビジョン71dbb060cac1ea9477a7f5dbe00ec3dbd15e8efe (tree)
日時2011-01-28 01:10:42
作者Elliott Hughes <enh@goog...>
コミッターAndroid Git Automerger

ログメッセージ

am ed6b76c6: Merge "Minor doc fixes (mainly the infamous "repo init-u")." into gingerbread

* commit 'ed6b76c670658390a43e199f9dc199d85483300a':

Minor doc fixes (mainly the infamous "repo init-u").

変更サマリ

差分

--- a/pdk/docs/porting/debugging_native.jd
+++ b/pdk/docs/porting/debugging_native.jd
@@ -137,13 +137,7 @@ spinlock because no other thread can release it.
137137 (gdb) set scheduler-locking on
138138 </pre>
139139
140-<p>
141-Ignore SIGUSR1 if you're using JamVM. Shouldn't hurt if you're not.
142-</p>
143-
144140 <pre class="prettify">
145-(gdb) handle SIGUSR1 noprint
146-
147141 (gdb) where
148142 #0 __futex_wait () at system/klibc/android/atomics_arm.S:88
149143 #1 0x53010eb8 in pthread_cond_timedwait (cond=0x12081c, mutex=0x120818, abstime=0xffffffff)
@@ -239,7 +233,7 @@ Previous frame identical to this frame (corrupt stack?)
239233 </pre>
240234
241235 <a name="Crash_in_C_C_code"></a><h4>Crash in C / C++ code</h4>
242-<p>If it crashes, connect with <code>aproto</code> and run <code>logcat</code> on the device. You should see output like this:</p>
236+<p>If it crashes, connect with <code>adb</code> and run <code>logcat</code> on the device. You should see output like this:</p>
243237
244238 <pre class="prettify">
245239 I/ActivityManager( 188): Starting activity: Intent { component=com.android.calendar.MonthScreen }
--- a/pdk/docs/source/git-repo.jd
+++ b/pdk/docs/source/git-repo.jd
@@ -35,7 +35,7 @@ Installing Repo <br></h3>
3535 $ curl http://android.git.kernel.org/repo &gt; ~/bin/repo <div>$ chmod a+x ~/bin/repo</div>
3636 $ mkdir <i>working-directory-name</i>
3737 <br>$ cd <i>working-directory-name <br></i>
38-$ repo init-u git://android.git.kernel.org/platform/manifest.git <br><br><h3>
38+$ repo init -u git://android.git.kernel.org/platform/manifest.git <br><br><h3>
3939 Synchronizing your client
4040 </h3>
4141 To synchronize the files for all available projects:<br>$ repo sync <br><br>To
@@ -116,7 +116,7 @@ init
116116 </h3>
117117 repo init -u <i>url</i>
118118 [<i>options</i>
119-]<br><br><div>Installs Repo in the current directory. This creates a .repo/ directory that contains Git repositories for the Repo source code and the standard Android manifest files. The .repo/ directory also containsmanifest.xml, which is a symlink to the selected manifest in the .repo/manifests/ directory.<br><br>The -u argument specifies a URL from which to retrieve a manifest repository. For example:<br>$ repo init -u git://android.git.kernel.org/platform/manifest.git <br><br>To select a manifest file within the repository, use the -m option. (If no manifest name is selected, the default is default.xml.)For example:<br>$ repo init -ugit://android.git.kernel.org/platform/manifest.git-m dalkvik-plus.xml <br><br>To specify a revision, that is, a particular manifest-branch, use the -b option. For example:<br>$ repo init -ugit://android.git.kernel.org/platform/manifest.git-b release-1.0<br><br>To see other repo init options, run <br>$ repo help init <br><br><b>Note:</b>
119+]<br><br><div>Installs Repo in the current directory. This creates a .repo/ directory that contains Git repositories for the Repo source code and the standard Android manifest files. The .repo/ directory also containsmanifest.xml, which is a symlink to the selected manifest in the .repo/manifests/ directory.<br><br>The -u argument specifies a URL from which to retrieve a manifest repository. For example:<br>$ repo init -u git://android.git.kernel.org/platform/manifest.git <br><br>To select a manifest file within the repository, use the -m option. (If no manifest name is selected, the default is default.xml.)For example:<br>$ repo init -u git://android.git.kernel.org/platform/manifest.git-m dalkvik-plus.xml <br><br>To specify a revision, that is, a particular manifest-branch, use the -b option. For example:<br>$ repo init -u git://android.git.kernel.org/platform/manifest.git-b release-1.0<br><br>To see other repo init options, run <br>$ repo help init <br><br><b>Note:</b>
120120 For all remaining Repo commands, the current working directory must either be the parent directory of .repo/ or a subdirectory of the parent directory.<br><br></div>
121121 <h3>
122122 sync