diff options
| author | Michael Brown | 2010-11-19 01:23:26 +0100 |
|---|---|---|
| committer | Michael Brown | 2010-11-20 17:52:04 +0100 |
| commit | 6fd09b541fbc426057661c7e0da4f39000b6803e (patch) | |
| tree | 042ecae7db862b934180566b16645969987343de /src/config | |
| parent | [lotest] Fix endianness in status message (diff) | |
| download | ipxe-6fd09b541fbc426057661c7e0da4f39000b6803e.tar.gz ipxe-6fd09b541fbc426057661c7e0da4f39000b6803e.tar.xz ipxe-6fd09b541fbc426057661c7e0da4f39000b6803e.zip | |
[vlan] Add support for IEEE 802.1Q VLANs
Originally-implemented-by: michael-dev@fami-braun.de
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/config')
| -rw-r--r-- | src/config/config.c | 3 | ||||
| -rw-r--r-- | src/config/general.h | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/config/config.c b/src/config/config.c index f9061d067..5d2188812 100644 --- a/src/config/config.c +++ b/src/config/config.c @@ -234,6 +234,9 @@ REQUIRE_OBJECT ( pxe_cmd ); #ifdef LOTEST_CMD REQUIRE_OBJECT ( lotest_cmd ); #endif +#ifdef VLAN_CMD +REQUIRE_OBJECT ( vlan_cmd ); +#endif /* * Drag in miscellaneous objects diff --git a/src/config/general.h b/src/config/general.h index 652ecf75f..b84707ab2 100644 --- a/src/config/general.h +++ b/src/config/general.h @@ -123,6 +123,7 @@ FILE_LICENCE ( GPL2_OR_LATER ); #undef TIME_CMD /* Time commands */ #undef DIGEST_CMD /* Image crypto digest commands */ #undef LOTEST_CMD /* Loopback testing commands */ +#undef VLAN_CMD /* VLAN commands */ //#undef PXE_CMD /* PXE commands */ /* |
