我正在尝试通过modprobe加载内核模块。我正在使用yocto项目来构建内核。当我尝试在自定义硬件中加载内核时,我遇到了以下错误。
<link rel="import" href="../bower_components/polymer/polymer.html">
<link rel="import" href="shared-styles.html">
<dom-module id="some-element">
<template>
<style include="shared-styles">
/* Element specific styles go here */
</style>
<!-- HTML goes here -->
</template>
<script>
Polymer({
is: 'some-element',
properties: {
}
});
</script>
</dom-module>
下面是dmesg日志
modprobe g_serial
configfs: version magic '3.14.38-6UL_ga+ge4944a5 SMP preempt mod_unload modversions ARMv7 p2v8 ' should be '3.14.38-6UL_ga+ge4944a5 SMP preempt mod_unload ARMv6 p2v8 '
modprobe: can't load module configfs (kernel/fs/configfs/configfs.ko): invalid module format
答案 0 :(得分:0)
以前我在两个不同的版本中进行内核模块和内核编译,我遇到了这个错误。现在我正在进行单一构建,并且驱动程序正在成功加载。