<?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>i.MX ProcessorsのトピックSimple linux kernel module build error with yocto external sdk</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/Simple-linux-kernel-module-build-error-with-yocto-external-sdk/m-p/1191618#M165779</link>
    <description>&lt;P&gt;Greetings, Colleagues!&lt;/P&gt;&lt;P&gt;I'm trying to build simple hello-world linux kernel module using yocto external sdk for i.MX8QuadPlus (MEK board) and currently stuck at compilation error:&lt;/P&gt;&lt;P&gt;ysfedorov@LAPTOP-TU9D1V4V:~/my_c$ make&lt;BR /&gt;make -C /opt/fsl-imx-xwayland/5.4-zeus/sysroots/aarch64-poky-linux/usr/src/kernel M=/home/ysfedorov/my_c modules&lt;BR /&gt;make[1]: Entering directory '/opt/fsl-imx-xwayland/5.4-zeus/sysroots/aarch64-poky-linux/lib/modules/5.4.47-2.2.0+g5ec03d06f54e/build'&lt;BR /&gt;&amp;nbsp; &amp;nbsp; CC [M] /home/ysfedorov/my_c/my_module.o&lt;BR /&gt;In file included from ./include/linux/types.h:6,&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; from ./include/linux/list.h:5,&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; from ./include/linux/module.h:9,&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; from /home/ysfedorov/my_c/my_module.c:1:&lt;BR /&gt;./include/uapi/linux/types.h:5:10: fatal error: asm/types.h: No such file or directory&lt;BR /&gt;&amp;nbsp; &amp;nbsp; 5 | #include &amp;lt;asm/types.h&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;| ^~~~~~~~~~~~~&lt;BR /&gt;compilation terminated.&lt;BR /&gt;make[2]: *** [scripts/Makefile.build:266: /home/ysfedorov/my_c/my_module.o] Error 1&lt;BR /&gt;make[1]: *** [Makefile:1703: /home/ysfedorov/my_c] Error 2&lt;BR /&gt;make[1]: Leaving directory '/opt/fsl-imx-xwayland/5.4-zeus/sysroots/aarch64-poky-linux/lib/modules/5.4.47-2.2.0+g5ec03d06f54e/build'&lt;BR /&gt;make: *** [Makefile:6: all] Error 2&lt;/P&gt;&lt;P&gt;What i've done:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;add to conf/local.conf TOOLCHAIN_TARGET_TASK_append&lt;SPAN&gt;&amp;nbsp;=&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"&amp;nbsp;kernel-devsrc" in order to build sdk with the kernel sources&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;used "bitbake core-image-minimal -c populate_sdk" to build sdk&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;installed it to default location (/opt/..)&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;after install cd to ~/my_c folder and source&amp;nbsp;/opt/fsl-imx-xwayland/5.4-zeus/environment-setup-aarch64-poky-linux&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;and run "make" command (ARCH and CROSS_COMPILE has been defined by setup script)&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN&gt;Source file hello.c:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;#include &amp;lt;linux/module.h&amp;gt;

static int __init hello_init(void)
{
    pr_info("hello from init\n");
    return 0;
}

static void __exit hello_exit(void)
{
    pr_info("hello from exit\n");
}

module_init(hello_init);
module_exit(hello_exit);

