netdev-dpdk: fix mbuf leaks
[cascardo/ovs.git] / INSTALL.NetBSD.md
1 How to Install Open vSwitch on NetBSD
2 =====================================
3
4 On NetBSD, you might want to install requirements from pkgsrc.
5 In that case, you need at least the following packages.
6
7   * automake
8   * libtool-base
9   * gmake
10   * python27
11   * py27-xml
12   * pkg_alternatives
13
14 Some components have additional requirements. (See [INSTALL.md])
15
16 Assuming you are running NetBSD/amd64 6.1.2, you can download and
17 install pre-built binary packages as the following.
18 (You might get some warnings about minor version mismatch.  Don't care.)
19
20     ```
21     # PKG_PATH=http://ftp.netbsd.org/pub/pkgsrc/packages/NetBSD/amd64/6.1.2/All/
22     # export PKG_PATH
23     # pkg_add automake libtool-base gmake python27 py27-xml pkg_alternatives
24     ```
25
26 NetBSD's `/usr/bin/make` is not GNU make.  GNU make is installed as
27 `/usr/pkg/bin/gmake` by the above mentioned `gmake` package.
28
29 As all executables installed with pkgsrc are placed in `/usr/pkg/bin/`
30 directory, it might be a good idea to add it to your PATH.
31
32 Open vSwitch on NetBSD is currently "userspace switch" implementation
33 in the sense described in [INSTALL.userspace.md] and [PORTING.md].
34
35 [INSTALL.md]:INSTALL.md
36 [INSTALL.userspace.md]:INSTALL.userspace.md
37 [PORTING.md]:PORTING.md