yocto 不包括最终映像中的内核模块

yocto 不包括最终映像中的内核模块

我正在尝试在我的 yocto-poky 版本中启用 CP210X 内核模块。我已在 中启用此选项。我也已将其包含在文件bitbake -c menuconfig <name>下的元层配置文件中。但是,在我使用并将映像安装到我的 SD 卡并尝试启动后,模块未显示在我的meta/recipies-kernel/<name>/files/usbnet.cfgbitbake <image>modules.dep

执行find /lib/modules/$(uname -r) -type f -name '*.ko*' 甚至仅显示我加载的单个自定义内核模块。

在我的conf/local.conf我有IMAGE_INSTALL+="kernel-modules"

我的usbnet.cfg包含CONFIG_USB_SERIAL_CP210X=m

我知道这些模块位于主线内核中并且可以与 yocto 一起使用。我缺少某些步骤吗?

这是 yocto 在 bitbake 之后给出的唯一警告,我认为它根本不相关?

WARNING: lttng-modules-2.10.8-r0 do_package: lttng-modules: no modules were created; this may be due to CONFIG_TRACEPOINTS not being enabled in your kernel.

我不确定还有哪些其他信息有用,但我很乐意提供。感谢您的任何帮助。

相关内容