mirror of
git://git.yoctoproject.org/meta-intel.git
synced 2026-01-27 10:21:22 +01:00
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>
28 lines
819 B
BlitzBasic
28 lines
819 B
BlitzBasic
SUMMARY = "intel-cmt-cat"
|
|
DESCRIPTION = "Software package which provides basic support for Intel(R) \
|
|
Resource Director Technology (Intel(R) RDT)"
|
|
HOMEPAGE = "https://github.com/intel/intel-cmt-cat"
|
|
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=4b63c65942e1c16fd897f8cd20abebf8"
|
|
|
|
SRC_URI = "git://github.com/intel/intel-cmt-cat;protocol=https;branch=master"
|
|
SRCREV = "17629d0b726875836af6c7d9cb38b8ed23f32089"
|
|
|
|
COMPATIBLE_HOST = '(x86_64).*-linux'
|
|
COMPATIBLE_HOST:libc-musl = "null"
|
|
|
|
do_install() {
|
|
oe_runmake install PREFIX=${D}${prefix} NOLDCONFIG=y
|
|
}
|
|
|
|
FILES:${PN} += "${nonarch_libdir}/libpqos*"
|
|
FILES:${PN}-doc = "/usr/man*"
|
|
|
|
INSANE_SKIP:${PN} += "ldflags"
|
|
INSANE_SKIP:${PN} += "dev-so"
|
|
INSANE_SKIP:${PN} += "libdir"
|
|
INSANE_SKIP:${PN} += "already-stripped"
|
|
|
|
INHIBIT_PACKAGE_DEBUG_SPLIT = "1"
|