Commit e42ec9b7 authored by Henrik Nordstrom's avatar Henrik Nordstrom
Browse files

usb-boot: Fix for failure just after DRAM initialization.

just need to wait a little for the DRAM initialization to finish. Can't
use fel until we know it's finished or things breaks down.
parent 6004127d
...@@ -35,6 +35,7 @@ if [ ! -f $bootscr ]; then ...@@ -35,6 +35,7 @@ if [ ! -f $bootscr ]; then
fi fi
fel write 0x2000 $felboot fel write 0x2000 $felboot
fel exe 0x2000 fel exe 0x2000
sleep 1 # Wait for DRAM initialization to complete
if [ -n "$uboot" ]; then if [ -n "$uboot" ]; then
fel write 0x4a000000 $uboot fel write 0x4a000000 $uboot
fi fi
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment