diff options
author | Alexandru Ardelean <ardeleanalex@gmail.com> | 2017-05-25 16:31:25 +0300 |
---|---|---|
committer | Alexandru Ardelean <ardeleanalex@gmail.com> | 2017-05-25 16:31:27 +0300 |
commit | 3b8c6e01b1e79649cd44bf32d47e50ce1e541ea3 (patch) | |
tree | 83041f2b65db92ef809e3e0f1b866c7c7f3f0f5e /net/openvswitch/patches | |
parent | 0ec671fc5c23258b22f22c62801e7e803075ffa1 (diff) |
openvswitch: disable built-in kernel module build
Since we're using the kernel's module, this is
un-necessary.
Should speed up the build a bit.
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
Diffstat (limited to 'net/openvswitch/patches')
-rw-r--r-- | net/openvswitch/patches/0005-disable-module-build.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/net/openvswitch/patches/0005-disable-module-build.patch b/net/openvswitch/patches/0005-disable-module-build.patch new file mode 100644 index 000000000..43d498694 --- /dev/null +++ b/net/openvswitch/patches/0005-disable-module-build.patch @@ -0,0 +1,25 @@ +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 + |