Hi Igor,
Thank you for the answer.
I followed the steps in "Yocto User Guide" and tried to build the image:
5.5 Building an image
The Yocto Project build uses the bitbake command. For example, bitbake <component> builds the named component.
Each component build has multiple tasks, such as fetching, configuration, compilation, packaging, and deploying to the target
rootfs. The bitbake image build gathers all the components required by the image and build in order of the dependency per
task. The first build is the toolchain along with the tools required for the components to build.
The following command is an example on how to build an image:
$ bitbake fsl-image-gui
When i run this command, after a few time, it outputs these error messages:
WARNING: Failed to fetch URL https://raw.githubusercontent.com/ssvb/cpuburn-arm/dd5c5ba58d2b0b23cfab4a286f9d3f5510000f20/cpuburn-..., attempting MIRRORS if available
ERROR: Fetcher failure: Fetch command failed with exit code 4, no output
ERROR: Function failed: Fetcher failure for URL: 'https://raw.githubusercontent.com/ssvb/cpuburn-arm/dd5c5ba58d2b0b23cfab4a286f9d3f5510000f20/cpuburn-...'. Unable to fetch URL from any source.
ERROR: Logfile of failure stored in: /home/user/imx6/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/cpuburn-neon/20140626-r0/temp/log.do_fetch.10103
ERROR: Task 2679 (/home/user/sources/meta-openembedded/meta-oe/recipes-benchmark/cpuburn/cpuburn-neon_20140626.bb, do_fetch) failed with exit code '1'
I verified that if i specify the link in firefox without ";name=ssvb" i succeed in downloading file.
Instead i don't if I keep ";name=ssvb".
I also verified in the .bb file that it contains this line:
SRC_URI = "http://hardwarebug.org/files/burn.S;name=mru \
https://raw.githubusercontent.com/ssvb/cpuburn-arm/dd5c5ba58d2b0b23cfab4a286f9d3f5510000f20/cpuburn-..."
What if i modify this file and delete the ";name=ssvb"?Or is there another way to avoid this error?