¹ØÓÚ2.6ÄÚºËÇý¶¯ÎÊÌ⣿
¸÷λ´óϺ£ºÎÒÏÖÔÚ°²×°µÄµÄÊÇlinuxµÄÄں˰汾ÊÇ2.4.20-8£¬ÎÒÏëÔÚÕâ¸ö»ù´¡ÉϱàÒëÒ»¸öÔËÐÐÔÚarm¿ª·¢°åÉÏ£¨Äں˰汾2.6.14£©helloµÄÇý¶¯¡£
ÎÒ²»ÖªµÀ¸ÃÔõôдÕâ¸ömakefile£¿Ð»Ð»£¡ //ÏÂÃæÊDzâÊÔ´úÂë
#ifndef __KERNEL__
# define __KERNEL__
#endif
#ifndef MODULE
# define MODULE
#endif
#include <linux/config.h>
#include <linux/module.h>
MODULE_LICENSE("GPL");
#ifdef CONFIG_SMP
#define __SMP__
#endif
#include <linux/kernel.h>
int
init_module
(){
printk("Hello,World!\n");
return 0; /}
void
cleanup_module
(){
printk("---------hello!\n");
}
Ò³:
[1]