<?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 Custom driver not building with the package in i.MX Processors</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/Custom-driver-not-building-with-the-package/m-p/537467#M85135</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am writing my own driver for switches for IMX6ulEVK. I followed the below steps while writing the driver&lt;/P&gt;&lt;OL style="list-style-type: decimal;"&gt;&lt;LI&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt;1. &lt;/SPAN&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt;Create a directory like my_drvr inside drivers(which is in the Linux source code) for your driver and put your driver (my_driver.c) file inside this directory. It will looks like &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729; background: #EFF0F1;"&gt;/linux_source_code/drivers/my_drvr/my_driver.c&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt;2. &lt;/SPAN&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt;Create one Makefile inside your driver directory (using vi any editor) and inside this put &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729; background: #EFF0F1;"&gt;obj-$(CONFIG_MY_DRIVER) += my_driver.o&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt; and save this file. This will appears like &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729; background: #EFF0F1;"&gt;/linux_source_code/drivers/my_drvr/Makefile&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt;3. &lt;/SPAN&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt;Create one &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729; background: #EFF0F1;"&gt;Kconfig&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt; file inside your driver directory (using vi any editor) and inside this put&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729;"&gt;4.&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729;"&gt;config MY_DRIVER&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729;"&gt;5.&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729;"&gt;tristate "my driver" //gives your driver description like vendor name etc.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729;"&gt;6.&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729;"&gt;depends on ARM&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729;"&gt;7.&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729;"&gt;default y if ARM&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729;"&gt;8.&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729;"&gt;help&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P style="margin-top: 6.0pt; margin-bottom: 12.0pt; margin-left: 22.5pt; background: #EFF0F1;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729;"&gt;&amp;nbsp; my driver module.&lt;/SPAN&gt;&lt;/P&gt;&lt;OL style="list-style-type: decimal;"&gt;&lt;LI&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt;9. &lt;/SPAN&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt;Save this file, this will appears like &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729; background: #EFF0F1;"&gt;/linux_source_code/drivers/my_drvr/Kconfig&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt;10. &lt;/SPAN&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt;Add both &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729; background: #EFF0F1;"&gt;Makefile&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt; and &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729; background: #EFF0F1;"&gt;Kconfig&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt; file in the Linux source drivers &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729; background: #EFF0F1;"&gt;Makefile&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt; and &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729; background: #EFF0F1;"&gt;Kconfig&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt; file which are at &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729; background: #EFF0F1;"&gt;/linux_source_code/drivers/Makefile&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt; and &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729; background: #EFF0F1;"&gt;/linux_source_code/drivers/Kconfig&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt;11. &lt;/SPAN&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt;In the Makefile add below in last line&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P style="margin-top: 6.0pt; margin-bottom: 12.0pt; margin-left: 22.5pt; background: #EFF0F1;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729;"&gt; obj-y += my_drvr/ &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-left: 22.5pt; margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt;or&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-top: 6.0pt; margin-bottom: 12.0pt; margin-left: 22.5pt; background: #EFF0F1;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729;"&gt; obj-$(CONFIG_MY_DRIVER)&amp;nbsp;&amp;nbsp; += my_drvr/&lt;/SPAN&gt;&lt;/P&gt;&lt;OL style="list-style-type: decimal;"&gt;&lt;LI&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt;12. &lt;/SPAN&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt;In Kconfig file add below in last line&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P style="margin-top: 6.0pt; margin-bottom: 12.0pt; margin-left: 22.5pt; background: #EFF0F1;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729;"&gt;source "drivers/my_drvr/Kconfig"&lt;/SPAN&gt;&lt;/P&gt;&lt;OL style="list-style-type: decimal;"&gt;&lt;LI&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt;13. &lt;/SPAN&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt;Finally have to add &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729; background: #EFF0F1;"&gt;Kconfig&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt; file into architecture specific config file which will be at &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729; background: #EFF0F1;"&gt;kernel_source/arch/arm/configs/--defconfig&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt; in this add below line in the last&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P style="margin-top: 6.0pt; margin-bottom: 12.0pt; margin-left: 22.5pt; background: #EFF0F1;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729;"&gt;CONFIG_MY_DRIVER=y&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729;"&gt;After compiling the kernel using bitbake linux-imx i am able to see my driver gopt compiled and .ko file is generated. But it is&lt;STRONG&gt; not&lt;/STRONG&gt; included in the sdcard package. Is there anything I need to do additionally other than the above steps. I am using bitbake core-image-base for 3.14.38 bsp version&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 Jul 2016 09:00:33 GMT</pubDate>
    <dc:creator>chandraevolute</dc:creator>
    <dc:date>2016-07-25T09:00:33Z</dc:date>
    <item>
      <title>Custom driver not building with the package</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Custom-driver-not-building-with-the-package/m-p/537467#M85135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am writing my own driver for switches for IMX6ulEVK. I followed the below steps while writing the driver&lt;/P&gt;&lt;OL style="list-style-type: decimal;"&gt;&lt;LI&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt;1. &lt;/SPAN&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt;Create a directory like my_drvr inside drivers(which is in the Linux source code) for your driver and put your driver (my_driver.c) file inside this directory. It will looks like &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729; background: #EFF0F1;"&gt;/linux_source_code/drivers/my_drvr/my_driver.c&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt;2. &lt;/SPAN&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt;Create one Makefile inside your driver directory (using vi any editor) and inside this put &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729; background: #EFF0F1;"&gt;obj-$(CONFIG_MY_DRIVER) += my_driver.o&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt; and save this file. This will appears like &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729; background: #EFF0F1;"&gt;/linux_source_code/drivers/my_drvr/Makefile&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt;3. &lt;/SPAN&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt;Create one &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729; background: #EFF0F1;"&gt;Kconfig&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt; file inside your driver directory (using vi any editor) and inside this put&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729;"&gt;4.&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729;"&gt;config MY_DRIVER&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729;"&gt;5.&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729;"&gt;tristate "my driver" //gives your driver description like vendor name etc.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729;"&gt;6.&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729;"&gt;depends on ARM&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729;"&gt;7.&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729;"&gt;default y if ARM&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729;"&gt;8.&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729;"&gt;help&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P style="margin-top: 6.0pt; margin-bottom: 12.0pt; margin-left: 22.5pt; background: #EFF0F1;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729;"&gt;&amp;nbsp; my driver module.&lt;/SPAN&gt;&lt;/P&gt;&lt;OL style="list-style-type: decimal;"&gt;&lt;LI&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt;9. &lt;/SPAN&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt;Save this file, this will appears like &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729; background: #EFF0F1;"&gt;/linux_source_code/drivers/my_drvr/Kconfig&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt;10. &lt;/SPAN&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt;Add both &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729; background: #EFF0F1;"&gt;Makefile&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt; and &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729; background: #EFF0F1;"&gt;Kconfig&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt; file in the Linux source drivers &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729; background: #EFF0F1;"&gt;Makefile&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt; and &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729; background: #EFF0F1;"&gt;Kconfig&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt; file which are at &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729; background: #EFF0F1;"&gt;/linux_source_code/drivers/Makefile&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt; and &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729; background: #EFF0F1;"&gt;/linux_source_code/drivers/Kconfig&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt;11. &lt;/SPAN&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt;In the Makefile add below in last line&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P style="margin-top: 6.0pt; margin-bottom: 12.0pt; margin-left: 22.5pt; background: #EFF0F1;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729;"&gt; obj-y += my_drvr/ &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-left: 22.5pt; margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt;or&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-top: 6.0pt; margin-bottom: 12.0pt; margin-left: 22.5pt; background: #EFF0F1;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729;"&gt; obj-$(CONFIG_MY_DRIVER)&amp;nbsp;&amp;nbsp; += my_drvr/&lt;/SPAN&gt;&lt;/P&gt;&lt;OL style="list-style-type: decimal;"&gt;&lt;LI&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt;12. &lt;/SPAN&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt;In Kconfig file add below in last line&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P style="margin-top: 6.0pt; margin-bottom: 12.0pt; margin-left: 22.5pt; background: #EFF0F1;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729;"&gt;source "drivers/my_drvr/Kconfig"&lt;/SPAN&gt;&lt;/P&gt;&lt;OL style="list-style-type: decimal;"&gt;&lt;LI&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt;13. &lt;/SPAN&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt;Finally have to add &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729; background: #EFF0F1;"&gt;Kconfig&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt; file into architecture specific config file which will be at &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729; background: #EFF0F1;"&gt;kernel_source/arch/arm/configs/--defconfig&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.5pt; font-family: 'Arial',sans-serif; color: #242729;"&gt; in this add below line in the last&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P style="margin-top: 6.0pt; margin-bottom: 12.0pt; margin-left: 22.5pt; background: #EFF0F1;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729;"&gt;CONFIG_MY_DRIVER=y&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #242729;"&gt;After compiling the kernel using bitbake linux-imx i am able to see my driver gopt compiled and .ko file is generated. But it is&lt;STRONG&gt; not&lt;/STRONG&gt; included in the sdcard package. Is there anything I need to do additionally other than the above steps. I am using bitbake core-image-base for 3.14.38 bsp version&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2016 09:00:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Custom-driver-not-building-with-the-package/m-p/537467#M85135</guid>
      <dc:creator>chandraevolute</dc:creator>
      <dc:date>2016-07-25T09:00:33Z</dc:date>
    </item>
    <item>
      <title>Re: Custom driver not building with the package</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Custom-driver-not-building-with-the-package/m-p/537468#M85136</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'd like to share my rebuild script here&lt;/P&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;&lt;P&gt;#!/bin/sh&lt;/P&gt;&lt;P&gt;rm tmp/stamps/imx6sxsabresd-poky-linux-gnueabi/linux-imx/3.14.28-r0.do_compile.*&lt;/P&gt;&lt;P&gt;bitbake linux-imx -c compile&lt;/P&gt;&lt;P&gt;if [ $? -ne 0 ];then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; exit&lt;/P&gt;&lt;P&gt;fi&lt;/P&gt;&lt;P&gt;rm sstate-cache/ab/sstate:linux-imx:imx6sxsabresd-poky-linux-gnueabi:3.14.28:r0:imx6sxsabresd:3:abcaddfad744af88c57ba3e6769b28dc_deploy.tgz&lt;/P&gt;&lt;P&gt;rm tmp/stamps/imx6sxsabresd-poky-linux-gnueabi/linux-imx/3.14.28-r0.do_deploy.abcaddfad744af88c57ba3e6769b28dc&lt;/P&gt;&lt;P&gt;rm tmp/stamps/imx6sxsabresd-poky-linux-gnueabi/linux-imx/3.14.28-r0.do_deploy_setscene.abcaddfad744af88c57ba3e6769b28dc&lt;/P&gt;&lt;P&gt;bitbake linux-imx -c deploy&lt;/P&gt;&lt;P&gt;if [ $? -ne 0 ];then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; exit&lt;/P&gt;&lt;P&gt;fi&lt;/P&gt;&lt;P&gt;rm tmp/stamps/imx6sxsabresd-poky-linux-gnueabi/core-image-minimal/1.0-r0.do_rootfs.*&lt;/P&gt;&lt;P&gt;bitbake core-image-minimal&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;and I don't like "bitbake&amp;nbsp; xxxxx&amp;nbsp; &lt;STRONG&gt;-f&lt;/STRONG&gt;"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2016 09:41:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Custom-driver-not-building-with-the-package/m-p/537468#M85136</guid>
      <dc:creator>qinghuazhu</dc:creator>
      <dc:date>2016-07-25T09:41:09Z</dc:date>
    </item>
    <item>
      <title>Re: Custom driver not building with the package</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Custom-driver-not-building-with-the-package/m-p/537469#M85137</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you very much for the script. &lt;/P&gt;&lt;P&gt;will the above script will make sure that my custom driver and added with final image &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2016 10:48:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Custom-driver-not-building-with-the-package/m-p/537469#M85137</guid>
      <dc:creator>chandraevolute</dc:creator>
      <dc:date>2016-07-25T10:48:50Z</dc:date>
    </item>
    <item>
      <title>Re: Custom driver not building with the package</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Custom-driver-not-building-with-the-package/m-p/537470#M85138</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Chandra, did you try the script from Qinghua?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Aug 2016 17:15:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Custom-driver-not-building-with-the-package/m-p/537470#M85138</guid>
      <dc:creator>SergioSolis</dc:creator>
      <dc:date>2016-08-19T17:15:45Z</dc:date>
    </item>
    <item>
      <title>Re: Custom driver not building with the package</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Custom-driver-not-building-with-the-package/m-p/537471#M85139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes tried and it is working with minor changes &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 20 Aug 2016 05:21:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Custom-driver-not-building-with-the-package/m-p/537471#M85139</guid>
      <dc:creator>chandraevolute</dc:creator>
      <dc:date>2016-08-20T05:21:46Z</dc:date>
    </item>
  </channel>
</rss>

