DM6467T开发板领航——Kernel开发
初次编译时,请执行
make config
接下来,我们可以做一些配置了
make menuconfig
出现以下的界面
.config - Linux Kernel v2.6.32-rc2-davinci1Configuration
------------------------------------------------------------------------------
+---------------------- Linux Kernel Configuration-----------------------+
| Arrow keys navigate the menu. <Enter> selects submenus --->. |
| Highlighted letters are hotkeys. Pressing <Y> includes, <N>excludes, |
| <M> modularizes features. Press <Esc><Esc> to exit,<?> for Help, </> |
| for Search. Legend: [*] built-in [ ]excluded <M> module < > |
|+---------------------------------------------------------------------+ |
| | General setup ---> | |
| | [*] Enable loadable module support ---> | |
| | [*] Enable the block layer ---> | |
| | System Type ---> | |
| | Bus support ---> | |
|+----v(+)-------------------------------------------------------------+ |
+-------------------------------------------------------------------------+
| <Select> < Exit > < Help > |
+-------------------------------------------------------------------------+
有经验的朋友对这个界面应该很熟悉了
根据我们的开发板,需要修改AD,我们使用的是tvp5147。在设备驱动,多媒体中,有AD的选择,我们选择TVP5147,去掉其它的。
时钟我们选择PCF8563
做完上面这些工作,我相信内核应该可以起来,进入系统了,然后根据你的应用和内核打出来的信息进行一些其它的修改。
转载于:https://blog.51cto.com/junzhuivs/1244800