* [PATCH v1] net: dhcp: set default DHCP vendor ID to "barebox"
@ 2021-09-14 6:48 Oleksij Rempel
2021-10-02 9:30 ` Sascha Hauer
0 siblings, 1 reply; 2+ messages in thread
From: Oleksij Rempel @ 2021-09-14 6:48 UTC (permalink / raw)
To: barebox; +Cc: Oleksij Rempel
To make debugging of DHCP related issues easier, set DHCP vendor ID to
"barebox" by default.
Signed-off-by: Oleksij Rempel <o.rempel@pengutronix.de>
---
net/dhcp.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/net/dhcp.c b/net/dhcp.c
index 427985eca..d28c37c69 100644
--- a/net/dhcp.c
+++ b/net/dhcp.c
@@ -640,6 +640,8 @@ static int dhcp_global_init(void)
{
globalvar_add_simple_string("dhcp.bootfile", &global_dhcp_bootfile);
globalvar_add_simple_string("dhcp.rootpath", &global_dhcp_rootpath);
+
+ global_dhcp_vendor_id = strdup("barebox");
globalvar_add_simple_string("dhcp.vendor_id", &global_dhcp_vendor_id);
globalvar_add_simple_string("dhcp.client_uuid", &global_dhcp_client_uuid);
globalvar_add_simple_string("dhcp.client_id", &global_dhcp_client_id);
--
2.30.2
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2021-10-02 9:32 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-14 6:48 [PATCH v1] net: dhcp: set default DHCP vendor ID to "barebox" Oleksij Rempel
2021-10-02 9:30 ` Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox