summaryrefslogtreecommitdiff
path: root/.gitignore
Commit message (Collapse)AuthorAgeFilesLines
* gitignore: Update for Debian build artifacts.Aaron Rosen2016-07-021-1/+1
| | | | | | | | | After running: `fakeroot debian/rules binary`. These files are left uncommitted to the source tree and should be ignored. Signed-off-by: Aaron Rosen <aaronorosen@gmail.com> Signed-off-by: Ben Pfaff <blp@ovn.org>
* tests: enable basic lcov code coverage reporting supportLance Richardson2016-03-181-0/+1
| | | | | | | | Add "check-lcov" target to generate an HTML code coverage report for testsuite execution using lcov and genhtml. Signed-off-by: Lance Richardson <lrichard@redhat.com> Signed-off-by: Ben Pfaff <blp@ovn.org>
* rhel: Add 'rpm-fedora' and 'rpm-fedora-kmod' targetsLance Richardson2016-02-291-0/+2
| | | | | | | | | | | Add make targets for Fedora and RHEL7 RPMs, update INSTALL.Fedora.md to document their use Added distribution tarball and rpm build directory to .gitignore. Signed-off-by: Lance Richardson <lrichard@redhat.com> Acked-by: Flavio Leitner <fbl@sysclose.org> Signed-off-by: Ben Pfaff <blp@ovn.org>
* gitignore: Ignore flake8-check.Ben Pfaff2016-01-211-0/+1
| | | | | | | | This is generated at build time and should not be part of the repo. Fixes: 115d8719dbfda (python: Run flake8 at build time.) Signed-off-by: Ben Pfaff <blp@ovn.org> Acked-by: Russell Bryant <russell@ovn.org>
* .gitignore: Add dist-docs.Russell Bryant2015-10-011-0/+1
| | | | | | | | Running "make dist-docs" to generate docs creates a "dist-docs" directory that should be ignored by git. Signed-off-by: Russell Bryant <rbryant@redhat.com> Signed-off-by: Ben Pfaff <blp@nicira.com>
* gitignore: Add file to .gitignoreAlin Serdean2015-04-291-0/+1
| | | | | | | Add testsuite.tmp.orig to .gitignore Signed-off-by: Alin Gabriel Serdean <aserdean@cloudbasesolutions.com> Signed-off-by: Gurucharan Shetty <gshetty@nicira.com>
* vagrant: switch to use out of tree buildAndy Zhou2015-01-081-1/+0
| | | | | | | | | | | | | | | | Vagrant shared folder, at least on the default virtual box, does not support the creation of the socket files. If one were to build OVS under /vagrant, 'make check' would not work. Out of tree builds can be used to work around this issue. See Install.md for instructions. Since out of tree builds requires a clean source tree, Vagrantfile can not be a generated file. This commit removes Vagrantfile.in, commit Vagrantfile instead. Signed-off-by: Andy Zhou <azhou@nicira.com> Acked-by: Thomas Graf <tgraf@noironetworks.com>
* vagrant: Provide basic VagrantfileThomas Graf2015-01-051-0/+2
| | | | | | | | | | | | | | | This is a basic Vagrantfile which compiles and provisions the local OVS source tree in a Fedora 20 VM. The Vagrantfile.in can be extended to support additional distributions. To use this Vagrantfile: 1. Install Vagrant plus a compatible hypervisor 2. Run configure to translate Vagrantfile.in to Vagrantfile 3. Run `vagrant up` to create & provision the VM 4. Run `vagrant ssh` to log into the VM Signed-off-by: Thomas Graf <tgraf@noironetworks.com> Acked-by: Kyle Mestery <mestery@mestery.com>
* gitignore: Ignore coverage data files.Mijo Safradin2015-01-021-0/+2
| | | | | | | Add coverage specific data files to gitignore. Signed-off-by: Mijo Safradin <mijo@linux.vnet.ibm.com> Signed-off-by: Ben Pfaff <blp@nicira.com>
* Build: Add support for shared libraries and versioning.Scott Mann2014-11-111-0/+1
| | | | | | | | | | | | | | | | | These changes allow for the building of shared libraries by providing the --enable-shared option to configure. In particular, lib/libopenvwitch.so, lib/libsflow.so, ofproto/libofproto.so, and ovsdb/libovsdb.so will be built. Original behavior of building static remains the same. Additionally, versioning is introduced to each of the libraries objects paving the way for APIs to be built around them. A detailed comment outlining the rules for changing a version number is provided in configure.ac. Note that at this time, the version number is set to 1.0.0, no API is specified yet, and there are no requirements to maintain any sort of compatibility in any of the libraries. Signed-off-by: Scott Mann <smann@noironetworks.com> Signed-off-by: Ben Pfaff <blp@nicira.com>
* odp-netlink.h: Autogenerate a version of odp-netlink for windows kernel.Ankur Sharma2014-08-111-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Autogenerated odp-netlink.h will not compile with windows kernel, as it refers to some userspace files like openvswitch/types.h and packets.h which hyperv extension does not access. Due to this the windows datapath compilation is broken on tip of tree. This patch intends to fix that. In this patch we add a new sed script "extract-odp-netlink-windows-dp-h" to create OvsDpInterface.h. It works on similar lines as extract-odp-netlink-h, but avoids including the header files which are not available for driver. After this fix, a userspace build will be needed before windows kernel datapath can be built. Tested that hyperv extension could be built after building the userspace. Verified vxlan tunnel based ping across hypervisors. Verified that odp-netlink-windows-dp.h is not built for linux platform. Ran 'make distcheck' to verify that nothing is broken on linux. Signed-off-by: Ankur Sharma <ankursharma@vmware.com> Co-authored-by: Saurabh Shah <ssaurabh@vmware.com> Tested-by: Ankur Sharma <ankursharma@vmware.com> Reported-by: Alin Serdean <aserdean@cloudbasesolutions.com> Reported-by: Nithin Raju <nithin@vmware.com> Reported-at: https://github.com/openvswitch/ovs-issues/issues/21 Signed-off-by: Ben Pfaff <blp@nicira.com>
* .gitignore: Update with couple of Windows specific creations.Gurucharan Shetty2014-06-101-0/+2
| | | | | Signed-off-by: Gurucharan Shetty <gshetty@nicira.com> Acked-by: Ben Pfaff <blp@nicira.com>
* .gitignore: Ignore visual studio created files.Gurucharan Shetty2014-03-131-1/+6
| | | | | Signed-off-by: Gurucharan Shetty <gshetty@nicira.com> Acked-by: Ben Pfaff <blp@nicira.com>
* .gitignore: add /libtoolLorand Jakab2013-12-201-0/+1
| | | | | | | | The ./configure script now generates a 'libtool' file in the top-level directory. Add it to .gitignore Signed-off-by: Lorand Jakab <lojakab@cisco.com> Signed-off-by: Ben Pfaff <blp@nicira.com>
* ovs-dev.py: Build with both GCC and Clang.Ethan Jackson2013-12-121-0/+2
| | | | | | | | | | | Many deployments prefer to use gcc in production and it supports sparse, while clang supports thread safety analysis and has more/better warnings and error messages. This patch changes ovs-dev.py to build with both so that developers are unlikely to miss something that one or the other could catch. Signed-off-by: Ethan Jackson <ethan@nicira.com> Acked-by: Joe Stringer <joestringer@nicira.com>
* .gitignore: ignore temporary _debian packaging contentMark Hamilton2013-07-251-0/+1
| | | | | Signed-off-by: Mark Hamilton <mhamilton@nicira.com> Signed-off-by: Ben Pfaff <blp@nicira.com>
* tests: Add code coverage for Python.Ethan Jackson2012-03-021-0/+2
| | | | | | | Adds support for Ned Batchelder's code coverage tool to the test suite. http://nedbatchelder.com/code/coverage/ Signed-off-by: Ethan Jackson <ethan@nicira.com>
* gitignore: Add manpage-check.Ethan Jackson2011-08-251-0/+1
|
* Add some new generated files to .gitignore.Justin Pettit2011-01-111-0/+4
| | | | A few generated files have snuck in that should be ignored by git.
* Add build checks for portable OpenFlow structure padding and alignment.Ben Pfaff2010-01-251-1/+0
| | | | | This causes the build to fail with an error message if openflow.h contains a structure whose members are not aligned in a portable way.
* Update .gitignore filesJustin Pettit2009-12-101-0/+1
|
* Use Autotest for the Open vSwitch test suite.Ben Pfaff2009-07-291-0/+1
| | | | | | | | | Autotest doesn't provide a lot of benefit by itself but it does allow us to easily put a wrapper around each test by using a macro to invoke it. (To do that with the built-in Automake test framework you need to write or generate a separate wrapper script for each test, which is a pain.) The next commit will take advantage of this possibility by adding support for code coverage analysis.
* Import from old repository commit 61ef2b42a9c4ba8e1600f15bb0236765edc2ad45.v0.90.0Ben Pfaff2009-07-081-0/+43