summaryrefslogtreecommitdiffstats
path: root/recipes-support/metee
Commit message (Collapse)AuthorAgeFilesLines
* metee: Use targeted pragma to suppress sign-conversion warningsYogesh Tyagi2026-02-182-1/+63
| | | | Signed-off-by: Yogesh Tyagi <yogesh.tyagi@intel.com>
* metee: Fix build failure with musl libcYogesh Tyagi2026-02-062-0/+49
| | | | | | | | | | | | | Add patch to fix sign-conversion warnings with musl ioctl macros. musl's ioctl request macros expand to unsigned long values, causing sign-conversion warnings when passed to ioctl() which expects an int. Cast the macros explicitly to int in three ioctl calls: - IOCTL_MEI_CONNECT_CLIENT - IOCTL_MEI_CONNECT_CLIENT_VTAG - IOCTL_MEI_NOTIFY_GET Signed-off-by: Yogesh Tyagi <yogesh.tyagi@intel.com>
* metee : upgrade 3.2.4 -> 6.0.2Yogesh Tyagi2026-01-271-1/+1
| | | | | | | Release Notes: https://github.com/intel/metee/releases/tag/6.0.2 Signed-off-by: Yogesh Tyagi <yogesh.tyagi@intel.com>
* meta-intel: reorganize recipes into correct logical groupsYogesh Tyagi2026-01-131-0/+16
Reorganize meta-intel recipes to follow Yocto best practices and clear semantic boundaries between clang/SYCL components, BSP enablement, core OS policy, and generic support libraries. Key changes: - Move oneDPL into clang dynamic layer (SYCL / Clang-semantic dependency) - Move linux-npu-driver from recipes-core to recipes-bsp (platform enablement) - Move formfactor from recipes-bsp to recipes-core (system-wide OS policy) - Move intel-oneapi-ipp out of clang layer into recipes-oneapi (CPU-only, compiler-agnostic) - Move intel-crypto-mb from recipes-oneapi to recipes-support/crypto - Move intel-cmt-cat and metee from recipes-bsp to recipes-support This refactor improves layer clarity, avoids unnecessary clang coupling, and aligns recipe placement with Yocto conventions. Signed-off-by: Yogesh Tyagi <yogesh.tyagi@intel.com>