I was trying to compile the code for imx53 board by using following script :
*RUN_OPT="--target uboot" make run/tz_vmm* But it is throwing the following error :
Download initramfs ... child process exited abnormally while executing "exec >& /dev/null wget -c -O bin/initrd.gz $init_uri" invoked from within "if {![file exists bin/initrd.gz]} { puts "Download initramfs ..." exec >& /dev/null wget -c -O bin/initrd.gz $init_uri }" (file "/home/chirag/Desktop/genode/repos/os/run/tz_vmm.run" line 40) invoked from within "source $include_name" ("foreach" body line 3) invoked from within "foreach include_name [get_cmd_arg --include ""] { puts "using run script $include_name" source $include_name }" (file "/home/chirag/Desktop/genode/tool/run" line 947) make: *** [run/tz_vmm] Error 1
*What could be the problem ??* Regards
Chirag Garg IIT Madras , Rise Lab
Hello,
But it is throwing the following error :
Download initramfs ... child process exited abnormally
...
*What could be the problem ??
apparently, the run script was not able to download the initrd file. Please check if you can download it manually via wget. The URL (as found in the tz_vmm.run script) is
http://genode.org/files/images/imx53_qsb/initrd.gz
For the record, the downloading step of the run script works perfectly for me. You may consider instrumenting the 'repos/os/run/tz_vmm.run' script to further investigate the download problem. I think that the steps of the run script are fairly easy to follow.
Cheers Norman