You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.3 KiB

openvswitch: provide in-tree kmod builds Open vSwitch 2.10 introduces meters support to the kernel datapath. In upstream Linux, the feature is only available since 4.15 This is mainly for make the newly introduced meter features in linux kernel datapath more easily available root@OpenWrt:/# ovs-ofctl -OOpenFlow13 meter-features br0 OFPST_METER_FEATURES reply (OF1.3) (xid=0x2): max_meter:4294967295 max_bands:1 max_color:0 band_types: drop capabilities: kbps pktps burst stats root@OpenWrt:/# Size comparison between in-tree and upstreamed modules are attached 2800 Sep 5 08:47 ipkg-mips_24kc/kmod-openvswitch-geneve-intree/lib/modules/4.14.67/vport-geneve.ko 2736 Sep 5 08:47 ipkg-mips_24kc/kmod-openvswitch-geneve/lib/modules/4.14.67/vport-geneve.ko 2596 Sep 5 08:47 ipkg-mips_24kc/kmod-openvswitch-gre-intree/lib/modules/4.14.67/vport-gre.ko 2536 Sep 5 08:47 ipkg-mips_24kc/kmod-openvswitch-gre/lib/modules/4.14.67/vport-gre.ko 288320 Sep 5 08:47 ipkg-mips_24kc/kmod-openvswitch-intree/lib/modules/4.14.67/openvswitch.ko 118984 Sep 5 08:47 ipkg-mips_24kc/kmod-openvswitch/lib/modules/4.14.67/openvswitch.ko 2792 Sep 5 08:47 ipkg-mips_24kc/kmod-openvswitch-lisp-intree/lib/modules/4.14.67/vport-lisp.ko 2788 Sep 5 08:47 ipkg-mips_24kc/kmod-openvswitch-stt-intree/lib/modules/4.14.67/vport-stt.ko 3668 Sep 5 08:47 ipkg-mips_24kc/kmod-openvswitch-vxlan-intree/lib/modules/4.14.67/vport-vxlan.ko 3400 Sep 5 08:47 ipkg-mips_24kc/kmod-openvswitch-vxlan/lib/modules/4.14.67/vport-vxlan.ko Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
6 years ago
  1. From e451d74788c73e8679e6a2268185a08901ac7f8c Mon Sep 17 00:00:00 2001
  2. From: Yousong Zhou <zhouyousong@yunionyun.com>
  3. Date: Tue, 21 Aug 2018 12:21:05 +0000
  4. Subject: [PATCH 102/107] python: separate host/target python for cross-compile
  5. At the moment, python-six is a requirement for openvswitch python
  6. library on target machine.
  7. Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
  8. ---
  9. Makefile.am | 2 +-
  10. m4/openvswitch.m4 | 2 ++
  11. 2 files changed, 3 insertions(+), 1 deletion(-)
  12. diff --git a/Makefile.am b/Makefile.am
  13. index 788972804..cd90cc176 100644
  14. --- a/Makefile.am
  15. +++ b/Makefile.am
  16. @@ -60,7 +60,7 @@ endif
  17. # foo/__init__.pyc will cause Python to ignore foo.py.
  18. run_python = \
  19. PYTHONPATH=$(top_srcdir)/python$(psep)$$PYTHONPATH \
  20. - PYTHONDONTWRITEBYTECODE=yes $(PYTHON)
  21. + PYTHONDONTWRITEBYTECODE=yes $(PYTHON_HOST)
  22. ALL_LOCAL =
  23. BUILT_SOURCES =
  24. diff --git a/m4/openvswitch.m4 b/m4/openvswitch.m4
  25. index 5743f83ce..acb6b140e 100644
  26. --- a/m4/openvswitch.m4
  27. +++ b/m4/openvswitch.m4
  28. @@ -449,7 +449,9 @@ AC_DEFUN([OVS_CHECK_PYTHON],
  29. fi])
  30. AC_SUBST([PYTHON])
  31. PYTHON=$ovs_cv_python
  32. + PYTHON_HOST=$ovs_cv_python_host
  33. AC_SUBST([HAVE_PYTHON])
  34. + AM_MISSING_PROG([PYTHON_HOST], [python])
  35. HAVE_PYTHON=yes
  36. AM_CONDITIONAL([HAVE_PYTHON], [test "$HAVE_PYTHON" = yes])])