本篇是接着上一篇<编译Linux Kernel – Version 4.9.13>写的。
1. 创建system call 源文件
在下载了kernel的源代码并且解压后,进入根目录下的kernel
文件夹,在里面创建文件hello.c
#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/module.h>
#include <linux/linkage.h>
asmlinkage long sys_hello(long a, long b){
long sum = a + b;
printk("hello world\n");
printk("the sum is %d\n",sum);
return 0;
//return -EINVAL;
}