]> git.karo-electronics.de Git - karo-tx-uboot.git/blobdiff - common/spl/spl_mmc.c
Merge 'u-boot-microblaze/zynq' into (u-boot-arm/master'
[karo-tx-uboot.git] / common / spl / spl_mmc.c
index e369ce3975253556e850933cbb740932979a3436..f27b4c277b645ed0555a6df27fb3e04d9e9a240b 100644 (file)
@@ -13,6 +13,7 @@
 #include <mmc.h>
 #include <fat.h>
 #include <version.h>
+#include <image.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 
@@ -30,6 +31,9 @@ static int mmc_load_image_raw(struct mmc *mmc, unsigned long sector)
        if (err == 0)
                goto end;
 
+       if (image_get_magic(header) != IH_MAGIC)
+               return -1;
+
        spl_parse_image_header(header);
 
        /* convert size to sectors - round up */