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