<?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: Transaction test error, conflicts between attempted installs of</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/Transaction-test-error-conflicts-between-attempted-installs-of/m-p/1589056#M200727</link>
    <description>&lt;P&gt;This did not resolve my issue.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 27 Jan 2023 19:45:47 GMT</pubDate>
    <dc:creator>MichaelBMiner</dc:creator>
    <dc:date>2023-01-27T19:45:47Z</dc:date>
    <item>
      <title>Transaction test error, conflicts between attempted installs of</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Transaction-test-error-conflicts-between-attempted-installs-of/m-p/1588549#M200674</link>
      <description>&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;I have been working on my Yocto project for over a year now. I have a working image and an application that runs on my device. For a while now I have been using a third party code base &lt;A href="https://github.com/xR3b0rn/dbcppp" target="_self"&gt;DBCPPP&lt;/A&gt;.&amp;nbsp;&amp;nbsp;I created a custom recipe to use cmake to make this project.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"

SRC_URI = "gitsm://github.com/xR3b0rn/dbcppp.git;protocol=https;branch=master"
PV = "1.0+gitr${SRCPV}"
SRCREV = "${AUTOREV}"

DEPENDS += " boost"

S = "${WORKDIR}/git"

inherit cmake

FILES_${PN} += "/usr/lib/xml2Conf.sh /usr/lib/lib*.so.*"

SOLIBS = ".so"
FILES_SOLIBSDEV = ""
INSANE_SKIP_${PN} += "dev-so"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My next goal is to the get SWUpdate working on my device utilising the meta-swupdate layer. I am modifying meta-swupdate with a defconfig file through the swupdate_%.bbappend file to set CONFIG_ARCHIVE=y.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;FILESEXTRAPATHS:prepend := "${THISDIR}/files:"
SRC_URI += "file://defconfig"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Since adding meta-swupadate to my image I cannot get past 81% of a do_rootfs command. The error given to me was completely useless until I added&amp;nbsp;PACKAGE_CLASSES ?= 'package_rpm' to my local.conf file. Now I get the output&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;Transaction Summary&lt;BR /&gt;=================================================================================================================================&lt;BR /&gt;Install 283 Packages&lt;/P&gt;&lt;P&gt;Total size: 43 M&lt;BR /&gt;Installed size: 120 M&lt;BR /&gt;Downloading Packages:&lt;BR /&gt;Running transaction check&lt;BR /&gt;Transaction check succeeded.&lt;BR /&gt;Running transaction test&lt;BR /&gt;Error: Transaction test error:&lt;BR /&gt;file /usr/lib/libxml2.so.2.9.10 conflicts between attempted installs of dbcppp-1.0+gitr0+fa8ce17468-r0.cortexa7t2hf_neon and libxml2-2.9.10-r0.cortexa7t2hf_neon&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;This means that two recipes are attempting to place the same file in the same place on the rootfs. Given my two bitbake files, is there a way for me to remedy this? I must have DBCPPP in my project as it does a lot of heavy lifting. I must also have SWUpdate to perform in field kernel updates. I see many solutions to this but not for custom recipes.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jan 2023 21:08:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Transaction-test-error-conflicts-between-attempted-installs-of/m-p/1588549#M200674</guid>
      <dc:creator>MichaelBMiner</dc:creator>
      <dc:date>2023-01-26T21:08:11Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction test error, conflicts between attempted installs of</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Transaction-test-error-conflicts-between-attempted-installs-of/m-p/1588926#M200717</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I just can said that you need erase all the build from yocto and start again, since this appears not to be the NXP realease of yocto.&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jan 2023 14:39:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Transaction-test-error-conflicts-between-attempted-installs-of/m-p/1588926#M200717</guid>
      <dc:creator>Bio_TICFSL</dc:creator>
      <dc:date>2023-01-27T14:39:45Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction test error, conflicts between attempted installs of</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Transaction-test-error-conflicts-between-attempted-installs-of/m-p/1589024#M200725</link>
      <description>&lt;P&gt;You want me to do a&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;bitbake world -c cleanall --continue&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and then restart? I can try it, but what happens if the error persists?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Edit: This started as an NXP build, but customisation was required. It is now an extension of core-image-minimal.bb&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jan 2023 17:48:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Transaction-test-error-conflicts-between-attempted-installs-of/m-p/1589024#M200725</guid>
      <dc:creator>MichaelBMiner</dc:creator>
      <dc:date>2023-01-27T17:48:56Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction test error, conflicts between attempted installs of</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Transaction-test-error-conflicts-between-attempted-installs-of/m-p/1589056#M200727</link>
      <description>&lt;P&gt;This did not resolve my issue.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jan 2023 19:45:47 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Transaction-test-error-conflicts-between-attempted-installs-of/m-p/1589056#M200727</guid>
      <dc:creator>MichaelBMiner</dc:creator>
      <dc:date>2023-01-27T19:45:47Z</dc:date>
    </item>
  </channel>
</rss>

