]> git.sur5r.net Git - u-boot/blobdiff - arch/microblaze/lib/bootm.c
env: Rename getenv/_f() to env_get()
[u-boot] / arch / microblaze / lib / bootm.c
index 6977dd641aba734e23d599127e2a901bb2e397b8..0a286e82c2be8d6e45b559a51cb389b3251f5644 100644 (file)
 
 #include <common.h>
 #include <command.h>
+#include <fdt_support.h>
 #include <image.h>
 #include <u-boot/zlib.h>
 #include <asm/byteorder.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 
+int arch_fixup_fdt(void *blob)
+{
+       return 0;
+}
+
 int do_bootm_linux(int flag, int argc, char * const argv[],
                   bootm_headers_t *images)
 {
        /* First parameter is mapped to $r5 for kernel boot args */
        void    (*thekernel) (char *, ulong, ulong);
-       char    *commandline = getenv("bootargs");
+       char    *commandline = env_get("bootargs");
        ulong   rd_data_start, rd_data_end;
 
        /*