diff options
author | Jason Liu <r64343@freescale.com> | 2013-05-23 16:33:35 +0800 |
---|---|---|
committer | Jason Liu <r64343@freescale.com> | 2013-05-24 09:28:36 +0800 |
commit | 7544e4cc690d11370464734a7e5b207a4200c4d9 (patch) | |
tree | af8982e5a2e0d78a0f02a6545f33716f4f0e7fff | |
parent | 4bd0032c0eba50fa0caf43f50f735a3cfbe36a8d (diff) | |
download | u-boot-imx-7544e4cc690d11370464734a7e5b207a4200c4d9.zip u-boot-imx-7544e4cc690d11370464734a7e5b207a4200c4d9.tar.gz u-boot-imx-7544e4cc690d11370464734a7e5b207a4200c4d9.tar.bz2 |
ENGR00264076-4 i.mx6:sabre_common:change mmc dev setting
- change the CONFIG_MMCROOT to SDHC3(sd3)
- make the mmcdev/part independent of ENV_IS_IN_MMC
Signed-off-by: Jason Liu <r64343@freescale.com>
-rw-r--r-- | include/configs/mx6qsabreauto.h | 2 | ||||
-rw-r--r-- | include/configs/mx6qsabresd.h | 4 |
2 files changed, 1 insertions, 5 deletions
diff --git a/include/configs/mx6qsabreauto.h b/include/configs/mx6qsabreauto.h index a66a9dd..71aacaf 100644 --- a/include/configs/mx6qsabreauto.h +++ b/include/configs/mx6qsabreauto.h @@ -34,10 +34,8 @@ #include <asm/imx-common/gpio.h> #define CONFIG_SYS_FSL_USDHC_NUM 2 -#if defined(CONFIG_ENV_IS_IN_MMC) #define CONFIG_SYS_MMC_ENV_DEV 0 #define CONFIG_SYS_MMC_ENV_PART 1 /* Boot partition 1 */ -#endif #ifdef CONFIG_SYS_USE_SPINOR #define CONFIG_SF_DEFAULT_CS (1|(IMX_GPIO_NR(3, 19)<<8)) diff --git a/include/configs/mx6qsabresd.h b/include/configs/mx6qsabresd.h index ca809d0..a702d2b 100644 --- a/include/configs/mx6qsabresd.h +++ b/include/configs/mx6qsabresd.h @@ -20,16 +20,14 @@ #define CONFIG_MACH_TYPE 3980 #define CONFIG_MXC_UART_BASE UART1_BASE #define CONFIG_CONSOLE_DEV "ttymxc0" -#define CONFIG_MMCROOT "/dev/mmcblk1p2" +#define CONFIG_MMCROOT "/dev/mmcblk0p2" #include "mx6qsabre_common.h" #include <asm/imx-common/gpio.h> #define CONFIG_SYS_FSL_USDHC_NUM 3 -#if defined(CONFIG_ENV_IS_IN_MMC) #define CONFIG_SYS_MMC_ENV_DEV 1 /* SDHC3 */ #define CONFIG_SYS_MMC_ENV_PART 1 /* Boot partition 1 */ -#endif #ifdef CONFIG_SYS_USE_SPINOR #define CONFIG_SF_DEFAULT_CS (0|(IMX_GPIO_NR(4, 9)<<8)) |