<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/meta-freescale.git/recipes-extended, branch topic/better-nip-support</title>
<subtitle>Mirror of github.com/Freescale/meta-freescale</subtitle>
<id>https://git.enea.com/cgit/linux/meta-freescale.git/atom?h=topic%2Fbetter-nip-support</id>
<link rel='self' href='https://git.enea.com/cgit/linux/meta-freescale.git/atom?h=topic%2Fbetter-nip-support'/>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-freescale.git/'/>
<updated>2022-02-21T23:06:28+00:00</updated>
<entry>
<title>Generalize overrides subsystem for NXP and Mainline support</title>
<updated>2022-02-21T23:06:28+00:00</updated>
<author>
<name>Otavio Salvador</name>
<email>otavio@ossystems.com.br</email>
</author>
<published>2022-02-18T22:43:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-freescale.git/commit/?id=30f5ce1d2168389295b4813e01898c2fb0f9bab9'/>
<id>urn:sha1:30f5ce1d2168389295b4813e01898c2fb0f9bab9</id>
<content type='text'>
Essentially, we extend the overrides to a generic-bsp, nxp-bsp, and
mainline-bsp.

So, for example, the mx8mq override is split into:

- imx-generic-bsp: compatible with every i.MX SoC and both BSP variants
- imx-nxp-bsp: compatible with every i.MX SoC but specific to NXP BSP
- imx-mainline-bsp: compatible with every i.MX SoC but specific to Mainline BSP

- mx8-generic-bsp: compatible with every i.MX8 SoC and both BSP variants
- mx8-nxp-bsp: compatible with every i.MX8 SoC but specific to NXP BSP
- mx8-mainline-bsp: compatible with every i.MX8 SoC but specific to Mainline BSP

- mx8m-generic-bsp: compatible with every i.MX8M SoC and both BSP variants
- mx8m-nxp-bsp: compatible with every i.MX8M SoC but specific to NXP BSP
- mx8m-mainline-bsp: compatible with every i.MX8M SoC but specific to Mainline BSP

- mx8mq-generic-bsp: compatible with every i.MX8MQ SoC and both BSP variants
- mx8mq-nxp-bsp: compatible with every i.MX8MQ SoC8 but specific to NXP BSP
- mx8mq-mainline-bsp: compatible with every i.MX8MQ SoC but specific to Mainline BSP

The extender mechanism is responsible for extending the override list to
include the generic overrides. We can then use the three different
variants to handle the metadata correctly.

Generically speaking, the conversion mainly was automated (with a lot of
back and forth until getting it right).

To convert an existing layer, the following script can be used:

```sh
  git ls-files classes recipes-* \
      | xargs sed -i \
              -e 's,:\(mx[6-8]\w*\),:\1-nxp-bsp,g' \
              -e 's,(\(mx[6-8]\w*\)),(\1-nxp-bsp),g' \
              -e 's,\(mx[6-8]\w*\)|,\1-nxp-bsp|,g' \
              -e 's,|\(mx[6-8]\w*\)),|\1-nxp-bsp),g' \
              \
              -e 's,:\(mx[5s]\w*\),:\1-generic-bsp,g' \
              -e 's,(\(mx[5s]\w*\)),(\1-generic-bsp),g' \
              -e 's,\(mx[5s]\w*\)|,\1-generic-bsp|,g' \
              -e 's,|\(mx[5s]\w*\)),|\1-generic-bsp),g' \
              \
              -e 's,:\(vf\w*\),:\1-generic-bsp,g' \
              -e 's,:\(vf[56]0\w*\),:\1-generic-bsp,g' \
              -e 's,\(vf\w*\)|,\1-generic-bsp|,g' \
              -e 's,|\(vf\w*\)),|\1-generic-bsp),g' \
              -e 's,\(vf[56]0\w*\)|,\1-generic-bsp|,g' \
              -e 's,|\(vf[56]0\w*\)),|\1-generic-bsp),g' \
              \
              -e 's,:\(imx\) ,:\1-nxp-bsp ,g' \
              -e 's,(\(imx\)),(\1-nxp-bsp),g' \
              -e 's,\(imx\)|,\1-nxp-bsp|,g' \
              -e 's,|\(imx\)),|\1-nxp-bsp),g'

  for d in $(find -type d | egrep '/mx[6-8]w*'); do
      git mv $d $d-nxp-bsp
  done

  for d in $(find -type d | egrep '/imx$'); do
      git mv $d $d-nxp-bsp
  done

  for d in $(find -type d | egrep '/mx[5s]w*'); do
      git mv $d $d-generic-bsp
  done
```

