- Jan 09, 2008
-
-
Mike Frysinger authored
remove sha1.o from mkimage linking since it isn't actually used. Signed-Off-By:
Mike Frysinger <vapier@gentoo.org>
-
Wolfgang Denk authored
Signed-off-by:
Wolfgang Denk <wd@denx.de>
-
Mike Frysinger authored
didnt realize how out of shape easylogo actually was until i tried using it. this patch does byte swapping as need be on the input tga header since the tga is in little endian but the host could just as well be big endian. i didnt bother using bswap macros or such stuff from system headers as nothing in POSIX dictates byte swapping functionality. Signed-Off-By:
Mike Frysinger <vapier@gentoo.org>
-
Mike Frysinger authored
- make the Makefile not suck - include proper headers for prototypes - fix obvious broken handling of strchr() when handling '.' in filenames Signed-Off-By:
Mike Frysinger <vapier@gentoo.org>
-
raptorbrino@aim.com authored
This patch allows u-boot to build without error in a cygwin environment. Cygwin does not define __u64 in it's include/asm/types.h file. The -idirafter flag in the u-boot build causes the inclusion of the cygwin types.h file as opposed to u-bot/include/asm/types.h file which does define __u64. Subsequently, sha1.c compile fails due to unknown symbol. Signed-off-by:
Brian Miller <raptorbrino@netscape.net>
-
Wolfgang Denk authored
Signed-off-by:
Wolfgang Denk <wd@denx.de>
-
Markus Klotzbuecher authored
This patch updates the fw_printenv/fw_setenv userspace tool to include the correct MTD header in order to compile against current kernel headers. Backward compatibility is preserved by introducing an option MTD_VERSION which can be set to "old" for compilation using the old MTD headers. Along with this a number of warnings are fixed. Signed-off-by:
Markus Klotzbuecher <mk@denx.de>
-
- Jan 08, 2008
-
-
Wolfgang Denk authored
Signed-off-by:
Wolfgang Denk <wd@denx.de>
-
Markus Klotzbuecher authored
This patch updates the fw_printenv/fw_setenv userspace tool to include the correct MTD header in order to compile against current kernel headers. Backward compatibility is preserved by introducing an option MTD_VERSION which can be set to "old" for compilation using the old MTD headers. Along with this a number of warnings are fixed. Signed-off-by:
Markus Klotzbuecher <mk@denx.de>
-
- Nov 21, 2007
-
-
Grant Likely authored
Use cpp and sed to postprocess config.h and import the defined values into include/autoconf.mk. autoconf.mk is then included by config.mk to give 'make' access to the board configuration. Doing this enables conditional compilation at the Makefile level instead of by wrapping every .c file with #ifdef/#endif wrappers. Signed-off-by:
Grant Likely <grant.likely@secretlab.ca>
-
- Nov 15, 2007
-
-
Grant Likely authored
Signed-off-by:
Grant Likely <grant.likely@secretlab.ca> Acked-by:
Kim Phillips <kim.phillips@freescale.com>
-
- Jul 10, 2007
-
-
Jon Loeliger authored
Fixed some broken instances of "#ifdef CMD_CFG_IDE" too. Those always evaluated TRUE, and thus were always compiled even when IDE really wasn't defined/wanted. Signed-off-by:
Jon Loeliger <jdl@freescale.com>
-
- Jul 09, 2007
-
-
Jon Loeliger authored
Signed-off-by:
Jon Loeliger <jdl@freescale.com>
-
Wolfgang Denk authored
Signed-off-by:
Wolfgang Denk <wd@denx.de>
-
- Jul 03, 2007
-
-
Jon Loeliger authored
This is a compatibility step that allows both the older form and the new form to co-exist for a while until the older can be removed entirely. All transformations are of the form: Before: #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) After: #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT) Signed-off-by:
Jon Loeliger <jdl@freescale.com>
-
- Jun 22, 2007
-
-
Heiko Schocher authored
- Show on the Status LEDs, some States of the board. - Get the MAC addresses from the EEProm - use PREBOOT - use the CF on the board. - check the U-Boot image in the Flash with a SHA1 checksum. - use dynamic TLB entries generation for the SDRAM Signed-off-by:
Heiko Schocher <hs@denx.de>
-
- May 15, 2007
-
-
Aubrey.Li authored
Singed-off-by:
Marc Hoffman <Marc.Hoffman@analog.com> Signed-off-by:
Aubrey Li <aubrey.adi@gmail.com>
-
- Oct 09, 2006
-
-
Stefan Roese authored
Make it possible to generate AVR32 uImage files with mkimage and make cmd_bootm recognize them. Patch by Haavard Skinnemoen, 22 Sep 2006
-
- Oct 08, 2006
-
-
Wolfgang Denk authored
-
- Sep 06, 2006
-
-
Wolfgang Denk authored
Patch by David Updegraff, 06 Sep 2006
-
- Sep 01, 2006
-
-
Marian Balakowicz authored
Modifications are based on the linux kernel approach and support two use cases: 1) Add O= to the make command line 'make O=/tmp/build all' 2) Set environement variable BUILD_DIR to point to the desired location 'export BUILD_DIR=/tmp/build' 'make' The second approach can also be used with a MAKEALL script 'export BUILD_DIR=/tmp/build' './MAKEALL' Command line 'O=' setting overrides BUILD_DIR environent variable. When none of the above methods is used the local build is performed and the object files are placed in the source directory.
-
Marian Balakowicz authored
-
Marian Balakowicz authored
-
- Aug 22, 2006
-
-
Matthew McClintock authored
Signed-off-by:
Matthew McClintock <msm@freescale.com>
-
- Aug 16, 2006
-
-
Matthew McClintock authored
Signed-off-by:
Matthew McClintock <msm@freescale.com>
-
- Apr 28, 2006
-
-
Wolfgang Denk authored
-
- Mar 12, 2006
-
-
Wolfgang Denk authored
Patch by Murray Jensen, 15 Jul 2005
-
Wolfgang Denk authored
- add support for Analog Devices Blackfin BF533 CPU - add support for the ADI BF533 Stamp uClinux board - add support for the ADI BF533 EZKit board Patches by Richard Klingler, June 11th 2005:
-
- Feb 21, 2006
-
-
Wolfgang Denk authored
As done in the linux kernel, the U-Boot version (U_BOOT_VERSION) of all unreleased (untagged) U-Boot images will be automatically extended upon compiletime with a part of the GIT commit ID and possibly with "dirty" if uncommited changes are detected. Here an example for the resulting version: "U-Boot 1.1.4-g3457ac18-dirty" The version is now maintained in the toplevel Makefile and the version headers are autogenerated. Patch by Stefan Roese, 9 Feb 2006
-
- Jan 11, 2006
-
-
Wolfgang Denk authored
-
- Nov 20, 2005
-
-
Wolfgang Denk authored
which makes the environment compatible with the hush shell. WARNING: Support for the old '$(...)' syntax will be discontinued in a later version.
-
- Oct 11, 2005
-
-
Marian Balakowicz authored
-
- Sep 25, 2005
-
-
Wolfgang Denk authored
Patch by Andrew Dyer, 31 Jan 2005
-
- Sep 24, 2005
-
-
Wolfgang Denk authored
Patch by Ara Avanesyan, 01 Feb 2005
-
- Aug 12, 2005
-
-
Wolfgang Denk authored
Patch by Murray Jensen, 01 Jul 2005
-
Wolfgang Denk authored
Patch by Murray Jensen, 30 Jun 2005
-
- Aug 03, 2005
-
-
Wolfgang Denk authored
-
- Jul 21, 2005
-
-
Wolfgang Denk authored
-
- Apr 03, 2005
-
-
Wolfgang Denk authored
Add missing NIOS/NIOS2 support for "iminfo" command * Patch by Detlev Zundel, 29 Oct 2004: Add missing NIOS/NIOS2 support for "mkimage" tool.
-
- Dec 31, 2004
-
-
Wolfgang Denk authored
* Cleanup confusing use of CONFIG_ETH*ADDR - ust his only to pre-define a MAC address; use CONFIG_HAS_ETH* to enable support for additional ethernet addresses. * Cleanup drivers/i82365.c - avoid duplication of code * Fix bogus "cannot span across banks" flash error message * Add support for CompactFlash for the CPC45 Board.
-