0001-mx6cuboxi-Fix-the-mmc-device-for-the-rootfs.patch 938 B

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