
19 Mar
2013
19 Mar
'13
7:32 p.m.
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.