From c11bcba9a99e858e618f4d872a5be7d52dcaaa5a Mon Sep 17 00:00:00 2001 From: Geoff Levand Date: Mon, 15 Apr 2013 15:23:05 -0700 Subject: Add initial dtb support Updates & fixes by Jeremy Kerr . Signed-off-by: Geoff Levand Signed-off-by: Jeremy Kerr --- ui/common/discover-client.c | 1 + ui/common/discover-client.h | 1 + 2 files changed, 2 insertions(+) (limited to 'ui/common') diff --git a/ui/common/discover-client.c b/ui/common/discover-client.c index ae5d5cd..c3f3f38 100644 --- a/ui/common/discover-client.c +++ b/ui/common/discover-client.c @@ -249,6 +249,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; } diff --git a/ui/common/discover-client.h b/ui/common/discover-client.h index 83bb9c9..ed1f504 100644 --- a/ui/common/discover-client.h +++ b/ui/common/discover-client.h @@ -9,6 +9,7 @@ struct discover_client; struct pb_boot_data { char *image; char *initrd; + char *dtb; char *args; }; -- cgit v1.2.1