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

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

99 ret = boot_ramdisk_high (lmb, images->rd_start, rd_len,
100 &initrd_start, &initrd_end);
101 if (ret)
102 goto error;
103
104 debug("## Transferring control to Linux (at address %08lx) ...\n",
105 (ulong) kernel);
106
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

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

99 ret = boot_ramdisk_high (lmb, images->rd_start, rd_len,
100 &initrd_start, &initrd_end);
101 if (ret)
102 goto error;
103
104 debug("## Transferring control to Linux (at address %08lx) ...\n",
105 (ulong) kernel);
106
107 show_boot_progress(BOOTSTAGE_ID_RUN_OS);
107 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
108
109 /*
110 * Linux Kernel Parameters (passing board info data):
111 * sp+00: Ignore, side effect of using jsr to jump to kernel
112 * sp+04: ptr to board info data
113 * sp+08: initrd_start or 0 if no initrd
114 * sp+12: initrd_end - unused if initrd_start is 0
115 * sp+16: Start of command line string

--- 28 unchanged lines hidden ---
108
109 /*
110 * Linux Kernel Parameters (passing board info data):
111 * sp+00: Ignore, side effect of using jsr to jump to kernel
112 * sp+04: ptr to board info data
113 * sp+08: initrd_start or 0 if no initrd
114 * sp+12: initrd_end - unused if initrd_start is 0
115 * sp+16: Start of command line string

--- 28 unchanged lines hidden ---