summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-oe/recipes-kernel/intel-speed-select/intel-speed-select.bb30
1 files changed, 30 insertions, 0 deletions
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 @@
1SUMMARY = "A tool to validate Intel Speed Select commands"
2
3DESCRIPTION = "The Intel Speed Select Technology (Intel SST) is a powerful new \
4collection of features giving you more granular control over CPU performance \
5for optimized total cost of ownership."
6
7LICENSE = "GPLv2"
8
9inherit kernelsrc
10
11COMPATIBLE_HOST = '(x86_64|i.86).*-linux'
12COMPATIBLE_HOST_libc-musl = 'null'
13
14do_populate_lic[depends] += "virtual/kernel:do_patch"
15
16B = "${WORKDIR}/${BPN}-${PV}"
17
18EXTRA_OEMAKE = "-C ${S}/tools/power/x86/intel-speed-select O=${B} CROSS=${TARGET_PREFIX} CC="${CC}" LD="${LD}" AR=${AR} ARCH=${ARCH}"
19
20PACKAGE_ARCH = "${MACHINE_ARCH}"
21
22do_configure[depends] += "virtual/kernel:do_shared_workdir"
23
24do_compile() {
25 oe_runmake
26}
27
28do_install() {
29 oe_runmake DESTDIR=${D} install
30}