mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-17 18:59:53 +00:00
e3b7463fc1
For netperf, current PV is 2.7.0+git, and the SRCREV is newer than 2.7.0, and there is no tag 2.7.1, the latest tag is in 2015, refer [1], so it is not possile for us to make PV align with the runtime version below by update SRCREV now, add CHECK_VERSION_PV for pn-netperf to mute the version mismatch waring $netserver -V Netperf version 2.7.1 [1] https://github.com/HewlettPackard/netperf Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
24 lines
858 B
Plaintext
24 lines
858 B
Plaintext
INHERIT += "check-version-mismatch"
|
|
# we need ps command to clean stale processes
|
|
HOSTTOOLS += "ps"
|
|
|
|
# Special cases that need to be handled.
|
|
# % has the same meaning as in bbappend files, that is, match any chars.
|
|
|
|
# oe-core
|
|
CHECK_VERSION_PV:pn-rust-llvm = "${LLVM_RELEASE}"
|
|
CHECK_VERSION_PV:pn-igt-gpu-tools = "${PV}-${PV}"
|
|
CHECK_VERSION_PV:pn-vim = "${@'.'.join(d.getVar('PV').split('.')[:-1])}"
|
|
CHECK_VERSION_PV:pn-vim-tiny = "${@'.'.join(d.getVar('PV').split('.')[:-1])}"
|
|
CHECK_VERSION_PV:pn-ncurses = "${PV}.%"
|
|
CHECK_VERSION_PV:pn-alsa-tools = "%"
|
|
CHECK_VERSION_PV:pn-gst-examples = "%"
|
|
CHECK_VERSION_PV:pn-libedit = "${@d.getVar('PV').split('-')[1]}"
|
|
|
|
# meta-oe
|
|
CHECK_VERSION_PV:pn-iozone3 = "3.${PV}"
|
|
CHECK_VERSION_PV:pn-can-utils = "%"
|
|
CHECK_VERSION_PV:pn-luajit = "${PV}.%"
|
|
CHECK_VERSION_PV:pn-sg3-utils = "%"
|
|
CHECK_VERSION_PV:pn-netperf = "2.7.%"
|