diff options
| author | Hal Feng <[email protected]> | 2025-10-24 16:59:31 +0800 |
|---|---|---|
| committer | Leo Yu-Chi Liang <[email protected]> | 2026-03-17 01:36:57 +0800 |
| commit | f566788ca12ae5070513fbd5bcea2e18433b4da6 (patch) | |
| tree | d6420522119ed38364edb6a3f812e73a568b01ae | |
| parent | 3e9ee92d7f4485f6173eab9ba70ee3a657b3ab66 (diff) | |
board: starfive: spl: Support VisionFive 2 Lite
Choose the matching FIT config on the VisionFive 2 Lite board.
Reviewed-by: E Shattow <[email protected]>
Signed-off-by: Hal Feng <[email protected]>
| -rw-r--r-- | board/starfive/visionfive2/spl.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/board/starfive/visionfive2/spl.c b/board/starfive/visionfive2/spl.c index 2d9431d2976..c607627e10f 100644 --- a/board/starfive/visionfive2/spl.c +++ b/board/starfive/visionfive2/spl.c @@ -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; |
