Bug 8781

Summary: Unable to build uboot for imx28evk
Product: buildroot Reporter: Cycaxo <cycaxo>
Component: OtherAssignee: unassigned
Status: RESOLVED WORKSFORME    
Severity: major CC: buildroot
Priority: P5    
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Linux   
Host: Target:
Build:
Attachments: build log

Description Cycaxo 2016-03-10 10:20:25 UTC
Created attachment 6386 [details]
build log

I am trying to use buildroot-2016.02 for the freescale imx28evk. Unfortunately, I am not able to build uboot for this board. I was able to successfully build images for another board (i.e. beaglebone), so I can exclude that there is a problem with my environment. 

My procedure was the following:
1. make freescale_imx28evk_defconfig
--> # configuration written to /buildroot-2016.02/.config
2. make 
--> make[2]: /buildroot-2016.02/output/host/usr/bin/arm-buildroot-linux-uclibcgnueabi-gcc: Command not found

I am using Ubuntu 14.04LTS 64bit with all the required packages for building on a x64 system (at least it works for beaglebone).

Please find attached the log file.
Comment 1 Thomas Petazzoni 2016-03-10 13:40:55 UTC
Did you do a "make clean" before doing "make freescale_imx28evk_defconfig" ?

Please make sure you do:

 1/ make clean
 2/ make freescale_imx28evk_defconfig
 3/ make

And attach the complete log of those commands.

FWIW, this defconfig was built yesterday by our Travis CI tests, and it built fine, see: https://travis-ci.org/buildroot/buildroot-defconfig-testing/jobs/114650772.
Comment 2 Cycaxo 2016-03-24 19:41:11 UTC
Thank you for the hint.

You were right. After a "make clean" the build went fine.

Cheers