From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Warren Date: Tue, 19 Mar 2013 12:32:53 -0600 Subject: [U-Boot] [PATCH v2 4/4] Tegra114: MMC: Enable DT MMC driver support for Tegra114 Dalmore boards In-Reply-To: <1363649136-23155-5-git-send-email-twarren@nvidia.com> References: <1363649136-23155-1-git-send-email-twarren@nvidia.com> <1363649136-23155-5-git-send-email-twarren@nvidia.com> Message-ID: <5148AF55.5050509@wwwdotorg.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 03/18/2013 05:25 PM, Tom Warren wrote: > Tested on my Dalmore E1611 board, eMMC and SD-Card work fine, can load > a kernel off of an SD card OK, card detect works, and the env is now > stored in eMMC (end of the 2nd 'boot' sector, same as Tegra20/30). > diff --git a/include/configs/dalmore.h b/include/configs/dalmore.h > +#define CONFIG_ENV_OFFSET (((4096 - 512) * 1024) - CONFIG_ENV_SIZE) Sorry, I don't know what I was thinking when I wrote that expression in response to the last time you posted this patch. I think it should be simply: #define CONFIG_ENV_OFFSET ((4096 * 1024) - CONFIG_ENV_SIZE) Feel free to fix this up when applying; no need to repost.