
Stephen,
-----Original Message----- From: Stephen Warren [mailto:swarren@wwwdotorg.org] Sent: Tuesday, March 19, 2013 11:33 AM To: Tom Warren Cc: u-boot@lists.denx.de; Stephen Warren; afleming@freescale.com; Tom Warren Subject: Re: [U-Boot] [PATCH v2 4/4] Tegra114: MMC: Enable DT MMC driver support for Tegra114 Dalmore boards
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.
Thanks, will do.
-- nvpublic