diff options
author | Fabio Estevam <festevam@denx.de> | 2024-08-26 15:04:52 -0300 |
---|---|---|
committer | Fabio Estevam <festevam@gmail.com> | 2024-08-30 15:50:36 -0300 |
commit | 8c42241eb96b4d2ce9f9fc41c5f5fc7b8e67a0f4 (patch) | |
tree | 47135f1fdcfe347f777bd9a4b9fc79905f40b22d /include/configs/mx6slevk.h | |
parent | 3344b68fdceaf321c1a900cae2fb838da7ea66c5 (diff) | |
download | u-boot-8c42241eb96b4d2ce9f9fc41c5f5fc7b8e67a0f4.tar.gz |
mx6slevk: Fix the boot device number
The SD card is registered as mmc device 0.
Fix it accordingly so that the board can boot to Linux
from the SD card.
Signed-off-by: Fabio Estevam <festevam@denx.de>
Diffstat (limited to 'include/configs/mx6slevk.h')
-rw-r--r-- | include/configs/mx6slevk.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/configs/mx6slevk.h b/include/configs/mx6slevk.h index 39c8ef060c7..490d9feb805 100644 --- a/include/configs/mx6slevk.h +++ b/include/configs/mx6slevk.h @@ -25,9 +25,9 @@ "fdt_addr=0x88000000\0" \ "boot_fdt=try\0" \ "ip_dyn=yes\0" \ - "mmcdev=1\0" \ + "mmcdev=0\0" \ "mmcpart=1\0" \ - "finduuid=part uuid mmc 1:2 uuid\0" \ + "finduuid=part uuid mmc ${mmcdev}:2 uuid\0" \ "mmcargs=setenv bootargs console=${console},${baudrate} " \ "root=PARTUUID=${uuid} rootwait rw\0" \ "loadbootscript=" \ |