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 = "GPL-2.0-only" 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} 31