From 668d0152c7630563cfbaa959e83b957d753e256d Mon Sep 17 00:00:00 2001 From: Yongxin Liu Date: Tue, 9 Jun 2020 13:59:23 +0800 Subject: intel-speed-select: Add new recipe for the tool to validate Intel SST Signed-off-by: Yongxin Liu Signed-off-by: Khem Raj --- .../intel-speed-select/intel-speed-select.bb | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 meta-oe/recipes-kernel/intel-speed-select/intel-speed-select.bb diff --git a/meta-oe/recipes-kernel/intel-speed-select/intel-speed-select.bb b/meta-oe/recipes-kernel/intel-speed-select/intel-speed-select.bb new file mode 100644 index 0000000000..53f6de1068 --- /dev/null +++ b/meta-oe/recipes-kernel/intel-speed-select/intel-speed-select.bb @@ -0,0 +1,30 @@ +SUMMARY = "A tool to validate Intel Speed Select commands" + +DESCRIPTION = "The Intel Speed Select Technology (Intel SST) is a powerful new \ +collection of features giving you more granular control over CPU performance \ +for optimized total cost of ownership." + +LICENSE = "GPLv2" + +inherit kernelsrc + +COMPATIBLE_HOST = '(x86_64|i.86).*-linux' +COMPATIBLE_HOST_libc-musl = 'null' + +do_populate_lic[depends] += "virtual/kernel:do_patch" + +B = "${WORKDIR}/${BPN}-${PV}" + +EXTRA_OEMAKE = "-C ${S}/tools/power/x86/intel-speed-select O=${B} CROSS=${TARGET_PREFIX} CC="${CC}" LD="${LD}" AR=${AR} ARCH=${ARCH}" + +PACKAGE_ARCH = "${MACHINE_ARCH}" + +do_configure[depends] += "virtual/kernel:do_shared_workdir" + +do_compile() { + oe_runmake +} + +do_install() { + oe_runmake DESTDIR=${D} install +} -- cgit v1.2.3-54-g00ecf