From b083fc5d2bd53071ff855b60dad227be6727cb99 Mon Sep 17 00:00:00 2001 From: Daylan Kelting Date: Tue, 2 Jul 2024 11:22:56 -0400 Subject: [PATCH] Remove mention of Bootz from the ManagementConfig message. Fundamentally this is about skipping DHCP Boot not Bootz in particular. The SZTP RFC (And by extension the Bootz spec) specifies a "bootstrap-server-list" in the boot option. I chose bootstrap_server_uris because it is more descriptive as to what is actually supposed to go in the variable. --- factory_reset/factory_reset.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/factory_reset/factory_reset.proto b/factory_reset/factory_reset.proto index 2abd420..4babf25 100644 --- a/factory_reset/factory_reset.proto +++ b/factory_reset/factory_reset.proto @@ -45,7 +45,7 @@ message StartRequest { } message ManagementConfig { - repeated string bootz_uris = 1; + repeated string boot_server_uris = 1; string device_ip = 2; string mask_length = 3; string gateway_ip = 4;