]>
Commit | Line | Data |
---|---|---|
981bc738 FE |
1 | From 96db7c072b96f9b7a1d9a986eff20353f7459004 Mon Sep 17 00:00:00 2001 |
2 | From: Fabio Estevam <[email protected]> | |
3 | Date: Sun, 18 Jul 2021 19:08:36 -0300 | |
4 | Subject: [PATCH] mx6cuboxi: Fix the mmc device for the rootfs | |
5 | ||
6 | After the comversion to DM_MMC, the rootfs is mmc 1, so | |
7 | adjust it accordingly. | |
8 | ||
9 | Signed-off-by: Fabio Estevam <[email protected]> | |
10 | --- | |
11 | include/configs/mx6cuboxi.h | 2 +- | |
12 | 1 file changed, 1 insertion(+), 1 deletion(-) | |
13 | ||
14 | diff --git a/include/configs/mx6cuboxi.h b/include/configs/mx6cuboxi.h | |
15 | index 55717c77ab38..1a06f29b8c17 100644 | |
16 | --- a/include/configs/mx6cuboxi.h | |
17 | +++ b/include/configs/mx6cuboxi.h | |
18 | @@ -57,7 +57,7 @@ | |
19 | "console=" CONSOLE_DEV ",115200\0" \ | |
20 | "bootm_size=0x10000000\0" \ | |
21 | "mmcdev=" __stringify(CONFIG_SYS_MMC_ENV_DEV) "\0" \ | |
22 | - "finduuid=part uuid mmc 0:1 uuid\0" \ | |
23 | + "finduuid=part uuid mmc 1:1 uuid\0" \ | |
24 | "update_sd_firmware=" \ | |
25 | "if test ${ip_dyn} = yes; then " \ | |
26 | "setenv get_cmd dhcp; " \ | |
27 | -- | |
28 | 2.25.1 | |
29 |