diff options
author | Michael Brown <mcb30@ipxe.org> | 2016-03-09 00:27:15 +0000 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2016-03-09 08:46:24 +0000 |
commit | e44f6dcb8994a3c5c29b16aacd97ac095f4588c6 (patch) | |
tree | 57b7610a6447d6a28ef5be1f786b48217ef507d4 /src/config | |
parent | 3144e4fb646e7c03236b5f03c98dedc8eff210d6 (diff) | |
download | ipxe-e44f6dcb8994a3c5c29b16aacd97ac095f4588c6.tar.gz |
[xsigo] Add support for Xsigo virtual Ethernet (XVE) EoIB devices
Add support for EoIB devices as implemented by Xsigo. Based on the
public (but out-of-tree) Linux kernel drivers at
https://oss.oracle.com/git/?p=linux-uek.git;a=log;h=v4.1.12-32.2.1
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/config')
-rw-r--r-- | src/config/config_infiniband.c | 3 | ||||
-rw-r--r-- | src/config/general.h | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/config/config_infiniband.c b/src/config/config_infiniband.c index 9bac3b7c4..4da8fe219 100644 --- a/src/config/config_infiniband.c +++ b/src/config/config_infiniband.c @@ -44,6 +44,9 @@ REQUIRE_OBJECT ( ib_srp ); #ifdef VNIC_IPOIB REQUIRE_OBJECT ( ipoib ); #endif +#ifdef VNIC_XSIGO +REQUIRE_OBJECT ( xsigo ); +#endif /* * Drag in Infiniband-specific commands diff --git a/src/config/general.h b/src/config/general.h index 9c4330399..e9b781fbf 100644 --- a/src/config/general.h +++ b/src/config/general.h @@ -158,6 +158,7 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); * */ #define VNIC_IPOIB /* Infiniband IPoIB virtual NICs */ +//#define VNIC_XSIGO /* Infiniband Xsigo virtual NICs */ /* * Error message tables to include |