This is the mail archive of the ecos-patches@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]

RedBoot - net_io fix


Needs to be in libextras

-- 
Gary Thomas <gary@mlbassoc.com>
MLB Associates
Index: redboot/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/redboot/current/ChangeLog,v
retrieving revision 1.183
diff -u -5 -p -r1.183 ChangeLog
--- redboot/current/ChangeLog	24 Feb 2004 14:15:14 -0000	1.183
+++ redboot/current/ChangeLog	24 Feb 2004 23:08:43 -0000
@@ -1,5 +1,10 @@
+2004-02-24  Gary Thomas  <gary@mlbassoc.com>
+
+	* cdl/redboot.cdl: net_io needs to be in libextras to enable network
+	support (failed if network debug was disabled)
+
 2004-02-23  Uwe Kindler  <uwe_kindler@web.de>
 
 	* src/cksum.c:
 	* src/dump.c:
 	* src/fconfig.c:
Index: redboot/current/cdl/redboot.cdl
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/redboot/current/cdl/redboot.cdl,v
retrieving revision 1.63
diff -u -5 -p -r1.63 redboot.cdl
--- redboot/current/cdl/redboot.cdl	11 Feb 2004 13:40:53 -0000	1.63
+++ redboot/current/cdl/redboot.cdl	24 Feb 2004 22:15:54 -0000
@@ -288,12 +288,12 @@ cdl_package CYGPKG_REDBOOT {
             active_if     CYGPKG_IO_ETH_DRIVERS
             default_value 1
             implements    CYGINT_REDBOOT_LOAD_METHOD
             compile net/bootp.c net/udp.c net/ip.c net/pktbuf.c net/cksum.c
             compile net/enet.c net/icmp.c net/tcp.c net/timers.c net/arp.c
-            compile net/net_io.c net/inet_addr.c
-            compile -library=libextras.a net/ping.c
+            compile net/inet_addr.c
+            compile -library=libextras.a net/ping.c net/net_io.c 
             description "This option includes networking support in RedBoot."
             define_proc {
                 puts $::cdl_system_header "#define CYGNUM_HAL_VIRTUAL_VECTOR_AUX_CHANNELS 1"
             }
     

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