[U-Boot] Has versatilepb board support permanently been dropped in latest u-boot?

2017-11-29 Thread Dipanjan Das
In order to compile u-boot for versatilepb, I had to use [this]( https://github.com/toyoshim/u-boot) version of u-boot that contains a patch for the board with this commit message.: "Restore ARM versatile platform only for QEMU The port was removed for mssing deadline to migrate the

[U-Boot] u-boot hangs waiting for serial input

2017-11-29 Thread Dipanjan Das
I have compiled an older version of u-boot for ARM versatilepb board and booted in qemu as: qemu-system-arm -M versatilepb -m 128M -nographic -kernel flash.bin It boots fine, basic commans like `printenv` works. However, issuing `loads` makes the bootloader wait indefinitely. No keypress works.

Re: [U-Boot] u-boot hangs waiting for serial input

2017-11-29 Thread Dipanjan Das
Hi Wolfgang, > This is the correct, expected behaviour. "loads" starts an S-Revord > download over the serial line, so U-Boot is waiting for and readind > the input which it expects t be in SREC format. > > What did you think "loads" would do? > It was my fault, sorry for the noise. I was

[U-Boot] Running u-boot on qemu-arm complains about missing ld.so.1

2017-11-30 Thread Dipanjan Das
In order to compile u-boot, I tried to use CodeSourcery toolchain which did not work. However the version of arm-none-eabi toolchain hosted in Ubuntu reposiroty does compile u-boot codebase. When I try to run the u-boot standalone executable qemu-arm, it complains about missing

Re: [U-Boot] Running u-boot on qemu-arm complains about missing ld.so.1

2017-11-30 Thread Dipanjan Das
ling uboot with gcc-linaro-6.3.1-2017.02-x86_64_arm-linux-gnueabihf doesn't work because of compiler issues On 30 November 2017 at 10:40, Dipanjan Das <mail.dipanjan@gmail.com> wrote: > > In order to compile u-boot, I tried to use CodeSourcery toolchain which > did not work. Howeve