Fixes: #791.
Signed-off-by: Otavio Salvador &lt;otavio@ossystems.com.br&gt;
</content>
</entry>
<entry>
<title>crconf: Don't set FILES</title>
<updated>2022-02-11T17:33:21+00:00</updated>
<author>
<name>Sean Anderson</name>
<email>sean.anderson@seco.com</email>
</author>
<published>2022-02-11T17:28:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-freescale.git/commit/?id=a47693173d7fe8bda1e7da1e419fac2ba6d26a41'/>
<id>urn:sha1:a47693173d7fe8bda1e7da1e419fac2ba6d26a41</id>
<content type='text'>
Documentation should be installed in the documentation package, not the
main package. The latter two directories are already added to FILES by
meta/conf/bitbake.conf.

Signed-off-by: Sean Anderson &lt;sean.anderson@seco.com&gt;
</content>
</entry>
<entry>
<title>crconf: Set SBINDIR and MANDIR</title>
<updated>2022-02-11T17:32:34+00:00</updated>
<author>
<name>Sean Anderson</name>
<email>sean.anderson@seco.com</email>
</author>
<published>2022-02-11T17:26:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-freescale.git/commit/?id=cbecb6a83560593830875ade9fd6107733ed86ad'/>
<id>urn:sha1:cbecb6a83560593830875ade9fd6107733ed86ad</id>
<content type='text'>
The default values of these variables are not appropriate when using
usrmerge. This fixes the following error:

ERROR: crconf-git-r0 do_package: QA Issue: crconf: Files/directories were installed but not shipped in any package:
  /sbin/crconf
Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install.

Signed-off-by: Sean Anderson &lt;sean.anderson@seco.com&gt;
</content>
</entry>
<entry>
<title>odp-module/odp-counters/kernel-module-ar: fix QA Issue during usermerge</title>
<updated>2021-10-21T07:45:34+00:00</updated>
<author>
<name>Hongxu Jia</name>
<email>hongxu.jia@windriver.com</email>
</author>
<published>2021-10-20T06:47:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-freescale.git/commit/?id=3d39d355867caaee00c42614f7eb4a9b0830b84b'/>
<id>urn:sha1:3d39d355867caaee00c42614f7eb4a9b0830b84b</id>
<content type='text'>
While enabling usermerge, there is a QA issue:
...
ERROR: odp-counters-git-r0 do_package: QA Issue: odp-counters: Files/directories were installed but not shipped in any package:
  /lib
  /lib/modules
  /lib/modules/5.10.70-yocto-standard
  /lib/modules/5.10.70-yocto-standard/odp
  /lib/modules/5.10.70-yocto-standard/odp/odpfsl_perfcounters.ko
Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install.
odp-counters: 5 installed and not shipped files. [installed-vs-shipped]
...

Use Yocto nonarch_base_libdir to replace hardcode /lib

