]> git.ozlabs.org Git - petitboot/blobdiff - ui/common/discover-client.c
Add system info messages
[petitboot] / ui / common / discover-client.c
index 107d0314d2de24f563e6c87bbe0d66ec4f733330..90cd3b419101c051e35f5da1539eb975673c22ee 100644 (file)
@@ -118,10 +118,19 @@ static void update_status(struct discover_client *client,
        talloc_free(status);
 }
 
+static void update_sysinfo(struct discover_client *client,
+               struct system_info *sysinfo)
+{
+       if (client->ops.update_sysinfo)
+               client->ops.update_sysinfo(sysinfo, client->ops.cb_arg);
+       talloc_free(sysinfo);
+}
+
 static int discover_client_process(void *arg)
 {
        struct discover_client *client = arg;
        struct pb_protocol_message *message;
+       struct system_info *sysinfo;
        struct boot_status *status;
        struct boot_option *opt;
        struct device *dev;
@@ -175,6 +184,16 @@ static int discover_client_process(void *arg)
                }
                update_status(client, status);
                break;
+       case PB_PROTOCOL_ACTION_SYSTEM_INFO:
+               sysinfo = talloc_zero(client, struct system_info);
+
+               rc = pb_protocol_deserialise_system_info(sysinfo, message);
+               if (rc) {
+                       pb_log("%s: invalid sysinfo message?\n", __func__);
+                       return 0;
+               }
+               update_sysinfo(client, sysinfo);
+               break;
        default:
                pb_log("%s: unknown action %d\n", __func__, message->action);
        }
@@ -249,6 +268,7 @@ static void create_boot_command(struct boot_command *command,
        command->option_id = boot_option->id;
        command->boot_image_file = data->image;
        command->initrd_file = data->initrd;
+       command->dtb_file = data->dtb;
        command->boot_args = data->args;
 }
 
@@ -278,3 +298,16 @@ int discover_client_boot(struct discover_client *client,
 
        return rc;
 }
+
+int discover_client_cancel_default(struct discover_client *client)
+{
+       struct pb_protocol_message *message;
+
+       message = pb_protocol_create_message(client,
+                       PB_PROTOCOL_ACTION_CANCEL_DEFAULT, 0);
+
+       if (!message)
+               return -1;
+
+       return pb_protocol_write_message(client->fd, message);
+}