<?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のトピックRe: How to add custom board entry in Android source code?</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/How-to-add-custom-board-entry-in-Android-source-code/m-p/571896#M87641</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sir,&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;P&gt;I Added the Board entry as per the above post and I am getting the bootloader image and kernel image in my myandroid/out directory .&lt;/P&gt;&lt;P&gt;But I am not getting the recovery and system image .&lt;/P&gt;&lt;P&gt;Do I need to modify any other files apart from the above post like recovery folder etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly guide me regarding this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Hrushi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 03 Sep 2016 06:07:28 GMT</pubDate>
    <dc:creator>hrushinale</dc:creator>
    <dc:date>2016-09-03T06:07:28Z</dc:date>
    <item>
      <title>How to add custom board entry in Android source code?</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/How-to-add-custom-board-entry-in-Android-source-code/m-p/571893#M87638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Community,&lt;/P&gt;&lt;P&gt;&amp;nbsp; We are using a custom board running on i.MX6 solo.We have successfully ported the Embedded Linux on our board.&lt;/P&gt;&lt;P&gt;Now,we want to port the android .For that we followed the Android USers Guide but in that they mentioned the Image building procedure for development boards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to build the Android Images for our custom borad but I don't know How to add our new boards entry in Android source code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly help me regarding this issue&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Hrushi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Aug 2016 10:19:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/How-to-add-custom-board-entry-in-Android-source-code/m-p/571893#M87638</guid>
      <dc:creator>hrushinale</dc:creator>
      <dc:date>2016-08-30T10:19:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to add custom board entry in Android source code?</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/How-to-add-custom-board-entry-in-Android-source-code/m-p/571894#M87639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Hrushi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; It is not difficult to add a new board to android source code if your board is based on i.MX6 evaluation board, I only give you general steps, see below:&lt;/P&gt;&lt;P&gt;asume your board's name is: MX6Q_MyBoard&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(1)Creating directory For the board&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Open "myandroid/device/fsl/", and create a directory named "MX6Q_MyBoard".&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="Create-name.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/3472i74A51210AB4237EE/image-size/large?v=v2&amp;amp;px=999" role="button" title="Create-name.png" alt="Create-name.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(2)Copying all files in sabresd_6dq to the directory&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;If your board is based on sabread EVK, copy all file in sabresd_6dq to MX6Q_MyBoard&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="Copy-files.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/3606iF682024C1F04D070/image-size/large?v=v2&amp;amp;px=999" role="button" title="Copy-files.png" alt="Copy-files.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(3)Changing configurations in BoardConfig.mk to yours&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Check the file carefully, and modify some contents, such as device/fsl/sabresd_6dq, it should be changed to device/fsl/MX6Q_MyBoad, TARGET_BOOTLOADER_BOARD_NAME := SABRESD to&amp;nbsp; TARGET_BOOTLOADER_BOARD_NAME := MyBoard, etc. That is to say, you should change all information on sabresd to be yours.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(4)Add your products to AndroidProducts.mk&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Open device/fsl/imx6/AndroidProducts.mk, and add it in:&lt;/P&gt;&lt;P&gt;PRODUCT_MAKEFILES := \&lt;BR /&gt;&amp;nbsp; $(LOCAL_DIR)/evk_6sl.mk \&lt;BR /&gt;&amp;nbsp; $(LOCAL_DIR)/sabreauto_6q.mk \&lt;BR /&gt;&amp;nbsp; $(LOCAL_DIR)/sabresd_6dq.mk \&lt;BR /&gt;&amp;nbsp; $(LOCAL_DIR)/sabresd_6sx.mk \&lt;BR /&gt;&amp;nbsp; $(LOCAL_DIR)/sabreauto_6sx.mk \&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; $(LOCAL_DIR)/MX6Q_MyBoard.mk \&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(5)Creating MX6Q_MyBoard.mk file in current directory&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;In device/fsl/imx6 path, create MX6Q_MyBoard.mk file, and copy all contents of sabresd_6dq.mk to it.&lt;/P&gt;&lt;P&gt;Then according to your schematic, adjust correcponding configurations, don't forget it.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(6)Adding your products to vendorsetup.sh&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Open the file , and add 2 lines at the end:&lt;/P&gt;&lt;P&gt;......&lt;/P&gt;&lt;P&gt;add_lunch_combo MX6Q_MyBoard-eng&lt;BR /&gt;add_lunch_combo MX6Q_MyBoard-user&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; OK, generally speaking, you need to do above 6 steps, then your products can be compiled independently, but don't forget to modify configurations to be in accord with your board.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Hope these steps are helpful for you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Weidong&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Aug 2016 04:26:42 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/How-to-add-custom-board-entry-in-Android-source-code/m-p/571894#M87639</guid>
      <dc:creator>weidong_sun</dc:creator>
      <dc:date>2016-08-31T04:26:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to add custom board entry in Android source code?</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/How-to-add-custom-board-entry-in-Android-source-code/m-p/571895#M87640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks You So much for your Guidance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Aug 2016 08:20:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/How-to-add-custom-board-entry-in-Android-source-code/m-p/571895#M87640</guid>
      <dc:creator>hrushinale</dc:creator>
      <dc:date>2016-08-31T08:20:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to add custom board entry in Android source code?</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/How-to-add-custom-board-entry-in-Android-source-code/m-p/571896#M87641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sir,&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;P&gt;I Added the Board entry as per the above post and I am getting the bootloader image and kernel image in my myandroid/out directory .&lt;/P&gt;&lt;P&gt;But I am not getting the recovery and system image .&lt;/P&gt;&lt;P&gt;Do I need to modify any other files apart from the above post like recovery folder etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly guide me regarding this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Hrushi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 03 Sep 2016 06:07:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/How-to-add-custom-board-entry-in-Android-source-code/m-p/571896#M87641</guid>
      <dc:creator>hrushinale</dc:creator>
      <dc:date>2016-09-03T06:07:28Z</dc:date>
    </item>
  </channel>
</rss>

