From e035df387fe429adfa37ffdf4499d95a275972a4 Mon Sep 17 00:00:00 2001 From: Otavio Salvador Date: Wed, 24 Apr 2013 15:30:24 -0300 Subject: [PATCH] mx53ard: Change default environment to cope with OE changes OpenEmbedded has change partitioning layout of generated image so it does not raise warnings during the boot regarding unkown partition being used for U-Boot. Signed-off-by: Otavio Salvador --- include/configs/mx53ard.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/configs/mx53ard.h b/include/configs/mx53ard.h index 339bf5a884..ef0f3f087c 100644 --- a/include/configs/mx53ard.h +++ b/include/configs/mx53ard.h @@ -118,7 +118,7 @@ "ip_dyn=yes\0" \ "mmcdev=" __stringify(CONFIG_SYS_MMC_ENV_DEV) "\0" \ "mmcpart=" __stringify(CONFIG_SYS_MMC_ENV_PART) "\0" \ - "mmcroot=/dev/mmcblk0p3 rootwait rw\0" \ + "mmcroot=/dev/mmcblk0p2 rootwait rw\0" \ "update_sd_firmware_filename=u-boot.imx\0" \ "update_sd_firmware=" \ "if test ${ip_dyn} = yes; then " \ @@ -239,7 +239,7 @@ #define CONFIG_ENV_SIZE (8 * 1024) #define CONFIG_ENV_IS_IN_MMC #define CONFIG_SYS_MMC_ENV_DEV 0 -#define CONFIG_SYS_MMC_ENV_PART 2 +#define CONFIG_SYS_MMC_ENV_PART 1 #define CONFIG_OF_LIBFDT -- 2.40.1