From 1a180cd3b6e5c067c68f3e09f7e15e5b18af9761 Mon Sep 17 00:00:00 2001 From: Lucas Stach Date: Fri, 12 Feb 2016 17:58:23 +0100 Subject: bootm: parse initrd and oftree into correct struct members The code parsing the oftree and initrd file names is clearly wrong, leading to bootm not loading oftree or initrd files any more. Signed-off-by: Lucas Stach Signed-off-by: Sascha Hauer --- common/bootm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'common') diff --git a/common/bootm.c b/common/bootm.c index c046c7e5a7..052cffa462 100644 --- a/common/bootm.c +++ b/common/bootm.c @@ -505,8 +505,8 @@ int bootm_boot(struct bootm_data *bootm_data) data = xzalloc(sizeof(*data)); bootm_image_name_and_part(bootm_data->os_file, &data->os_file, &data->os_part); - bootm_image_name_and_part(bootm_data->oftree_file, &data->oftree_part, &data->os_part); - bootm_image_name_and_part(bootm_data->initrd_file, &data->initrd_part, &data->os_part); + bootm_image_name_and_part(bootm_data->oftree_file, &data->oftree_file, &data->oftree_part); + bootm_image_name_and_part(bootm_data->initrd_file, &data->initrd_file, &data->initrd_part); data->verbose = bootm_data->verbose; data->verify = bootm_data->verify; data->force = bootm_data->force; -- cgit v1.2.3