diff options
| author | wdenk <wdenk> | 2003-10-29 23:18:55 +0000 | 
|---|---|---|
| committer | wdenk <wdenk> | 2003-10-29 23:18:55 +0000 | 
| commit | 5fa66df63afe2841ce27596996811469903373a7 (patch) | |
| tree | c57de575d2c6b4b1946caf9105ef44c20a3b074e /lib_arm/board.c | |
| parent | a0f2fe524c63b3be90e18c89fc62673b1cf8fc6b (diff) | |
| download | olio-uboot-2014.01-5fa66df63afe2841ce27596996811469903373a7.tar.xz olio-uboot-2014.01-5fa66df63afe2841ce27596996811469903373a7.zip  | |
* Prepare for release
* Fix problems in memory test on some boards (which was not
  non-destructive as intended)
* Patch by Gary Jennejohn, 28 Oct 2003:
  Change fs/fat/fat.c to put I/O buffers in BSS instead on the stack
  to prevent stack overflow on ARM systems
Diffstat (limited to 'lib_arm/board.c')
| -rw-r--r-- | lib_arm/board.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/lib_arm/board.c b/lib_arm/board.c index f3f831f4f..a6029b0f2 100644 --- a/lib_arm/board.c +++ b/lib_arm/board.c @@ -111,9 +111,9 @@ static int init_baudrate (void)  static int display_banner (void)  { +#ifdef CONFIG_SILENT_CONSOLE  	DECLARE_GLOBAL_DATA_PTR; -#ifdef CONFIG_SILENT_CONSOLE  	if (gd->flags & GD_FLG_SILENT)  		return (0);  #endif @@ -161,9 +161,9 @@ static int display_dram_config (void)  static void display_flash_config (ulong size)  { +#ifdef CONFIG_SILENT_CONSOLE  	DECLARE_GLOBAL_DATA_PTR; -#ifdef CONFIG_SILENT_CONSOLE  	if (gd->flags & GD_FLG_SILENT)  		return;  #endif  |