bootm.c (578ac1e9ba4c79175e69becb28e7157a84eff241) bootm.c (770605e4f9874230728f5a592820c619b1565ebc)
1/*
2 * (C) Copyright 2003
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or modify

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

51 char *cp;
52
53 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
54 return 1;
55
56 /* find kernel entry point */
57 theKernel = (void (*)(int, char **, char **, int *))images->ep;
58
1/*
2 * (C) Copyright 2003
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or modify

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

51 char *cp;
52
53 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
54 return 1;
55
56 /* find kernel entry point */
57 theKernel = (void (*)(int, char **, char **, int *))images->ep;
58
59 show_boot_progress(BOOTSTAGE_ID_RUN_OS);
59 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
60
61#ifdef DEBUG
62 printf ("## Transferring control to Linux (at address %08lx) ...\n",
63 (ulong) theKernel);
64#endif
65
66 linux_params_init (UNCACHED_SDRAM (gd->bd->bi_boot_params), commandline);
67

--- 107 unchanged lines hidden ---
60
61#ifdef DEBUG
62 printf ("## Transferring control to Linux (at address %08lx) ...\n",
63 (ulong) theKernel);
64#endif
65
66 linux_params_init (UNCACHED_SDRAM (gd->bd->bi_boot_params), commandline);
67

--- 107 unchanged lines hidden ---