diff options
author | Marek Vasut <marex@denx.de> | 2017-05-02 20:27:45 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-06-29 13:30:50 -0400 |
commit | 4425be39eb40dbf02149b458d7c9b6190cc261bb (patch) | |
tree | d8b7b752c6ce82bba1ba1f1fd5c56e48d5cd3af3 /include/configs/ma5d4evk.h | |
parent | 24257db07154e0ca27cb82a5aae4f43bca830b24 (diff) |
ARM: at91: ma5d4: Swap SD/MMC controller order
The SDHCI1 is the primary boot controller on rev. 2.1 SoM, which
is the version available on the market. Swap the controller order
to match this and future versions of the SoM.
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Andreas Bießmann <andreas.devel@googlemail.com>
Diffstat (limited to 'include/configs/ma5d4evk.h')
-rw-r--r-- | include/configs/ma5d4evk.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/configs/ma5d4evk.h b/include/configs/ma5d4evk.h index 4bcbf2cb13a..0bb1ebb2f9b 100644 --- a/include/configs/ma5d4evk.h +++ b/include/configs/ma5d4evk.h @@ -130,9 +130,9 @@ "consdev=ttyS3\0" \ "baudrate=115200\0" \ "bootscript=boot.scr\0" \ - "bootdev=/dev/mmcblk1p1\0" \ - "bootpart=1:1\0" \ - "rootdev=/dev/mmcblk1p2\0" \ + "bootdev=/dev/mmcblk0p1\0" \ + "bootpart=0:1\0" \ + "rootdev=/dev/mmcblk0p2\0" \ "netdev=eth0\0" \ "dfu_alt_info=mmc raw 0 3867148288\0" \ "kernel_addr_r=0x22000000\0" \ @@ -189,8 +189,8 @@ "bootm ${kernel_addr_r}\0" \ "try_bootscript=" \ "mmc rescan;" \ - "if test -e mmc ${bootpart} ${bootscript} ; then " \ - "if load mmc ${bootpart} ${kernel_addr_r} ${bootscript};"\ + "if test -e mmc 1:1 ${bootscript} ; then " \ + "if load mmc 1:1 ${kernel_addr_r} ${bootscript};" \ "then ; " \ "echo Running bootscript... ; " \ "source ${kernel_addr_r} ; " \ |