diff options
author | Seung-Woo Kim <sw0312.kim@samsung.com> | 2017-10-17 19:12:15 +0900 |
---|---|---|
committer | Seung-Woo Kim <sw0312.kim@samsung.com> | 2017-10-17 19:12:18 +0900 |
commit | 7fd43c18e8fc4905ef268345f296136f621ce224 (patch) | |
tree | 9a3b6f17fb5d7afc63e024dd4f4828c1a5a8d9ae | |
parent | 8fc206b3830b086f382cd3d9d19e3ccd12cabf40 (diff) | |
download | u-boot-accepted/tizen/unified/20171018.165213.tar.gz u-boot-accepted/tizen/unified/20171018.165213.tar.bz2 u-boot-accepted/tizen/unified/20171018.165213.zip |
configs: odroid_xu3: add missing CONFIG_MMC_DEFAULT_DEVtizen_4.0.m2_releasesubmit/tizen_4.0/20171018.060355submit/tizen_4.0/20171018.024233submit/tizen/20171018.024341accepted/tizen/unified/20171018.165213accepted/tizen/4.0/unified/20171018.231720
For dfu/thordown command, default mmc device number should be set
as CONFIG_MMC_DEFAULT_DEV. Add the missing CONFIG_MMC_DEFAULT_DEV.
Note: before this patch, CONFIG_MMC_DEFAULT_DEV string itself is
used for parsing mmc device number and anyway it was parsed as 0.
Change-Id: I233c59f810acf37ace57abed99f30c1897595d2b
Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
-rw-r--r-- | include/configs/odroid_xu3.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/configs/odroid_xu3.h b/include/configs/odroid_xu3.h index 8063b6c79d..899e3efed7 100644 --- a/include/configs/odroid_xu3.h +++ b/include/configs/odroid_xu3.h @@ -41,6 +41,9 @@ #define CONFIG_DEFAULT_CONSOLE "console=ttySAC2,115200n8\0" +/* SD/MMC configuration */ +#define CONFIG_MMC_DEFAULT_DEV 0 + /* USB */ #define CONFIG_USB_EHCI #define CONFIG_USB_EHCI_EXYNOS |