
6 May
2016
6 May
'16
9:01 p.m.
There are client identifiers specifically reserved for ARM U-Boot according to http://www.ietf.org/assignments/dhcpv6-parameters/dhcpv6-parameters.xml#proc....
So let's actually make use of them rather than the bogus 0x100 that we emitted so far.
Signed-off-by: Alexander Graf agraf@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