diff options
| author | Michael Brown | 2010-09-15 04:10:27 +0200 |
|---|---|---|
| committer | Michael Brown | 2010-09-15 04:20:54 +0200 |
| commit | dace106f8286ff5484296021c5c687dbba68fefc (patch) | |
| tree | 2b08c90dc564739828796f2dd5dc8d291c17c728 /src/config | |
| parent | [fcp] Add support for the Fibre Channel Protocol (diff) | |
| download | ipxe-dace106f8286ff5484296021c5c687dbba68fefc.tar.gz ipxe-dace106f8286ff5484296021c5c687dbba68fefc.tar.xz ipxe-dace106f8286ff5484296021c5c687dbba68fefc.zip | |
[fcoe] Add support for Fibre Channel over Ethernet
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/config')
| -rw-r--r-- | src/config/config_ethernet.c | 3 | ||||
| -rw-r--r-- | src/config/general.h | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/config/config_ethernet.c b/src/config/config_ethernet.c index f6cb87bc0..d13bd6144 100644 --- a/src/config/config_ethernet.c +++ b/src/config/config_ethernet.c @@ -21,3 +21,6 @@ FILE_LICENCE ( GPL2_OR_LATER ); #ifdef SANBOOT_PROTO_AOE REQUIRE_OBJECT ( aoe ); #endif +#ifdef NET_PROTO_FCOE +REQUIRE_OBJECT ( fcoe ); +#endif diff --git a/src/config/general.h b/src/config/general.h index 661e834ca..dbb8b4269 100644 --- a/src/config/general.h +++ b/src/config/general.h @@ -40,6 +40,7 @@ FILE_LICENCE ( GPL2_OR_LATER ); */ #define NET_PROTO_IPV4 /* IPv4 protocol */ +#undef NET_PROTO_FCOE /* Fibre Channel over Ethernet protocol */ /* * PXE support |
