linux-kernel – linux / scripts / recordmcount:没有这样的文件或目录

当我尝试创建 Linux的内核模块时,会出现以下错误消息:
/home/mynfs/linux/scripts/recordmcount: No such file or directory

它出什么问题了?

PS:/ home / mynfs / linux /是我的源代码树所在的目录.

[root@localhost yiran]# make CONfig_NFS_ACL_SUPPORT=m -C /home/mynfs/linux M=/home/mynfs/linux/fs/nfs_common modules
make: Entering directory `/home/mynfs/linux'

  WARNING: Symbol version dump /home/mynfs/linux/Module.symvers
           is missing; modules will have no dependencies and modversions.

  CC [M]  /home/mynfs/linux/fs/nfs_common/nfsacl.o

**/bin/sh: /home/mynfs/linux/scripts/recordmcount: No such file or directory**

make[1]: * [/home/mynfs/linux/fs/nfs_common/nfsacl.o] Error 1
make: * [_module_/home/mynfs/linux/fs/nfs_common] Error 2
make: Leaving directory `/home/mynfs/linux'
[root@localhost yiran]# ls /home/mynfs/linux/scripts | grep recordmcount

recordmcount.c

recordmcount.h

recordmcount.pl

解决方法

我有同样的问题,只是让recordmcount部分地解决了它.还缺少其他脚本/ *模块.

以下命令构建了我缺少的所有模块:

cd $(sysroot)/usr/src/linux (in your case it should be /home/mynfs/linux)
 make scripts

然后构建了所有脚本模块,编译内核模块时没有进一步的问题.

相关文章

在Linux上编写运行C语言程序,经常会遇到程序崩溃、卡死等异...
git使用小结很多人可能和我一样,起初对git是一无所知的。我...
1. 操作系统环境、安装包准备 宿主机:Max OSX 10.10.5 虚拟...
因为业务系统需求,需要对web服务作nginx代理,在不断的尝试...
Linux模块机制浅析 Linux允许用户通过插入模块,实现干预内核...
一、Hadoop HA的Web页面访问 Hadoop开启HA后,会同时存在两个...