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

前端之家收集整理的这篇文章主要介绍了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

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

原文链接:https://www.f2er.com/linux/394617.html

猜你在找的Linux相关文章