On 19/12/17 09:47, Guillaume Tucker wrote:
mkimage -D "-I dts -O dtb -p 2048" -f rk3288-veyron-jaq.its arch/arm/boot/vmlinuz
Is the its file really needed? I added the ramdisk parameter precisely so lava doesn't need to generate one.
The file is needed by mkimage, but it shouldn't need to be downloaded. If you carry on reading a few lines further:
Everything should be in the .its file, and it should also be possible to generate it on the fly using a template and the LAVA device properties (kernel load address etc...).
Oh I see, you mean with this command:
cmd = "mkimage -f auto -A arm -O linux -T kernel -C None -d %s -b %s -i %s %s" % (kernel_filename, dtb_filename, ramdisk_filename, itb_path)
Fine, I'll take a look at this approach and compare with creating the .its file.
Guillaume