Bug 8781 - Unable to build uboot for imx28evk
Summary: Unable to build uboot for imx28evk
Status: RESOLVED WORKSFORME
Alias: None
Product: buildroot
Classification: Unclassified
Component: Other (show other bugs)
Version: unspecified
Hardware: PC Linux
: P5 major
Target Milestone: ---
Assignee: unassigned
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-03-10 10:20 UTC by Cycaxo
Modified: 2016-04-19 21:27 UTC (History)
1 user (show)

See Also:
Host:
Target:
Build:


Attachments
build log (5.77 KB, text/plain)
2016-03-10 10:20 UTC, Cycaxo
Details

Note You need to log in before you can comment on or make changes to this bug.
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