<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <link>https://hg.ecoscentric.com/ecos/</link>
    <language>en-us</language>

    <title>ecos: packages/redboot/current/src/load.c history</title>
    <description>packages/redboot/current/src/load.c revision history</description>
    <item>
    <title>Update all copyright banners to reflect FSF ownership; fix and improve licence text.</title>
    <link>https://hg.ecoscentric.com/ecos/log/74dbf4c3f2e1/packages/redboot/current/src/load.c</link>
    <description><![CDATA[Update all copyright banners to reflect FSF ownership; fix and improve licence text.]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Thu, 29 Jan 2009 17:47:46 +0000</pubDate>
</item>
<item>
    <title>* src/fconfig.c, src/flash.c, src/io.c, src/load.c, src/main.c,</title>
    <link>https://hg.ecoscentric.com/ecos/log/6cbecf3cc2e4/packages/redboot/current/src/load.c</link>
    <description><![CDATA[* src/fconfig.c, src/flash.c, src/io.c, src/load.c, src/main.c,<br/>
  	src/xyzModem.c, include/redboot.h: more signed vs. unsigned char<br/>
	issues.<br/>
<br/>
	* src/fs/e2fs.c (e2fs_mount): Avoid compiler strict aliasing<br/>
	problem.<br/>
<br/>
	* include/fis.h (struct fis_image_desc): Make fis name be<br/>
	signed char to reduce warnings.<br/>
	* include/flash_config.h (struct _config): Make config_data<br/>
	be signed char to reduce warnings.<br/>
	* include/redboot.h: mon_write_char and mon_read_char_with_timeout<br/>
	take unsigned char, to reduce warnings.<br/>
	* src/parse.c: Add const to err_printf format.<br/>
	* src/fconfig.c: Many signed/unsigned warning cleanups.<br/>
	* src/io.c: Ditto.<br/>
	* src/xyzModem.c: Ditto.<br/>
	* src/load.c: Ditto.<br/>
	* src/flash.c: Ditto.<br/>
<br/>
	* src/fconfig.c (flash_write_config): Warning cleanup.<br/>
	* src/net/net_io.c (do_ip_addr): Warning cleanup.<br/>
	* src/flash.c (fis_create): Warning cleanup.<br/>
<br/>
	* include/net/net.h: Include redboot.h for tick functions.<br/>
<br/>
	* include/net/net.h: Pull tick functions into redboot.h as they<br/>
	are used more widely than the net stack.<br/>
	* include/redboot.h: Declare tick functions.<br/>
	* src/main.c (cyg_start): Correctly compute workspace_end so it<br/>
	works even on high RAM values [bug #1000202].<br/>
	Don't use workspace_end directly for context init - it gets<br/>
	modified.<br/>
	(do_go): Don't use workspace_end directly for context init -<br/>
	it gets	modified.]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Tue, 11 Nov 2008 04:32:10 +0000</pubDate>
</item>
<item>
    <title>* src/load.c (do_load): Reset entry address before load so</title>
    <link>https://hg.ecoscentric.com/ecos/log/460b70d39a50/packages/redboot/current/src/load.c</link>
    <description><![CDATA[* src/load.c (do_load): Reset entry address before load so<br/>
        go/exec commands will fail after an incomplete upload.]]></description>
    <author>&#97;&#115;&#108;</author>
    <pubDate>Wed, 24 Jan 2007 10:23:35 +0000</pubDate>
</item>
<item>
    <title>* src/load.c: Only call valid_address() if</title>
    <link>https://hg.ecoscentric.com/ecos/log/9279e39bd38d/packages/redboot/current/src/load.c</link>
    <description><![CDATA[* src/load.c: Only call valid_address() if<br/>
        CYGSEM_REDBOOT_VALIDATE_USER_RAM_LOADS is enabled.]]></description>
    <author>&#97;&#115;&#108;</author>
    <pubDate>Thu, 30 Nov 2006 17:03:52 +0000</pubDate>
</item>
<item>
    <title>* src/fs/fileio.c (do_list): Use getcwd for current directory,</title>
    <link>https://hg.ecoscentric.com/ecos/log/467fd46113f3/packages/redboot/current/src/load.c</link>
    <description><![CDATA[* src/fs/fileio.c (do_list): Use getcwd for current directory,<br/>
      rather than &quot;.&quot; which may not be implemented in the FS.<br/>
      * src/parse.c (redboot_exec): Conditionalise use of<br/>
      __mem_fault_handler to only be when stubs are included.<br/>
      (error_handler): Ditto for this function.<br/>
<br/>
      * src/main.c (cyg_start): Conditionalise use of<br/>
      __mem_fault_handler to only be when stubs are included.<br/>
      (do_go): Ditto.<br/>
      (error_handler): Ditto for this function.<br/>
      * src/fs/fileio.c (do_mkdir, do_deldir, do_del, do_write): Added<br/>
      some extra argument checking to these functions.<br/>
      * src/fs/fileio.c (do_mount): Only support -f with &quot;legacy&quot; flash<br/>
      block devices.<br/>
      Clear mount table on failure.<br/>
      (do_move): Silence rename undefined warning.<br/>
      (do_write): Silence warnings.<br/>
      (do_info): Support longer device names.<br/>
<br/>
      * src/decompress.c (ZLIB_COMPRESSION_OVERHEAD):<br/>
      Increase substantially if jffs2 is present.<br/>
<br/>
      * src/fs/fileio.c: Fixed some bugs in handling of mounts. The<br/>
      strings used in the mount table must be copied, otherwise the<br/>
      mount table is corrupted by later commands. Also toughened up some<br/>
      error testing.<br/>
<br/>
      * doc/redboot_cmds.sgml: Added file mode documentation to load<br/>
      command.<br/>
<br/>
      * doc/redboot_cmds.sgml: Added documentation of filesystem access<br/>
      commands.<br/>
<br/>
      * src/fs/fileio.c (do_write): Added O_TRUNC to the open call to<br/>
      ensure that the file is resized to fit the new data.<br/>
<br/>
      * src/fs/fileio.c: Significantly reorganized to present an<br/>
      interface similar to the fis commands. Added a variety of command<br/>
      to manipulate files and directories in a filesystem.<br/>
<br/>
      * src/parse.c: Added redboot_exec() to provide an internal<br/>
      interface for executing RedBoot commands. Added err_printf() which<br/>
      allows an error message to be printed before longjumping out to an<br/>
      enclosing call to redboot_exec(). Where redboot_exec() is not<br/>
      involved, it just behaves like diag_printf().<br/>
<br/>
      * src/main.c: Removed unnecessary delay during startup. Changed<br/>
      diag_printf() in do_go() into err_printf().<br/>
<br/>
      * src/load.c: Changed some calls to diag_printf() to err_printf().<br/>
<br/>
      * src/net/net_io.c: Changed init priority to RedBoot_INIT_NET.<br/>
<br/>
      * include/redboot.h: Added some extra initialization<br/>
      priorities. Added prototypes for redboot_exec() and err_printf().]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Thu, 20 Jul 2006 20:27:47 +0000</pubDate>
</item>
<item>
    <title>* src/xyzModem.c (xyzModem_stream_open): Fix compiler warnings.</title>
    <link>https://hg.ecoscentric.com/ecos/log/36bfd6474600/packages/redboot/current/src/load.c</link>
    <description><![CDATA[* src/xyzModem.c (xyzModem_stream_open): Fix compiler warnings.<br/>
        * src/flash_load.c (NEW): Implements access to flash<br/>
        * src/load.c: Allow load command to load directly into flash<br/>
        * cdl/redboot.c (CYGBLD_REDBOOT_LOAD_INTO_FLASH) Control new<br/>
        feature, disabled by default.<br/>
        * cdl/main.c (cyg_start): Assert check to see if we have<br/>
        overflowed the workspace.<br/>
        * doc/redboot_cmds.sgml: Document new flag.]]></description>
    <author>&#97;&#115;&#108;</author>
    <pubDate>Sat, 25 Feb 2006 14:21:12 +0000</pubDate>
</item>
<item>
    <title>TFTP ACK/NAK fixes, from Andrew Dyer</title>
    <link>https://hg.ecoscentric.com/ecos/log/5841ca1d8824/packages/redboot/current/src/load.c</link>
    <description><![CDATA[TFTP ACK/NAK fixes, from Andrew Dyer]]></description>
    <author>&#103;&#116;&#104;&#111;&#109;&#97;&#115;</author>
    <pubDate>Fri, 09 Sep 2005 13:26:01 +0000</pubDate>
</item>
<item>
    <title>* src/load.c (do_load): Removed compiler warning when building</title>
    <link>https://hg.ecoscentric.com/ecos/log/b2a8f9509f6f/packages/redboot/current/src/load.c</link>
    <description><![CDATA[* src/load.c (do_load): Removed compiler warning when building<br/>
        reboot without networking.]]></description>
    <author>&#97;&#115;&#108;</author>
    <pubDate>Sun, 19 Sep 2004 13:01:54 +0000</pubDate>
</item>
<item>
    <title>* cdl/redboot.cdl:</title>
    <link>https://hg.ecoscentric.com/ecos/log/549e69d9a7d0/packages/redboot/current/src/load.c</link>
    <description><![CDATA[* cdl/redboot.cdl:<br/>
        * src/net/net_io.c: added CDL to allow the default server to<br/>
        be configured. Also respect the CYGSEM_REDBOOT_DEFAULT_NO_BOOTP<br/>
        setting.<br/>
<br/>
        * cdl/redboot.cdl:<br/>
        * src/load.c: Added cdl to control the size of the buffer used<br/>
        by getc. The size can have significant affect on load speed<br/>
        when loading from a filesystem.<br/>
<br/>
        * cdl/redboot.cdl<br/>
        * src/load.c (load_elf_image): Added a CDL option to configure<br/>
        if the physical or virtual address in the headers should be used<br/>
        when loading the image.<br/>
<br/>
        * cdl/redboot.cdl<br/>
        * src/fs/fileio.c (do_ls) Added an ls command so we can see what<br/>
        is inside the mounted filesystem.]]></description>
    <author>&#97;&#115;&#108;</author>
    <pubDate>Sat, 21 Aug 2004 12:43:31 +0000</pubDate>
</item>
<item>
    <title>Add checking (assert) for size of option arrays.  Also fix port for TFTP on little endian systems.</title>
    <link>https://hg.ecoscentric.com/ecos/log/43a89c18d005/packages/redboot/current/src/load.c</link>
    <description><![CDATA[Add checking (assert) for size of option arrays.  Also fix port for TFTP on little endian systems.]]></description>
    <author>&#103;&#116;&#104;&#111;&#109;&#97;&#115;</author>
    <pubDate>Fri, 23 Apr 2004 20:38:17 +0000</pubDate>
</item>
<item>
    <title>* src/load.c: add -p option to help string and only print it and -h if</title>
    <link>https://hg.ecoscentric.com/ecos/log/996bb9a3d7fe/packages/redboot/current/src/load.c</link>
    <description><![CDATA[* src/load.c: add -p option to help string and only print it and -h if<br/>
        CYGPKG_REDBOOT_NETWORKING is enabled.  Add a CR to the end of the<br/>
        SHORT_DATA message string]]></description>
    <author>&#97;&#115;&#108;</author>
    <pubDate>Thu, 18 Mar 2004 14:26:56 +0000</pubDate>
</item>
<item>
    <title>Allow port for HTTP connections to be overridden - from Jani Monoses</title>
    <link>https://hg.ecoscentric.com/ecos/log/fc4fa5d81cba/packages/redboot/current/src/load.c</link>
    <description><![CDATA[Allow port for HTTP connections to be overridden - from Jani Monoses]]></description>
    <author>&#103;&#116;&#104;&#111;&#109;&#97;&#115;</author>
    <pubDate>Thu, 26 Feb 2004 11:12:08 +0000</pubDate>
</item>
<item>
    <title>Cleanups to remove warnings</title>
    <link>https://hg.ecoscentric.com/ecos/log/c4355f101bf6/packages/redboot/current/src/load.c</link>
    <description><![CDATA[Cleanups to remove warnings]]></description>
    <author>&#103;&#116;&#104;&#111;&#109;&#97;&#115;</author>
    <pubDate>Tue, 24 Feb 2004 14:15:14 +0000</pubDate>
</item>
<item>
    <title>* cdl/redboot.cdl: Bring CYGNUM_REDBOOT_LOAD_ZLIB_BUFFER under</title>
    <link>https://hg.ecoscentric.com/ecos/log/8b3549abe4ac/packages/redboot/current/src/load.c</link>
    <description><![CDATA[* cdl/redboot.cdl: Bring CYGNUM_REDBOOT_LOAD_ZLIB_BUFFER under<br/>
	CYGBLD_BUILD_REDBOOT_WITH_ZLIB. Add CYGPRI_REDBOOT_ZLIB_FLASH to<br/>
	control whether decompression can be used with flash images.<br/>
	* src/flash.c: Use CYGPRI_REDBOOT_ZLIB_FLASH instead of<br/>
	CYGPKG_COMPRESS_ZLIB.<br/>
	* src/load.c: Use CYGBLD_BUILD_REDBOOT_WITH_ZLIB in place of<br/>
	CYGPKG_COMPRESS_ZLIB.<br/>
	* src/main.c: only set fis_zlib_common_buffer if<br/>
	CYGPRI_REDBOOT_ZLIB_FLASH.]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Wed, 11 Feb 2004 13:40:53 +0000</pubDate>
</item>
<item>
    <title>Add support for mountable file systems (like JFFS2) - from David Woodhouse</title>
    <link>https://hg.ecoscentric.com/ecos/log/9a2e186be457/packages/redboot/current/src/load.c</link>
    <description><![CDATA[Add support for mountable file systems (like JFFS2) - from David Woodhouse]]></description>
    <author>&#103;&#116;&#104;&#111;&#109;&#97;&#115;</author>
    <pubDate>Tue, 02 Dec 2003 14:40:18 +0000</pubDate>
</item>
<item>
    <title>Fix ELF load when -b option used.</title>
    <link>https://hg.ecoscentric.com/ecos/log/94e373b3fc8d/packages/redboot/current/src/load.c</link>
    <description><![CDATA[Fix ELF load when -b option used.]]></description>
    <author>&#103;&#116;&#104;&#111;&#109;&#97;&#115;</author>
    <pubDate>Fri, 17 Oct 2003 21:45:24 +0000</pubDate>
</item>
<item>
    <title>Use LMA, not VMA</title>
    <link>https://hg.ecoscentric.com/ecos/log/9ecd8873f657/packages/redboot/current/src/load.c</link>
    <description><![CDATA[Use LMA, not VMA]]></description>
    <author>&#103;&#116;&#104;&#111;&#109;&#97;&#115;</author>
    <pubDate>Mon, 29 Sep 2003 14:49:46 +0000</pubDate>
</item>
<item>
    <title>New platform - TAMS MOAB - and generic changes to support it</title>
    <link>https://hg.ecoscentric.com/ecos/log/dbcfe4e0dbd2/packages/redboot/current/src/load.c</link>
    <description><![CDATA[New platform - TAMS MOAB - and generic changes to support it]]></description>
    <author>&#103;&#116;&#104;&#111;&#109;&#97;&#115;</author>
    <pubDate>Fri, 19 Sep 2003 17:11:18 +0000</pubDate>
</item>
<item>
    <title>* src/load.c:</title>
    <link>https://hg.ecoscentric.com/ecos/log/3b9afa204d69/packages/redboot/current/src/load.c</link>
    <description><![CDATA[* src/load.c:<br/>
	Change #else if to #elif so it compiles when TFTP is disabled.]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Mon, 14 Apr 2003 16:45:36 +0000</pubDate>
</item>
<item>
    <title>Fix build when X-modem is disabled</title>
    <link>https://hg.ecoscentric.com/ecos/log/17dd6922881b/packages/redboot/current/src/load.c</link>
    <description><![CDATA[Fix build when X-modem is disabled]]></description>
    <author>&#103;&#116;&#104;&#111;&#109;&#97;&#115;</author>
    <pubDate>Thu, 03 Apr 2003 15:27:23 +0000</pubDate>
</item>
<item>
    <title>Improve download error handling.  Also display more info during load.</title>
    <link>https://hg.ecoscentric.com/ecos/log/6f9085944169/packages/redboot/current/src/load.c</link>
    <description><![CDATA[Improve download error handling.  Also display more info during load.]]></description>
    <author>&#103;&#116;&#104;&#111;&#109;&#97;&#115;</author>
    <pubDate>Thu, 03 Apr 2003 15:21:10 +0000</pubDate>
</item>
<item>
    <title>Make TFTP optional</title>
    <link>https://hg.ecoscentric.com/ecos/log/a6c0f4a333e5/packages/redboot/current/src/load.c</link>
    <description><![CDATA[Make TFTP optional]]></description>
    <author>&#103;&#116;&#104;&#111;&#109;&#97;&#115;</author>
    <pubDate>Fri, 28 Mar 2003 13:49:32 +0000</pubDate>
</item>
<item>
    <title>Be quieter about out of range memory addresses - ask only once - from Patrick Doyle</title>
    <link>https://hg.ecoscentric.com/ecos/log/248ae32b58f8/packages/redboot/current/src/load.c</link>
    <description><![CDATA[Be quieter about out of range memory addresses - ask only once - from Patrick Doyle]]></description>
    <author>&#103;&#116;&#104;&#111;&#109;&#97;&#115;</author>
    <pubDate>Mon, 13 Jan 2003 18:45:26 +0000</pubDate>
</item>
<item>
    <title>Fix compressed file loads.</title>
    <link>https://hg.ecoscentric.com/ecos/log/2525052c5d76/packages/redboot/current/src/load.c</link>
    <description><![CDATA[Fix compressed file loads.]]></description>
    <author>&#109;&#115;&#97;&#108;&#116;&#101;&#114;</author>
    <pubDate>Thu, 12 Sep 2002 21:23:10 +0000</pubDate>
</item>
<item>
    <title>Fix problem when load used without -m option.</title>
    <link>https://hg.ecoscentric.com/ecos/log/e51742b21f31/packages/redboot/current/src/load.c</link>
    <description><![CDATA[Fix problem when load used without -m option.]]></description>
    <author>&#103;&#116;&#104;&#111;&#109;&#97;&#115;</author>
    <pubDate>Thu, 08 Aug 2002 10:59:29 +0000</pubDate>
</item>
<item>
    <title>Fix problem with x/y-modem load.</title>
    <link>https://hg.ecoscentric.com/ecos/log/a6660704f7a6/packages/redboot/current/src/load.c</link>
    <description><![CDATA[Fix problem with x/y-modem load.]]></description>
    <author>&#103;&#116;&#104;&#111;&#109;&#97;&#115;</author>
    <pubDate>Thu, 18 Jul 2002 20:05:22 +0000</pubDate>
</item>
<item>
    <title>Improve load command - make I/O methods table driven.</title>
    <link>https://hg.ecoscentric.com/ecos/log/e1b642d73533/packages/redboot/current/src/load.c</link>
    <description><![CDATA[Improve load command - make I/O methods table driven.]]></description>
    <author>&#103;&#116;&#104;&#111;&#109;&#97;&#115;</author>
    <pubDate>Mon, 01 Jul 2002 20:55:25 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2002-05-29-16:32:18-BST</title>
    <link>https://hg.ecoscentric.com/ecos/log/6eb55882e01c/packages/redboot/current/src/load.c</link>
    <description><![CDATA[Merge from eCos master repository on 2002-05-29-16:32:18-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Wed, 29 May 2002 18:28:03 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2002-05-23-21:39:14-BST</title>
    <link>https://hg.ecoscentric.com/ecos/log/d2c90368aeef/packages/redboot/current/src/load.c</link>
    <description><![CDATA[Merge from eCos master repository on 2002-05-23-21:39:14-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Thu, 23 May 2002 22:59:51 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2002-05-20-20:11:54-BST</title>
    <link>https://hg.ecoscentric.com/ecos/log/e0c0827131d1/packages/redboot/current/src/load.c</link>
    <description><![CDATA[Merge from eCos master repository on 2002-05-20-20:11:54-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Mon, 20 May 2002 22:19:26 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2001-12-07-11:40:47-GMT</title>
    <link>https://hg.ecoscentric.com/ecos/log/ea3f0bd33a73/packages/redboot/current/src/load.c</link>
    <description><![CDATA[Merge from eCos master repository on 2001-12-07-11:40:47-GMT]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 07 Dec 2001 14:15:03 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2001-11-23-15:32:03-GMT</title>
    <link>https://hg.ecoscentric.com/ecos/log/9b55e9c69693/packages/redboot/current/src/load.c</link>
    <description><![CDATA[Merge from eCos master repository on 2001-11-23-15:32:03-GMT]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 23 Nov 2001 17:12:52 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2001-10-02-17:59:22-BST</title>
    <link>https://hg.ecoscentric.com/ecos/log/022f1e506033/packages/redboot/current/src/load.c</link>
    <description><![CDATA[Merge from eCos master repository on 2001-10-02-17:59:22-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Tue, 02 Oct 2001 18:28:24 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2001-09-07-06:43:02-BST</title>
    <link>https://hg.ecoscentric.com/ecos/log/f62680ef1804/packages/redboot/current/src/load.c</link>
    <description><![CDATA[Merge from eCos master repository on 2001-09-07-06:43:02-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Wed, 12 Sep 2001 00:59:17 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2001-08-17-16:31:54-BST</title>
    <link>https://hg.ecoscentric.com/ecos/log/391299f9e541/packages/redboot/current/src/load.c</link>
    <description><![CDATA[Merge from eCos master repository on 2001-08-17-16:31:54-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 17 Aug 2001 16:37:36 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2001-07-28-00:17:32-BST</title>
    <link>https://hg.ecoscentric.com/ecos/log/38892b97b685/packages/redboot/current/src/load.c</link>
    <description><![CDATA[Merge from eCos master repository on 2001-07-28-00:17:32-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Sun, 29 Jul 2001 02:00:07 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2001-07-18-03:13:25-BST</title>
    <link>https://hg.ecoscentric.com/ecos/log/42f843b391aa/packages/redboot/current/src/load.c</link>
    <description><![CDATA[Merge from eCos master repository on 2001-07-18-03:13:25-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Wed, 18 Jul 2001 11:38:39 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2001-06-29-06:43:03-BST</title>
    <link>https://hg.ecoscentric.com/ecos/log/d63db767121d/packages/redboot/current/src/load.c</link>
    <description><![CDATA[Merge from eCos master repository on 2001-06-29-06:43:03-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 29 Jun 2001 07:16:25 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2001-06-22-17:38:39-BST</title>
    <link>https://hg.ecoscentric.com/ecos/log/0d2b193a635f/packages/redboot/current/src/load.c</link>
    <description><![CDATA[Merge from eCos master repository on 2001-06-22-17:38:39-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 22 Jun 2001 18:18:44 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2001-06-15-06:43:03-BST</title>
    <link>https://hg.ecoscentric.com/ecos/log/2395031e7a66/packages/redboot/current/src/load.c</link>
    <description><![CDATA[Merge from eCos master repository on 2001-06-15-06:43:03-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 15 Jun 2001 22:45:04 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2001-06-08-21:11:51-BST</title>
    <link>https://hg.ecoscentric.com/ecos/log/ac086aa3217e/packages/redboot/current/src/load.c</link>
    <description><![CDATA[Merge from eCos master repository on 2001-06-08-21:11:51-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Sun, 10 Jun 2001 19:35:23 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2001-04-06-18:28:36-BST</title>
    <link>https://hg.ecoscentric.com/ecos/log/b65ec671dd4c/packages/redboot/current/src/load.c</link>
    <description><![CDATA[Merge from eCos master repository on 2001-04-06-18:28:36-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 06 Apr 2001 19:06:06 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2001-03-29-21:44:39-BST</title>
    <link>https://hg.ecoscentric.com/ecos/log/b939e9cada46/packages/redboot/current/src/load.c</link>
    <description><![CDATA[Merge from eCos master repository on 2001-03-29-21:44:39-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 06 Apr 2001 17:20:13 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2001-02-26-23:18:05-GMT</title>
    <link>https://hg.ecoscentric.com/ecos/log/e2d866e32dac/packages/redboot/current/src/load.c</link>
    <description><![CDATA[Merge from eCos master repository on 2001-02-26-23:18:05-GMT]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Tue, 27 Feb 2001 01:21:45 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2001-02-19-15:48:12-GMT</title>
    <link>https://hg.ecoscentric.com/ecos/log/5e8f3b328bb3/packages/redboot/current/src/load.c</link>
    <description><![CDATA[Merge from eCos master repository on 2001-02-19-15:48:12-GMT]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Mon, 19 Feb 2001 17:27:10 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2000-12-08-02:09:36-GMT</title>
    <link>https://hg.ecoscentric.com/ecos/log/6b5f480c6929/packages/redboot/current/src/load.c</link>
    <description><![CDATA[Merge from eCos master repository on 2000-12-08-02:09:36-GMT]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 08 Dec 2000 03:30:06 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2000-10-31-00:30:36-GMT</title>
    <link>https://hg.ecoscentric.com/ecos/log/0ae0bc38e387/packages/redboot/current/src/load.c</link>
    <description><![CDATA[Merge from eCos master repository on 2000-10-31-00:30:36-GMT]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Tue, 31 Oct 2000 20:53:09 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2000-09-19-06:25:26-BST</title>
    <link>https://hg.ecoscentric.com/ecos/log/518f42066aba/packages/redboot/current/src/load.c</link>
    <description><![CDATA[Merge from eCos master repository on 2000-09-19-06:25:26-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Tue, 19 Sep 2000 05:53:51 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2000-09-11-03:00:13-BST</title>
    <link>https://hg.ecoscentric.com/ecos/log/0ec04793409a/packages/redboot/current/src/load.c</link>
    <description><![CDATA[Merge from eCos master repository on 2000-09-11-03:00:13-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Mon, 11 Sep 2000 02:42:46 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2000-08-25-19:22:58-BST</title>
    <link>https://hg.ecoscentric.com/ecos/log/bd1a71e3e476/packages/redboot/current/src/load.c</link>
    <description><![CDATA[Merge from eCos master repository on 2000-08-25-19:22:58-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 25 Aug 2000 19:17:22 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2000-08-21-22:40:54-BST</title>
    <link>https://hg.ecoscentric.com/ecos/log/6ed91473a1cd/packages/redboot/current/src/load.c</link>
    <description><![CDATA[Merge from eCos master repository on 2000-08-21-22:40:54-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 25 Aug 2000 17:32:38 +0000</pubDate>
</item>

  </channel>
</rss>
