uboot-rockchip: fix boot device detection for rk3568

Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
This commit is contained in:
Jonas Karlman 2023-02-22 10:15:02 +08:00 committed by Tianling Shen
parent 705d40946d
commit 33010433b4
No known key found for this signature in database
GPG Key ID: 6850B6345C862176

View File

@ -38,7 +38,7 @@ Signed-off-by: Peter Geis <pgwipeout@gmail.com>
};
+const char * const boot_devices[BROM_LAST_BOOTSOURCE + 1] = {
+ [BROM_BOOTSOURCE_EMMC] = "/sdhci@fe310000",
+ [BROM_BOOTSOURCE_EMMC] = "/mmc@fe310000",
+ [BROM_BOOTSOURCE_SPINOR] = "/spi@fe300000/flash@0",
+ [BROM_BOOTSOURCE_SD] = "/mmc@fe2b0000",
+};