diff options
| author | Simon Glass <sjg@chromium.org> | 2021-03-15 18:00:05 +1300 |
|---|---|---|
| committer | Simon Glass <sjg@chromium.org> | 2021-03-27 13:59:36 +1300 |
| commit | 041089fe930b6c7bdaadfb1e81a77dd8ca45e907 (patch) | |
| tree | 949a664cacb16b73771e44a4432f698f442c0b02 /include | |
| parent | 7d252d0279ec92ac90a5cec7378bd877df7af008 (diff) | |
| download | u-boot-041089fe930b6c7bdaadfb1e81a77dd8ca45e907.tar.gz u-boot-041089fe930b6c7bdaadfb1e81a77dd8ca45e907.tar.xz u-boot-041089fe930b6c7bdaadfb1e81a77dd8ca45e907.zip | |
x86: coral: Put the eMMC first
At present the eMMC device does not have an alias so it appears after
the SD card which is device 1. There is no device 0 which is odd.
Make the eMMC device be the first one. Update the boot script to use the
new device.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/chromebook_coral.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/configs/chromebook_coral.h b/include/configs/chromebook_coral.h index 6e8e8ec170..00760b8a30 100644 --- a/include/configs/chromebook_coral.h +++ b/include/configs/chromebook_coral.h @@ -12,13 +12,13 @@ #define CONFIG_BOOTCOMMAND \ "tpm init; tpm startup TPM2_SU_CLEAR; " \ - "read mmc 2:2 100000 0 80; setexpr loader *001004f0; " \ + "read mmc 0:2 100000 0 80; setexpr loader *001004f0; " \ "setexpr size *00100518; setexpr blocks $size / 200; " \ - "read mmc 2:2 100000 80 $blocks; setexpr setup $loader - 1000; " \ + "read mmc 0:2 100000 80 $blocks; setexpr setup $loader - 1000; " \ "setexpr cmdline_ptr $loader - 2000; " \ "setexpr.s cmdline *$cmdline_ptr; " \ "setexpr cmdline gsub %U \\\\${uuid}; " \ - "if part uuid mmc 2:2 uuid; then " \ + "if part uuid mmc 0:2 uuid; then " \ "zboot start 100000 0 0 0 $setup cmdline; " \ "zboot load; zboot setup; zboot dump; zboot go;" \ "fi" |
