├── .github └── workflows │ └── make.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── main.cc └── package ├── debian ├── DEBIAN │ ├── compat │ ├── control │ ├── postinst │ └── prerm └── mlx4_br.service └── openwrt ├── control ├── control └── postinst ├── debian-binary └── mlx4_br /.github/workflows/make.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujincheng08/mlx4_br/HEAD/.github/workflows/make.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujincheng08/mlx4_br/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujincheng08/mlx4_br/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujincheng08/mlx4_br/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujincheng08/mlx4_br/HEAD/README.md -------------------------------------------------------------------------------- /main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujincheng08/mlx4_br/HEAD/main.cc -------------------------------------------------------------------------------- /package/debian/DEBIAN/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /package/debian/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujincheng08/mlx4_br/HEAD/package/debian/DEBIAN/control -------------------------------------------------------------------------------- /package/debian/DEBIAN/postinst: -------------------------------------------------------------------------------- 1 | #/bin/sh 2 | 3 | systemctl enable mlx4_br --now -------------------------------------------------------------------------------- /package/debian/DEBIAN/prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujincheng08/mlx4_br/HEAD/package/debian/DEBIAN/prerm -------------------------------------------------------------------------------- /package/debian/mlx4_br.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujincheng08/mlx4_br/HEAD/package/debian/mlx4_br.service -------------------------------------------------------------------------------- /package/openwrt/control/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujincheng08/mlx4_br/HEAD/package/openwrt/control/control -------------------------------------------------------------------------------- /package/openwrt/control/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujincheng08/mlx4_br/HEAD/package/openwrt/control/postinst -------------------------------------------------------------------------------- /package/openwrt/debian-binary: -------------------------------------------------------------------------------- 1 | 2.0 -------------------------------------------------------------------------------- /package/openwrt/mlx4_br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujincheng08/mlx4_br/HEAD/package/openwrt/mlx4_br --------------------------------------------------------------------------------