<?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>topic Re: Error compiling very simple Kernel module in i.MX Processors</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/Error-compiling-very-simple-Kernel-module/m-p/184670#M8465</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-weight: normal; font-style: normal; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; text-align: left; text-indent: 0px;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Hello Matteo,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: normal; font-style: normal; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; text-align: left; text-indent: 0px;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="Apple-converted-space"&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;I met the same problem,too!&lt;/P&gt;&lt;P style="font-weight: normal; font-style: normal; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; text-align: left; text-indent: 0px;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; when I typed "insmod bq27501.ko",&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: normal; font-style: normal; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; text-align: left; text-indent: 0px;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; the result is:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: normal; font-style: normal; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; text-align: left; text-indent: 0px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; insmod: can't insert 'bq27501.ko': kernel does not support requested operation&lt;/P&gt;&lt;P style="font-weight: normal; font-style: normal; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; text-align: left; text-indent: 0px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; can you tell he how did you solve this problem ffinally?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: normal; font-style: normal; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; text-align: left; text-indent: 0px;"&gt;thanks!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 Jul 2013 08:54:13 GMT</pubDate>
    <dc:creator>yanhongfeiyan</dc:creator>
    <dc:date>2013-07-24T08:54:13Z</dc:date>
    <item>
      <title>Error compiling very simple Kernel module</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Error-compiling-very-simple-Kernel-module/m-p/184658#M8453</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm trying to compile a kernel test module by means of the below line in i.mx28EVK board.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;make CROSS_COMPILE=/opt/freescale/usr/local/gcc-4.4.4-glibc-2.11.1-multilib-1.0/arm-fsl-linux-gnueabi/bin/arm-fsl-linux-gnueabi- -C /home/mydir/imx28/ltib/rpm/BUILD/linux-2.6.35.3 ARCH=arm M=/home/mydir/Project/test modules&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code of test module is listed below.......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#include &amp;lt;linux/module.h&amp;gt;&lt;/P&gt;&lt;P&gt;#include &amp;lt;linux/init.h&amp;gt;&lt;BR /&gt; /* public domain */&lt;BR /&gt; MODULE_LICENSE("GPL and additional rights");&lt;/P&gt;&lt;P&gt;static int test_init(void)&lt;BR /&gt; {&lt;BR /&gt; return 0;&lt;BR /&gt; }&lt;BR /&gt; static void test_exit(void)&lt;BR /&gt; {&lt;BR /&gt; }&lt;BR /&gt; module_init(test_init);&lt;BR /&gt; module_exit(test_exit);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.....and the result of the cross-compilation is lised below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CC /home/mydir/Project/test/test.mod.o&lt;BR /&gt; /home/mydir/Project/test/test.mod.c:8: error: variable '__this_module' has initializer but incomplete type&lt;BR /&gt; /home/mydir/Project/test/test.mod.c:9: error: unknown field 'name' specified in initializer&lt;BR /&gt; /home/mydir/Project/test/test.mod.c:9: warning: excess elements in struct initializer&lt;BR /&gt; /home/mydir/Project/test/test.mod.c:9: warning: (near initialization for '__this_module')&lt;BR /&gt; /home/mydir/Project/test/test.mod.c:10: error: unknown field 'init' specified in initializer&lt;BR /&gt; /home/mydir/Project/test/test.mod.c:10: warning: excess elements in struct initializer&lt;BR /&gt; /home/mydir/Project/test/test.mod.c:10: warning: (near initialization for '__this_module')&lt;BR /&gt; /home/mydir/Project/test/test.mod.c:14: error: unknown field 'arch' specified in initializer&lt;BR /&gt; /home/mydir/Project/test/test.mod.c:14: error: 'MODULE_ARCH_INIT' undeclared here (not in a function)&lt;BR /&gt; /home/mydir/Project/test/test.mod.c:14: warning: excess elements in struct initializer&lt;BR /&gt; /home/mydir/Project/test/test.mod.c:14: warning: (near initialization for '__this_module')&lt;BR /&gt; make[1]: *** [/home/mydir/Project//test/test.mod.o] Error 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you any suggestion??&lt;/P&gt;&lt;P&gt;Thank you very much!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Aug 2012 13:09:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Error-compiling-very-simple-Kernel-module/m-p/184658#M8453</guid>
      <dc:creator>Matteo</dc:creator>
      <dc:date>2012-08-30T13:09:09Z</dc:date>
    </item>
    <item>
      <title>Re: Error compiling very simple Kernel module</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Error-compiling-very-simple-Kernel-module/m-p/184659#M8454</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've tested exact same source code on my iMX28 environment and no trouble to build test.ko.&lt;/P&gt;&lt;P&gt;It seems like you failed to include proper header files (linux/module.h).&lt;/P&gt;&lt;P&gt;export KBUILD_VERBOSE=1 then make may help; it will dump full command line options of gcc. Check if correct Kernel path is specified in -I option.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Aug 2012 20:47:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Error-compiling-very-simple-Kernel-module/m-p/184659#M8454</guid>
      <dc:creator>YS</dc:creator>
      <dc:date>2012-08-30T20:47:22Z</dc:date>
    </item>
    <item>
      <title>Re: Error compiling very simple Kernel module</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Error-compiling-very-simple-Kernel-module/m-p/184660#M8455</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi and thanks for your reply.&lt;/P&gt;&lt;P&gt;I try to delete the header file module.h from directory /ltib/rpm/BUILD/linux/include and cross compile again. The compiler reports below error:&lt;/P&gt;&lt;P&gt;error: linux/modules.h: No such file or directory&lt;/P&gt;&lt;P&gt;I think that I include the proper file from linux kernel. It is possible that I wrong the make instruction or have a wrong Makefile? My Makefile is this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;obj-m := prova.o&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I installed LTIB I followed the freescale user guide and I'm able of build linux kernel and launch it in the i.mx28EVK.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2012 13:03:24 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Error-compiling-very-simple-Kernel-module/m-p/184660#M8455</guid>
      <dc:creator>Matteo</dc:creator>
      <dc:date>2012-08-31T13:03:24Z</dc:date>
    </item>
    <item>
      <title>Re: Error compiling very simple Kernel module</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Error-compiling-very-simple-Kernel-module/m-p/184661#M8456</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is Makefile I've tested.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;obj-m:=$(MODULES)&lt;BR /&gt;CROSS_COMPILE=arm-linux-&lt;BR /&gt;ARCH=arm&lt;BR /&gt;&lt;BR /&gt;MAKEARCH=$(MAKE) ARCH=$(ARCH) CROSS_COMPILE=$(CROSS_COMPILE)&lt;BR /&gt;all:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(MAKEARCH) -C $(KERNEL_SRC) SUBDIRS=$(BUILD_DIR) modules&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2012 16:09:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Error-compiling-very-simple-Kernel-module/m-p/184661#M8456</guid>
      <dc:creator>YS</dc:creator>
      <dc:date>2012-08-31T16:09:54Z</dc:date>
    </item>
    <item>
      <title>Re: Error compiling very simple Kernel module</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Error-compiling-very-simple-Kernel-module/m-p/184662#M8457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;obj-m := prova.o&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The kernel includes support modules? Check&lt;/P&gt;&lt;P&gt;$ grep "CONFIG_MODULES" /home/mydir/imx28/ltib/rpm/BUILD/linux-2.6.35.3/.config&lt;/P&gt;&lt;P&gt;CONFIG_MODULES=y&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2012 16:44:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Error-compiling-very-simple-Kernel-module/m-p/184662#M8457</guid>
      <dc:creator>Sasamy</dc:creator>
      <dc:date>2012-08-31T16:44:31Z</dc:date>
    </item>
    <item>
      <title>Re: Error compiling very simple Kernel module</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Error-compiling-very-simple-Kernel-module/m-p/184663#M8458</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, Alexander!&lt;/P&gt;&lt;P&gt;I use next Makefile:&lt;/P&gt;&lt;P&gt;OV2715 := ov2715&lt;BR /&gt;&lt;BR /&gt;obj-m += $(OV2715).o&lt;BR /&gt;&lt;BR /&gt;all:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(MAKE) --directory=$(LINUX_DIR) M=$(shell pwd) \&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ARCH=arm CROSS_COMPILE=$(CROSS) modules&lt;BR /&gt;&lt;BR /&gt;clean:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(RM) --recursive .tmp_versions *.o Module.symvers *.mod.c .*.cmd \&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; modules.order&lt;BR /&gt;&lt;BR /&gt;cleanall: clean&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(RM) *.ko&lt;BR /&gt;&lt;BR /&gt;.PHONY: clean cleanall&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Sep 2012 06:20:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Error-compiling-very-simple-Kernel-module/m-p/184663#M8458</guid>
      <dc:creator>BrilliantovKiri</dc:creator>
      <dc:date>2012-09-03T06:20:16Z</dc:date>
    </item>
    <item>
      <title>Re: Error compiling very simple Kernel module</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Error-compiling-very-simple-Kernel-module/m-p/184664#M8459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;I have solved my problem by following the suggestions of Alexander, whom I thank. I have set CONFIG_MODULES to y and I'm able to compile modules. Now I'm trying to run modules in the imx28EVK board through&amp;nbsp;the insmod commad, but the result is this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;root@freescale /$ insmod test.ko&lt;BR /&gt;insmod: can't insert 'test.ko': kernel does not support requested operation&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;test.ko is present in the rootfs and it's executable. Do you have any suggestion to solve my new problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks to all!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Sep 2012 13:23:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Error-compiling-very-simple-Kernel-module/m-p/184664#M8459</guid>
      <dc:creator>Matteo</dc:creator>
      <dc:date>2012-09-04T13:23:56Z</dc:date>
    </item>
    <item>
      <title>Re: Error compiling very simple Kernel module</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Error-compiling-very-simple-Kernel-module/m-p/184665#M8460</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello, Matteo! You rebuild and update linux after change config?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Sep 2012 13:32:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Error-compiling-very-simple-Kernel-module/m-p/184665#M8460</guid>
      <dc:creator>BrilliantovKiri</dc:creator>
      <dc:date>2012-09-04T13:32:54Z</dc:date>
    </item>
    <item>
      <title>Re: Error compiling very simple Kernel module</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Error-compiling-very-simple-Kernel-module/m-p/184666#M8461</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Brilliantov,&lt;/P&gt;&lt;P&gt;yes, I rebuilt and update linux kernel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Sep 2012 13:58:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Error-compiling-very-simple-Kernel-module/m-p/184666#M8461</guid>
      <dc:creator>Matteo</dc:creator>
      <dc:date>2012-09-04T13:58:10Z</dc:date>
    </item>
    <item>
      <title>Re: Error compiling very simple Kernel module</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Error-compiling-very-simple-Kernel-module/m-p/184667#M8462</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;the insmod problem is changed. Now when I type the command&lt;/P&gt;&lt;P&gt;insmod test.ko&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the result is:&lt;/P&gt;&lt;P&gt;insmod: can't insert 'test.ko': invalid module format&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Do you have any suggestion to solve my new problem?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;Thanks to all!!&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Sep 2012 12:51:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Error-compiling-very-simple-Kernel-module/m-p/184667#M8462</guid>
      <dc:creator>Matteo</dc:creator>
      <dc:date>2012-09-05T12:51:06Z</dc:date>
    </item>
    <item>
      <title>Re: Error compiling very simple Kernel module</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Error-compiling-very-simple-Kernel-module/m-p/184668#M8463</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Sep 2012 16:11:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Error-compiling-very-simple-Kernel-module/m-p/184668#M8463</guid>
      <dc:creator>ecm_temp</dc:creator>
      <dc:date>2012-09-10T16:11:21Z</dc:date>
    </item>
    <item>
      <title>Re: Error compiling very simple Kernel module</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Error-compiling-very-simple-Kernel-module/m-p/184669#M8464</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Hello Matteo,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;I met the same problem,too!&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; when I typed "insmod bq27501.ko",&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; the result is:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; insmod: can't insert 'bq27501.ko': kernel does not support requested operation&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; can you tell he how did you solve this problem ffinally?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jul 2013 08:28:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Error-compiling-very-simple-Kernel-module/m-p/184669#M8464</guid>
      <dc:creator>yanhongfeiyan</dc:creator>
      <dc:date>2013-07-24T08:28:59Z</dc:date>
    </item>
    <item>
      <title>Re: Error compiling very simple Kernel module</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Error-compiling-very-simple-Kernel-module/m-p/184670#M8465</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-weight: normal; font-style: normal; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; text-align: left; text-indent: 0px;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Hello Matteo,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: normal; font-style: normal; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; text-align: left; text-indent: 0px;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="Apple-converted-space"&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;I met the same problem,too!&lt;/P&gt;&lt;P style="font-weight: normal; font-style: normal; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; text-align: left; text-indent: 0px;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; when I typed "insmod bq27501.ko",&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: normal; font-style: normal; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; text-align: left; text-indent: 0px;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; the result is:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: normal; font-style: normal; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; text-align: left; text-indent: 0px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; insmod: can't insert 'bq27501.ko': kernel does not support requested operation&lt;/P&gt;&lt;P style="font-weight: normal; font-style: normal; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; text-align: left; text-indent: 0px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; can you tell he how did you solve this problem ffinally?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: normal; font-style: normal; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; text-align: left; text-indent: 0px;"&gt;thanks!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jul 2013 08:54:13 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Error-compiling-very-simple-Kernel-module/m-p/184670#M8465</guid>
      <dc:creator>yanhongfeiyan</dc:creator>
      <dc:date>2013-07-24T08:54:13Z</dc:date>
    </item>
  </channel>
</rss>

