bootm.c (578ac1e9ba4c79175e69becb28e7157a84eff241) bootm.c (770605e4f9874230728f5a592820c619b1565ebc)
1/*
2 * (C) Copyright 2007 Michal Simek
3 * (C) Copyright 2004 Atmark Techno, Inc.
4 *
5 * Michal SIMEK <monstr@monstr.eu>
6 * Yasushi SHOJI <yashi@atmark-techno.com>
7 *
8 * See file CREDITS for list of people who contributed to this

--- 45 unchanged lines hidden (view full) ---

54 theKernel = (void (*)(char *, ulong, ulong))images->ep;
55
56 /* find ramdisk */
57 ret = boot_get_ramdisk (argc, argv, images, IH_ARCH_MICROBLAZE,
58 &rd_data_start, &rd_data_end);
59 if (ret)
60 return 1;
61
1/*
2 * (C) Copyright 2007 Michal Simek
3 * (C) Copyright 2004 Atmark Techno, Inc.
4 *
5 * Michal SIMEK <monstr@monstr.eu>
6 * Yasushi SHOJI <yashi@atmark-techno.com>
7 *
8 * See file CREDITS for list of people who contributed to this

--- 45 unchanged lines hidden (view full) ---

54 theKernel = (void (*)(char *, ulong, ulong))images->ep;
55
56 /* find ramdisk */
57 ret = boot_get_ramdisk (argc, argv, images, IH_ARCH_MICROBLAZE,
58 &rd_data_start, &rd_data_end);
59 if (ret)
60 return 1;
61
62 show_boot_progress(BOOTSTAGE_ID_RUN_OS);
62 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
63
64 if (!of_flat_tree && argc > 3)
65 of_flat_tree = (char *)simple_strtoul(argv[3], NULL, 16);
66#ifdef DEBUG
67 printf ("## Transferring control to Linux (at address 0x%08lx) " \
68 "ramdisk 0x%08lx, FDT 0x%08lx...\n",
69 (ulong) theKernel, rd_data_start, (ulong) of_flat_tree);
70#endif

--- 20 unchanged lines hidden ---
63
64 if (!of_flat_tree && argc > 3)
65 of_flat_tree = (char *)simple_strtoul(argv[3], NULL, 16);
66#ifdef DEBUG
67 printf ("## Transferring control to Linux (at address 0x%08lx) " \
68 "ramdisk 0x%08lx, FDT 0x%08lx...\n",
69 (ulong) theKernel, rd_data_start, (ulong) of_flat_tree);
70#endif

--- 20 unchanged lines hidden ---