全部博文(207)
发布时间:2014-08-14 16:45:40
Android Boot loader 的 code 在 bootable/bootloader/lk 底下, LK 是 Little Kernel 的缩写, 是 andriod bootloader 的核心精神.入口函数在 kernel/main.c 中的 kmain(), 以下就来读读这一段 code.view plain copy to clipboard print ?void kmain( void&n.........【阅读全文】
发布时间:2014-08-14 16:44:14
Android系统开机动画包括两部分: 开机显示的 ANDROID 文字; ANDROID发光动画。 这篇文章说的开机动画是第一种,下面开始正文! 1. 制作当前屏幕像素的图片(模拟器默认为320*480) 使用PS制作一张320*480的图片,保存时选“保存为 Web 所用格式”,然后在弹开的窗口上,“预设”项选.........【阅读全文】
发布时间:2014-07-09 10:38:25
本文系本站原创,欢迎转载!转载请注明出处:http://sjj0412.cublog.cn/----------------------------------------------------------- Linux下伪终端是对应于/dev/pts/x,这个/dev/pts其实也只是devpts的挂载目录,通过如下命令挂在的。mount devpts /dev/pts -t devpts 伪终端.........【阅读全文】
发布时间:2014-07-09 10:36:44
In order to use the pseudo-tty subsystem, a node for the master-side driver /dev/ptmx and N number of slave drivers must be installed. (N is determined at installation time.) The names of the slave devices are /dev/pts/M where M has the values 0 through.........【阅读全文】