keytool -genkey -v -keystore cjkeystore.jks -storepass password -alias releasekey -keypass password -keyalg RSA -keysize 2048 -validity 10000 -dname "cn=Rookiecj, ou=MyTeam, o=MyCompany, c=KR"




Unicode Character Table 


Hangul Jamo(1100-11FF): http://bit.ly/2ncPiGV

Hangul Compatibility Jamo(3130-318F): http://bit.ly/2ncMwBj

Hangul Syllables(AC00-D7AF): http://bit.ly/2ncFTiF



CP949 to Unicode Table:

http://unicode.org/Public/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP949.TXT


안드로이드 boot.img에서 rootfs와 kernel을 파싱하는 툴입니다.  kernel과 rootfs를 이용해서 boot.img를 만드는부분은 지원하지 않는다.
  음 언젠가 필요하면 하겠지.. ㅋ


Happy Coding~:)

gerrit server의 commit을 가져온 후 해당 commit을 머지하는 방법은 여러가지 존재한다.

Android review site의 commit을 가지고 살펴보자.


LWN의 기사를 읽다가, "User-space networking with Snabb", clatd에 대한 변경사항을 확인하고 싶어서 android source site를 확인해 보니 흥미로운 commit을 발견하였다.
https://android-review.googlesource.com/#/c/127940/
Switch the receive path to memory-mapped I/O with PACKET_RX_RING.

fetch해온 commit 내용 확인

git fetch https://android.googlesource.com/platform/external/android-clat refs/changes/40/127940/3 && git format-patch -1 --stdout FETCH_HEAD

fetch해온 commit만 patch파일 만들기

git fetch https://android.googlesource.com/platform/external/android-clat refs/changes/40/127940/3 && git format-patch -1 FETCH_HEAD

해당 commit을 fetch 후 fetch branch 로 switch
git fetch https://android.googlesource.com/platform/external/android-clat refs/changes/40/127940/3 && git checkout FETCH_HEAD
해당 commit을 fetch 후 해당 commit만 작업 branch 에 merge
git fetch https://android.googlesource.com/platform/external/android-clat refs/changes/40/127940/3 && git cherry-pick FETCH_HEAD
해당 commit을 작업 branch에 fetch 및 merge
git pull https://android.googlesource.com/platform/external/android-clat refs/changes/40/127940/3 

Happy Coding~:)


+ Recent posts