diff options
| author | Lei Yang <lei.yang@windriver.com> | 2013-01-31 15:18:47 +0800 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2013-02-01 09:08:07 -0500 |
| commit | 0afb6647c1ba91b9197d3720537cdb8b211ddcee (patch) | |
| tree | 998f9ab3136ed4b6c4bbd769b1fe9f12da4dd7be /recipes-networking | |
| parent | 176a8d2ed831480221e0377edcb371aeb99e0caa (diff) | |
| download | meta-virtualization-0afb6647c1ba91b9197d3720537cdb8b211ddcee.tar.gz | |
openvswtich: start openvswitch at the boot time
When I define the bridge, I get below error
root@intel_5500_server:~# ovs-vsctl add-br ovsbr0
Jan 25 17:34:07|00002|stream_unix|ERR|/tmp/stream-unix.1487.0: connection to /var/run/openvswitch/db.sock
failed: No such file or directory
........
........
This is because openvswitch damon isn't running,so we'd better start it at
the boot time. The split-package ${PN}-switch ${PN}-controller provide us
to start necessary daemon with update-rc.d so we add them to the RDEPENDS.
Since openvswitch depends on openvswtich kernel module, so auto load the
kernel module too.
Signed-off-by: Lei Yang <lei.yang@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'recipes-networking')
| -rw-r--r-- | recipes-networking/openvswitch/openvswitch_1.4.3.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-networking/openvswitch/openvswitch_1.4.3.bb b/recipes-networking/openvswitch/openvswitch_1.4.3.bb index 88f01142..67640735 100644 --- a/recipes-networking/openvswitch/openvswitch_1.4.3.bb +++ b/recipes-networking/openvswitch/openvswitch_1.4.3.bb | |||
| @@ -7,7 +7,7 @@ LICENSE = "Apache-2" | |||
| 7 | DEPENDS += "bridge-utils openssl python perl" | 7 | DEPENDS += "bridge-utils openssl python perl" |
| 8 | 8 | ||
| 9 | RDEPENDS_${PN} += "util-linux-uuidgen util-linux-libuuid \ | 9 | RDEPENDS_${PN} += "util-linux-uuidgen util-linux-libuuid \ |
| 10 | python perl perl-module-strict" | 10 | python perl perl-module-strict ${PN}-switch ${PN}-controller" |
| 11 | RDEPENDS_${PN}-controller = "${PN} lsb ${PN}-pki" | 11 | RDEPENDS_${PN}-controller = "${PN} lsb ${PN}-pki" |
| 12 | RDEPENDS_${PN}-switch = "${PN} openssl procps util-linux-uuidgen" | 12 | RDEPENDS_${PN}-switch = "${PN} openssl procps util-linux-uuidgen" |
| 13 | RDEPENDS_${PN}-pki = "${PN}" | 13 | RDEPENDS_${PN}-pki = "${PN}" |
