<?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: Custom recipe for YOCTO</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/Custom-recipe-for-YOCTO/m-p/424297#M64136</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Daiane,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mount -t cifs //10.20.1.123/share /home/root/smbshare -o username=blahblah,password=blahblah,rw,file_mode=0777,dir_mode=0777&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to mount cifs on sabresd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am successful only when i have "mount.cifs" in /usr/sbin. This is a helper program to mount cifs on linux as you know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To make this happen i have cross compiled "cifs-utils" and have copied mount.cifs after cross compilation to /usr/sbin. This was manual. &lt;STRONG&gt;This has worked for me.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then i tried the same with a recipe to copy only mount.cifs. Even that was successful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now coming to what you have asked, i have copied the recipe over my layer. Added the layer to bblayers.conf, and i want to make the recipe changes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the second question you asked, i think cifsreds or cifsupcall may not be as important as mount.cifs file. But anyways they would be compiled to respective locations as discussed above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Manju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 24 Apr 2015 05:24:43 GMT</pubDate>
    <dc:creator>manjunathjoshi</dc:creator>
    <dc:date>2015-04-24T05:24:43Z</dc:date>
    <item>
      <title>Custom recipe for YOCTO</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Custom-recipe-for-YOCTO/m-p/424289#M64128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to create a recipe to compile cifs-utils and bitbake with image.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried following YOCTO user manual and at first it was troublesome. But now, i am able to bitbake but "cifs-utils not found in the base feeds" is the error. So the last do_install is getting failed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My recipe looks like this,&lt;/P&gt;&lt;P&gt;**********************************************************************************************************************************************************&lt;/P&gt;&lt;P&gt;# This file is a modified example recipe to help mount cifs on linux.&lt;/P&gt;&lt;P&gt;#&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DESCRIPTION = "Simple compile application"&lt;/P&gt;&lt;P&gt;SECTION = "examples"&lt;/P&gt;&lt;P&gt;LICENSE = "MIT"&lt;/P&gt;&lt;P&gt;LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"&lt;/P&gt;&lt;P&gt;PR = "r0"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;SRC_URI = "&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://ftp.de.debian.org/debian/pool/main/c/cifs-utils/cifs-utils_5.5.orig.tar.bz2" target="_blank"&gt;http://ftp.de.debian.org/debian/pool/main/c/cifs-utils/cifs-utils_5.5.orig.tar.bz2&lt;/A&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SRC_URI[tarball.md5sum] = "b1e6309e8331e0f4e6efd311c2d97fa8"&lt;/P&gt;&lt;P&gt;SRC_URI[tarball.sha256sum] = "7f7d9f60b7766b852881d40b8ff91d8e39fccb0d1d913102a5c75a2dbb52332d"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;S = "${WORKDIR}"&lt;/P&gt;&lt;P&gt;DEPENDS +="glibc"&lt;/P&gt;&lt;P&gt;ALLOW_EMPTY_${PN}-dev = "1"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXTRA_OEMAKE = "'CC=${CC}' 'RANLIB=${RANLIB}' 'AR=${AR}' 'CFLAGS=${CFLAGS} -I${S}/include -DWITHOUT_XATTR' 'BUILDDIR=${S}'"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do_install () {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oe_runmake install DESTDIR=${D} SBINDIR=${sbindir} MANDIR=${mandir} INCLUDEDIR=${includedir}&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARALLEL_MAKE = ""&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BBCLASSEXTEND = "native"&lt;/P&gt;&lt;P&gt;**************************************************************************************************************************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now my question is cifs-utils gets compiled by AUTOTOOLS so at first i used inherit autotools but did not work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;oe-runmake error persisted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But now there is no error but do_install fails right at the end. can anyone help ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Manju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2015 09:22:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Custom-recipe-for-YOCTO/m-p/424289#M64128</guid>
      <dc:creator>manjunathjoshi</dc:creator>
      <dc:date>2015-04-20T09:22:15Z</dc:date>
    </item>
    <item>
      <title>Re: Custom recipe for YOCTO</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Custom-recipe-for-YOCTO/m-p/424290#M64129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is the fail message?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Apr 2015 09:25:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Custom-recipe-for-YOCTO/m-p/424290#M64129</guid>
      <dc:creator>jimmychan</dc:creator>
      <dc:date>2015-04-21T09:25:04Z</dc:date>
    </item>
    <item>
      <title>Re: Custom recipe for YOCTO</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Custom-recipe-for-YOCTO/m-p/424291#M64130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello jimmychan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the error,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOTE: Preparing runqueue&lt;/P&gt;&lt;P&gt;NOTE: Executing SetScene Tasks&lt;/P&gt;&lt;P&gt;NOTE: Executing RunQueue Tasks&lt;/P&gt;&lt;P&gt;ERROR: Function failed: do_install (log file is located at /home/pga/projects//fsl-community-bsp/build_toolchain/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/cifs-util/0.1-r0/temp/log.do_install.9801)&lt;/P&gt;&lt;P&gt;ERROR: Logfile of failure stored in: /home/pga/projects/fsl-community-bsp/build_toolchain/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/cifs-util/0.1-r0/temp/log.do_install.9801&lt;/P&gt;&lt;P&gt;Log data follows:&lt;/P&gt;&lt;P&gt;| DEBUG: Executing shell function do_install&lt;/P&gt;&lt;P&gt;| NOTE: make CC=arm-poky-linux-gnueabi-gcc&amp;nbsp; -march=armv7-a -mthumb-interwork -mfloat-abi=hard -mfpu=neon -mtune=cortex-a9 --sysroot=/home/pga/projects/yocto/pga/fsl-community-bsp/build_toolchain/tmp/sysroots/imx6qsabresd RANLIB=arm-poky-linux-gnueabi-ranlib AR=arm-poky-linux-gnueabi-ar CFLAGS= -O2 -pipe -g -feliminate-unused-debug-types -I/home/pga/projects/yocto/pga/fsl-community-bsp/build_toolchain/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/cifs-util/0.1-r0/include -DWITHOUT_XATTR BUILDDIR=/home/pga/pga/fsl-community-bsp/build_toolchain/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/cifs-util/0.1-r0 install DESTDIR=/home/pga/projects/yocto/pga/fsl-community-bsp/build_toolchain/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/cifs-util/0.1-r0/image SBINDIR=/usr/sbin MANDIR=/usr/share/man INCLUDEDIR=/usr/include&lt;/P&gt;&lt;P&gt;| make: *** No rule to make target `install'.&amp;nbsp; Stop.&lt;/P&gt;&lt;P&gt;| ERROR: oe_runmake failed&lt;/P&gt;&lt;P&gt;| WARNING: exit code 1 from a shell command.&lt;/P&gt;&lt;P&gt;| ERROR: Function failed: do_install (log file is located at /home/pga/pga/fsl-community-bsp/build_toolchain/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/cifs-util/0.1-r0/temp/log.do_install.9801)&lt;/P&gt;&lt;P&gt;ERROR: Task 274 (/home/pga/projects/fsl-community-bsp/sources/meta-manju-custom/recipes-example/example/cifs-util_0.1.bb, do_install) failed with exit code '1'&lt;/P&gt;&lt;P&gt;NOTE: Tasks Summary: Attempted 3423 tasks of which 3422 didn't need to be rerun and 1 failed.&lt;/P&gt;&lt;P&gt;No currently running tasks (2508 of 3573)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Summary: 1 task failed:&lt;/P&gt;&lt;P&gt;&amp;nbsp; /home/pga/projects/fsl-community-bsp/sources/meta-manju-custom/recipes-example/example/cifs-util_0.1.bb, do_install&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is when i use "inherit autotools gettext"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I have followed another discussion with similar problem and i changed my recipe something like this,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#&lt;/P&gt;&lt;P&gt;# This file is a modified example recipe to help mount cifs on linux.&lt;/P&gt;&lt;P&gt;#&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DESCRIPTION = "Simple compile application"&lt;/P&gt;&lt;P&gt;SECTION = "examples"&lt;/P&gt;&lt;P&gt;LICENSE = "MIT"&lt;/P&gt;&lt;P&gt;LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;SRC_URI = "&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://ftp.de.debian.org/debian/pool/main/c/cifs-utils/cifs-utils_6.4.orig.tar.bz2" target="_blank"&gt;http://ftp.de.debian.org/debian/pool/main/c/cifs-utils/cifs-utils_6.4.orig.tar.bz2&lt;/A&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;SRC_URI[md5sum] = "b7d75b67fd3987952896d27256c7293d"&lt;/P&gt;&lt;P&gt;SRC_URI[sha256sum] = "38fc63926af435dae4ebcf4406275580a692d9fb9ee3e32170317cf2ba68e6e3"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;S = "${WORKDIR}"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PR = "r0"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INHIBIT_PACKAGE_STRIP = "1"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FILES_${PN} += "${libdir}/"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do_configure() {&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;echo ${libdir}&lt;/P&gt;&lt;P&gt;oe_runmake configure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do_compile() {&lt;/P&gt;&lt;P&gt;oe_runmake all&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do_install () {&lt;/P&gt;&lt;P&gt;mkdir -p ${D}/usr/sbin&lt;/P&gt;&lt;P&gt;oe_runmake install SYS_ROOT=${D}&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This gave me following error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ERROR: Function failed: do_configure (log file is located at /home/pga/projects/fsl-community-bsp/build_toolchain/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/cifs-util/0.1-r0/temp/log.do_configure.11594)&lt;/P&gt;&lt;P&gt;ERROR: Logfile of failure stored in: /home/pga/projects/fsl-community-bsp/build_toolchain/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/cifs-util/0.1-r0/temp/log.do_configure.11594&lt;/P&gt;&lt;P&gt;Log data follows:&lt;/P&gt;&lt;P&gt;| DEBUG: Executing python function sysroot_cleansstate&lt;/P&gt;&lt;P&gt;| DEBUG: Python function sysroot_cleansstate finished&lt;/P&gt;&lt;P&gt;| DEBUG: Executing shell function do_configure&lt;/P&gt;&lt;P&gt;| /usr/lib&lt;/P&gt;&lt;P&gt;| NOTE: make -e MAKEFLAGS= configure&lt;/P&gt;&lt;P&gt;| make: *** No rule to make target `configure'.&amp;nbsp; Stop.&lt;/P&gt;&lt;P&gt;| ERROR: oe_runmake failed&lt;/P&gt;&lt;P&gt;| WARNING: exit code 1 from a shell command.&lt;/P&gt;&lt;P&gt;| ERROR: Function failed: do_configure (log file is located at /home/pga/projects/fsl-community-bsp/build_toolchain/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/cifs-util/0.1-r0/temp/log.do_configure.11594)&lt;/P&gt;&lt;P&gt;ERROR: Task 277 (/home/pga/projects/fsl-community-bsp/sources/meta-manju-custom/recipes-example/example/cifs-util_0.1.bb, do_configure) failed with exit code '1'&lt;/P&gt;&lt;P&gt;NOTE: Tasks Summary: Attempted 3563 tasks of which 3558 didn't need to be rerun and 1 failed.&lt;/P&gt;&lt;P&gt;Waiting for 0 running tasks to finish:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is just that i am new to python and not able to know each line of code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My aim is to copy mount.cifs file after compilation to /usr/sbin. That would do the job. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Manju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Apr 2015 13:46:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Custom-recipe-for-YOCTO/m-p/424291#M64130</guid>
      <dc:creator>manjunathjoshi</dc:creator>
      <dc:date>2015-04-21T13:46:01Z</dc:date>
    </item>
    <item>
      <title>Re: Custom recipe for YOCTO</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Custom-recipe-for-YOCTO/m-p/424292#M64131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think this useful for you:&lt;/P&gt;&lt;P&gt;&lt;A href="http://stackoverflow.com/questions/18508048/do-install-error-while-running-custom-bitbake-in-poky-build" title="http://stackoverflow.com/questions/18508048/do-install-error-while-running-custom-bitbake-in-poky-build"&gt;linux - do_install error while running custom bitbake in poky build - Stack Overflow&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2015 06:48:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Custom-recipe-for-YOCTO/m-p/424292#M64131</guid>
      <dc:creator>jimmychan</dc:creator>
      <dc:date>2015-04-22T06:48:46Z</dc:date>
    </item>
    <item>
      <title>Re: Custom recipe for YOCTO</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Custom-recipe-for-YOCTO/m-p/424293#M64132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Take a look at this recipe:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://cgit.openembedded.org/cgit.cgi/meta-openembedded/tree/meta-networking/recipes-support/cifs/cifs-utils_git.bb?h=master" title="http://cgit.openembedded.org/cgit.cgi/meta-openembedded/tree/meta-networking/recipes-support/cifs/cifs-utils_git.bb?h=master"&gt;http://cgit.openembedded.org/cgit.cgi/meta-openembedded/tree/meta-networking/recipes-support/cifs/cifs-utils_git.bb?h=master&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and this very usufull link:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://layers.openembedded.org/layerindex/branch/master/layers/" title="http://layers.openembedded.org/layerindex/branch/master/layers/"&gt;http://layers.openembedded.org/layerindex/branch/master/layers/&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2015 17:35:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Custom-recipe-for-YOCTO/m-p/424293#M64132</guid>
      <dc:creator>daiane_angolini</dc:creator>
      <dc:date>2015-04-22T17:35:09Z</dc:date>
    </item>
    <item>
      <title>Re: Custom recipe for YOCTO</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Custom-recipe-for-YOCTO/m-p/424294#M64133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Daiane,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the first link, the recipe needs modification for enabling libcap, cifsreads etc can you suggest me the right way to modify? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried with,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PACKAGECONFIG[cifscreds] = "--enable-cifscreds"&amp;nbsp; ---line, but could not find the same in /usr/bin or /usr/sbin/ after build.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even i tried with,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;PACKAGECONFIG[cifscreds] = "--enable-cifscreds, &lt;CODE&gt;&lt;SPAN class="str hl" style="color: #bf0303;"&gt;,keyutils&lt;/SPAN&gt;&lt;/CODE&gt;" &lt;SPAN style="font-size: 13.3333330154419px;"&gt;but could not find the same in /usr/bin or /usr/sbin/ after build.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;Manju&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2015 07:46:20 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Custom-recipe-for-YOCTO/m-p/424294#M64133</guid>
      <dc:creator>manjunathjoshi</dc:creator>
      <dc:date>2015-04-23T07:46:20Z</dc:date>
    </item>
    <item>
      <title>Re: Custom recipe for YOCTO</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Custom-recipe-for-YOCTO/m-p/424295#M64134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;have you copied the recipe over your layer? Or have you included the original layer on your bblayer.conf?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would change bblalyer.conf, create a bbappend and add the PACKAGECONFIG line you pointed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The (my) problem is, I don't know cifs-utils enough in order to know if configure file can actually receive "--enable-cifscreds" properly or not. Have you tested that already?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2015 14:20:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Custom-recipe-for-YOCTO/m-p/424295#M64134</guid>
      <dc:creator>daiane_angolini</dc:creator>
      <dc:date>2015-04-23T14:20:37Z</dc:date>
    </item>
    <item>
      <title>Re: Custom recipe for YOCTO</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Custom-recipe-for-YOCTO/m-p/424296#M64135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh, and you need&lt;/P&gt;&lt;P&gt;PACKAGECONFIG = cifscreds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;somewhere&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2015 14:22:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Custom-recipe-for-YOCTO/m-p/424296#M64135</guid>
      <dc:creator>daiane_angolini</dc:creator>
      <dc:date>2015-04-23T14:22:21Z</dc:date>
    </item>
    <item>
      <title>Re: Custom recipe for YOCTO</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Custom-recipe-for-YOCTO/m-p/424297#M64136</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Daiane,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mount -t cifs //10.20.1.123/share /home/root/smbshare -o username=blahblah,password=blahblah,rw,file_mode=0777,dir_mode=0777&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to mount cifs on sabresd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am successful only when i have "mount.cifs" in /usr/sbin. This is a helper program to mount cifs on linux as you know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To make this happen i have cross compiled "cifs-utils" and have copied mount.cifs after cross compilation to /usr/sbin. This was manual. &lt;STRONG&gt;This has worked for me.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then i tried the same with a recipe to copy only mount.cifs. Even that was successful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now coming to what you have asked, i have copied the recipe over my layer. Added the layer to bblayers.conf, and i want to make the recipe changes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the second question you asked, i think cifsreds or cifsupcall may not be as important as mount.cifs file. But anyways they would be compiled to respective locations as discussed above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Manju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2015 05:24:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Custom-recipe-for-YOCTO/m-p/424297#M64136</guid>
      <dc:creator>manjunathjoshi</dc:creator>
      <dc:date>2015-04-24T05:24:43Z</dc:date>
    </item>
    <item>
      <title>Re: Custom recipe for YOCTO</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Custom-recipe-for-YOCTO/m-p/424298#M64137</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, I am sorry for my misinterpretation :smileywink:&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2015 13:36:02 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Custom-recipe-for-YOCTO/m-p/424298#M64137</guid>
      <dc:creator>daiane_angolini</dc:creator>
      <dc:date>2015-04-24T13:36:02Z</dc:date>
    </item>
  </channel>
</rss>

