[U-Boot] [PATCH v2 4/7] net: Fix client identifiers for ARM

Alexander Graf agraf at suse.de
Fri May 6 21:01:04 CEST 2016


There are client identifiers specifically reserved for ARM U-Boot
according to http://www.ietf.org/assignments/dhcpv6-parameters/dhcpv6-parameters.xml#processor-architecture.

So let's actually make use of them rather than the bogus 0x100 that
we emitted so far.

Signed-off-by: Alexander Graf <agraf at suse.de>
---
 net/Kconfig | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/net/Kconfig b/net/Kconfig
index 64fd0f9..414c549 100644
--- a/net/Kconfig
+++ b/net/Kconfig
@@ -34,7 +34,8 @@ config NET_TFTP_VARS
 
 config BOOTP_PXE_CLIENTARCH
 	hex
-        default 0x100 if ARM
+        default 0x16 if ARM64
+        default 0x15 if ARM
         default 0 if X86
 
 config BOOTP_VCI_STRING
-- 
1.8.5.6



More information about the U-Boot mailing list