]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
microblaze: bootm: Add support for loading initrd
authorMichal Simek <michal.simek@xilinx.com>
Thu, 2 May 2013 10:49:18 +0000 (12:49 +0200)
committerMichal Simek <michal.simek@xilinx.com>
Fri, 3 May 2013 07:01:05 +0000 (09:01 +0200)
fdt_initrd add additional information to DTB about initrd
addresses which are later used by kernel.

Signed-off-by: Michal Simek <michal.simek@xilinx.com>
arch/microblaze/lib/bootm.c

index 56a1568f1c43cd47d1fa8cee1f8db8cf8ee798f2..fbb43b88aae2abd3ab3a0afa73b3719802392f65 100644 (file)
@@ -68,6 +68,11 @@ int do_bootm_linux(int flag, int argc, char * const argv[],
 
        if (!of_flat_tree && argc > 3)
                of_flat_tree = (char *)simple_strtoul(argv[3], NULL, 16);
+
+       /* fixup the initrd now that we know where it should be */
+       if (images->rd_start && images->rd_end && of_flat_tree)
+               fdt_initrd(of_flat_tree, images->rd_start, images->rd_end, 1);
+
 #ifdef DEBUG
        printf("## Transferring control to Linux (at address 0x%08lx) ",
               (ulong)thekernel);