diff options
| author | Fathi Boudra <fathi.boudra@linaro.org> | 2017-09-21 11:08:33 +0300 |
|---|---|---|
| committer | Martin Jansa <Martin.Jansa@gmail.com> | 2017-09-22 22:50:48 +0000 |
| commit | 9de8ce7f3ae6f4ded76496ada28ac6c3c4c22122 (patch) | |
| tree | 2beed160ea9f174c287d8ed1a692018cb51fffd3 /meta-oe | |
| parent | 82dc6280f4bb6cd00664ee89aa2ab33111da24b6 (diff) | |
| download | meta-openembedded-9de8ce7f3ae6f4ded76496ada28ac6c3c4c22122.tar.gz | |
cpupower: add a new recipe
cpupower is a tool to show and set processor power related values.
In addition, it allows to run in-kernel selftests intel_pstate test.
The recipe is based on the initial work from Roy Li <rongqing.li@windriver.com>:
https://patchwork.openembedded.org/patch/118911/
Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe')
| -rw-r--r-- | meta-oe/recipes-kernel/cpupower/cpupower.bb | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/meta-oe/recipes-kernel/cpupower/cpupower.bb b/meta-oe/recipes-kernel/cpupower/cpupower.bb new file mode 100644 index 0000000000..c963c8ef91 --- /dev/null +++ b/meta-oe/recipes-kernel/cpupower/cpupower.bb | |||
| @@ -0,0 +1,36 @@ | |||
| 1 | SUMMARY = "Shows and sets processor power related values" | ||
| 2 | DESCRIPTION = "cpupower is a collection of tools to examine and tune power \ | ||
| 3 | saving related features of your processor." | ||
| 4 | LICENSE = "GPLv2" | ||
| 5 | LIC_FILES_CHKSUM = "file://COPYING;md5=d7810fab7487fb0aad327b76f1be7cd7" | ||
| 6 | DEPENDS = "pciutils" | ||
| 7 | PROVIDES = "virtual/cpupower" | ||
| 8 | |||
| 9 | inherit kernelsrc kernel-arch | ||
| 10 | |||
| 11 | do_populate_lic[depends] += "virtual/kernel:do_patch" | ||
| 12 | |||
| 13 | EXTRA_OEMAKE = "-C ${S}/tools/power/cpupower O=${B} CROSS=${TARGET_PREFIX} CC="${CC}" LD="${LD}" AR=${AR} ARCH=${ARCH}" | ||
| 14 | |||
| 15 | do_configure[depends] += "virtual/kernel:do_shared_workdir" | ||
| 16 | |||
| 17 | do_compile() { | ||
| 18 | oe_runmake | ||
| 19 | } | ||
| 20 | |||
| 21 | do_install() { | ||
| 22 | oe_runmake DESTDIR=${D} install | ||
| 23 | # Do not ship headers | ||
| 24 | rm -rf ${D}${includedir} | ||
| 25 | chown -R root:root ${D} | ||
| 26 | } | ||
| 27 | |||
| 28 | PACKAGE_ARCH = "${MACHINE_ARCH}" | ||
| 29 | |||
| 30 | RDEPENDS_${PN} = "bash" | ||
| 31 | |||
| 32 | python do_package_prepend() { | ||
| 33 | d.setVar('PKGV', d.getVar("KERNEL_VERSION", True).split("-")[0]) | ||
| 34 | } | ||
| 35 | |||
| 36 | B = "${WORKDIR}/${BPN}-${PV}" | ||
