<?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>Processor Expert SoftwareのトピックRe: Ls1046afrwy Yocto Project:Freescale Yocto Project compile fail</title>
    <link>https://community.nxp.com/t5/Processor-Expert-Software/Ls1046afrwy-Yocto-Project-Freescale-Yocto-Project-compile-fail/m-p/1395394#M4939</link>
    <description>&lt;P&gt;&lt;SPAN&gt;Please modify recipe sources/meta-virtualization/recipes-devtools/go/go-systemd_git.bb as the following.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;SRC_URI = "git://${PKG_NAME}.git"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Modify to:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;SRC_URI = "git://github.com/coreos/go-systemd.git;branch=main"&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 06 Jan 2022 07:07:49 GMT</pubDate>
    <dc:creator>yipingwang</dc:creator>
    <dc:date>2022-01-06T07:07:49Z</dc:date>
    <item>
      <title>Ls1046afrwy Yocto Project:Freescale Yocto Project compile fail</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/Ls1046afrwy-Yocto-Project-Freescale-Yocto-Project-compile-fail/m-p/1390363#M4931</link>
      <description>&lt;P&gt;I want to compile ls1046afrwy from yocto project.&lt;/P&gt;&lt;PRE&gt;| Branch      | Version          |
|-------------|------------------|
| hardknott   | YP 3.3–lf-5.10.72|
| gatesgarth  | YP 3.2–lf-5.10.9 |
| dunfell     | YP 3.1–LSDK 2004 |
| zeus        | YP 3.0–LSDK 1909 |
| warrior     | YP 2.7–LSDK 1906 |
| thud        | YP 2.6–LSDK 1809 |
| sumo        | YP 2.5–LSDK 1806 &lt;/PRE&gt;&lt;P&gt;The latest version is hardknott.&lt;/P&gt;&lt;P&gt;compile error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ERROR: dpdk-20.11-r0 do_package_write_rpm: Error executing a python function in exec_python_func() autogenerated:&lt;/P&gt;&lt;P&gt;The stack trace of python calls that resulted in this exception/failure was:&lt;BR /&gt;File: 'exec_python_func() autogenerated', lineno: 2, function: &amp;lt;module&amp;gt;&lt;BR /&gt;0001:&lt;BR /&gt;*** 0002:do_package_rpm(d)&lt;BR /&gt;0003:&lt;BR /&gt;File: '/home/autocore/yocto-sdk/sources/poky/meta/classes/package_rpm.bbclass', lineno: 718, function: do_package_rpm&lt;BR /&gt;0714:&lt;BR /&gt;0715: # Build the rpm package!&lt;BR /&gt;0716: d.setVar('BUILDSPEC', cmd + "\n" + cleanupcmd + "\n")&lt;BR /&gt;0717: d.setVarFlag('BUILDSPEC', 'func', '1')&lt;BR /&gt;*** 0718: bb.build.exec_func('BUILDSPEC', d)&lt;BR /&gt;0719:&lt;BR /&gt;0720: if d.getVar('RPM_SIGN_PACKAGES') == '1':&lt;BR /&gt;0721: bb.build.exec_func("sign_rpm", d)&lt;BR /&gt;0722:}&lt;BR /&gt;File: '/home/autocore/yocto-sdk/sources/poky/bitbake/lib/bb/build.py', lineno: 256, function: exec_func&lt;BR /&gt;0252: with bb.utils.fileslocked(lockfiles):&lt;BR /&gt;0253: if ispython:&lt;BR /&gt;0254: exec_func_python(func, d, runfile, cwd=adir)&lt;BR /&gt;0255: else:&lt;BR /&gt;*** 0256: exec_func_shell(func, d, runfile, cwd=adir)&lt;BR /&gt;0257:&lt;BR /&gt;0258: try:&lt;BR /&gt;0259: curcwd = os.getcwd()&lt;BR /&gt;0260: except:&lt;BR /&gt;File: '/home/autocore/yocto-sdk/sources/poky/bitbake/lib/bb/build.py', lineno: 503, function: exec_func_shell&lt;BR /&gt;0499: with open(fifopath, 'r+b', buffering=0) as fifo:&lt;BR /&gt;0500: try:&lt;BR /&gt;0501: bb.debug(2, "Executing shell function %s" % func)&lt;BR /&gt;0502: with open(os.devnull, 'r+') as stdin, logfile:&lt;BR /&gt;*** 0503: bb.process.run(cmd, shell=False, stdin=stdin, log=logfile, extrafiles=[(fifo,readfifo)])&lt;BR /&gt;0504: except bb.process.ExecutionError as exe:&lt;BR /&gt;0505: # Find the backtrace that the shell trap generated&lt;BR /&gt;0506: backtrace_marker_regex = re.compile(r"WARNING: Backtrace \(BB generated script\)")&lt;BR /&gt;0507: stdout_lines = (exe.stdout or "").split("\n")&lt;BR /&gt;File: '/home/autocore/yocto-sdk/sources/poky/bitbake/lib/bb/process.py', lineno: 186, function: run&lt;BR /&gt;0182:&lt;BR /&gt;0183: if pipe.returncode != 0:&lt;BR /&gt;0184: if log:&lt;BR /&gt;0185: # Don't duplicate the output in the exception if logging it&lt;BR /&gt;*** 0186: raise ExecutionError(cmd, pipe.returncode, None, None)&lt;BR /&gt;0187: raise ExecutionError(cmd, pipe.returncode, stdout, stderr)&lt;BR /&gt;0188: return stdout, stderr&lt;BR /&gt;Exception: bb.process.ExecutionError: Execution of '/home/autocore/yocto-sdk/build_ls1046afrwy/tmp/work/aarch64-fsl-linux/dpdk/20.11-r0/temp/run.BUILDSPEC.25122' failed with exit code 137&lt;/P&gt;&lt;P&gt;ERROR: Logfile of failure stored in: /home/autocore/yocto-sdk/build_ls1046afrwy/tmp/work/aarch64-fsl-linux/dpdk/20.11-r0/temp/log.do_package_write_rpm.25122&lt;BR /&gt;ERROR: Task (/home/autocore/yocto-sdk/sources/meta-qoriq/recipes-extended/dpdk/dpdk_20.11.bb:do_package_write_rpm) failed with exit code '1'&lt;BR /&gt;NOTE: Tasks Summary: Attempted 4645 tasks of which 4644 didn't need to be rerun and 1 failed.&lt;/P&gt;&lt;P&gt;Summary: 1 task failed:&lt;BR /&gt;/home/autocore/yocto-sdk/sources/meta-qoriq/recipes-extended/dpdk/dpdk_20.11.bb:do_package_write_rpm&lt;BR /&gt;Summary: There was 1 ERROR message shown, returning a non-zero exit code.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Dec 2021 01:39:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/Ls1046afrwy-Yocto-Project-Freescale-Yocto-Project-compile-fail/m-p/1390363#M4931</guid>
      <dc:creator>fenghua_jiang</dc:creator>
      <dc:date>2021-12-22T01:39:29Z</dc:date>
    </item>
    <item>
      <title>Re: Ls1046afrwy Yocto Project:Freescale Yocto Project compile fail</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/Ls1046afrwy-Yocto-Project-Freescale-Yocto-Project-compile-fail/m-p/1391720#M4932</link>
      <description>&lt;P&gt;Exist&amp;nbsp;&lt;EM&gt;code 137&lt;/EM&gt;&amp;nbsp;means the build process ran out of memory.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Dec 2021 07:33:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/Ls1046afrwy-Yocto-Project-Freescale-Yocto-Project-compile-fail/m-p/1391720#M4932</guid>
      <dc:creator>yipingwang</dc:creator>
      <dc:date>2021-12-24T07:33:26Z</dc:date>
    </item>
    <item>
      <title>Re: Ls1046afrwy Yocto Project:Freescale Yocto Project compile fail</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/Ls1046afrwy-Yocto-Project-Freescale-Yocto-Project-compile-fail/m-p/1392878#M4935</link>
      <description>&lt;P&gt;ERROR: go-pty-git-r0 do_prepare_recipe_sysroot: Error executing a python function in exec_python_func() autogenerated:&lt;/P&gt;&lt;P&gt;The stack trace of python calls that resulted in this exception/failure was:&lt;BR /&gt;File: 'exec_python_func() autogenerated', lineno: 2, function: &amp;lt;module&amp;gt;&lt;BR /&gt;0001:&lt;BR /&gt;*** 0002:extend_recipe_sysroot(d)&lt;BR /&gt;0003:&lt;BR /&gt;File: '/home/autocore/pcu/sources/poky/meta/classes/staging.bbclass', lineno: 577, function: extend_recipe_sysroot&lt;BR /&gt;0573: if "/bin/" in l or "/sbin/" in l:&lt;BR /&gt;0574: # defer /*bin/* files until last in case they need libs&lt;BR /&gt;0575: binfiles[l] = (targetdir, dest)&lt;BR /&gt;0576: else:&lt;BR /&gt;*** 0577: staging_copyfile(l, targetdir, dest, postinsts, seendirs)&lt;BR /&gt;0578:&lt;BR /&gt;0579: # Handle deferred binfiles&lt;BR /&gt;0580: for l in binfiles:&lt;BR /&gt;0581: (targetdir, dest) = binfiles[l]&lt;BR /&gt;File: '/home/autocore/pcu/sources/poky/meta/classes/staging.bbclass', lineno: 152, function: staging_copyfile&lt;BR /&gt;0148: os.symlink(linkto, dest)&lt;BR /&gt;0149: #bb.warn(c)&lt;BR /&gt;0150: else:&lt;BR /&gt;0151: try:&lt;BR /&gt;*** 0152: os.link(c, dest)&lt;BR /&gt;0153: except OSError as err:&lt;BR /&gt;0154: if err.errno == errno.EXDEV:&lt;BR /&gt;0155: bb.utils.copyfile(c, dest)&lt;BR /&gt;0156: else:&lt;BR /&gt;Exception: FileExistsError: [Errno 17] File exists: '/home/autocore/pcu/build_ls1046afrwy/tmp/sysroots-components/x86_64/gcc-cross-aarch64/sysroot-providers/virtual_aarch64-fsl-linux-g++' -&amp;gt; '/home/autocore/pcu/build_ls1046afrwy/tmp/work/aarch64-fsl-linux/go-pty/git-r0/recipe-sysroot-native/sysroot-providers/virtual_aarch64-fsl-linux-g++'&lt;/P&gt;&lt;P&gt;ERROR: Logfile of failure stored in: /home/autocore/pcu/build_ls1046afrwy/tmp/work/aarch64-fsl-linux/go-pty/git-r0/temp/log.do_prepare_recipe_sysroot.13507&lt;BR /&gt;ERROR: Task (/home/autocore/pcu/sources/meta-virtualization/recipes-devtools/go/go-pty_git.bb:do_prepare_recipe_sysroot) failed with exit code '1'&lt;/P&gt;</description>
      <pubDate>Wed, 29 Dec 2021 05:34:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/Ls1046afrwy-Yocto-Project-Freescale-Yocto-Project-compile-fail/m-p/1392878#M4935</guid>
      <dc:creator>fenghua_jiang</dc:creator>
      <dc:date>2021-12-29T05:34:16Z</dc:date>
    </item>
    <item>
      <title>Re: Ls1046afrwy Yocto Project:Freescale Yocto Project compile fail</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/Ls1046afrwy-Yocto-Project-Freescale-Yocto-Project-compile-fail/m-p/1392952#M4936</link>
      <description>&lt;P&gt;I didn't encounter any problem when run command "bitbake go-pty" in my&amp;nbsp;hardknott Yocto SDK build environment.&lt;/P&gt;
