Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | imx-kobs: apply existing patch to fix musl build | Otavio Salvador | 2022-08-19 | 1 | -0/+1 |
| | | | | | | | | Long time ago, a bump ended removing the patch which fixes the musl build and now it is being added back. Fixes: e7efa7a2 "imx-kobs: Update SRCREV to 02c01d" Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> | ||||
* | layer: Update LICENSE variable to use SPDX license identifiers | Andrey Zhizhikin | 2022-03-03 | 1 | -1/+1 |
| | | | | | | | | | | | | Since OE-Core commit 9379f80f48 ("license/insane: Show warning for obsolete license usage"), LICENSE field not containing SPDX identifiers are treated with WARNING. An automated conversion using scripts/contrib/convert-spdx-licenses.py to convert to use the standard SPDX license identifiers has been done on the entire layer. Signed-off-by: Andrey Zhizhikin <andrey.z@gmail.com> | ||||
* | Rework recipes to use imx-generic-bsp more extensively | Otavio Salvador | 2022-02-21 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | This rework the recipes making use of new imx-generic-bsp override; it has been applied to: - alsa-state - firmware-imx - imx-kobs - imx-test - imx-uuc - linux-fslc - linux-fslc-lts - packagegroup-fsl-mfgtool - u-boot-fslc - uuu Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> | ||||
* | Generalize overrides subsystem for NXP and Mainline support | Otavio Salvador | 2022-02-21 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 <otavio@ossystems.com.br> | ||||
* | recipes: use https protocol and add explicit branch parameter | Pierre-Jean Texier | 2021-11-03 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | Due to https://github.blog/2021-09-01-improving-git-protocol-security-github/#no-more-unauthenticated-git it is required to use https protocol for github repo accessing. Update created with oe-core/scripts/contrib/convert-srcuri.py (see [0]) Fixes: WARNING: /work/meta-freescale/recipes-bsp/u-boot/u-boot-fslc-mxsboot_2021.07.bb: URL: git://github.com/Freescale/u-boot-fslc.git;branch=2021.07+fslc uses git protocol which is no longer supported by github. Please change to ;protocol=https in the url. [0] - https://git.openembedded.org/openembedded-core/tree/scripts/contrib/convert-srcuri.py Signed-off-by: Pierre-Jean Texier <texier.pj2@gmail.com> | ||||
* | imx-kobs: update revision to 269fdff | Andrey Zhizhikin | 2021-02-01 | 1 | -1/+1 |
| | | | | | | | This includes the following commit: 176bca4956ed supports imx8mp ddr4 nand boot Signed-off-by: Andrey Zhizhikin <andrey.z@gmail.com> | ||||
* | imx-kobs: Allow usage with use-mainline-bsp | Fabio Berton | 2020-05-11 | 1 | -1/+1 |
| | | | | Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br> | ||||
* | imx-kobs: Update SRCREV to cee66d | Alexandru Palalau | 2020-04-23 | 1 | -1/+1 |
| | | | | Signed-off-by: Alexandru Palalau <ioan-alexandru.palalau@nxp.com> | ||||
* | imx-kobs: Update SRCREV to 02c01d | Alexandru Palalau | 2019-06-13 | 1 | -3/+2 |
| | | | | Signed-off-by: Alexandru Palalau <ioan-alexandru.palalau@nxp.com> | ||||
* | imx-kobs: Fix a typo | Sebastien Bourdelin | 2018-12-13 | 1 | -1/+1 |
| | | | | | Signed-off-by: Sebastien Bourdelin <sebastien.bourdelin@gmail.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> | ||||
* | imx-kobs: Add i.MX 8 support | Tom Hochstein | 2018-08-30 | 1 | -4/+2 |
| | | | | | Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> | ||||
* | imx-kobs: Bump revision to c70685d | Fabio Berton | 2018-06-26 | 1 | -1/+2 |
| | | | | | | | | | | | | | - Add O.S. Systems Software Copyright This includes the following changes: - c70685d Merge pull request #13 from allenxh/imx8 - d8e5142 imx-kobs: support burn images to imx8mq ddr4 arm2 NAND - a0e9adc Merge pull request #10 from allenxh/imx8 - 89c14fe imx-kobs: support i.MX8 platforms Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br> | ||||
* | imx-kobs: Fix a typo | Khem Raj | 2017-05-19 | 1 | -1/+1 |
| | | | | | Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> | ||||
* | imx-kobs: Fix build with musl | Khem Raj | 2017-05-19 | 1 | -0/+2 |
| | | | | | Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> | ||||
* | imx-kobs: Pick up new commit as fix-compile patch is merged | Jun Zhu | 2017-05-19 | 1 | -4/+3 |
| | | | | | | | | The patch is merged to the new version of imx-kobs. So pick up the new version and remove the patch file. Signed-off-by: Jun Zhu <junzhu@nxp.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> | ||||
* | imx-kobs: Add git recipe | Jun Zhu | 2016-09-08 | 1 | -0/+19 |
The tools "kobs-ng" will be maintained as a open source project. The repository location is https://github.com/NXPmicro/imx-kobs Keep patch "fix-compile.patch" only as the other two are merged into new version. Signed-off-by: Jun Zhu <junzhu@nxp.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> |