我正在尝试在CentOS 7中构建一个内核模块。当我运行make时,我得到以下内容
$ make
make -C /usr/src/kernels/`uname -r` SUBDIRS= modules
make[1]: Entering directory `/usr/src/kernels/3.10.0-514.21.1.el7.x86_64'
Makefile:641: Cannot use CONFIG_CC_STACKPROTECTOR_STRONG: -fstack-protector-strong not supported by compiler
make[2]: *** No rule to make target `arch/x86/syscalls/syscall_32.tbl', needed by `arch/x86/syscalls/../include/generated/uapi/asm/unistd_32.h'. Stop.
make[1]: *** [archheaders] Error 2
make[1]: Leaving directory `/usr/src/kernels/3.10.0-514.21.1.el7.x86_64'
make: *** [default] Error 2
基于我的在线阅读,看起来我没有内核资源。
我关注these instructions,但仍然遇到同样的错误。
我还找到了these instructions,但是在开始时就开始介绍问题。
以下是页面开头的声明:
假设您已经拥有完整的内核源代码树 安装。如果您按照I need the Kernel Source的第2节进行了操作 将在目录中找到
~/rpmbuild/BUILD/kernel-2.6.18/linux-2.6.18.uname -m/
这是我运行tree ~/rpmbuild
/home/user/rpmbuild
|-- BUILD
|-- BUILDROOT
|-- RPMS
|-- SOURCES
| |-- centos.cer
| |-- centos-kpatch.x509
| |-- centos-ldup.x509
| |-- check-kabi
| |-- cpupower.config
| |-- cpupower.service
| |-- debrand-rh-i686-cpu.patch
| |-- debrand-rh_taint.patch
| |-- debrand-single-cpu.patch
| |-- extra_certificates
| |-- kernel-3.10.0-ppc64.config
| |-- kernel-3.10.0-ppc64-debug.config
| |-- kernel-3.10.0-ppc64le.config
| |-- kernel-3.10.0-ppc64le-debug.config
| |-- kernel-3.10.0-s390x.config
| |-- kernel-3.10.0-s390x-debug.config
| |-- kernel-3.10.0-s390x-kdump.config
| |-- kernel-3.10.0-x86_64.config
| |-- kernel-3.10.0-x86_64-debug.config
| |-- kernel-abi-whitelists-514.tar.bz2
| |-- linux-3.10.0-514.21.1.el7.tar.xz
| |-- linux-3.10.0-514.26.2.el7.tar.xz
| |-- linux-kernel-test.patch
| |-- Makefile.common
| |-- Module.kabi_dup_ppc64
| |-- Module.kabi_dup_ppc64le
| |-- Module.kabi_dup_s390x
| |-- Module.kabi_dup_x86_64
| |-- Module.kabi_ppc64
| |-- Module.kabi_ppc64le
| |-- Module.kabi_s390x
| |-- Module.kabi_x86_64
| |-- secureboot.cer
| |-- sign-modules
| `-- x509.genkey
|-- SPECS
| `-- kernel.spec
`-- SRPMS
我的BUILD
目录为空。为了能够在CentOS7中编译内核模块,我需要做什么?
这是内核模块的代码
#include <linux/module.h>
#include <linux/version.h>
#include <linux/kernel.h>
static int __init ofd_init(void) {
printk(KERN_INFO, "OFD registered");
return 0;
}
static int __exit ofd_exit(void) {
printk(KERN_INFO, "OFD unregistered");
return 0;
}
module_init(ofd_init);
module_exit(ofd_exit);
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("Test");
这是它的makefile
# makefile - makefile for test
# If KERNELRELEASE is defined, we've been invoked from the
# kernek build system and need to use its language
ifneq ($(KERNELRELEASE),)
obj-m := ofd.o
# Otherwise we've been invoked from the command line.
# Invoke the kernel build system
else
KERNEL_SOURCE := /usr/src/kernels/`uname -r`
PWD := $(shel pwd)
default:
$(MAKE) -C $(KERNEL_SOURCE) SUBDIRS=$(PWD) modules
clean:
$(MAKE) -C $(KERNEL_SOURCE) SUBDIRS=$(PWD) clean
endif
答案 0 :(得分:0)
也许您错过了源树提取过程。
来自https://wiki.centos.org/HowTos/I_need_the_Kernel_Source:
作为普通用户,而不是root用户,通过执行以下命令安装源包:
[user@host]$ rpm -i http://vault.centos.org/7.4.1708/updates/Source/SPackages/kernel-3.10.0-693.21.1.el7.src.rpm 2>&1 | grep -v exist
这会将内核源代码树解压缩到~/rpmbuild/BUILD
。