1. ipxe: IPv6 add support for IPv6 protocol 2. u-boot: Use post increment only in inffast.c Signed-off-by: Yan Wang <wangyan122@huawei.com>
29 lines
949 B
Diff
29 lines
949 B
Diff
From 039e70e84d966ee28267f3fe76c8558ef65619f9 Mon Sep 17 00:00:00 2001
|
|
From: Yan Wang <wangyan122@huawei.com>
|
|
Date: Sat, 12 Feb 2022 14:31:00 +0800
|
|
Subject: [PATCH] IPv6: add support for IPv6 protocol
|
|
|
|
Add support for IPv6 protocol.
|
|
|
|
Signed-off-by: Yan Wang <wangyan122@huawei.com>
|
|
---
|
|
roms/ipxe/src/config/general.h | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/roms/ipxe/src/config/general.h b/roms/ipxe/src/config/general.h
|
|
index 3c14a2c..e7ce2b9 100644
|
|
--- a/roms/ipxe/src/config/general.h
|
|
+++ b/roms/ipxe/src/config/general.h
|
|
@@ -35,7 +35,7 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
|
|
*/
|
|
|
|
#define NET_PROTO_IPV4 /* IPv4 protocol */
|
|
-#undef NET_PROTO_IPV6 /* IPv6 protocol */
|
|
+#define NET_PROTO_IPV6 /* IPv6 protocol */
|
|
#undef NET_PROTO_FCOE /* Fibre Channel over Ethernet protocol */
|
|
#define NET_PROTO_STP /* Spanning Tree protocol */
|
|
#define NET_PROTO_LACP /* Link Aggregation control protocol */
|
|
--
|
|
1.9.1
|
|
|