Archie Nidhi schrieb:
Hi thanks for the reply,I am Archie working with Aditya on this . We use your reprository and then followed the steps given in https://github.com/genodelabs/genode/commit/ce58a63fb661df42e6bf283891589b11... , for creating uImage . And then booted using tftp with this. # either 'dhcp' or 'setenv ipaddr xxx.xxx.xxx.xxx' # 'setenv serverip xxx.xxx.xxx.xxx' as long it isn't set via DHCP # 'tftp 0x70800000 [path_to_uimage]/uImage' # 'bootm 0x70800000' Now the error we are getting in this is Using FEC device TFTP from server 10.6.1.123; our IP address is 10.6.1.122 Filename 'uImage'. Load address: 0x10800000 Loading: ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################# done Bytes transferred = 1829585 (1bead1 hex) U-Boot > bootm ## Booting kernel from Legacy Image at 10800000 ... Image Name: Image Type: ARM Linux Kernel Image (gzip compressed) Data Size: 1829521 Bytes = 1.7 MiB Load Address: 70140000 Entry Point: 7018b33c Verifying Checksum ... OK Uncompressing Kernel Image ... Any Ideas where we might be going wrong?
Hello, Archie
Which type of i.MX6 board are you using? The load address 0x70140000 of your boot image assumes that your board supports 2 GB of RAM (physical address range 0x10000000 to 0x8FFFFFFF). AFAIK not all i.MX6 boards have that much memory, others come with 1 GB instead (physical address range 0x10000000 to 0x4FFFFFFF). In that case you have to modify the build scripts so that the löad address is set to 0x40140000 and the entry point to 0x4018b33c (or other values which fit into the 1 GB range).
Frank