summaryrefslogtreecommitdiffstats
path: root/common/ft_build.c
Commit message (Collapse)AuthorAgeFilesLines
* rename U-Boot-v2 project to bareboxSascha Hauer2009-12-151-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | This has been done with the following script: find -path ./.git -prune -o -type f -print0 | xargs -0 -r sed -i \ -e 's/u2boot/barebox/g' \ -e 's/U2Boot/barebox/g' \ -e 's/U-boot V2/barebox/g' \ -e 's/u-boot v2/barebox/g' \ -e 's/U-Boot V2/barebox/g' \ -e 's/U-Boot-v2/barebox/g' \ -e 's/U_BOOT/BAREBOX/g' \ -e 's/UBOOT/BAREBOX/g' \ -e 's/uboot/barebox/g' \ -e 's/u-boot/barebox/g' \ -e 's/u_boot/barebox/g' \ -e 's/U-Boot/barebox/g' \ -e 's/U-boot/barebox/g' \ -e 's/U-BOOT/barebox/g' find -path ./.git -prune -o \( -name "*u-boot*" -o -name "*uboot*" -o -name "*u_boot*" \) -print0 | \ xargs -0 -r rename 's/u[-_]?boot/barebox/' It needs some manual fixup following in the next patch Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* - Add functions to register image handlers for booting uImagesSascha Hauer2008-02-201-0/+28
|
* svn_rev_538Sascha Hauer2007-07-051-4/+4
| | | | several powerpc fixes
* Merge with http://opensource.freescale.com/pub/scm/u-boot-85xx.git#for_wdWolfgang Denk2006-10-111-6/+6
|\
| * * Fix a bunch of compiler warnings for gcc 4.0Matthew McClintock2006-10-111-5/+5
| | | | | | | | Signed-off-by: Matthew McClintock <msm@freescale.com>
| * Fixed an OF-tree off-by-one bug when adding a new property name.Zhang Wei2006-08-301-1/+1
| | | | | | | | | | | | | | This bug will cause the kernel booting to pause a long time. Signed-off-by: Zhang Wei <wei.zhang@freescale.com> (cherry picked from 2f15776ccc6dc32377d8ba9652b8f58059c27c6d commit)
* | Merge with /home/wd/git/u-boot/masterWolfgang Denk2006-10-111-1/+3
|\ \ | |/ |/|
| * Fix buffer overflow problem in ft_build.cWolfgang Denk2006-10-091-1/+3
| | | | | | | | Patch by Fredrik Roubert, 09 Oct 2006
* | * Patch to modify ft_build.c to update flat device trees in placeMatthew McClintock2006-06-281-237/+104
|/ | | | Patch by Matthew McClintock 26-June-2006
* Add support for passing initrd information via flat device treeKumar Gala2006-01-111-3/+8
| | | | Patch by Kumar Gala 11 Jan 2006
* Added OF_STDOUT_PATH and OF_SOCKumar Gala2006-01-111-0/+3
| | | | | | | | OF_STDOUT_PATH specifies the path to the device the kernel can use for console output OF_SOC specifies the proper name of the SOC node if one exists. Patch by Kumar Gala 11 Jan 2006
* Allow board code to fixup the flat device tree before booting aKumar Gala2006-01-111-1/+4
| | | | | kernel Patch by Kumar Gala 11 Jan 2006
* Added CONFIG_ options for bd_t and env in flat dev treeKumar Gala2006-01-111-7/+23
| | | | | | | | | | CONFIG_OF_HAS_BD_T will put a copy of the bd_t into the resulting flat device tree. CONFIG_OF_HAS_UBOOT_ENV will copy the environment variables from u-boot into the flat device tree Patch by Kumar Gala 11 Jan 2006
* Correct includes for flat tree builder.Marian Balakowicz2005-10-281-2/+2
|
* Add missing files for Pantelis Antoniou's patchWolfgang Denk2005-10-131-0/+695
Patch by Pantelis Antoniou, 04 Sep 2005