全部博文(14)
发布时间:2013-09-11 13:26:55
Using the following script to show the color codes:==========================================#!/bin/bash## This file echoes a bunch of color codes to the # terminal to demonstrate what's available. Each # line is the color code of one forground color,.........【阅读全文】
发布时间:2013-09-04 09:25:07
在linux系统下,查看linux的技巧。make tags #生成相关tags,读代码时,就可以像在sourceinsight里一样了。make ALLSOURCE_ARCHS="arm" tags #指定只生成arm的tags......【阅读全文】
发布时间:2013-09-04 08:36:06
refs:http://www.linuxjournal.com/content/kbuild-linux-kernel-build-systemhttp://lxr.linux.no/#linux+v3.10.1/Documentation/kbuild/......【阅读全文】
发布时间:2013-08-29 10:40:11
address space: 这里不是指linux中的内核空间, 用户空间之类的. 而是指硬件厂商在设计自己的芯片时, 从硬件上划分的地址空间.有些芯片只有一个地址空间, 有些芯片有不同的地址空间(memory address space, I/O address space).访问外设是通过控制它的寄存器来进行的. 这些寄存器可以被map到memory address space 也.........【阅读全文】