From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marek Vasut Date: Wed, 23 Jan 2013 18:46:20 +0100 Subject: [U-Boot] [PATCH v3 1/2] mx23_olinuxino: Add default environment In-Reply-To: <1358952849-3217-1-git-send-email-otavio@ossystems.com.br> References: <1358952849-3217-1-git-send-email-otavio@ossystems.com.br> Message-ID: <201301231846.21026.marex@denx.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Dear Otavio Salvador, Missing commit message. > Signed-off-by: Otavio Salvador > --- > Changes in v3: None > Changes in v2: None > > include/configs/mx23_olinuxino.h | 75 > ++++++++++++++++++++++++++++++++++++---- 1 file changed, 68 insertions(+), > 7 deletions(-) > > diff --git a/include/configs/mx23_olinuxino.h > b/include/configs/mx23_olinuxino.h index bc63481..a97598c 100644 > --- a/include/configs/mx23_olinuxino.h > +++ b/include/configs/mx23_olinuxino.h > @@ -114,6 +114,14 @@ > /* > * MMC Driver > */ > +#define CONFIG_ENV_IS_IN_MMC > +#define CONFIG_ENV_OVERWRITE > +#ifdef CONFIG_ENV_IS_IN_MMC > +#define CONFIG_ENV_OFFSET (256 * 1024) > +#define CONFIG_ENV_SIZE (16 * 1024) > +#define CONFIG_SYS_MMC_ENV_DEV 0 > +#endif > +#define CONFIG_CMD_SAVEENV > #ifdef CONFIG_CMD_MMC > #define CONFIG_MMC > #define CONFIG_BOUNCE_BUFFER > @@ -127,21 +135,74 @@ > #define CONFIG_APBH_DMA > > /* > - * ENV -- nowhere so far > - */ > -#define CONFIG_ENV_SIZE (16 * 1024) > -#define CONFIG_ENV_IS_NOWHERE > - > -/* > * Boot Linux > */ > #define CONFIG_CMDLINE_TAG > #define CONFIG_SETUP_MEMORY_TAGS > #define CONFIG_BOOTDELAY 3 > #define CONFIG_BOOTFILE "uImage" > -#define CONFIG_BOOTARGS "console=ttyAMA0,115200n8 " > #define CONFIG_LOADADDR 0x42000000 > #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR > #define CONFIG_OF_LIBFDT > > +/* > + * Extra Environments > + */ > +#define CONFIG_EXTRA_ENV_SETTINGS \ > + "update_sd_firmware_filename=u-boot.sd\0" \ > + "update_sd_firmware_filename=u-boot.sd\0" \ Duplicate, mxsboot tool still doesn't work on MX23 either. So this won't work, therefore postpone this until mxsboot is fixed. Best regards, Marek Vasut