Convert CONFIG_SYS_MAX_FLASH_SECT to Kconfig
[platform/kernel/u-boot.git] / env / ext4.c
index e666f7b..47e05a4 100644 (file)
@@ -31,6 +31,8 @@
 #include <errno.h>
 #include <ext4fs.h>
 #include <mmc.h>
+#include <scsi.h>
+#include <asm/global_data.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 
@@ -145,6 +147,10 @@ static int env_ext4_load(void)
        if (!strcmp(ifname, "mmc"))
                mmc_initialize(NULL);
 #endif
+#if defined(CONFIG_AHCI) || defined(CONFIG_SCSI)
+       if (!strcmp(ifname, "scsi"))
+               scsi_scan(true);
+#endif
 
        part = blk_get_device_part_str(ifname, dev_and_part,
                                       &dev_desc, &info, 1);
@@ -187,6 +193,5 @@ U_BOOT_ENV_LOCATION(ext4) = {
        ENV_NAME("EXT4")
        .load           = env_ext4_load,
        .save           = ENV_SAVE_PTR(env_ext4_save),
-       .erase          = CONFIG_IS_ENABLED(CMD_ERASEENV) ? env_ext4_erase :
-                                                           NULL,
+       .erase          = ENV_ERASE_PTR(env_ext4_erase),
 };