&lt;P&gt;The OS on my host PC is Ubuntu 18.04.&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;What is the distro and version on your host?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Dec 2021 08:13:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/Ls1046afrwy-Yocto-Project-Freescale-Yocto-Project-compile-fail/m-p/1392952#M4936</guid>
      <dc:creator>yipingwang</dc:creator>
      <dc:date>2021-12-29T08:13:50Z</dc:date>
    </item>
    <item>
      <title>Re: Ls1046afrwy Yocto Project:Freescale Yocto Project compile fail</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/Ls1046afrwy-Yocto-Project-Freescale-Yocto-Project-compile-fail/m-p/1394175#M4937</link>
      <description>&lt;P&gt;my pc is ubuntu18.04&lt;/P&gt;&lt;P&gt;first go-systemd_git.bb bitbake&amp;nbsp; fail&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;WARNING: go-systemd-4+gitAUTOINC+b4a58d9518-r0 do_fetch: Failed to fetch URL git://github.com/coreos/go-systemd.git, attempting MIRRORS if available&lt;BR /&gt;ERROR: go-systemd-4+gitAUTOINC+b4a58d9518-r0 do_fetch: Fetcher failure: Unable to find revision b4a58d95188dd092ae20072bac14cece0e67c388 in branch master even from upstream&lt;BR /&gt;ERROR: go-systemd-4+gitAUTOINC+b4a58d9518-r0 do_fetch: Fetcher failure for URL: 'git://github.com/coreos/go-systemd.git'. Unable to fetch URL from any source.&lt;BR /&gt;ERROR: Logfile of failure stored in: /home/autocore/pcu/build_ls1046afrwy/tmp/work/aarch64-fsl-linux/go-systemd/4+gitAUTOINC+b4a58d9518-r0/temp/log.do_fetch.17316&lt;BR /&gt;ERROR: Task (/home/autocore/pcu/sources/meta-virtualization/recipes-devtools/go/go-systemd_git.bb:do_fetch) failed with exit code '1'&lt;BR /&gt;NOTE: Tasks Summary: Attempted 1 tasks of which 0 didn't need to be rerun and 1 failed.&lt;/P&gt;&lt;P&gt;Summary: 1 task failed:&lt;BR /&gt;/home/autocore/pcu/sources/meta-virtualization/recipes-devtools/go/go-systemd_git.bb:do_fetch&lt;BR /&gt;Summary: There were 2 WARNING messages shown.&lt;BR /&gt;Summary: There were 2 ERROR messages shown, returning a non-zero exit code.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jan 2022 10:00:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/Ls1046afrwy-Yocto-Project-Freescale-Yocto-Project-compile-fail/m-p/1394175#M4937</guid>
      <dc:creator>fenghua_jiang</dc:creator>
      <dc:date>2022-01-04T10:00:50Z</dc:date>
    </item>
    <item>
      <title>Re: Ls1046afrwy Yocto Project:Freescale Yocto Project compile fail</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/Ls1046afrwy-Yocto-Project-Freescale-Yocto-Project-compile-fail/m-p/1395394#M4939</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Please modify recipe sources/meta-virtualization/recipes-devtools/go/go-systemd_git.bb as the following.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;SRC_URI = "git://${PKG_NAME}.git"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Modify to:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;SRC_URI = "git://github.com/coreos/go-systemd.git;branch=main"&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jan 2022 07:07:49 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/Ls1046afrwy-Yocto-Project-Freescale-Yocto-Project-compile-fail/m-p/1395394#M4939</guid>
      <dc:creator>yipingwang</dc:creator>
      <dc:date>2022-01-06T07:07:49Z</dc:date>
    </item>
  </channel>
</rss>

