summaryrefslogtreecommitdiff
path: root/tasks/uboot.mk
AgeCommit message (Collapse)Author
2011-11-17tasks: Handle full_panda buildsBernhard Rosenkraenzer
Signed-off-by: Bernhard Rosenkraenzer <Bernhard.Rosenkranzer@linaro.org>
2011-11-16Treat full_panda like pandaboard (for building ICS full_panda target)Bernhard Rosenkraenzer
Signed-off-by: Bernhard Rosenkraenzer <Bernhard.Rosenkranzer@linaro.org>
2011-11-16tasks/uboot.mk: Force building with bfd ldBernhard Rosenkraenzer
u-boot can't be built with the gold linker, which is the default linker in ICS. Make sure u-boot uses BFD ld even if gold is the default. Signed-off-by: Bernhard Rosenkraenzer <Bernhard.Rosenkranzer@linaro.org>
2011-10-18uboot/kernel: Use the right version of mkimageBernhard Rosenkraenzer
The "make uImage" step in the kernel build process runs mkimage - but given the u-boot build process doesn't put mkimage in the PATH and the kernel just calls mkimage without any path prefix, that results in the system wide version of mkimage being called - that mkimage could be from a very different version of u-boot, and that's kind of asking for trouble. Also fixes the build if no system wide mkimage is available. Fixes https://bugs.launchpad.net/linaro-android/+bug/877320 Signed-off-by: Bernhard Rosenkraenzer <Bernhard.Rosenkranzer@linaro.org>
2011-10-11Revamp kernel/u-boot build parallelization by using $(MAKE).Paul Sokolovsky
Using "make" to recurisively call make from inside Makefile causes break in jobserver connectivity and causes sub-make to be -j1. Instead, $(MAKE) should be used all the time. See http://www.gnu.org/s/hello/manual/make/Error-Messages.html , search for "warning: jobserver unavailable". Also, it seems "make defconfig" requires -j1. Signed-off-by: Paul Sokolovsky <paul.sokolovsky@linaro.org> Change-Id: I7362793bbc0d64e01c63a01897eb716318a96847
2011-09-12Use the same toolchain we're using for the rest of the build,Bernhard Rosenkraenzer
now that gcc PR 50266 is fixed
2011-09-04Adapt to upstream u-boot change:Bernhard Rosenkraenzer
u-boot-mmc-spl.bin for Origen is now origen-spl.bin
2011-09-02pandaboard: use MLO and u-boot.img from built from u-bootZach Pfeffer
The new u-boot allows both the MLO and u-boot.img to be built from the u-boot git. Change-Id: Id69e982f531b931bb0ed065545d68f2ee6459e16 Signed-off-by: Zach Pfeffer <zach.pfeffer@linaro.org>
2011-08-24Create the out/..../boot directoryBernhard Rosenkraenzer
2011-08-24u-boot-mmc-spl.bin needs to go to boot/Bernhard Rosenkraenzer
so make boottarball picks it up
2011-08-24Fix location of u-boot-mmc-spl.bin -- with O=..Bernhard Rosenkraenzer
it's already in the PRODUCT_OUT tree
2011-08-24Copy Origen boot loader for the origen targetBernhard Rosenkraenzer
2011-08-02Revert fix for now, current ld has problems linking u-bootBernhard Rosenkraenzer
2011-08-02- Don't hardcode the arm-linux-gnueabi- toolchain prefixBernhard Rosenkraenzer
- Use the correct toolchain specified by TARGET_TOOLS_PREFIX
2011-07-28u-boot makefiles don't seem to like building u-boot.imx out-of-source at allBernhard Rosenkraenzer
2011-07-27iMX53 fixesBernhard Rosenkraenzer
2011-07-26Build u-boot.imx on iMX53 targetsBernhard Rosenkraenzer
2011-04-11Building u-bootPatrik Ryd
Introduced a alternative way of building u-boot instead of forcing u-boot to be built as if it was Androids 2ndbootloader.
2011-04-05Rules for building u-bootPatrik Ryd