BBB hangs at Starting Kernel

Hi All ,

After doing a lot of googling , I am turning to this forum .

I am newbie in Linux and BBB , I am sure this topic might have come multiple times in this forum but unfortunately those could not resolve my issue .

I am facing problem while booting from TFTP .

My kernel is loaded but as soon as it reaches to “Starting kernel” it hangs up completely .

Details shown on terminal is as below .

U-Boot# setenv serverip 192.168.1.5
U-Boot# tftp 0x80200000 uImage-BBB
link up on port 0, speed 100, full duplex
Using cpsw device
TFTP from server 192.168.1.5; our IP address is 192.168.1.7
Filename ‘uImage-BBB’.
Load address: 0x80200000
Loading: T #################################################################

So... "bootm 0x80200000" where's your device tree binary?

Regards,

First of all thanks for your time regarding my issue .

Actually I tried , alot of things and above given thing was on of it .

I also tried below process where I had provided dtb as well.

But result was same hanged up at “starting Kernel” , complete log is as below

U-Boot# setenv ipaddr 192.168.1.7
U-Boot# setenv serverip 192.168.1.5
U-Boot# tftpboot 0x80F80000 am335x-boneblack.dtb
link up on port 0, speed 100, full duplex
Using cpsw device
TFTP from server 192.168.1.5; our IP address is 192.168.1.7
Filename ‘am335x-boneblack.dtb’.
Load address: 0x80f80000
Loading: T ####
9.8 KiB/s
done
Bytes transferred = 58133 (e315 hex)
U-Boot# tftpboot 0x80007fc0 uImage-BBB
link up on port 0, speed 100, full duplex
Using cpsw device
TFTP from server 192.168.1.5; our IP address is 192.168.1.7
Filename ‘uImage-BBB’.
Load address: 0x80007fc0
Loading: T
TFTP error: ‘File not found’ (1)
Not retrying…
U-Boot# tftpboot 0x80007FC0 uImage-BBB
link up on port 0, speed 100, full duplex
Using cpsw device
TFTP from server 192.168.1.5; our IP address is 192.168.1.7
Filename ‘uImage-BBB’.
Load address: 0x80007fc0
Loading: T #################################################################

Hi,

Can you try bellow address,

tftpboot 0x88000000 am335x-boneblack_4.1.dtb
tftpboot 0x82000000 uImage_4.1
bootm 0x82000000 - 0x88000000

Regards,

Hi All,

Even i am facing same isuue what Ratan is posted above.
can any one help me?

Hi Ratan if you find work around please let me know.

Hi Rajendra ,

Yes , I did find work around for it after working for so many days on it .

Actually address being used was creating problem .

Please try with below address .

tftpboot 0x88000000 am335x-boneblack_4.1.dtb
tftpboot 0x82000000 uImage_4.1
bootm 0x82000000 - 0x88000000

Thank you