barebox can be called with the kernel calling convention, so
we can reuse the handler instead of creating a barebox specific
handler.

Signed-off-by: Sascha Hauer <[email protected]>
---
 arch/arm/lib/bootm.c | 30 +-----------------------------
 1 file changed, 1 insertion(+), 29 deletions(-)

diff --git a/arch/arm/lib/bootm.c b/arch/arm/lib/bootm.c
index 0855907..010b668 100644
--- a/arch/arm/lib/bootm.c
+++ b/arch/arm/lib/bootm.c
@@ -355,37 +355,9 @@ static struct image_handler zimage_handler = {
        .filetype = filetype_arm_zimage,
 };
 
-static int do_bootm_barebox(struct image_data *data)
-{
-       void *barebox;
-
-       barebox = read_file(data->os_file, NULL);
-       if (!barebox)
-               return -EINVAL;
-
-       if (IS_ENABLED(CONFIG_OFTREE) && data->of_root_node) {
-               data->oftree = of_get_fixed_tree(data->of_root_node);
-               fdt_add_reserve_map(data->oftree);
-               of_print_cmdline(data->of_root_node);
-               if (bootm_verbose(data) > 1)
-                       of_print_nodes(data->of_root_node, 0);
-       }
-
-       if (bootm_verbose(data)) {
-               printf("\nStarting barebox at 0x%p", barebox);
-               if (data->oftree)
-                       printf(", oftree at 0x%p", data->oftree);
-               printf("...\n");
-       }
-
-       start_linux(barebox, 0, 0, 0, data->oftree);
-
-       restart_machine();
-}
-
 static struct image_handler barebox_handler = {
        .name = "ARM barebox",
-       .bootm = do_bootm_barebox,
+       .bootm = do_bootm_linux,
        .filetype = filetype_arm_barebox,
 };
 
-- 
2.6.4


_______________________________________________
barebox mailing list
[email protected]
http://lists.infradead.org/mailman/listinfo/barebox

Reply via email to