编写一个简单的内核驱动模块 static int hello_init() { printk(“hello,I am in kernel now\n”); ; } void addfunc(int a,int b) {return a+b;} static void hello_exit() { printk(“hello ,I will leave the kernel now\n”); } module_init(hello_init); module_exit(hello_exit); M
转载网址:http://blog.csdn.net/chengwen816/article/details/8781096 在我新移植的kernel(3.4.2)和yaffs2文件中,加载新编译的内核模块时,遇到如下问题(无法卸载模块): 1.rmmod: can't change directory to '/lib/modules': No such file or directory 此时应该在文件系统中创建/lib/modules目录,接着又有下面问题: 2. rmmod: can't
在使用modprobe 或者modinfo cat: can't open '/lib/modules/2.6.35.3-571-gcca29a0/modules.dep': No such file or directory 我们进入这个提示的目录发现有modules.dep,哈哈当然啦 2.6.35.3-571-gcca29a0这个目录没有,那么是不是我们新建一个这个目录,然后将我们2.6.35.3-670-g914558e目录的内容拷贝过去就可以了. 来试试 于是: OK
1.eclipse新建的Dynamic web project 默认是将类编译在build如果在eclipse中配置了tomcate(server项),用自带的发布功能,是能自动识别的.2.自已修改到WEB-INF下也是可以的,要修改eclipse设置,具体做法右键你的工程-〉java buildpath-〉source项页面最下面的default out folder,选择到你的web-inf 目录的classes下. 3.class在build文件夹,热部署访问失败.