Hi,
we want to save console logs in a buffer at uboot,what address we can pick so that this address can be read through kernel also
i want to reserve 4K memory at uboot to store logs
in Tx1 i was using below address
#define CONFIG_PRE_CONSOLE_BUFFER
#define CONFIG_PRE_CON_BUF_SZ 4096 /* Aprox 2 80*25 screens */
#define CONFIG_PRE_CON_BUF_ADDR 0xE0000000
any help will be appreciated.