玩了好几天Fedora5了,今天终于把FC5的源代码安装上了。
默认安装的FC5是不会安装源代码的,这个原因我也不清楚,记得Redhat以前安装后是直接安装了源代码的,所以作内核级开发的调试的时候不用管那么多。
安装源代码的整个过程我差不多是按Fedora5发行注记操作的:http://docs.fedoraproject.org/release-notes/fc5/release-notes-ISO/zh_CN/
同时参考了其他一些人写的心得。但是,在做这一步的时候发生了很多[code]warning,(
rpmbuild -bp --target $(uname -m) kernel-2.6.spec
)[/code]我前几次没有继续走下去,而是分析解决这个warning,但始终未能解决,后来索性忽视了这个warning,没想到居然成功了。
qtsmy 于 2008-06-10 00:09:14发表:
测试模块:[code]/*hello.c*/
#include
#include
#include
MODULE_LICENSE("Dual BSD/GPL");
static int hello_init(void)
{
printk(KERN_ALERT "Hello World\n" );
return 0;
}
static void hello_exit(void)
{
printk(KERN_ALERT "Goodbye World\n" );
}
module_init(hello_init);
module_exit(hello_exit);
Makefile:
TARGET = hello
KDIR = /lib/modules/$(shell uname -r)/build
PWD = $(shell pwd)
obj-m := $(TARGET).o
default:
make -C $(KDIR) M=$(PWD) modules[/code]