From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alexander Graf Date: Fri, 6 May 2016 21:01:04 +0200 Subject: [U-Boot] [PATCH v2 4/7] net: Fix client identifiers for ARM In-Reply-To: <1462561267-92773-1-git-send-email-agraf@suse.de> References: <1462561267-92773-1-git-send-email-agraf@suse.de> Message-ID: <1462561267-92773-5-git-send-email-agraf@suse.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de 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 --- 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