MODULE_LICENCE("GPL");
MODULE_AUTHOR("ysfedorov");
MODULE_DESCRIPTION("This is simple hello world example of module");&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Makefile:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;obj-m&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;+= hello.o&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;KERNEL_DIR&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;?=&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;$(&lt;/SPAN&gt;&lt;SPAN&gt;SDKTARGETSYSROOT&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&gt;/usr/src/kernel&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;all&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;make&amp;nbsp;-C&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;$(&lt;/SPAN&gt;&lt;SPAN&gt;KERNEL_DIR&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;M=&lt;/SPAN&gt;&lt;SPAN&gt;$(&lt;/SPAN&gt;&lt;SPAN&gt;PWD&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;modules&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;clean&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;make&amp;nbsp;-C&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;$(&lt;/SPAN&gt;&lt;SPAN&gt;KERNEL_DIR&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;M=&lt;/SPAN&gt;&lt;SPAN&gt;$(&lt;/SPAN&gt;&lt;SPAN&gt;PWD&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;clean&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;I've tried replace CC variables in kernel Makefile to variables from environment setup - still got that error.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;What did i miss? Is there any additional setup steps i need to do?&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Any help will be appreciated!&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Tue, 01 Dec 2020 12:33:10 GMT</pubDate>
    <dc:creator>YuriF</dc:creator>
    <dc:date>2020-12-01T12:33:10Z</dc:date>
    <item>
      <title>Simple linux kernel module build error with yocto external sdk</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Simple-linux-kernel-module-build-error-with-yocto-external-sdk/m-p/1191618#M165779</link>
      <description>&lt;P&gt;Greetings, Colleagues!&lt;/P&gt;&lt;P&gt;I'm trying to build simple hello-world linux kernel module using yocto external sdk for i.MX8QuadPlus (MEK board) and currently stuck at compilation error:&lt;/P&gt;&lt;P&gt;ysfedorov@LAPTOP-TU9D1V4V:~/my_c$ make&lt;BR /&gt;make -C /opt/fsl-imx-xwayland/5.4-zeus/sysroots/aarch64-poky-linux/usr/src/kernel M=/home/ysfedorov/my_c modules&lt;BR /&gt;make[1]: Entering directory '/opt/fsl-imx-xwayland/5.4-zeus/sysroots/aarch64-poky-linux/lib/modules/5.4.47-2.2.0+g5ec03d06f54e/build'&lt;BR /&gt;&amp;nbsp; &amp;nbsp; CC [M] /home/ysfedorov/my_c/my_module.o&lt;BR /&gt;In file included from ./include/linux/types.h:6,&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; from ./include/linux/list.h:5,&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; from ./include/linux/module.h:9,&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; from /home/ysfedorov/my_c/my_module.c:1:&lt;BR /&gt;./include/uapi/linux/types.h:5:10: fatal error: asm/types.h: No such file or directory&lt;BR /&gt;&amp;nbsp; &amp;nbsp; 5 | #include &amp;lt;asm/types.h&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;| ^~~~~~~~~~~~~&lt;BR /&gt;compilation terminated.&lt;BR /&gt;make[2]: *** [scripts/Makefile.build:266: /home/ysfedorov/my_c/my_module.o] Error 1&lt;BR /&gt;make[1]: *** [Makefile:1703: /home/ysfedorov/my_c] Error 2&lt;BR /&gt;make[1]: Leaving directory '/opt/fsl-imx-xwayland/5.4-zeus/sysroots/aarch64-poky-linux/lib/modules/5.4.47-2.2.0+g5ec03d06f54e/build'&lt;BR /&gt;make: *** [Makefile:6: all] Error 2&lt;/P&gt;&lt;P&gt;What i've done:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;add to conf/local.conf TOOLCHAIN_TARGET_TASK_append&lt;SPAN&gt;&amp;nbsp;=&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"&amp;nbsp;kernel-devsrc" in order to build sdk with the kernel sources&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;used "bitbake core-image-minimal -c populate_sdk" to build sdk&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;installed it to default location (/opt/..)&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;after install cd to ~/my_c folder and source&amp;nbsp;/opt/fsl-imx-xwayland/5.4-zeus/environment-setup-aarch64-poky-linux&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;and run "make" command (ARCH and CROSS_COMPILE has been defined by setup script)&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN&gt;Source file hello.c:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;#include &amp;lt;linux/module.h&amp;gt;

static int __init hello_init(void)
{
    pr_info("hello from init\n");
    return 0;
}

static void __exit hello_exit(void)
{
    pr_info("hello from exit\n");
}

module_init(hello_init);
module_exit(hello_exit);

MODULE_LICENCE("GPL");
MODULE_AUTHOR("ysfedorov");
MODULE_DESCRIPTION("This is simple hello world example of module");&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Makefile:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;obj-m&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;+= hello.o&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;KERNEL_DIR&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;?=&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;$(&lt;/SPAN&gt;&lt;SPAN&gt;SDKTARGETSYSROOT&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&gt;/usr/src/kernel&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;all&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;make&amp;nbsp;-C&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;$(&lt;/SPAN&gt;&lt;SPAN&gt;KERNEL_DIR&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;M=&lt;/SPAN&gt;&lt;SPAN&gt;$(&lt;/SPAN&gt;&lt;SPAN&gt;PWD&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;modules&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;clean&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;make&amp;nbsp;-C&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;$(&lt;/SPAN&gt;&lt;SPAN&gt;KERNEL_DIR&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;M=&lt;/SPAN&gt;&lt;SPAN&gt;$(&lt;/SPAN&gt;&lt;SPAN&gt;PWD&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;clean&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;I've tried replace CC variables in kernel Makefile to variables from environment setup - still got that error.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;What did i miss? Is there any additional setup steps i need to do?&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Any help will be appreciated!&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 01 Dec 2020 12:33:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Simple-linux-kernel-module-build-error-with-yocto-external-sdk/m-p/1191618#M165779</guid>
      <dc:creator>YuriF</dc:creator>
      <dc:date>2020-12-01T12:33:10Z</dc:date>
    </item>
    <item>
      <title>Re: Simple linux kernel module build error with yocto external sdk</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Simple-linux-kernel-module-build-error-with-yocto-external-sdk/m-p/1191685#M165786</link>
      <description>&lt;P&gt;Hello YuriF,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You must correct the path of include/uapi/linux/types and you compile your project.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Dec 2020 14:40:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Simple-linux-kernel-module-build-error-with-yocto-external-sdk/m-p/1191685#M165786</guid>
      <dc:creator>Bio_TICFSL</dc:creator>
      <dc:date>2020-12-01T14:40:50Z</dc:date>
    </item>
    <item>
      <title>Re: Simple linux kernel module build error with yocto external sdk</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Simple-linux-kernel-module-build-error-with-yocto-external-sdk/m-p/1193298#M165937</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;SPAN class=""&gt;Bio_TICFSL&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;Thanks for your reply. Would you tell me what exactly path must be?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;If try compile source like ordinary user application with $(CC) hello.c -o hello it will pass includes but break further at unknown symbols (__init) so it knows how to resolve/find any needed headers.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Dec 2020 14:29:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Simple-linux-kernel-module-build-error-with-yocto-external-sdk/m-p/1193298#M165937</guid>
      <dc:creator>YuriF</dc:creator>
      <dc:date>2020-12-03T14:29:59Z</dc:date>
    </item>
    <item>
      <title>Re: Simple linux kernel module build error with yocto external sdk</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Simple-linux-kernel-module-build-error-with-yocto-external-sdk/m-p/1258280#M172213</link>
      <description>&lt;P&gt;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/180773"&gt;@YuriF&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Did you figure this out. I see this issue too.&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/34846"&gt;@Bio_TICFSL&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;any additional info you can provide?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Dan&lt;/P&gt;</description>
      <pubDate>Wed, 07 Apr 2021 20:41:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Simple-linux-kernel-module-build-error-with-yocto-external-sdk/m-p/1258280#M172213</guid>
      <dc:creator>dan_hilgert</dc:creator>
      <dc:date>2021-04-07T20:41:12Z</dc:date>
    </item>
    <item>
      <title>Re: Simple linux kernel module build error with yocto external sdk</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Simple-linux-kernel-module-build-error-with-yocto-external-sdk/m-p/1258344#M172216</link>
      <description>&lt;P&gt;I think I figured it out.&lt;/P&gt;&lt;P&gt;It looks like there are a number of paths that need to be changed from asm to&amp;nbsp;&lt;SPAN&gt;asm-generic.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I believe this is what&amp;nbsp;Bio_TICFSL&amp;nbsp; was referring to.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Apr 2021 22:12:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Simple-linux-kernel-module-build-error-with-yocto-external-sdk/m-p/1258344#M172216</guid>
      <dc:creator>dan_hilgert</dc:creator>
      <dc:date>2021-04-07T22:12:45Z</dc:date>
    </item>
    <item>
      <title>Re: Simple linux kernel module build error with yocto external sdk</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Simple-linux-kernel-module-build-error-with-yocto-external-sdk/m-p/1260580#M172451</link>
      <description>&lt;P&gt;I was wrong and am not sure what&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/180773"&gt;@YuriF&lt;/a&gt;&amp;nbsp; was saying.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is what I did to resolve the issue.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Install Yocto SDK on host machine in default location&lt;/LI&gt;&lt;LI&gt;cd &amp;lt;sdk-install-path&amp;gt;/sysroots/&amp;lt;mach&amp;gt;/usr/src/kernel&lt;UL&gt;&lt;LI&gt;My specific machine was&amp;nbsp;&lt;UL&gt;&lt;LI&gt;cd /opt/fsl-imx-xwayland/4.19-thud/sysroots/aarch64-poky-linux/usr/src/kernel&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;sudo bash -c "source /opt/fsl-imx-xwayland/4.19-thud/environment-setup-aarch64-poky-linux &amp;amp;&amp;amp; make syncconfig scripts"&lt;UL&gt;&lt;LI&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dan_hilgert_0-1618233178186.png" style="width: 999px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/142027i22C9CE89F931A226/image-size/large?v=v2&amp;amp;px=999" role="button" title="dan_hilgert_0-1618233178186.png" alt="dan_hilgert_0-1618233178186.png" /&gt;&lt;/span&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/OL&gt;</description>
      <pubDate>Mon, 12 Apr 2021 13:13:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Simple-linux-kernel-module-build-error-with-yocto-external-sdk/m-p/1260580#M172451</guid>
      <dc:creator>dan_hilgert</dc:creator>
      <dc:date>2021-04-12T13:13:17Z</dc:date>
    </item>
  </channel>
</rss>

