- May 09, 2008
-
-
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>
-
Detlev Zundel authored
Signed-off-by:
Detlev Zundel <dzu@denx.de>
-
Vlad Lungu authored
Signed-off-by:
Vlad Lungu <vlad.lungu@windrvier.com>
-
Michal Simek authored
Signed-off-by:
Michal Simek <monstr@monstr.eu>
-
Jean-Christophe PLAGNIOL-VILLARD authored
Signed-off-by:
Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
-
Marcel Ziswiler authored
Removed the second include, with all the #ifdef around as suggested by Wolfgang. Signed-off-by:
Marcel Ziswiler <marcel@ziswiler.com>
-
Adrian Filipi authored
This patch fixes three typos. The first is a repetition of CONFIG_CMD_BSP. The second makes the #endif comment match its #if. The third is a spelling error. Signed-off-by:
Adrian Filipi <adrian.filipi@eurotech.com>
-
Grant Erickson authored
Add support for the recognition of 'powerpc' as an alias for the PowerPC architecture type since Linux is already trending in that direction, preferring 'powerpc' to 'ppc'. Signed-off-by:
Grant Erickson <gerickson@nuovations.com>
-
Wheatley Travis authored
The 7610 and related parts have an L2IP bit in the L2CR that is monitored to signal when the L2 cache invalidate is complete whereas the 7450 and related parts utilize L2I for this purpose. However, the current code does not account for this difference. Additionally the 86xx L2 cache invalidate code used an "andi" instruction where an "andis" instruction should have been used. This patch addresses both of these bugs. Signed-off-by:
Travis Wheatley <travis.wheatley@freescale.com> Acked-By:
Jon Loeliger <jdl@freescale.com>
-
Wolfgang Denk authored
Fix a bogus circular dependency that caused an infinite loop of "Generating include/autoconf.mk" again and again. Signed-off-by:
Wolfgang Denk <wd@denx.de>
-
- May 05, 2008
-
-
Vlad Lungu authored
.gpword works only with local symbols on certain binutils versions Signed-off-by:
Vlad Lungu <vlad.lungu@windrvier.com>
-
Wolfgang Denk authored
Signed-off-by:
Wolfgang Denk <wd@denx.de>
- May 04, 2008
-
-
Wolfgang Denk authored
Signed-off-by:
Wolfgang Denk <wd@denx.de>
-
Wolfgang Denk authored
Update ChNAGELOG, minor white space cleanup. Signed-off-by:
Wolfgang Denk <wd@denx.de>
-
- May 03, 2008
-
-
Wolfgang Denk authored
-
Wolfgang Denk authored
Signed-off-by:
Wolfgang Denk <wd@denx.de>
-
Mike Frysinger authored
Some systems are dumb and do not implement the -n flag to echo (like OS X). Convert the Makefile to use printf as this should work everywhere. Signed-off-by:
Mike Frysinger <vapier@gentoo.org> Signed-off-by:
Wolfgang Denk <wd@denx.de>
-
Mike Frysinger authored
If you enable environment in the flash, but disable the embedded option, and you disable the saveenv command, then the #if nested logic will trigger a compile failure: env_flash.c: In function 'env_relocate_spec': env_flash.c:399: error: 'flash_addr' undeclared (first use in this function) The fix is to add CMD_SAVEENV ifdef protection like everywhere else. Signed-off-by:
Mike Frysinger <vapier@gentoo.org>
-
Jeremy McNicoll authored
Fix incorrect mask to enable all 64MB of onboard flash. Previously U-Boot incorrectly mapped only 8MB of flash, this patch correctly maps all the available flash. Signed-off-by:
Jeremy McNicoll <jeremy.mcnicoll@windriver.com>
-
Jean-Christophe PLAGNIOL-VILLARD authored
Signed-off-by:
Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
-
Marcel Ziswiler authored
Signed-off-by:
Marcel Ziswiler <marcel@ziswiler.com>
-
Mike Frysinger authored
The mmap() related code is full of inconsistent casts/constants when it comes to error checking, and may break when building on some systems (like ones that do not implicitly define the caddr_t type). Let's just avoid the whole mess by writing the code nice and clean in the first place. Signed-off-by:
Mike Frysinger <vapier@gentoo.org>
-
Marcel Ziswiler authored
- warning: 'srom' defined but not used Signed-off-by:
Marcel Ziswiler <marcel@ziswiler.com>
-
Marcel Ziswiler authored
- warning: implicit declaration of function ‘serial_initialize’ Signed-off-by:
Marcel Ziswiler <marcel@ziswiler.com>
-
Andre Schwarz authored
The Vitesse VSC8601 RGMII PHY has internal delay for both Rx and Tx clock lines. They are configured using 2 bits in extended register 0x17. Therefore CFG_VSC8601_SKEW_TX and CFG_VSC8601_SKEW_RX have been introduced with valid values 0-3 giving 0.0, 1.4,1.7 and 2.0ns delay. Signed-off-by:
Andre Schwarz <andre.schwarz@matrix-vision.de> Acked-by:
Andy Fleming <afleming@freescale.com> Acked-by:
Ben Warren <biggerbadderben@gmail.com> -- drivers/net/tsec.c | 6 ++++++ drivers/net/tsec.h | 3 +++ 2 files changed, 9 insertions(+), 0 deletions(-)
-
Wolfgang Denk authored
This reverts commit b7166e05 (replaced by commit c4e5f52a).
-
Wolfgang Denk authored
Some config.mk files reference $(CC) to test for specific tool chain features, so make sure $(CC) gets set before including any such config files. This patch replaces commit b7166e05 ("ColdFire: Get information from the correct GCC"). Signed-off-by:
Wolfgang Denk <wd@denx.de>
-
Jean-Christophe PLAGNIOL-VILLARD authored
start.S:183:1: warning: "ICMR" redefined In file included from start.S:33: include/asm/arch/pxa-regs.h:935:1: warning: this is the location of the previous definition start.S:187:1: warning: "RCSR" redefined ... Signed-off-by:
Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
-
Jean-Christophe PLAGNIOL-VILLARD authored
Signed-off-by:
Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by:
Wolfgang Denk <wd@denx.de>
-
Kumar Gala authored
Make the flags use -Os like all other boards Signed-off-by:
Kumar Gala <galak@kernel.crashing.org>
-
Stefan Roese authored
This patch fixes a problem with the month being read and written incorrectly (offset by one). This only gets visible by also using the Linux driver (rtc-m41t80). Tested on AMCC Canyonlands. Signed-off-by:
Stefan Roese <sr@denx.de>
-
Shinya Kuribayashi authored
Current trick to pick up GNU assembler minor version uses a dot(.) as a delimiter, and take the second field to obtain minor version number. But as can be expected, this doesn't work with a version string which has dots more than needs. Here's an example: $ mips-linux-gnu-as --version | grep 'GNU assembler' GNU assembler (Sourcery G++ Lite 4.2-129) 2.18.50.20080215 $ mips-linux-gnu-as --version | grep 'GNU assembler' | cut -d. -f2 2-129) 2 $ This patch restricts the version format to 2.XX.XX... This will work in most cases. $ mips-linux-gnu-as --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+' 2.18.50.20080215 $ mips-linux-gnu-as --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+' | cut -d. -f2 18 $ Signed-off-by:
Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
-
Shinya Kuribayashi authored
Recent bootelf command fixes (017e9b79, "allow ports to override bootelf behavior") requires ports to have this function. Signed-off-by:
Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> Acked-by:
Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
-
- May 01, 2008
-
-
Wolfgang Denk authored
Onenand needs a version of memcpy() which performs 16 bit accesses only; make sure the name does not conflict with the standard function. Signed-off-by:
Wolfgang Denk <wd@denx.de>
- Apr 30, 2008
-