X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=ui%2Fcommon%2Fdiscover-client.c;h=fea8c573c7d18516657dca663c94525164a1ccda;hp=ae5d5cd2e50b00e03cfca47b41fb6b0c8e23d0eb;hb=03d135e3d7528184062cc16949febd76c393c30d;hpb=e65870b0d7638ad9e848b87526a04e32bc96f756 diff --git a/ui/common/discover-client.c b/ui/common/discover-client.c index ae5d5cd..fea8c57 100644 --- a/ui/common/discover-client.c +++ b/ui/common/discover-client.c @@ -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); } @@ -245,10 +264,10 @@ static void create_boot_command(struct boot_command *command, const struct boot_option *boot_option, const struct pb_boot_data *data) { - - command->option_id = boot_option->id; + command->option_id = boot_option ? boot_option->id : NULL; command->boot_image_file = data->image; command->initrd_file = data->initrd; + command->dtb_file = data->dtb; command->boot_args = data->args; }