!strncmp(get_product_id_from_eeprom(), "VF7110B", 7)) {
return 0;
} else if (!strcmp(name, "starfive/jh7110-starfive-visionfive-2-lite") &&
- !strncmp(get_product_id_from_eeprom(), "VF7110SL", 8)) {
+ !strncmp(get_product_id_from_eeprom(), "VF7110SL", 8) &&
+ !get_mmc_size_from_eeprom()) {
+ return 0;
+ } else if (!strcmp(name, "starfive/jh7110-starfive-visionfive-2-lite-emmc") &&
+ !strncmp(get_product_id_from_eeprom(), "VF7110SL", 8) &&
+ get_mmc_size_from_eeprom()) {
return 0;
}
} else if (!strncmp(get_product_id_from_eeprom(), "VF7110B", 7)) {
fdtfile = "starfive/jh7110-starfive-visionfive-2-v1.3b.dtb";
} else if (!strncmp(get_product_id_from_eeprom(), "VF7110SL", 8)) {
- fdtfile = "starfive/jh7110-starfive-visionfive-2-lite.dtb";
+ if (get_mmc_size_from_eeprom()) {
+ fdtfile = "starfive/jh7110-starfive-visionfive-2-lite-emmc.dtb";
+ } else {
+ fdtfile = "starfive/jh7110-starfive-visionfive-2-lite.dtb";
+ }
} else {
log_err("Unknown product\n");
return;