<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>LayerscapeのトピックRe: How to integrate a Linux kernel module in LS2088ARDB?</title>
    <link>https://community.nxp.com/t5/Layerscape/How-to-integrate-a-Linux-kernel-module-in-LS2088ARDB/m-p/799169#M3546</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hmm. Have a look at these options of modprobe: --force --force-vermagic&lt;/P&gt;&lt;P&gt;--force-modversion. As described in manpage, use of these can be risky but&lt;/P&gt;&lt;P&gt;it might get you able to load and test your module until the build issue&lt;/P&gt;&lt;P&gt;can be resolved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Back to the build issue...there is more to to the kernel version than uname&lt;/P&gt;&lt;P&gt;-r. What you really need to look at is the vermagic string of the running&lt;/P&gt;&lt;P&gt;kernel so that you can match that up with the vermagic string of your&lt;/P&gt;&lt;P&gt;module. You can try running this to get the running kernels vermagic:&lt;/P&gt;&lt;P&gt;  sudo stap -g -e 'probe begin { log ( %{ VERMAGIC_STRING /* string */ %} )&lt;/P&gt;&lt;P&gt;exit()  }'&lt;/P&gt;&lt;P&gt;  3.10.0-693.2.2.el7.x86_64 SMP mod_unload modversions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Seems like there should be an easier way to get this as not all systems&lt;/P&gt;&lt;P&gt;have stap. Alternatively, look at the file ./include/linux/vermagic.h.&lt;/P&gt;&lt;P&gt;Those will define vermagic string components that should be in your kernels&lt;/P&gt;&lt;P&gt;vermagic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One more thing - look at the modinfo output from a module that does run on&lt;/P&gt;&lt;P&gt;your kernel. That will give you evidence of what your module's vermagic&lt;/P&gt;&lt;P&gt;should look like.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Jul 2018 16:25:47 GMT</pubDate>
    <dc:creator>jopado</dc:creator>
    <dc:date>2018-07-12T16:25:47Z</dc:date>
    <item>
      <title>How to integrate a Linux kernel module in LS2088ARDB?</title>
      <link>https://community.nxp.com/t5/Layerscape/How-to-integrate-a-Linux-kernel-module-in-LS2088ARDB/m-p/799164#M3541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I try to integrate a Linux kernel module in the LS2088ARDB using 'insmod', but I get the error message&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"disagrees about version of symbol module_layout.&amp;nbsp;insmod: ERROR: could not insert module ...: Invalid module format"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Linux kernel version used on the board is&amp;nbsp;4.1.35-rt41.&lt;/P&gt;&lt;P&gt;I obtained the exact version of the kernel sources (including patch rt41) and compiled my kernel module against them.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also used the config file from the LS2088ARDB (obtained from /proc/config.gz) to build the kernel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do I have to use another version of the kernel or am I missing something else?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jul 2018 15:22:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/How-to-integrate-a-Linux-kernel-module-in-LS2088ARDB/m-p/799164#M3541</guid>
      <dc:creator>andreasr</dc:creator>
      <dc:date>2018-07-10T15:22:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to integrate a Linux kernel module in LS2088ARDB?</title>
      <link>https://community.nxp.com/t5/Layerscape/How-to-integrate-a-Linux-kernel-module-in-LS2088ARDB/m-p/799165#M3542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do a modinfo on your .ko file and see how the version compares with uname -r.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jul 2018 19:33:32 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/How-to-integrate-a-Linux-kernel-module-in-LS2088ARDB/m-p/799165#M3542</guid>
      <dc:creator>jopado</dc:creator>
      <dc:date>2018-07-10T19:33:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to integrate a Linux kernel module in LS2088ARDB?</title>
      <link>https://community.nxp.com/t5/Layerscape/How-to-integrate-a-Linux-kernel-module-in-LS2088ARDB/m-p/799166#M3543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Output of modinfo:&lt;/P&gt;&lt;P&gt;vermagic:&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;4.1.35-rt41 SMP mod_unload modversions aarch64&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Output of uname -a:&lt;/P&gt;&lt;P&gt;Linux ls2088ardb 4.1.35-rt41 #1 SMP Thu Mar 30 01:18:48 CST 2017 aarch64 GNU/Linux&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2018 06:27:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/How-to-integrate-a-Linux-kernel-module-in-LS2088ARDB/m-p/799166#M3543</guid>
      <dc:creator>andreasr</dc:creator>
      <dc:date>2018-07-11T06:27:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to integrate a Linux kernel module in LS2088ARDB?</title>
      <link>https://community.nxp.com/t5/Layerscape/How-to-integrate-a-Linux-kernel-module-in-LS2088ARDB/m-p/799167#M3544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I had a similar issue but I was using the Layerscape SDK. It looks like you are on the QorIQ SDK but fix should be similar. When your insmod fails, there should be an entry in the syslog similar to this:&lt;BR /&gt;&amp;nbsp; &amp;nbsp; modulename: version magic 'xyz' should be 'abc'&lt;/P&gt;&lt;P&gt;You will have to make your version match exactly the kernels (abc). In my case the kernel version magic included modversions but MOD_VERSIONS was not configured in the kernel builds generated autoconf.h. This is a bug in nxp's distro somewhere as I was building my module against a pre-built kernel. I simply modified the autoconf.h adding the line: #define CONFIG_MODVERSIONS 1&lt;/P&gt;&lt;P&gt;I then rebuilt my module and all was good. Here are a couple of good references on this issue. This should help you resolve your problem.&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=https%3A%2F%2Flinux.die.net%2Flkmpg%2Fx380.html" rel="nofollow" target="_blank"&gt;https://linux.die.net/lkmpg/x380.html&lt;/A&gt;&lt;BR /&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=http%3A%2F%2Fbillauer.co.il%2Fblog%2F2013%2F10%2Fversion-magic-insmod-modprobe-force%2F" rel="nofollow" target="_blank"&gt;http://billauer.co.il/blog/2013/10/version-magic-insmod-modprobe-force/&lt;/A&gt;&lt;BR /&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=https%3A%2F%2Fstackoverflow.com%2Fquestions%2F22368264%2Fcompiling-out-of-tree-kernel-module-against-any-kernel-source-tree-on-the-filesy" rel="nofollow" target="_blank"&gt;https://stackoverflow.com/questions/22368264/compiling-out-of-tree-kernel-module-against-any-kernel-source-tree-on-the-filesy&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Let me know how you make out. I have some modules that I will be porting to a QorIQ SDK platform soon so I can provide more relevant data to you if needed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2018 16:16:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/How-to-integrate-a-Linux-kernel-module-in-LS2088ARDB/m-p/799167#M3544</guid>
      <dc:creator>jopado</dc:creator>
      <dc:date>2018-07-11T16:16:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to integrate a Linux kernel module in LS2088ARDB?</title>
      <link>https://community.nxp.com/t5/Layerscape/How-to-integrate-a-Linux-kernel-module-in-LS2088ARDB/m-p/799168#M3545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually there is no entry in the syslog similar to "&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;modulename: version magic 'xyz' should be 'abc'". All I get are the error messages I posted above.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;I assume this isn't the problem, since I use the exact same kernel version. There's no difference in the version strings at all.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;I also checked the autoconfig.h, but the line '#define CONFIG_MODVERSIONS 1' already exists.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;I am not using any SDK, just compiling the kernel module with a simple makefile. Could this be part of the problem?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;I got the kernel sources from kernel.org.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;What I read about and might be a problem:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Often people state, that they have to use the Module.symvers file from the running kernel to build their kernel module.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;The problem is, that I don't find any Module.symvers file on the LS2088 Linux. On my host this file can be found under /lib/modules/$(uname -r)/build for example.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2018 08:55:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/How-to-integrate-a-Linux-kernel-module-in-LS2088ARDB/m-p/799168#M3545</guid>
      <dc:creator>andreasr</dc:creator>
      <dc:date>2018-07-12T08:55:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to integrate a Linux kernel module in LS2088ARDB?</title>
      <link>https://community.nxp.com/t5/Layerscape/How-to-integrate-a-Linux-kernel-module-in-LS2088ARDB/m-p/799169#M3546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hmm. Have a look at these options of modprobe: --force --force-vermagic&lt;/P&gt;&lt;P&gt;--force-modversion. As described in manpage, use of these can be risky but&lt;/P&gt;&lt;P&gt;it might get you able to load and test your module until the build issue&lt;/P&gt;&lt;P&gt;can be resolved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Back to the build issue...there is more to to the kernel version than uname&lt;/P&gt;&lt;P&gt;-r. What you really need to look at is the vermagic string of the running&lt;/P&gt;&lt;P&gt;kernel so that you can match that up with the vermagic string of your&lt;/P&gt;&lt;P&gt;module. You can try running this to get the running kernels vermagic:&lt;/P&gt;&lt;P&gt;  sudo stap -g -e 'probe begin { log ( %{ VERMAGIC_STRING /* string */ %} )&lt;/P&gt;&lt;P&gt;exit()  }'&lt;/P&gt;&lt;P&gt;  3.10.0-693.2.2.el7.x86_64 SMP mod_unload modversions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Seems like there should be an easier way to get this as not all systems&lt;/P&gt;&lt;P&gt;have stap. Alternatively, look at the file ./include/linux/vermagic.h.&lt;/P&gt;&lt;P&gt;Those will define vermagic string components that should be in your kernels&lt;/P&gt;&lt;P&gt;vermagic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One more thing - look at the modinfo output from a module that does run on&lt;/P&gt;&lt;P&gt;your kernel. That will give you evidence of what your module's vermagic&lt;/P&gt;&lt;P&gt;should look like.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2018 16:25:47 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/How-to-integrate-a-Linux-kernel-module-in-LS2088ARDB/m-p/799169#M3546</guid>
      <dc:creator>jopado</dc:creator>
      <dc:date>2018-07-12T16:25:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to integrate a Linux kernel module in LS2088ARDB?</title>
      <link>https://community.nxp.com/t5/Layerscape/How-to-integrate-a-Linux-kernel-module-in-LS2088ARDB/m-p/799170#M3547</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello &lt;A _jive_internal="true" data-content-finding="Community" data-userid="317777" data-username="andreasr" href="https://community.nxp.com/people/andreasr"&gt;Andreas Rollbühler,&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Linux Kernel 4.1.35-rt41 should be from SDK 2.0 1703 release, you could downloaded ISOs from &lt;A class="link-titled" href="https://www.nxp.com/support/developer-resources/run-time-software/linux-software-and-development-tools/linux-sdk-for-qoriq-processors:SDKLINUX?tab=Design_Tools_Tab#nogo" title="https://www.nxp.com/support/developer-resources/run-time-software/linux-software-and-development-tools/linux-sdk-for-qoriq-processors:SDKLINUX?tab=Design_Tools_Tab#nogo"&gt;Linux® SDK for QorIQ® Processors|NXP&lt;/A&gt;&amp;nbsp;,&amp;nbsp; you could download the pre-built image ISO for AARCH64, please boot up the system with uImage, and rootfs filesystem provided in this ISO, Kernel modules are integrated into filesystem in /lib/modules/4.1.35-rt41/kernel/drivers/.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to build your own Kernel module, you could download Kernel source from the following git address.&lt;/P&gt;&lt;P&gt;Git address: git://git.freescale.com/ppc/sdk/linux.git&lt;/P&gt;&lt;P&gt;Commit ID: 1ae843c08261402b2c35d83422e4fa1e313611f4&lt;/P&gt;&lt;P&gt;Please use the same Kernel configuration file to your kernel module as the running Kernel.&lt;/P&gt;&lt;P&gt;Please check whether Makefile options used in your module Makefile is same as Linux Kernel.&lt;/P&gt;&lt;P&gt;In addition, your also could get the standalone GCC Toolchain in the pre-built image ISO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it still fails to insert your built module, please get more information from&lt;TT&gt; &lt;/TT&gt;/var/log/messages.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;TIC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2018 06:09:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/How-to-integrate-a-Linux-kernel-module-in-LS2088ARDB/m-p/799170#M3547</guid>
      <dc:creator>yipingwang</dc:creator>
      <dc:date>2018-07-17T06:09:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to integrate a Linux kernel module in LS2088ARDB?</title>
      <link>https://community.nxp.com/t5/Layerscape/How-to-integrate-a-Linux-kernel-module-in-LS2088ARDB/m-p/799171#M3548</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, it finally worked by using the kernel sources from the freescale git repository instead the sources from kernel.org&lt;/P&gt;&lt;P&gt;Thank you very much for that hint!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What's interesting:&amp;nbsp;&lt;/P&gt;&lt;P&gt;Vermagic of the module now says '4.1.35-rt41-176865-g1ae843c SMP mod_unload modversions aarch64' while vermagic of the built in drivers says '4.1.35-rt41 SMP mod_unload modversions aarch64'.&lt;/P&gt;&lt;P&gt;Anyway insmod doesn't complain about a different module version.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2018 12:40:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/How-to-integrate-a-Linux-kernel-module-in-LS2088ARDB/m-p/799171#M3548</guid>
      <dc:creator>andreasr</dc:creator>
      <dc:date>2018-07-19T12:40:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to integrate a Linux kernel module in LS2088ARDB?</title>
      <link>https://community.nxp.com/t5/Layerscape/How-to-integrate-a-Linux-kernel-module-in-LS2088ARDB/m-p/799172#M3549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Yiping,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now I try to achieve the same with the LX2160ARDB. It runs with the linux kernel version 4.9.62.&lt;/P&gt;&lt;P&gt;Is there also a git repository with the appropriate kernel sources for this board?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Andreas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2018 08:44:19 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/How-to-integrate-a-Linux-kernel-module-in-LS2088ARDB/m-p/799172#M3549</guid>
      <dc:creator>andreasr</dc:creator>
      <dc:date>2018-09-28T08:44:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to integrate a Linux kernel module in LS2088ARDB?</title>
      <link>https://community.nxp.com/t5/Layerscape/How-to-integrate-a-Linux-kernel-module-in-LS2088ARDB/m-p/799173#M3550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to update with SDK v2.0-1703 because, I am building a module kernel (currently with &lt;SPAN style="color: #646464; background-color: #f2f2f2; font-size: 11px;"&gt;Cache: QorIQ Linux SDK v2.0 PPCE6500 Yocto&lt;/SPAN&gt;) and I get a message error when I do an insmod MyModule.ko.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[ 2022.496533] &lt;SPAN&gt;MyModule&lt;/SPAN&gt;: disagrees about version of symbol device_destroy&lt;BR /&gt;[ 2022.502025] &lt;SPAN&gt;MyModule&lt;/SPAN&gt;: Unknown symbol device_destroy (err -22)&lt;BR /&gt;[ 2022.506759] &lt;SPAN&gt;MyModule&lt;/SPAN&gt;: disagrees about version of symbol device_create&lt;BR /&gt;[ 2022.512157] &lt;SPAN&gt;MyModule&lt;/SPAN&gt;: Unknown symbol device_create (err -22)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, I can not download from&amp;nbsp;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Git address: git://git.freescale.com/ppc/sdk/linux.git because it does not working.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Any ideas please???&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;PS: If I build and insmod in SDK 1.8 it works correctly.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Oct 2018 08:41:25 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/How-to-integrate-a-Linux-kernel-module-in-LS2088ARDB/m-p/799173#M3550</guid>
      <dc:creator>iuro</dc:creator>
      <dc:date>2018-10-24T08:41:25Z</dc:date>
    </item>
  </channel>
</rss>

