User Tools

Site Tools


android

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
android [2009/10/06 12:49] suapapaandroid [2013/08/03 05:04] (current) – external edit 127.0.0.1
Line 3: Line 3:
   *[[http://wiki.openmoko.org/wiki/Toolchain|toolchain from openmoko]]   *[[http://wiki.openmoko.org/wiki/Toolchain|toolchain from openmoko]]
   *[[http://trac.koolu.org/wiki/Toolchain|Toolchain]]   *[[http://trac.koolu.org/wiki/Toolchain|Toolchain]]
 +  *[[http://wiki.openmoko.org/wiki/Android_porting|openmoko android porting]]
  
 ===== Sourcery G++ lite 설치 ===== ===== Sourcery G++ lite 설치 =====
Line 124: Line 125:
   *[[http://asmlove.co.kr/wiki/wiki.php/HowToPorting_uboot|HowToPorting_uboot]] in asemlove   *[[http://asmlove.co.kr/wiki/wiki.php/HowToPorting_uboot|HowToPorting_uboot]] in asemlove
   *[[http://lists.openmoko.org/pipermail/commitlog/2008-January/003410.html|u-boot armv4t eabi patch]] from openmoko   *[[http://lists.openmoko.org/pipermail/commitlog/2008-January/003410.html|u-boot armv4t eabi patch]] from openmoko
 +
 +====== kernel ======
 +make uImage ARCH=arm CROSS_COMPILE=...
 +===== trouble shooting =====
 +SEGMENT_SIZE 디파인 되어있지 않다고 에러 뿜을때
 +<code bash>
 +// NOSTDINC_FLAGS에 -Dlinux 추가...
 +NOSTDINC_FLAGS += -nostdinc -isystem $(shell $(CC) -print-file-name=include) -Dlinux
 +CHECKFLAGS     += $(NOSTDINC_FLAGS) 
 +</code>
  
 ====== T32 cmm ====== ====== T32 cmm ======
Line 144: Line 155:
   *[[http://developer.android.com/|android developers]]   *[[http://developer.android.com/|android developers]]
   *[[http://www.androiddevelopment.org/|android developers blog]]   *[[http://www.androiddevelopment.org/|android developers blog]]
-소스저장소  
-  *[[http://android.git.kernel.org/|android git]] official site? 
-  *[[http://android.git.kernel.org/pub/|android/pub]] 
 실제 타켓에 포팅 실제 타켓에 포팅
   *[[http://benno.id.au/blog/?tag=android|android articles in Benno's blog]]   *[[http://benno.id.au/blog/?tag=android|android articles in Benno's blog]]
Line 155: Line 163:
   *[[http://androidhuman.tistory.com/|커니의 안드로이드 이야기]]   *[[http://androidhuman.tistory.com/|커니의 안드로이드 이야기]]
   *[[http://www.droiddraw.org/|DroidDraw Beta]] ui 디자인 사이트   *[[http://www.droiddraw.org/|DroidDraw Beta]] ui 디자인 사이트
 +
 +====== 소스 다운로드 ======
 +소스저장소 
 +  *[[http://android.git.kernel.org/|android git]] official site?
 +  *[[http://android.git.kernel.org/pub/|android/pub]]
 +플랫폼 다운로드
 +<code bash>
 +mkdir mydroid
 +cd mydroid
 +repo init -u git://android.git.kernel.org/platform/manifest.git
 +repo sync
 +</code>
 +
 +====== tricks ======
 +  *[[http://android-tricks.blogspot.com/2009/02/hello-world-c-program-on-using-android.html|hello-world-c-program-on-using-android]]
android.1254833354.txt.gz · Last modified: 2013/08/03 05:04 (external edit)