mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-19 20:59:41 +02:00
openvswitch: fix RDEPENDS issue for installers.
Make sure openvswitch has all the runtime dependencies defined. Without e.g. sed, an installer may calculate dependencies and order packages based on the deps, which may install openvswitch before sed. This would result in an install failure, when the post install step calls ovs-pki, which uses sed. Signed-off-by: Paul Barrette <paul.barrette@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
This commit is contained in:
parent
7908efdb9c
commit
0997753a6e
|
@ -14,7 +14,11 @@ RDEPENDS_${PN}-pki = "${PN}"
|
|||
RDEPENDS_${PN}-brcompat = "${PN} ${PN}-switch"
|
||||
RRECOMMENDS_${PN} += "kernel-module-openvswitch"
|
||||
|
||||
PR = "r2"
|
||||
# Some installers will fail because of an install order based on
|
||||
# rdeps. E.g. ovs-pki calls sed in the postinstall. sed may be
|
||||
# queued for install later.
|
||||
RDEPENDS_${PN} += "sed gawk grep"
|
||||
PR = "r3"
|
||||
|
||||
SRC_URI = "http://openvswitch.org/releases/openvswitch-${PV}.tar.gz \
|
||||
file://openvswitch-switch \
|
||||
|
|
Loading…
Reference in New Issue
Block a user