diff options
author | Yousong Zhou <yszhou4tech@gmail.com> | 2018-02-13 15:34:42 +0800 |
---|---|---|
committer | Yousong Zhou <yszhou4tech@gmail.com> | 2018-03-06 00:29:53 +0800 |
commit | 4feb43bf4361ddb581e32d300558b986e0a5445b (patch) | |
tree | 47b6088e0d7bbf46c0c63d39cf7312d14c478c94 /net/openvswitch/patches | |
parent | cc172131db564f23e66e3bc431fe0e641d562361 (diff) |
openvswitch: remove dependency on SUPPORTED_KERNELS
Quote from Open vSwitch FAQ.md
Open vSwitch userspace should also work with the Linux kernel module
built into Linux 3.3 and later.
Open vSwitch userspace is not sensitive to the Linux kernel version. It
should build against almost any kernel, certainly against 2.6.32 and
later.
The SUPPORTED_KERNEL dependency for openvswitch kernel module only
makes sense when we are building it from the ovs release tarballs
against mainline kernels. Now that we are using the module from vanilla
kernel itself, the dependency does not exist anymore
Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
Diffstat (limited to 'net/openvswitch/patches')
-rw-r--r-- | net/openvswitch/patches/0005-disable-module-build.patch | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/net/openvswitch/patches/0005-disable-module-build.patch b/net/openvswitch/patches/0005-disable-module-build.patch deleted file mode 100644 index 43d498694..000000000 --- a/net/openvswitch/patches/0005-disable-module-build.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 7cf69704374e363fdda227803be3849233ba96f3 Mon Sep 17 00:00:00 2001 -From: Dario Ernst <Dario.Ernst@riverbed.com> -Date: Fri, 25 Nov 2016 15:33:48 +0100 -Subject: [PATCH 4/4] disable-module-build - ---- - datapath/linux/Makefile.main.in | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/datapath/linux/Makefile.main.in b/datapath/linux/Makefile.main.in -index 7d18253..e5555a7 100644 ---- a/datapath/linux/Makefile.main.in -+++ b/datapath/linux/Makefile.main.in -@@ -68,7 +68,7 @@ ifeq (,$(wildcard $(CONFIG_FILE))) - endif - - default: -- $(MAKE) -C $(KSRC) M=$(builddir) modules -+ @echo skipping module build - - modules_install: - $(MAKE) -C $(KSRC) M=$(builddir) modules_install --- -2.9.3 - |