mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-16 18:40:03 +00:00
c61dc077bb
This is the result of automated script (0.9.1) conversion: oe-core/scripts/contrib/convert-overrides.py . converting the metadata to use ":" as the override character instead of "_". Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
31 lines
773 B
BlitzBasic
31 lines
773 B
BlitzBasic
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
|
|
}
|