<?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: Kernel Compile manually for YOCTO in i.MX Processors</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/Kernel-Compile-manually-for-YOCTO/m-p/488107#M78161</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hasitha&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for hdmi and lcd kernel configurations one can look at&lt;/P&gt;&lt;P&gt;attached Linux Manual Chapter8, 16. Also useful to check&lt;/P&gt;&lt;P&gt;boundary devices web page devoted to configuration of various lcds:&lt;/P&gt;&lt;P&gt;&lt;A href="https://boundarydevices.com/configuring-i-mx6-machines-different-screens-nitrogen6x-sabre-lite/" title="https://boundarydevices.com/configuring-i-mx6-machines-different-screens-nitrogen6x-sabre-lite/"&gt;https://boundarydevices.com/configuring-i-mx6-machines-different-screens-nitrogen6x-sabre-lite/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;igor&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 21 Mar 2016 09:39:33 GMT</pubDate>
    <dc:creator>igorpadykov</dc:creator>
    <dc:date>2016-03-21T09:39:33Z</dc:date>
    <item>
      <title>Kernel Compile manually for YOCTO</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Kernel-Compile-manually-for-YOCTO/m-p/488106#M78160</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am going to compile kernel manually for yocto Linux environment.&lt;/P&gt;&lt;P&gt;1. I download recipe file from&amp;nbsp; &lt;A href="https://github.com/Freescale/meta-fsl-arm-extra" title="https://github.com/Freescale/meta-fsl-arm-extra"&gt;https://github.com/Freescale/meta-fsl-arm-extra &lt;/A&gt;&lt;/P&gt;&lt;P&gt;and bitbake 3.14.28 kernel without any problem and install it to on sabre lite board.&lt;/P&gt;&lt;P&gt;2. Then i try to compile 3.14.28 kernel manually. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; . Install toolchain to YOCT environment&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; . get linux-3.14.tar.xz source from ~/fsl-release-bsp/downloads&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .Extract it&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; . go to linux-3.14 directory and run following commands&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $export ARCH=arm&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $export CROSS_COMPILE=arm-poky-linux-gnueabi-&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $make imx_v6_v7_defconfig&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $export PATH=$PATH:/opt/poky/1.6.2/sysroots/x86_64-pokysdk-linux/usr/bin/arm-poky-linux-gnueabi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $make&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $make uImage LOADADDR=0x10008000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; . Copy images to boot partition of SD card of sabre lite device.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $cp arch/arm/boot/uImage arch/arm/boot/dts/imx6q-sabrelite.dtb &amp;lt;boot partition&amp;gt;&lt;/P&gt;&lt;P&gt;All steps work fine and but have a problem with a display.&lt;/P&gt;&lt;P&gt;I have 2 display units (sabre lite display and HDMI monitor )&lt;/P&gt;&lt;P&gt;In step 1 we have display on HDMI monitor only.&lt;/P&gt;&lt;P&gt;In step 2 we have display on sabre lite display only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to get display on HDMI monitor in step 2 .&lt;/P&gt;&lt;P&gt;Ultimate goal of my work is compile latest kernel and install it on SD card of sabre lite device with a&amp;nbsp; HDMI monitor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In step 1 there are 2 Framebuffer device under /dev folder(fb0 and fb1) but in step 2 there is only one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;campier the configuration of above two steps and found that there is no "MXC support drivers setting" on step 2 configuration.&lt;/P&gt;&lt;P&gt;Seems that "MXC support drivers" setting is need in configuration to get display on HDMI monitor in step 2 . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How should i get MXC support drivers setting in step 2 configuration or Get display on HDMI monitor in step 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Mar 2016 09:25:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Kernel-Compile-manually-for-YOCTO/m-p/488106#M78160</guid>
      <dc:creator>hasithaperera</dc:creator>
      <dc:date>2016-03-18T09:25:56Z</dc:date>
    </item>
    <item>
      <title>Re: Kernel Compile manually for YOCTO</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Kernel-Compile-manually-for-YOCTO/m-p/488107#M78161</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hasitha&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for hdmi and lcd kernel configurations one can look at&lt;/P&gt;&lt;P&gt;attached Linux Manual Chapter8, 16. Also useful to check&lt;/P&gt;&lt;P&gt;boundary devices web page devoted to configuration of various lcds:&lt;/P&gt;&lt;P&gt;&lt;A href="https://boundarydevices.com/configuring-i-mx6-machines-different-screens-nitrogen6x-sabre-lite/" title="https://boundarydevices.com/configuring-i-mx6-machines-different-screens-nitrogen6x-sabre-lite/"&gt;https://boundarydevices.com/configuring-i-mx6-machines-different-screens-nitrogen6x-sabre-lite/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;igor&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Mar 2016 09:39:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Kernel-Compile-manually-for-YOCTO/m-p/488107#M78161</guid>
      <dc:creator>igorpadykov</dc:creator>
      <dc:date>2016-03-21T09:39:33Z</dc:date>
    </item>
  </channel>
</rss>

