summaryrefslogtreecommitdiffstats
path: root/dynamic-layers/openembedded-layer/recipes-devtools
Commit message (Collapse)AuthorAgeFilesLines
* uuu: Set SECTION and order variables per oelintLuciano Dittgen3 days1-6/+6
| | | | | | | | | | | Add a SECTION and reorder into the canonical oelint variable order: LICENSE before PV, PV before SRC_URI/SRCREV, and DEPENDS moved above the inherit so it is no longer flagged as overwriting DEPENDS after an inherit. No functional change; pure recipe-metadata cleanup. Signed-off-by: Luciano Dittgen <luciano.dittgen@ossystems.com.br>
* utp-com: Set SUMMARY/SECTION and order variables per oelintLuciano Dittgen3 days1-3/+4
| | | | | | | | | | | | | oelint-adv flagged a missing SUMMARY, a suggested SECTION, and SRC_URI/PV appearing out of the expected order. Add SUMMARY and SECTION and reorder the fetch variables to PV / SRC_URI / SRCREV as oelint expects. Metadata-only change; the built package is unaffected. oelint-adv now reports no findings for this recipe. Signed-off-by: Luciano Dittgen <luciano.dittgen@ossystems.com.br>
* uuu: Sort DEPENDS entries alphabeticallyOtavio Salvador5 days1-1/+1
| | | | | | | Order DEPENDS alphabetically per oelint.vars.dependsordered. No functional change. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* global: Set HOMEPAGE from SRC_URIOtavio Salvador6 days1-0/+1
| | | | | | | | | | | | | | Add the mandatory HOMEPAGE to recipes that were missing it, using each recipe's own upstream git repository (github.com/gitlab.com) taken from its SRC_URI. Clears the oelint-adv oelint.var.mandatoryvar.HOMEPAGE error for these recipes. Only recipes with a single, unambiguous upstream repo were set automatically; recipes with multiple repos in SRC_URI (a main source plus dependency/patch repos) were resolved by hand or left for a maintainer, to avoid pointing HOMEPAGE at a dependency. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* global: Replace tabs with spaces in task bodiesOtavio Salvador6 days1-1/+1
| | | | | | | | | | | | Convert leading-tab indentation to spaces in shell task bodies across the layer. Generated mechanically by oelint-adv's auto-fix for a single rule (oelint.tabs.notabs), isolated to one commit. Verified safe: every change is leading indentation of shell/BitBake code (no mid-line tabs, and none of the affected files contain heredocs where a tab would be significant), so there is no functional change. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* global: Drop needless whitespace in assignmentsOtavio Salvador6 days1-1/+1
| | | | | | | | | | | | | | Remove the stray space between an assignment's opening quote and its line-continuation backslash, and the space before '%' in inline ${@...} expressions. Generated mechanically by oelint-adv's auto-fix for a single rule (oelint.vars.notneededspace), isolated to one commit. The affected values are whitespace-separated lists (leading space is insignificant) and Python format expressions ("%s"% p is equivalent), so there is no functional change; a re-run of oelint-adv reports the rule clean. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* uuu: Move recipe to openembedded-layer dynamic layerLuciano Dittgen2026-06-241-0/+16
| | | | | | | | uuu depends on libtinyxml2, which is provided by meta-oe. Keep the recipe available only when openembedded-layer is enabled so a core-only meta-freescale configuration remains buildable. Signed-off-by: Luciano Dittgen <luciano.dittgen@ossystems.com.br>
* utp-com: Move recipe to openembedded-layer dynamic layerLuciano Dittgen2026-06-241-0/+25
| | | | | | | | utp-com depends on sg3-utils, which is provided by meta-oe. Keep the recipe available only when openembedded-layer is enabled so a core-only meta-freescale configuration remains buildable. Signed-off-by: Luciano Dittgen <luciano.dittgen@ossystems.com.br>
* imx-cst: Remove it now that it is in meta-oeFabio Estevam2024-09-131-40/+0
| | | | | | | | | | | Since meta-oe commit 87579c932e19 ("imx-cst: Add recipe") the imx-cst recipe is avaiable in meta-oe: https://github.com/openembedded/meta-openembedded/commit/87579c932e19d9802ce05c692b1d56a56d7762fe Remove it from meta-freescale in favor of using the meta-oe version. Signed-off-by: Fabio Estevam <festevam@gmail.com>
* imx-cst: Remove unused patchFabio Estevam2024-09-061-56/+0
| | | | | | | | | Since the update to version 3.4.0, the imx-cst patch is no longer used. Remove the unused imx-cst patch. Signed-off-by: Fabio Estevam <festevam@denx.de>
* imx-cst: update the recipe for version 3.4.0Paul Gerber2024-08-272-35/+40
| | | | | | | New version of NXP i.MX Code Signing Tool for signing images for i.MX HABv4 and AHAB. Signed-off-by: Paul Gerber <paul.gerber@ew.tq-group.com>
* openembedded-layer: Remove luajit abbappendAlexander Stein2024-08-052-108/+0
| | | | | | | | | This (qoriq-ppc only) patch fails to apply since upstream commit https://repo.or.cz/luajit-2.0.git/commitdiff/338e9863c220462201fde0e725aba4002310c849 This breaks 'devtool modify luajit' even on non-qoriq-pcc platforms. Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>
* patches: fix upstream-statusMax Krummenacher2024-06-181-2/+1
| | | | | | | | | | OE-core enabled the picky QA check on Upstream-Status. commit b7fb91c797ab ("insane: add patch-status to default ERROR_QA") Add missing upstream-status respectively fix unknown 'unknown' state. strict_status_re = re.compile(r"^Upstream-Status: (Pending|Submitted|Denied|Inappropriate|Backport|Inactive-Upstream)( .+)?$", re.MULTILINE) Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
* imx-cst: fix build issue for Ubuntu 22.04(LTS)Walter Schweizer2023-02-042-1/+60
| | | | | | | | | | | | | On Ubuntu 22.04(LTS) cst fails to link with libcrypto. NXP uses weaken to solve a conflict in linking. The linker in Ubuntu seems to ignore weak symbols does not link libcrypto at all. The patch fixes the conflict in the code itself. It restricts the scope of err_msg to the module. Signed-off-by: Walter Schweizer <walter.schweizer@siemens.com>
* imx-cst: Use specific BSD licenseKhem Raj2022-04-141-1/+1
| | | | | | | Fixes WARNING: imx-cst-3.3.1-r0 do_populate_lic: QA Issue: imx-cst: No generic license file exists for: BSD in any provider [license-exists] Signed-off-by: Khem Raj <raj.khem@gmail.com>
* imx-cst: Correct SRC_URI to use static SRCREV instead of tagKhem Raj2021-10-041-1/+3
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* layer: Convert to new override syntaxKhem Raj2021-08-121-2/+2
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* imx-cst: introduce the recipe for the version 3.3.1Thomas Perrot2021-08-121-0/+30
| | | | | | | | It provides a code signing tool for signing images for i.MX-based NXP processors using High Assurance Boot (HABv4) library in the internal boot ROM or the Advanced High Assurance Boot (AHAB) subsystem. Signed-off-by: Thomas Perrot <thomas.perrot@bootlin.com>
* Move meta-fsl-ppc content to layer rootOtavio Salvador2015-07-282-0/+109
This commit is just a rename of all contents of meta-fsl-ppc subdirectory to this layer's root, merging the contents of common files, subsequent changes are based on top of that. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>