diff options
author | Michael Brown <mcb30@ipxe.org> | 2023-02-05 18:53:03 +0000 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2023-02-05 18:54:39 +0000 |
commit | 7cc305f7b4fb3508e64afa8c4c54bee1fff1f405 (patch) | |
tree | df932036e4c288e69238bcf95160eebfe06640bd | |
parent | dc16de3204d1956d4fd17808e6d34ac926bbe932 (diff) | |
download | ipxe-7cc305f7b4fb3508e64afa8c4c54bee1fff1f405.zip ipxe-7cc305f7b4fb3508e64afa8c4c54bee1fff1f405.tar.gz ipxe-7cc305f7b4fb3508e64afa8c4c54bee1fff1f405.tar.bz2 |
[efi] Enable NET_PROTO_LLDP by default
Requested-by: Christian I. Nilsson <nikize@gmail.com>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
-rw-r--r-- | src/config/defaults/efi.h | 1 | ||||
-rw-r--r-- | src/config/general.h | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/config/defaults/efi.h b/src/config/defaults/efi.h index efa8018..625ae05 100644 --- a/src/config/defaults/efi.h +++ b/src/config/defaults/efi.h @@ -26,6 +26,7 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); #define FDT_EFI #define NET_PROTO_IPV6 /* IPv6 protocol */ +#define NET_PROTO_LLDP /* Link Layer Discovery protocol */ #define DOWNLOAD_PROTO_FILE /* Local filesystem access */ diff --git a/src/config/general.h b/src/config/general.h index e9ceaff..72a6a9a 100644 --- a/src/config/general.h +++ b/src/config/general.h @@ -40,7 +40,7 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); #define NET_PROTO_STP /* Spanning Tree protocol */ #define NET_PROTO_LACP /* Link Aggregation control protocol */ #define NET_PROTO_EAPOL /* EAP over LAN protocol */ -#undef NET_PROTO_LLDP /* Link Layer Discovery protocol */ +//#define NET_PROTO_LLDP /* Link Layer Discovery protocol */ /* * PXE support |