Chinaunix首页 | 论坛 | 博客
  • 博客访问: 3125339
  • 博文数量: 685
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 5303
  • 用 户 组: 普通用户
  • 注册时间: 2014-04-19 14:17
个人简介

文章分类

全部博文(685)

文章存档

2015年(116)

2014年(569)

发布时间:2014-09-23 13:57:13

新版本内核中大内核锁lock_kernel已经被完全去掉,更改老代码驱动中的lock_kernel时可改用up/down函数。关于up/down的使用,详细如下:信号量的原理就是一个整数的增减,up=加1,down = 减1;当这个值>=1时它就是属于资源释放状态,此时使用down能获得,如果<=0则无法down获得。其实信号量不是互斥的,linux内核说定.........【阅读全文】

阅读(1580) | 评论(0) | 转发(0)

发布时间:2014-09-22 11:02:47

#include <linux/module.h>#include <linux/delay.h>#include <linux/types.h>#include <linux/init.h>#include <linux/kernel.h>#include <linux/string.h>#include <linux/ioport.h>#include <linux/platform_device.h>#include <linux/delay.h>#include <linux/err.h>#include <linux/clk.h>#include <linu.........【阅读全文】

阅读(1147) | 评论(0) | 转发(0)

发布时间:2014-09-21 15:01:01

/* * This code implements the ECC algorithm used in SmartMedia. * * The ECC comprises 22 bits of parity information and is stuffed into 3 bytes. * The two unused bit are set to 1. * The ECC can correct single bit errors in a 256-byte page of data. Thus, two such ECC&nb.........【阅读全文】

阅读(1485) | 评论(0) | 转发(0)

发布时间:2014-09-20 13:58:19

/* * makeyaffs2image.c  * * Makes a YAFFS2 file system image that can be used to load up a file system. * Uses default Linux MTD layout - search for "NAND LAYOUT" to change. */ #include <stdlib.h>#include <stdio.h>#include <fcntl.h>#include <sys/types.h>#in.........【阅读全文】

阅读(1736) | 评论(0) | 转发(0)

发布时间:2014-09-20 09:55:13

跳转到指定行号:在命令行模式下直接输入行号即可。显示行号:在命令行模式下输入set number。搜索某字符:命令行模式下输入:/ 字符 即可(或者:? 字符,表示向前搜索)在内核的menuconfig中也可使用/来打开搜索框,便于据某个关键词搜索相关配置选项的位置。.........【阅读全文】

阅读(493) | 评论(0) | 转发(0)
给主人留下些什么吧!~~

7大爷2014-04-21 11:08

期待你的原创博文哦

回复  |  举报
留言热议
请登录后留言。

登录 注册