[PATCH 2/2] bootm: parse initrd and oftree into correct struct members
Lucas Stach
l.stach at pengutronix.de
Fri Feb 12 08:58:23 PST 2016
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 <l.stach at pengutronix.de>
---
common/bootm.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/common/bootm.c b/common/bootm.c
index 671f93f615cb..acf814dfe32c 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;
--
2.1.4
More information about the barebox
mailing list