mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-08 16:00:32 +00:00
fio: Add PACKAGECONFIG for numa, re-enable ARM build
Make fio's NUMA support optional via PACKAGECONFIG. Enable this feature by default, except on ARM where libnuma/numactl is not available. Signed-off-by: Dominic Sacré <dominic.sacre@gmx.de> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
committed by
Martin Jansa
parent
f110de5080
commit
eb01b36cb3
@@ -10,10 +10,14 @@ SECTION = "console/tests"
|
|||||||
LICENSE = "GPLv2"
|
LICENSE = "GPLv2"
|
||||||
LIC_FILES_CHKSUM = "file://COPYING;md5=393a5ca445f6965873eca0259a17f833"
|
LIC_FILES_CHKSUM = "file://COPYING;md5=393a5ca445f6965873eca0259a17f833"
|
||||||
|
|
||||||
DEPENDS = "libaio zlib numactl"
|
DEPENDS = "libaio zlib"
|
||||||
|
|
||||||
|
PACKAGECONFIG_NUMA = "numa"
|
||||||
# ARM does not currently support NUMA
|
# ARM does not currently support NUMA
|
||||||
COMPATIBLE_HOST = "^((?!arm).*)$"
|
PACKAGECONFIG_NUMA_arm = ""
|
||||||
|
|
||||||
|
PACKAGECONFIG ??= "${PACKAGECONFIG_NUMA}"
|
||||||
|
PACKAGECONFIG[numa] = ",--disable-numa,numactl"
|
||||||
|
|
||||||
# rev for v2.2.6
|
# rev for v2.2.6
|
||||||
SRCREV = "f52c9691bc8c285f3445235c69acdfd6de7f9b82"
|
SRCREV = "f52c9691bc8c285f3445235c69acdfd6de7f9b82"
|
||||||
@@ -23,6 +27,10 @@ S = "${WORKDIR}/git"
|
|||||||
|
|
||||||
EXTRA_OEMAKE = "CC='${CC}' LDFLAGS='${LDFLAGS}'"
|
EXTRA_OEMAKE = "CC='${CC}' LDFLAGS='${LDFLAGS}'"
|
||||||
|
|
||||||
|
do_configure() {
|
||||||
|
./configure ${EXTRA_OECONF}
|
||||||
|
}
|
||||||
|
|
||||||
do_install() {
|
do_install() {
|
||||||
oe_runmake install DESTDIR=${D} prefix=${prefix} mandir=${mandir}
|
oe_runmake install DESTDIR=${D} prefix=${prefix} mandir=${mandir}
|
||||||
install -d ${D}/${docdir}/${PN}
|
install -d ${D}/${docdir}/${PN}
|
||||||
|
|||||||
Reference in New Issue
Block a user