Signed-off-by: Hongxu Jia &lt;hongxu.jia@windriver.com&gt;
</content>
</entry>
<entry>
<title>pktgen-dpdk: upgrade to 21.05.0</title>
<updated>2021-10-15T14:11:36+00:00</updated>
<author>
<name>Ting Liu</name>
<email>ting.liu@nxp.com</email>
</author>
<published>2021-10-14T08:44:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-freescale.git/commit/?id=7fade9243aeeef32a972bec3aa263ab7201a7681'/>
<id>urn:sha1:7fade9243aeeef32a972bec3aa263ab7201a7681</id>
<content type='text'>
Signed-off-by: Ting Liu &lt;ting.liu@nxp.com&gt;
</content>
</entry>
<entry>
<title>ovs-dpdk: upgrade to 2.15</title>
<updated>2021-10-15T14:11:36+00:00</updated>
<author>
<name>Ting Liu</name>
<email>ting.liu@nxp.com</email>
</author>
<published>2021-10-14T08:42:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-freescale.git/commit/?id=6ab74151605998436d2480d90d6d5d9efeab1d91'/>
<id>urn:sha1:6ab74151605998436d2480d90d6d5d9efeab1d91</id>
<content type='text'>
Signed-off-by: Ting Liu &lt;ting.liu@nxp.com&gt;
</content>
</entry>
<entry>
<title>libpkcs11: update to 8d85182</title>
<updated>2021-10-15T14:11:36+00:00</updated>
<author>
<name>Ting Liu</name>
<email>ting.liu@nxp.com</email>
</author>
<published>2021-10-14T08:37:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-freescale.git/commit/?id=bd9de08cc72d1a3a1a4d8a58bc9f5df9171bbc35'/>
<id>urn:sha1:bd9de08cc72d1a3a1a4d8a58bc9f5df9171bbc35</id>
<content type='text'>
Fix for double free happening when running sign_digest_update_final app.
remove duplicate pkcs11.h which optee_os install too.

Signed-off-by: Ting Liu &lt;ting.liu@nxp.com&gt;
</content>
</entry>
<entry>
<title>dpdk: add 20.11 recipe</title>
<updated>2021-10-15T14:11:36+00:00</updated>
<author>
<name>Ting Liu</name>
<email>ting.liu@nxp.com</email>
</author>
<published>2021-10-14T08:33:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-freescale.git/commit/?id=08ede515232af9922dc4dc03828dbb9fd99dd310'/>
<id>urn:sha1:08ede515232af9922dc4dc03828dbb9fd99dd310</id>
<content type='text'>
Signed-off-by: Ting Liu &lt;ting.liu@nxp.com&gt;
</content>
</entry>
<entry>
<title>secure-obj: update to 5ff1231</title>
<updated>2021-10-15T14:11:36+00:00</updated>
<author>
<name>Ting Liu</name>
<email>ting.liu@nxp.com</email>
</author>
<published>2021-10-14T08:19:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-freescale.git/commit/?id=dc6ada8f9515e92bfdc7e5e2c18ccef87b6e80f8'/>
<id>urn:sha1:dc6ada8f9515e92bfdc7e5e2c18ccef87b6e80f8</id>
<content type='text'>
New commits:
5ff1231 securekeydev: install securekeydev.ko
e3f9432 fota_secboot: fix compilation warnings
6e0b018 LF-3046: Fix for certificate generation failure
8bd117e LF-3045: Fix for signature generation failure

Signed-off-by: Ting Liu &lt;ting.liu@nxp.com&gt;
</content>
</entry>
<entry>
<title>tsntool: update to b767c26</title>
<updated>2021-10-15T14:11:36+00:00</updated>
<author>
<name>Ting Liu</name>
<email>ting.liu@nxp.com</email>
</author>
<published>2021-10-14T08:15:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-freescale.git/commit/?id=daed466ffcd165241a0060414306296a78e95879'/>
<id>urn:sha1:daed466ffcd165241a0060414306296a78e95879</id>
<content type='text'>
New commits:
b767c26 Pull request #27: tsntool: fix string copy overflow
e29cb64 tsntool: fix string copy overflow
9a22d5e Pull request #26: tsntool: fix portname overflow
7fc9d6c tsntool: fix portname overflow
7f18d70 Pull request #25: cnc: change GROUP_NAME to real-time-edge
2e04fd4 cnc: change GROUP_NAME to real-time-edge
c21d3d3 Pull request #24: cnc: fix isChecked undefined when using Firefox/IE/EDGE
1db711b cnc: fix isChecked undefined when using Firefox/IE/EDGE

Signed-off-by: Ting Liu &lt;ting.liu@nxp.com&gt;
</content>
</entry>
</feed>
