- May 14, 2008
-
-
Wolfgang Denk authored
...and add to MAKEALL script Signed-off-by:
Wolfgang Denk <wd@denx.de>
-
Wolfgang Denk authored
env_get_char is not a function, but a pointer to one. Signed-off-by:
Wolfgang Denk <wd@denx.de>
-
Wolfgang Denk authored
Several board/<...>/config.mk files include dynamically built (by the Makefile) config files but used the wrong file name of $(TOPDIR)/board/$(BOARDDIR)/config.tmp instead if the correct $(OBJTREE)/board/$(BOARDDIR)/config.tmp The bug is nasty because the build result is correct for the (normal) in-tree builds, and because 'sinclude' is used no errors get raised even for out-of-tree build tests. But out-of-tree builds use an incomplete and thus usually incorrect configuration... Signed-off-by:
Wolfgang Denk <wd@denx.de>
-
Stefan Roese authored
This patch fixes the canyonlands config.mk file to enable correct out-of-tree builds. Thanks to Wolfgang Denk for spotting this. Signed-off-by:
Stefan Roese <sr@denx.de>
-
Stefan Roese authored
Canyonlands has a file ddr2_fixed.c which needs special treatment when building in separate directory. It has to be linked to build directory otherwise it is not seen. Signed-off-by:
Stefan Roese <sr@denx.de>
-
Wolfgang Denk authored
Signed-off-by:
Wolfgang Denk <wd@denx.de>
-
Wolfgang Denk authored
Signed-off-by:
Wolfgang Denk <wd@denx.de>
-
Stefan Roese authored
Canyonlands has a file ddr2_fixed.c which needs special treatment when building in separate directory. It has to be linked to build directory otherwise it is not seen. Signed-off-by:
Stefan Roese <sr@denx.de>
-
- May 13, 2008
-
-
Wolfgang Denk authored
Signed-off-by:
Wolfgang Denk <wd@denx.de>
-
Stefan Roese authored
Signed-off-by:
Stefan Roese <sr@denx.de>
-
- May 11, 2008
-
-
Wolfgang Denk authored
This reverts commit 55774b51 which broke many PowerPC boards.
-
Wolfgang Denk authored
-
Wolfgang Denk authored
This reverts commit 1b5605ca which breaks building on all PPC boards that don't use a log buffer.
-
Nick Spence authored
Calculation of tail was incorrect when size % 4 == 0. New code removes the conditional and does the same thing but with arithmetic Signed-off-by:
Nick Spence <nick.spence@freescale.com>
-
Wolfgang Denk authored
This reverts commit c0559be3 which is known to break booting from dataflash and NAND.
-
Jean-Christophe PLAGNIOL-VILLARD authored
Signed-off-by:
Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
-
- May 10, 2008
-
-
Markus Klotzbuecher authored
When using dhcp/bootp the "netmask" environment variable is not set because CONFIG_BOOTP_SUBNETMASK is not defined. But usually this is desireable, so the following patch adds this this option to the board config. Signed-off-by:
Markus Klotzbuecher <mk@denx.de> Signed-off-by:
Stefan Roese <sr@denx.de>
-
Stefan Roese authored
This patch reworks the default environment on Makalu. Now "net_nfs" for example uses the device-tree style booting formerly know as "net_nfs_fdt". Also the addresses in RAM were changed because of the new image booting support, which check for image overwriting. So the addresses needed to get adjusted. Signed-off-by:
Stefan Roese <sr@denx.de>
-
- May 09, 2008
-
-
Becky Bruce authored
map_physmem currently generates a warning when CONFIG_PHYS_64BIT is enabled. This quiets the warning. Signed-off-by:
Becky Bruce <Becky.Bruce@freescale.com>
-
Becky Bruce authored
Physical addrs need to be represented by phys_addr_t, not unsigned long. Otherwise, systems that use CONFIG_PHYS_64BIT are going to fail mightily. Signed-off-by:
Becky Bruce <becky.bruce@freescale.com>
-
Nick Spence authored
This patch enables legacy multi-type images containing only a Linux kernel and root file system to be loaded, maintaining compatibility with previous versions of u-boot. This is required when using old image files such as a Linux 2.4 kernel / filesystem. Signed-off-by:
Nick Spence <nick.spence@freescale.com> Acked-by:
Bartlomiej Sieka <tur@semihalf.com>
-
Wolfgang Denk authored
Signed-off-by:
Wolfgang Denk <wd@denx.de>
-
Wolfgang Denk authored
Signed-off-by:
Wolfgang Denk <wd@denx.de>
-
Stelian Pop authored
When applying the AT91CAP9 patches upstream, something transformed the '@' character into the ' <at> ' sequence. The patch below restores the original form in all the places where it has been modified (the AT91CAP9 files, the AT91SAM9260 files which were copied from AT91CAP9, and a couple of other files where the ' <at> ' sequence was present). Signed-off-by:
Stelian Pop <stelian@popies.net>
-
Stelian Pop authored
When doing the AT91CAP9/AT91SAM9 port, a number of header files were copied from the Linux kernel sources. This patch explicitly specifies this origin for all the copied headers, and for those missing copyright information, adds it. Additionaly, the header file 'at91sam926x_mc.h' has been superceeded in the latest kernel sources by 'at91sam9_smc.h'. The copyright information has been confirmed by the AT91 Linux kernel maintainer, Andrew Victor <avictor.za@gmail.com>. Signed-off-by:
Stelian Pop <stelian@popies.net>
-
Stelian Pop authored
When Ulf did the dataflash.c cleanup, he didn't add his copyright on the new created files. This patch fixes the problem. Signed-off-by:
Stelian Pop <stelian@popies.net>
-
Guennadi Liakhovetski authored
According to schematics and to RedBoot sources, the MX31ADS uses a 32768Hz oscillator as a SKIL source. Fix previously wrongly assumed 32000Hz value. Also fix a typo when verifying a jumper configuration. While at it, make two needlessly global functions static. Signed-off-by:
Guennadi Liakhovetski <lg@denx.de>
-
Marian Balakowicz authored
Add logbuffer to reserved LMB areas to prevent initrd allocation from overlaping with it. Make sure to use correct logbuffer base address. Signed-off-by:
Marian Balakowicz <m8@semihalf.com>
-
Marian Balakowicz authored
Removed duplicated effective memory size calculation code. Signed-off-by:
Marian Balakowicz <m8@semihalf.com>
-
Marian Balakowicz authored
Recent modifcations to LOGBUFFER handling code were incorrecly introduced to fit_check_kernel() routine during "Merge branch 'new-image' of git://www.denx.de/git/u-boot-testing ", commit 27f33e9f. This patch cleans up this merge issue. Signed-off-by:
Marian Balakowicz <m8@semihalf.com>
-
Grant Erickson authored
Changed implementation such that fw_printenv returns failure status when one or more specified variables do not exist or when incorrect command syntax is used. This aids scripting fw_printenv such that the script can key of the return status rather than relying on standard error "scraping". Signed-off-by:
Grant Erickson <gerickson@nuovations.com> Signed-off-by:
Wolfgang Denk <wd@denx.de>
-
Grant Erickson authored
In the current top-of-tree, 1.3.3.-rc2, the optional tool 'tools/env/fw_printenv' fails to compile for two reasons: 1) The header watchdog.h cannot be found. 2) The header zlib.h is picked up from the tool chain rather than the project causing a prototype conflict for crc32. This patch addresses both of these issues. Platforms Tested On: - AMCC "Kilauea" Signed-off-by:
Grant Erickson <gerickson@nuovations.com>
-
Wolfgang Denk authored
-
Wolfgang Denk authored
-
James Yang authored
When CONFIG_CMDLINE_EDITING is enabled, readline_into_buffer() doesn't work before relocating to RAM because command history is written into a global array that is not writable before relocation. This patch defers to the no-editing and no-history code in readline_into_buffer() if it is called before relocation. Signed-off-by:
James Yang <James.Yang@freescale.com> Signed-off-by:
Kumar Gala <galak@kernel.crashing.org>
-
Detlev Zundel authored
Signed-off-by:
Detlev Zundel <dzu@denx.de>
-