<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>닉스로그</title>
    <link>http://cranix.net/</link>
    <description></description>
    <language>ko</language>
    <pubDate>Mon, 22 Mar 2010 11:57:23 +0900</pubDate>
    <generator>Textcube.com 2.0 Garnet</generator>
    <item>
      <title>이클립스에 안드로이드 소스코드 연결하기</title>
      <link>http://cranix.net/321</link>
      <description>들어가며 안드로이드 소스를 분석하다보면 시스템쪽의 java 소스를 봐야할 경우가 많은데 이클립스상에서 따라내려갈 수 없게 되어있어서 불편할때가 많았다. 안드로이드 sdk 에다가 이클립스 소스를 연결하는법을 알아보도록 하자. SDK 에 안드로이드 소스 링크걸기 이...&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;http://cranix.net/321&quot;&gt;글 전체보기&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</description>
      <category>Android</category>
      <author>크래닉스</author>
      <guid>http://cranix.net/321</guid>
      <comments>http://cranix.net/321?expandComment=1#entry321Comment</comments>
      <pubDate>Mon, 22 Mar 2010 00:37:14 +0900</pubDate>
    </item>
    <item>
      <title>우분투에 이클립스 ADT 설치하기</title>
      <link>http://cranix.net/320</link>
      <description>ADT 업데이트 일단 이클립스의 Help-&amp;gt;Update 로 들어가서 아래 주소를 입력한다. &amp;nbsp;https://dl-ssl.google.com/android/eclipse/ 그런데 설치를 진행하면 아래와같은 오류로 더이상 안되는 경우가 있다. 우분투에서 apt-get 으로 이클립스를 설치했을 경우 기본적...&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;http://cranix.net/320&quot;&gt;글 전체보기&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</description>
      <category>Android</category>
      <category>adt</category>
      <category>Eclipse</category>
      <category>wst</category>
      <author>크래닉스</author>
      <guid>http://cranix.net/320</guid>
      <comments>http://cranix.net/320?expandComment=1#entry320Comment</comments>
      <pubDate>Sun, 21 Mar 2010 16:22:24 +0900</pubDate>
    </item>
    <item>
      <title>안드로이드 소스 컴파일 하기</title>
      <link>http://cranix.net/319</link>
      <description>필요한 라이브러리 설치하기 컴파일 하기위해서 필요한 라이브러리를 한꺼번에 설치하자. # apt-get install git-core gnupg flex bison gperf libsdl-dev libesd0-dev libwxgtk2.6-dev build-essential zip curl libncurses5-dev zlib1g-dev # apt-get install valgrind...&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;http://cranix.net/319&quot;&gt;글 전체보기&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</description>
      <category>Android</category>
      <category>Android</category>
      <category>compile</category>
      <category>ubuntu9.10</category>
      <author>크래닉스</author>
      <guid>http://cranix.net/319</guid>
      <comments>http://cranix.net/319?expandComment=1#entry319Comment</comments>
      <pubDate>Sun, 21 Mar 2010 13:56:41 +0900</pubDate>
    </item>
    <item>
      <title>Android HAL 인터페이스</title>
      <link>http://cranix.net/318</link>
      <description>들어가며 안드로이드에는 디바이스 드라이버위에 HAL 계층이 뚜렷하게 존재한다. 이것은 디바이스 드라이버와 유사한 형식으로 구현되며 .so 파일로 저장되어서 동적으로 로딩된다. framebuffer, gps, sensor 등 대부분의 HAL 은 이 인터페이스를 따르는 형태로 구현되어...&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;http://cranix.net/318&quot;&gt;글 전체보기&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</description>
      <category>Android</category>
      <category>Android</category>
      <category>Hal</category>
      <category>hardware</category>
      <author>크래닉스</author>
      <guid>http://cranix.net/318</guid>
      <comments>http://cranix.net/318?expandComment=1#entry318Comment</comments>
      <pubDate>Sat, 20 Mar 2010 20:13:37 +0900</pubDate>
    </item>
    <item>
      <title>Surface Flinger</title>
      <link>http://cranix.net/316</link>
      <description>Surface Flinger 란 무엇인가? frame buffer HAL 은 디바이스 드라이버에서 올라가다가 마지막에 Surface Flinger 와 연결된다. 즉 Surface Flinger 는 frame buffer HAL 위에있는 또다른 추상화 계층이라고 볼 수 있다. 무엇을 추상화 하는지 알아보도록 하자. Surface F...&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;http://cranix.net/316&quot;&gt;글 전체보기&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</description>
      <category>Android</category>
      <category>Android</category>
      <category>Surface Flinger</category>
      <author>크래닉스</author>
      <guid>http://cranix.net/316</guid>
      <comments>http://cranix.net/316?expandComment=1#entry316Comment</comments>
      <pubDate>Fri, 19 Mar 2010 15:53:53 +0900</pubDate>
    </item>
    <item>
      <title>hello 디바스 드라이버</title>
      <link>http://cranix.net/315</link>
      <description>hello 디바이스 만들기 프로그래밍 첨하면 아무나 다하는 hello.c를 만들어 보겠다. #include &amp;lt;linux/init.h&amp;gt; #include &amp;lt;linux/module.h&amp;gt; MODULE_LICENSE(&amp;quot;Dual BSD/GPL&amp;quot;); static int __init hello_init(void) { &amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; ...&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;http://cranix.net/315&quot;&gt;글 전체보기&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</description>
      <category>Linux device driver</category>
      <category>Device Driver</category>
      <category>hello</category>
      <category>Linux</category>
      <author>크래닉스</author>
      <guid>http://cranix.net/315</guid>
      <comments>http://cranix.net/315?expandComment=1#entry315Comment</comments>
      <pubDate>Thu, 18 Mar 2010 23:50:12 +0900</pubDate>
    </item>
    <item>
      <title>android frame buffer HAL 분석</title>
      <link>http://cranix.net/312</link>
      <description>들어가며 안드로이드에서 frame buffer 를 테스트 하기위해서는 실제 타겟보드가 필요하다. 그러나 타겟보드는 각각 해당 디바이스 드라이버를 작성하는 방법이 다를 뿐더러 구하기도 어렵다. 그래서 여기서는 가장 접근하기 쉬운 goldfish 에뮬레이터의 frame buffer 를...&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;http://cranix.net/312&quot;&gt;글 전체보기&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</description>
      <category>Android</category>
      <category>Android</category>
      <category>frame buffer</category>
      <category>goldfish</category>
      <category>Hal</category>
      <author>크래닉스</author>
      <guid>http://cranix.net/312</guid>
      <comments>http://cranix.net/312?expandComment=1#entry312Comment</comments>
      <pubDate>Thu, 18 Mar 2010 19:57:30 +0900</pubDate>
    </item>
    <item>
      <title>android 소스 다운로드 받기</title>
      <link>http://cranix.net/314</link>
      <description>curl 로 repo 스크립트 받기 안드로이드는 수많은 개발자가 참여하는 오픈소스 시스템이다. 이러한 시스템을 관리해주는 유틸은 git 를 사용하는데 그러다 보니 전체 소스가 한꺼번에 관리되지 않는다. 그래서 웹상에 소스를 한꺼번에 다운로드 받을수 있는 스크립트를...&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;http://cranix.net/314&quot;&gt;글 전체보기&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</description>
      <category>Android</category>
      <category>Android</category>
      <category>CURL</category>
      <category>repo</category>
      <author>크래닉스</author>
      <guid>http://cranix.net/314</guid>
      <comments>http://cranix.net/314?expandComment=1#entry314Comment</comments>
      <pubDate>Thu, 18 Mar 2010 10:35:05 +0900</pubDate>
    </item>
    <item>
      <title>우분투 셋팅</title>
      <link>http://cranix.net/313</link>
      <description>들어가며 어제 새벽까지 설치하고 일하러 갔더니 완전 제정신이 아니었다. 오늘은 얼른하고 자야겠다. 일단 오늘 할것을 생각해 보자. &amp;nbsp; 폰트, vim, eclipse, ... 폰트셋팅 처음 우분투 설치할때는 폰트가 맘에든다고 생각했지만, 계속 쓰다보니 별로 맘에 안들었다....&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;http://cranix.net/313&quot;&gt;글 전체보기&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</description>
      <category>font</category>
      <category>ubuntu</category>
      <category>vi</category>
      <author>크래닉스</author>
      <guid>http://cranix.net/313</guid>
      <comments>http://cranix.net/313?expandComment=1#entry313Comment</comments>
      <pubDate>Thu, 18 Mar 2010 00:19:12 +0900</pubDate>
    </item>
    <item>
      <title>우분투로 mp6410cs 보드에 안드로이드 포팅하기</title>
      <link>http://cranix.net/311</link>
      <description>네트워크 설정 네트워크는 공유기를 사용하는 환경을 구성하는게 가장 편하다. 공유기에 호스트컴퓨터와 타겟보드를 연결해 놓고 네트워크 설정을 해 주면된다. &amp;nbsp; &amp;nbsp; 우분투 네트워크 설정 &amp;nbsp; ip 설정은 다음 디렉토리에 있다. 해당 파일에 들어있는 기존의...&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;http://cranix.net/311&quot;&gt;글 전체보기&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</description>
      <category>Android</category>
      <category>mp6410cs</category>
      <category>uboot</category>
      <category>우분투 네트워크</category>
      <author>크래닉스</author>
      <guid>http://cranix.net/311</guid>
      <comments>http://cranix.net/311?expandComment=1#entry311Comment</comments>
      <pubDate>Wed, 17 Mar 2010 11:08:51 +0900</pubDate>
    </item>
  </channel>
</rss>
