上一页 1 ··· 107 108 109 110 111 112 113 114 115 ··· 132 下一页
摘要: __init和__initdata Linux在arch/$(ARCH)/kernel/vmlinux.lds中定义了.init段。__init和__initdata属性的数据都在这个段中,当内核启动完毕后,这个段中的内存会被释放掉供其他使用。 __init和__initdata宏定义如下: /* include/linux/init.c */ #define __init __attrib... 阅读全文
posted @ 2011-06-17 16:03 katago 阅读(1755) 评论(0) 推荐(1)
摘要: http://www.cublog.cn/u2/60011/showart_1010489.html MACHINE_START宏 linux2.6.18内核,在Mach-s3c2410.c文件中,有如下的宏定义: MACHINE_START(SMDK2410, "SMDK2410") /* @TODO: request a new identifier and switch to SMDK241... 阅读全文
posted @ 2011-06-17 16:00 katago 阅读(769) 评论(0) 推荐(0)
摘要: About TEXTADDR, ZTEXTADDR, PAGE_OFFSET etc Initial definitions ------------------- The following symbol definitions rely on you knowing the translation that __virt_to_phys() does for your machine. Th... 阅读全文
posted @ 2011-06-17 15:54 katago 阅读(346) 评论(0) 推荐(0)
摘要: Vmalloc可以获得的地址在VMALLOC_START到VMALLOC_END的范围中。这两个符号在<asm/pgtable.h>中定义: * arch/arm/include/asm/pgtable.h /* * Just any arbitrary offset to the start of the vmalloc VM area: the * current 8MB value just... 阅读全文
posted @ 2011-06-17 15:53 katago 阅读(3007) 评论(1) 推荐(0)
摘要: http://partner.atheros.com/Drivers.aspx 下载AR81Family Linux Driver 阅读全文
posted @ 2011-06-17 15:42 katago 阅读(249) 评论(0) 推荐(0)
摘要: http://www.marvell.com/products/processors/embedded/kirkwood/ Mbus-Light (Mbus-L) separate interfaces to DDR controller and to Mbus bridge. 阅读全文
posted @ 2011-06-15 16:29 katago 阅读(203) 评论(0) 推荐(0)
摘要: http://jiangjqian.blog.51cto.com/1040847/404097 分析发现uboot env的存储格式是,开始4个字节是crc32,后面是一个接一个\0结束的字符串,每个串都是envname=enavalue的格式。 挪用uboot部分的相关代码,实现以下函数: int set_env_ptr(unsigned char * ptr); char *get_env... 阅读全文
posted @ 2011-06-14 23:07 katago 阅读(817) 评论(0) 推荐(0)
摘要: ther Component Systems Microsoft COM (and DCOM/COM+/.Net/MSMQ/ActiveX) Mozilla XPCOM theKompany Korelib TrollTech Qt Component Model Apache 1.x module API Apache 2.x hooks and modules API Mozilla/Nets... 阅读全文
posted @ 2011-06-14 22:16 katago 阅读(268) 评论(0) 推荐(0)
摘要: Pulse Width Modulation -- 脉宽调制 /脉冲宽度调制 脉冲宽度调制(PWM)是利用微处理器的数字输出来对模拟电路进行控制的一种非常有效的技术,广泛应用在从测量、通信到功率控制与变换的许多领域中。脉宽调制是开关型稳压电源中的术语。这是按稳压的控制方式分类的,除了PWM型,还有PFM型和PWM、PFM混合型。脉宽调制式开关型稳压电路是在控制电路输出频率不变的情况下,通过电压反馈... 阅读全文
posted @ 2011-06-10 14:37 katago 阅读(794) 评论(0) 推荐(0)
摘要: 你的文件分隔符恐怕不止一个空格(一定的who生成的): 用awk: awk '{print $2}' file 一定要用cut的话: cat file|tr -s ' '|cut -d' ' -f2 阅读全文
posted @ 2011-06-09 15:23 katago 阅读(2029) 评论(0) 推荐(0)
上一页 1 ··· 107 108 109 110 111 112 113 114 115 ··· 132 下一页