board: starfive: spl: Support VisionFive 2 Lite

Choose the matching FIT config on the VisionFive 2 Lite board.

Reviewed-by: E Shattow <e@freeshell.de>
Signed-off-by: Hal Feng <hal.feng@starfivetech.com>
This commit is contained in:
Hal Feng 2025-10-24 16:59:31 +08:00 committed by Leo Yu-Chi Liang
parent 3e9ee92d7f
commit f566788ca1

View File

@ -140,6 +140,9 @@ int board_fit_config_name_match(const char *name)
} else if (!strcmp(name, "starfive/jh7110-starfive-visionfive-2-v1.3b") &&
!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)) {
return 0;
}
return -EINVAL;