This is the mail archive of the ecos-cvs@sources.redhat.com mailing list for the ecos project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

eCos anonymous CVS repository updated


The eCos anonymous CVS repository has been updated today (2001-11-23).

The following changes were made to NEWS and ChangeLogs:

Index: packages/NEWS
===================================================================
RCS file: /cvs/ecos/ecos/packages/NEWS,v
retrieving revision 1.45
diff -u -0 -r1.45 NEWS
--- NEWS	2001/11/02 16:12:33	1.45
+++ NEWS	2001/11/23 17:03:40
@@ -0,0 +1,3 @@
+* EDB7xxx ethernet driver rewritten to be a generic Cirrus Logic CS8900A
+  package.
+* Incorporated FTP client code (library and test) from Andrew Lunn.
Index: packages/ChangeLog
===================================================================
RCS file: /cvs/ecos/ecos/packages/ChangeLog,v
retrieving revision 1.63
diff -u -0 -r1.63 ChangeLog
--- ChangeLog	2001/11/02 16:12:33	1.63
+++ ChangeLog	2001/11/23 17:03:57
@@ -0,0 +1,19 @@
+2001-11-22  Jesper Skov  <jskov@redhat.com>
+
+	* pkgconf/rules.mak: Added HOST_CC definition. This really belongs
+	in the top-level makefile, but requires tool changes.
+
+2001-11-21  Andrew Lunn  <andrew.lunn@ascom.ch>
+
+	* pkgconf/rules.mak (tests.stamp): Be explicit about substitution
+	to avoid potential problems with trailing spaces.
+	[Bug #56239]
+
+2001-11-14  Jesper Skov  <jskov@redhat.com>
+
+	* ecos.db: edb7xxx target now uses generic CS8900A driver.
+
+2001-11-02  Jesper Skov  <jskov@redhat.com>
+
+	* ecos.db: Added CS8900A package.
+
@@ -257 +275,0 @@
-	* customers:
Index: packages/compat/posix/current/ChangeLog
===================================================================
RCS file: /cvs/ecos/ecos/packages/compat/posix/current/ChangeLog,v
retrieving revision 1.23
diff -u -0 -r1.23 ChangeLog
--- ChangeLog	2001/10/26 12:27:32	1.23
+++ ChangeLog	2001/11/23 17:04:18
@@ -0,0 +1,5 @@
+2001-11-06  Gary Thomas  <gthomas@redhat.com>
+
+	* include/muttypes.h: Need <pkgconf/kernel.h> configuration info,
+	otherwise structures defined here could have the wrong size.
+
Index: packages/devs/eth/arm/ebsa285/current/ChangeLog
===================================================================
RCS file: /cvs/ecos/ecos/packages/devs/eth/arm/ebsa285/current/ChangeLog,v
retrieving revision 1.21
diff -u -0 -r1.21 ChangeLog
--- ChangeLog	2001/10/02 18:28:25	1.21
+++ ChangeLog	2001/11/23 17:04:35
@@ -0,0 +1,12 @@
+2001-11-19  Hugo Tyson  <hmt@redhat.com>
+2001-11-19  Anssi Pulkkinen <Anssi.Pulkkinen@ascom.ch>
+
+	* src/if_ebsa285.c (TxMachine): The test to see if there is a new
+	tx to start must also say "go" if the tx queue is full.  Normally,
+	if the txqueue is full, a tx will be occurring at all times - so
+	one will complete soon, so the tx queue full flag will soon be
+	cleared, and this condition will recover.  I suspect a subtle race
+	which effectively means a new tx is queued and fills the queue in
+	between two tx's, so no TxDone() follows, causes the hang which we
+	get without this extra test under high load.  [CASE 106686]
+
Index: packages/devs/eth/arm/edb7xxx/current/ChangeLog
===================================================================
RCS file: /cvs/ecos/ecos/packages/devs/eth/arm/edb7xxx/current/ChangeLog,v
retrieving revision 1.12
diff -u -0 -r1.12 ChangeLog
--- ChangeLog	2001/10/19 07:02:29	1.12
+++ ChangeLog	2001/11/23 17:04:52
@@ -0,0 +1,12 @@
+2001-11-20  Jesper Skov  <jskov@redhat.com>
+	From hmt:
+	* include/devs_eth_arm_edb7xxx.inl (_edb7xxx_provide_eth0_esa):
+	Use VV calls to get this even from an application; config changed
+	accordingly to include this function even in an application. 
+
+2001-11-14  Jesper Skov  <jskov@redhat.com>
+
+	* cdl/edb7xxx_eth_drivers.cdl: Make use of the new generic Cirrus
+	Logic CS8900A driver.
+	* include/devs_eth_arm_edb7xxx.inl: Added.
+
Index: packages/devs/eth/cl/cs8900a/current/ChangeLog
===================================================================
RCS file: ChangeLog
diff -N ChangeLog
--- /dev/null	Tue May  5 13:32:27 1998
+++ ChangeLog	Fri Nov 23 09:05:10 2001
@@ -0,0 +1,85 @@
+2001-11-20  Jesper Skov  <jskov@redhat.com>
+
+	* src/if_cs8900a.c: Added some more debug output. Set all 4 LAF
+	registers. Don't reset device to stop it - just disable TX & RX.
+
+2001-11-16  Jesper Skov  <jskov@redhat.com>
+
+	* src/if_cs8900a.c (cs8900a_send): Wait for controller ready
+	signal before starting transmission.
+
+2001-11-14  Jesper Skov  <jskov@redhat.com>
+
+	* src/if_cs8900a.c: Use platform init, reset and int_clear
+	macros.
+	* include/cs8900.h: Tidy up those (default) macros.
+
+2001-11-09  Jesper Skov  <jskov@redhat.com>
+
+	* src/if_cs8900a.c (cs8900a_init): Rewrote ESA setup to be more
+	consistent.
+
+	* include/cs8900.h: Added provide_esa field to driver structure.
+
+2001-11-08  Jesper Skov  <jskov@redhat.com>
+
+	* src/if_cs8900a.c: Made it build with faked interrupts.
+
+	* include/cs8900.h: Added debug output for put/get functions.
+
+	* src/if_cs8900a.c: Made it build when NET package enabled.
+
+	* include/cs8900.h: Added tab field.
+
+	* src/if_cs8900a.c: Renamed broken ints option, more diag_printf
+	#ifdefing and removed RedBoot ESA option code.
+
+2001-11-07  Jesper Skov  <jskov@redhat.com>
+
+	* src/if_cs8900a.c: Interrupt stuff cleaned up. Fix device
+	probing. Make driver fail when no ESA available and none has been
+	configured. Compiler warning fixes and some printout cleanups.
+
+	* src/if_cs8900a.c: Platform driver provides device
+	information. Renamed functions and definitions. Init code changed
+	some.
+
+	* include/cs8900.h: Renaming some definitions.
+
+	* cdl/cl_cs8900a_eth_drivers.cdl: Platform driver provides
+	options.
+
+2001-11-06  Jesper Skov  <jskov@redhat.com>
+
+	* src/if_cs8900a.c: Assorted hacking.
+	* include/cs8900.h: Same.
+
+2001-11-02  Jesper Skov  <jskov@redhat.com>
+
+	* Cloned from edb7xxx driver.
+
+//===========================================================================
+//####COPYRIGHTBEGIN####
+//                                                                          
+// -------------------------------------------                              
+// The contents of this file are subject to the Red Hat eCos Public License 
+// Version 1.1 (the "License"); you may not use this file except in         
+// compliance with the License.  You may obtain a copy of the License at    
+// http://www.redhat.com/                                                   
+//                                                                          
+// Software distributed under the License is distributed on an "AS IS"      
+// basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.  See the 
+// License for the specific language governing rights and limitations under 
+// the License.                                                             
+//                                                                          
+// The Original Code is eCos - Embedded Configurable Operating System,      
+// released September 30, 1998.                                             
+//                                                                          
+// The Initial Developer of the Original Code is Red Hat.                   
+// Portions created by Red Hat are                                          
+// Copyright (C) 1998, 1999, 2000, 2001 Red Hat, Inc.
+// All Rights Reserved.                                                     
+// -------------------------------------------                              
+//                                                                          
+//####COPYRIGHTEND####
+//===========================================================================
Index: packages/devs/eth/intel/i82559/current/ChangeLog
===================================================================
RCS file: /cvs/ecos/ecos/packages/devs/eth/intel/i82559/current/ChangeLog,v
retrieving revision 1.8
diff -u -0 -r1.8 ChangeLog
--- ChangeLog	2001/10/02 18:28:25	1.8
+++ ChangeLog	2001/11/23 17:05:28
@@ -0,0 +1,12 @@
+2001-11-19  Hugo Tyson  <hmt@redhat.com>
+2001-11-19  Anssi Pulkkinen <Anssi.Pulkkinen@ascom.ch>
+
+	* src/if_i82559.c (TxMachine): The test to see if there is a new
+	tx to start must also say "go" if the tx queue is full.  Normally,
+	if the txqueue is full, a tx will be occurring at all times - so
+	one will complete soon, so the tx queue full flag will soon be
+	cleared, and this condition will recover.  I suspect a subtle race
+	which effectively means a new tx is queued and fills the queue in
+	between two tx's, so no TxDone() follows, causes the hang which we
+	get without this extra test under high load.  [CASE 106686]
+
Index: packages/fs/rom/current/ChangeLog
===================================================================
RCS file: /cvs/ecos/ecos/packages/fs/rom/current/ChangeLog,v
retrieving revision 1.4
diff -u -0 -r1.4 ChangeLog
--- ChangeLog	2001/10/19 07:02:31	1.4
+++ ChangeLog	2001/11/23 17:05:44
@@ -0,0 +1,9 @@
+2001-11-23  Jonathan Larmour  <jlarmour@redhat.com>
+
+	* cdl/romfs.cdl (CYGTST_ROMFS_BUILD_TESTS): Try gcc and cc if $HOST_CC
+	doesn't exist or has a problem.
+
+2001-11-22  Jesper Skov  <jskov@redhat.com>
+
+	* cdl/romfs.cdl: Use HOST_CC instead of 'cc'.
+
Index: packages/hal/arm/arch/current/ChangeLog
===================================================================
RCS file: /cvs/ecos/ecos/packages/hal/arm/arch/current/ChangeLog,v
retrieving revision 1.66
diff -u -0 -r1.66 ChangeLog
--- ChangeLog	2001/11/02 16:12:33	1.66
+++ ChangeLog	2001/11/23 17:06:01
@@ -0,0 +1,7 @@
+2001-11-02  Hugo Tyson  <hmt@redhat.com>
+
+	* include/arm_stub.h (CYG_HAL_GDB_LEAVE_CRITICAL_IO_REGION): Nasty
+	bodge to fix a tools issue where an "unused" label is migrated to
+	where some real code is, ie. the wrong place in this case.
+	Problem applies to arm9e-elf tools and other arm variants also.
+
Index: packages/hal/arm/arm9/var/current/ChangeLog
===================================================================
RCS file: /cvs/ecos/ecos/packages/hal/arm/arm9/var/current/ChangeLog,v
retrieving revision 1.3
diff -u -0 -r1.3 ChangeLog
--- ChangeLog	2001/11/02 16:12:33	1.3
+++ ChangeLog	2001/11/23 17:06:18
@@ -0,0 +1,14 @@
+2001-11-16  Jesper Skov  <jskov@redhat.com>
+
+	* src/arm9_misc.c (hal_hardware_init): Don't invalidate caches on
+	RAM startup.
+
+2001-11-07  Jesper Skov  <jskov@redhat.com>
+
+	* src/arm9_misc.c (cyg_hal_arm9_soft_reset): Also put CPU in SVC
+	mode (as after a reset). Still broken though.
+
+2001-11-06  Gary Thomas  <gthomas@redhat.com>
+
+	* include/hal_cache.h: Add virtual->physical translation setup.
+
Index: packages/hal/arm/ebsa285/current/ChangeLog
===================================================================
RCS file: /cvs/ecos/ecos/packages/hal/arm/ebsa285/current/ChangeLog,v
retrieving revision 1.22
diff -u -0 -r1.22 ChangeLog
--- ChangeLog	2001/09/12 00:59:20	1.22
+++ ChangeLog	2001/11/23 17:06:37
@@ -0,0 +1,16 @@
+2001-11-02  Andrew Lunn  <Andrew.Lunn@ascom.ch>
+2001-11-02  Jonathan Larmour  <jlarmour@redhat.com>
+
+	* cdl/hal_arm_ebsa285.cdl: Add ROMRAM startup type and MLT file config.
+
+	* include/hal_platform_setup.h: Support relocation of ROMRAM image.
+
+	* include/pkgconf/mlt_arm_ebsa285_romram.h: New MLT files for romram.
+	* include/pkgconf/mlt_arm_ebsa285_romram.ldi: Ditto.
+	* include/pkgconf/mlt_arm_ebsa285_romram.mlt: Ditto.
+	* include/pkgconf/mlt_arm_ebsa285_ram.mlt: Move app base to 0x30000 to
+	allow for romram space.
+	* include/pkgconf/mlt_arm_ebsa285_ram.ldi: Regenerate.
+
+	* misc/redboot_ROMRAM.ecm: New file.
+
Index: packages/hal/common/current/ChangeLog
===================================================================
RCS file: /cvs/ecos/ecos/packages/hal/common/current/ChangeLog,v
retrieving revision 1.72
diff -u -0 -r1.72 ChangeLog
--- ChangeLog	2001/10/26 12:27:33	1.72
+++ ChangeLog	2001/11/23 17:06:56
@@ -0,0 +1,11 @@
+2001-11-23  Nick Garnett  <nickg@redhat.com>
+
+	* src/generic-stub.c (__process_packet): Fixed bogosity in
+	handling of 'r' packet. It tried to send two replies, messing up
+	the protocol and confusing GDB.
+
+2001-11-02  Hugo Tyson  <hmt@redhat.com>
+
+	* include/hal_stub.h (CYG_HAL_GDB_LEAVE_CRITICAL_IO_REGION):
+	Permit this too to be defined externally ie. in a platform HAL.
+
Index: packages/hal/i386/arch/current/ChangeLog
===================================================================
RCS file: /cvs/ecos/ecos/packages/hal/i386/arch/current/ChangeLog,v
retrieving revision 1.28
diff -u -0 -r1.28 ChangeLog
--- ChangeLog	2001/10/26 12:27:34	1.28
+++ ChangeLog	2001/11/23 17:07:15
@@ -0,0 +1,5 @@
+2001-11-21  Mark Salter  <msalter@redhat.com>
+
+	* src/i386_stub.c (__do_read_msr): Add mem_fault handling.
+	(__do_write_msr): Ditto.
+
Index: packages/hal/i386/pcmb/current/ChangeLog
===================================================================
RCS file: /cvs/ecos/ecos/packages/hal/i386/pcmb/current/ChangeLog,v
retrieving revision 1.10
diff -u -0 -r1.10 ChangeLog
--- ChangeLog	2001/11/02 16:12:34	1.10
+++ ChangeLog	2001/11/23 17:07:34
@@ -0,0 +1,5 @@
+2001-11-23  Nick Garnett  <nickg@redhat.com>
+
+	* include/pcmb_io.h (PC_WRITE_SCREEN): Wrap positions beyond end
+	of screen back to start.
+	
Index: packages/hal/mips/arch/current/ChangeLog
===================================================================
RCS file: /cvs/ecos/ecos/packages/hal/mips/arch/current/ChangeLog,v
retrieving revision 1.58
diff -u -0 -r1.58 ChangeLog
--- ChangeLog	2001/10/26 12:27:34	1.58
+++ ChangeLog	2001/11/23 17:07:51
@@ -0,0 +1,5 @@
+2001-11-16  Nick Garnett  <nickg@redhat.com>
+
+	* src/hal_misc.c (hal_msbit_index): Fixed this function so that it
+	actually works!
+
Index: packages/hal/mips/mips64/current/ChangeLog
===================================================================
RCS file: /cvs/ecos/ecos/packages/hal/mips/mips64/current/ChangeLog,v
retrieving revision 1.1
diff -u -0 -r1.1 ChangeLog
--- ChangeLog	2001/04/06 17:20:33	1.1
+++ ChangeLog	2001/11/23 17:08:09
@@ -0,0 +1,4 @@
+2001-11-06  Mark Salter  <msalter@redhat.com>
+
+	* src/mips_mips64.ld: Add .2ram section.
+
Index: packages/hal/mn10300/arch/current/ChangeLog
===================================================================
RCS file: /cvs/ecos/ecos/packages/hal/mn10300/arch/current/ChangeLog,v
retrieving revision 1.22
diff -u -0 -r1.22 ChangeLog
--- ChangeLog	2001/10/19 07:02:35	1.22
+++ ChangeLog	2001/11/23 17:08:26
@@ -0,0 +1,5 @@
+2001-11-16  Nick Garnett  <nickg@redhat.com>
+
+	* src/hal_misc.c (hal_msbit_index): Fixed this function so that it
+	actually works!
+
Index: packages/hal/powerpc/arch/current/ChangeLog
===================================================================
RCS file: /cvs/ecos/ecos/packages/hal/powerpc/arch/current/ChangeLog,v
retrieving revision 1.39
diff -u -0 -r1.39 ChangeLog
--- ChangeLog	2001/02/27 01:21:47	1.39
+++ ChangeLog	2001/11/23 17:08:44
@@ -0,0 +1,10 @@
+2001-11-16  Nick Garnett  <nickg@redhat.com>
+
+	* include/hal_arch.h (HAL_MSBIT_INDEX): Fixed this macro so that
+	it actually works!
+
+2001-11-15  Jesper Skov  <jskov@redhat.com>
+
+	* src/hal_misc.c (hal_arch_default_isr): Added return
+	statement (found by Christoph Csebits).
+
Index: packages/hal/sh/arch/current/ChangeLog
===================================================================
RCS file: /cvs/ecos/ecos/packages/hal/sh/arch/current/ChangeLog,v
retrieving revision 1.36
diff -u -0 -r1.36 ChangeLog
--- ChangeLog	2001/10/19 07:02:35	1.36
+++ ChangeLog	2001/11/23 17:09:01
@@ -0,0 +1,5 @@
+2001-11-16  Nick Garnett  <nickg@redhat.com>
+
+	* src/hal_misc.c (hal_msbit_index): Fixed this function so that it
+	actually works!	
+
Index: packages/hal/sh/cq7750/current/ChangeLog
===================================================================
RCS file: /cvs/ecos/ecos/packages/hal/sh/cq7750/current/ChangeLog,v
retrieving revision 1.10
diff -u -0 -r1.10 ChangeLog
--- ChangeLog	2001/09/12 04:21:15	1.10
+++ ChangeLog	2001/11/23 17:09:17
@@ -0,0 +1,5 @@
+2001-11-19  Jesper Skov  <jskov@redhat.com>
+
+	* cdl/hal_sh_sh7750_cq7750.cdl: Added CYGHWR_HAL_SH_OOC_DIVIDER_1
+	(found by Koichi Nagashima)
+
Index: packages/hal/sh/dreamcast/current/ChangeLog
===================================================================
RCS file: /cvs/ecos/ecos/packages/hal/sh/dreamcast/current/ChangeLog,v
retrieving revision 1.2
diff -u -0 -r1.2 ChangeLog
--- ChangeLog	2001/08/10 19:27:56	1.2
+++ ChangeLog	2001/11/23 17:09:34
@@ -0,0 +1,5 @@
+2001-11-21  Jesper Skov  <jskov@redhat.com>
+
+	* cdl/hal_sh_sh7750_dreamcast.cdl: Added
+	CYGHWR_HAL_SH_OOC_DIVIDER_1 option.
+
Index: packages/hal/sh/sh4/current/ChangeLog
===================================================================
RCS file: /cvs/ecos/ecos/packages/hal/sh/sh4/current/ChangeLog,v
retrieving revision 1.14
diff -u -0 -r1.14 ChangeLog
--- ChangeLog	2001/10/19 07:02:38	1.14
+++ ChangeLog	2001/11/23 17:09:51
@@ -0,0 +1,4 @@
+2001-11-07  Jesper Skov  <jskov@redhat.com>
+
+	* src/var_mk_defs.c (main): Fix warning.
+
Index: packages/io/fileio/current/ChangeLog
===================================================================
RCS file: /cvs/ecos/ecos/packages/io/fileio/current/ChangeLog,v
retrieving revision 1.16
diff -u -0 -r1.16 ChangeLog
--- ChangeLog	2001/10/19 07:02:40	1.16
+++ ChangeLog	2001/11/23 17:10:09
@@ -0,0 +1,6 @@
+2001-11-02  Felix Wong  <felixwong@i-technologies.cc>
+2001-11-02  Jonathan Larmour  <jlarmour@redhat.com>
+
+	* src/devfs.cxx (dev_fo_read): Support block devices.
+	(dev_fo_write): Ditto.
+
Index: packages/language/c/libc/stdio/current/ChangeLog
===================================================================
RCS file: /cvs/ecos/ecos/packages/language/c/libc/stdio/current/ChangeLog,v
retrieving revision 1.11
diff -u -0 -r1.11 ChangeLog
--- ChangeLog	2001/08/10 19:27:58	1.11
+++ ChangeLog	2001/11/23 17:10:26
@@ -0,0 +1,5 @@
+2001-11-23  Jonathan Larmour  <jlarmour@redhat.com>
+
+	* cdl/stdio.cdl: Add dependency on stdlib string conversion functions
+	for *scanf.
+
Index: packages/net/ftpclient/current/ChangeLog
===================================================================
RCS file: ChangeLog
diff -N ChangeLog
--- /dev/null	Tue May  5 13:32:27 1998
+++ ChangeLog	Fri Nov 23 09:10:43 2001
@@ -0,0 +1,31 @@
+2001-11-4  Andrew Lunn  <andrew.lunn@ascom.ch>
+	
+	* First version. Implements an FTP client which can get and put 
+	  files on a server. 
+ 	
+//===========================================================================
+//####COPYRIGHTBEGIN####
+//                                                                          
+// -------------------------------------------                              
+// The contents of this file are subject to the Red Hat eCos Public License 
+// Version 1.1 (the "License"); you may not use this file except in         
+// compliance with the License.  You may obtain a copy of the License at    
+// http://www.redhat.com/                                                   
+//                                                                          
+// Software distributed under the License is distributed on an "AS IS"      
+// basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.  See the 
+// License for the specific language governing rights and limitations under 
+// the License.                                                             
+//                                                                          
+// The Original Code is eCos - Embedded Configurable Operating System,      
+// released September 30, 1998.                                             
+//                                                                          
+// The Initial Developer of the Original Code is Red Hat.                   
+// Portions created by Red Hat are                                          
+// Copyright (C) 1998, 1999, 2000, 2001 Red Hat, Inc.                             
+// All Rights Reserved.                                                     
+// -------------------------------------------                              
+//                                                                          
+//####COPYRIGHTEND####
+//===========================================================================
+	
Index: packages/net/tcpip/current/ChangeLog
===================================================================
RCS file: /cvs/ecos/ecos-opt/net/net/tcpip/current/ChangeLog,v
retrieving revision 1.32
diff -u -0 -r1.32 ChangeLog
--- ChangeLog	2001/11/02 16:12:34	1.32
+++ ChangeLog	2001/11/23 17:11:00
@@ -0,0 +1,20 @@
+2001-11-19  Hugo Tyson  <hmt@redhat.com>
+
+	* include/bootp.h (BP_STD_TX_MINPKTSZ): New symbol defining the
+	minimal DHCP packet size which we should send.
+
+	* src/lib/dhcp_prot.c (scan_dhcp_size): New routine to scan up to
+	the end of the packet, for length determination and padding.
+	(dhcp_size): Now uses scan_dhcp_size().
+	(dhcp_size_for_send): New, uses scan_dhcp_size() and pads with
+	zero up to the min packet size that we should send.
+	(do_dhcp): In every sendto() call, use dhcp_size_for_send(xmit) in
+	order to send padded, full size packets as needed.  5 instances.
+
+	Credit to "Anssi Pulkkinen" <Anssi.Pulkkinen@ascom.ch> for the
+	original version of this patch.
+
+2001-11-08  Jesper Skov  <jskov@redhat.com>
+
+	* tests/server_test.c (net_test): Fix compile error.
+
Index: packages/redboot/current/ChangeLog
===================================================================
RCS file: /cvs/ecos/ecos/packages/redboot/current/ChangeLog,v
retrieving revision 1.46
diff -u -0 -r1.46 ChangeLog
--- ChangeLog	2001/11/02 16:12:35	1.46
+++ ChangeLog	2001/11/23 17:11:18
@@ -0,0 +1,24 @@
+2001-11-15  Jesper Skov  <jskov@redhat.com>
+
+	* include/redboot.h: Added load_address and load_address_end
+	variables to hold bounds of a loaded image.
+	* src/load.c: Fill load_address and load_address_end after srec
+	and binary loads.
+	* src/flash.c: Same.
+	* src/main.c (do_go): removed unneeded cast.
+
+2001-11-14  Gary Thomas  <gthomas@redhat.com>
+
+	* src/io.c (_rb_gets_preloaded): More correct timeout handling.
+	n.b. in practice, this changes nothing, but it is more "correct".
+
+2001-11-05  Gary Thomas  <gthomas@redhat.com>
+
+	* src/load.c: Minor typo in help string.
+
+	* src/io.c (_rb_gets_preloaded): Clear buffer if ^C.
+
+2001-11-02  Jesper Skov  <jskov@redhat.com>
+
+	* src/flash.c (fis_init): Fix warning.
+

====================================

Here is a summary of the files modified:

M host/tools/configtool/standalone/wxwin/CHANGES.txt
M host/tools/configtool/standalone/wxwin/TODO.txt
M host/tools/configtool/standalone/wxwin/setup/configtool.iss
M host/tools/configtool/standalone/wxwin/setup/innotop.txt
M host/tools/ecostest/common/eCosTest.cpp
M packages/ChangeLog
M packages/NEWS
M packages/ecos.db
M packages/compat/posix/current/ChangeLog
M packages/compat/posix/current/include/muttypes.h
M packages/devs/eth/arm/ebsa285/current/ChangeLog
M packages/devs/eth/arm/ebsa285/current/src/if_ebsa285.c
M packages/devs/eth/arm/edb7xxx/current/ChangeLog
M packages/devs/eth/arm/edb7xxx/current/cdl/edb7xxx_eth_drivers.cdl
A packages/devs/eth/arm/edb7xxx/current/include/devs_eth_arm_edb7xxx.inl
R packages/devs/eth/arm/edb7xxx/current/src/cs8900.h
R packages/devs/eth/arm/edb7xxx/current/src/if_edb7xxx.c
A packages/devs/eth/cl/cs8900a/current/ChangeLog
A packages/devs/eth/cl/cs8900a/current/cdl/cl_cs8900a_eth_drivers.cdl
A packages/devs/eth/cl/cs8900a/current/include/cs8900.h
A packages/devs/eth/cl/cs8900a/current/src/if_cs8900a.c
M packages/devs/eth/intel/i82559/current/ChangeLog
M packages/devs/eth/intel/i82559/current/src/if_i82559.c
M packages/fs/rom/current/ChangeLog
M packages/fs/rom/current/cdl/romfs.cdl
M packages/hal/arm/arch/current/ChangeLog
M packages/hal/arm/arch/current/include/arm_stub.h
M packages/hal/arm/arm9/var/current/ChangeLog
M packages/hal/arm/arm9/var/current/include/hal_cache.h
M packages/hal/arm/arm9/var/current/src/arm9_misc.c
M packages/hal/arm/ebsa285/current/ChangeLog
M packages/hal/arm/ebsa285/current/cdl/hal_arm_ebsa285.cdl
M packages/hal/arm/ebsa285/current/include/hal_platform_setup.h
M packages/hal/arm/ebsa285/current/include/pkgconf/mlt_arm_ebsa285_ram.ldi
M packages/hal/arm/ebsa285/current/include/pkgconf/mlt_arm_ebsa285_ram.mlt
A packages/hal/arm/ebsa285/current/include/pkgconf/mlt_arm_ebsa285_romram.h
A packages/hal/arm/ebsa285/current/include/pkgconf/mlt_arm_ebsa285_romram.ldi
A packages/hal/arm/ebsa285/current/include/pkgconf/mlt_arm_ebsa285_romram.mlt
A packages/hal/arm/ebsa285/current/misc/redboot_ROMRAM.ecm
M packages/hal/common/current/ChangeLog
M packages/hal/common/current/include/hal_stub.h
M packages/hal/common/current/src/generic-stub.c
M packages/hal/i386/arch/current/ChangeLog
M packages/hal/i386/arch/current/src/i386_stub.c
M packages/hal/i386/pcmb/current/ChangeLog
M packages/hal/i386/pcmb/current/include/pcmb_io.h
M packages/hal/mips/arch/current/ChangeLog
M packages/hal/mips/arch/current/src/hal_misc.c
M packages/hal/mips/mips64/current/ChangeLog
M packages/hal/mips/mips64/current/src/mips_mips64.ld
M packages/hal/mn10300/arch/current/ChangeLog
M packages/hal/mn10300/arch/current/src/hal_misc.c
M packages/hal/powerpc/arch/current/ChangeLog
M packages/hal/powerpc/arch/current/include/hal_arch.h
M packages/hal/powerpc/arch/current/src/hal_misc.c
M packages/hal/sh/arch/current/ChangeLog
M packages/hal/sh/arch/current/src/hal_misc.c
M packages/hal/sh/cq7750/current/ChangeLog
M packages/hal/sh/cq7750/current/cdl/hal_sh_sh7750_cq7750.cdl
M packages/hal/sh/dreamcast/current/ChangeLog
M packages/hal/sh/dreamcast/current/cdl/hal_sh_sh7750_dreamcast.cdl
M packages/hal/sh/sh4/current/ChangeLog
M packages/hal/sh/sh4/current/src/var_mk_defs.c
M packages/io/fileio/current/ChangeLog
M packages/io/fileio/current/src/devfs.cxx
M packages/language/c/libc/stdio/current/ChangeLog
M packages/language/c/libc/stdio/current/cdl/stdio.cdl
A packages/net/ftpclient/current/ChangeLog
A packages/net/ftpclient/current/cdl/ftpclient.cdl
A packages/net/ftpclient/current/include/ftpclient.h
A packages/net/ftpclient/current/src/ftpclient.c
A packages/net/ftpclient/current/tests/ftpclient1.c
M packages/net/tcpip/current/ChangeLog
M packages/net/tcpip/current/include/bootp.h
M packages/net/tcpip/current/src/lib/dhcp_prot.c
M packages/net/tcpip/current/tests/server_test.c
M packages/pkgconf/rules.mak
M packages/redboot/current/ChangeLog
M packages/redboot/current/include/redboot.h
M packages/redboot/current/src/flash.c
M packages/redboot/current/src/io.c
M packages/redboot/current/src/load.c
M packages/redboot/current/src/main.c


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]