From 03d135e3d7528184062cc16949febd76c393c30d Mon Sep 17 00:00:00 2001 From: Jeremy Kerr Date: Thu, 10 Oct 2013 16:00:17 +0800 Subject: ui/ncurses: Allow booting custom boot options Currently, we can't boot user-created boot options, as they have no option ID associated. This change removes the check for option ID. Signed-off-by: Jeremy Kerr --- ui/common/discover-client.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'ui/common') diff --git a/ui/common/discover-client.c b/ui/common/discover-client.c index 90cd3b4..fea8c57 100644 --- a/ui/common/discover-client.c +++ b/ui/common/discover-client.c @@ -264,8 +264,7 @@ 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; -- cgit v1.2.1