From: <ba...@us...> - 2006-09-18 04:25:48
|
Revision: 378 http://svn.sourceforge.net/cadcdev/?rev=378&view=rev Author: bardtx Date: 2006-09-17 21:25:42 -0700 (Sun, 17 Sep 2006) Log Message: ----------- dcload: Apply Patch #1279622 from SourceForge, for both dcloads: Fixes link errors using a libbfd from binutils 2.16.1 Modified Paths: -------------- dcload/dcload-ip/host-src/tool/Makefile dcload/dcload-serial/host-src/tool/Makefile Added Paths: ----------- dcload/dcload-ip/host-src/tool/unlink.c dcload/dcload-serial/host-src/tool/unlink.c Modified: dcload/dcload-ip/host-src/tool/Makefile =================================================================== --- dcload/dcload-ip/host-src/tool/Makefile 2006-09-18 04:19:51 UTC (rev 377) +++ dcload/dcload-ip/host-src/tool/Makefile 2006-09-18 04:25:42 UTC (rev 378) @@ -6,7 +6,7 @@ DCTOOL = dc-tool$(EXECUTABLEEXTENSION) -OBJECTS = dc-tool.o syscalls.o +OBJECTS = dc-tool.o syscalls.o unlink.o .c.o: $(CC) $(CFLAGS) $(INCLUDE) -o $@ -c $< Added: dcload/dcload-ip/host-src/tool/unlink.c =================================================================== --- dcload/dcload-ip/host-src/tool/unlink.c (rev 0) +++ dcload/dcload-ip/host-src/tool/unlink.c 2006-09-18 04:25:42 UTC (rev 378) @@ -0,0 +1,24 @@ +#include <sys/types.h> +#include <unistd.h> +#include <sys/stat.h> + +#ifndef S_ISLNK +#ifdef S_IFLNK +#define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK) +#else +#define S_ISLNK(m) 0 +#define lstat stat +#endif +#endif + +int +unlink_if_ordinary (const char *name) +{ + struct stat st; + + if (lstat (name, &st) == 0 + && (S_ISREG (st.st_mode) || S_ISLNK (st.st_mode))) + return unlink (name); + + return 1; +} Modified: dcload/dcload-serial/host-src/tool/Makefile =================================================================== --- dcload/dcload-serial/host-src/tool/Makefile 2006-09-18 04:19:51 UTC (rev 377) +++ dcload/dcload-serial/host-src/tool/Makefile 2006-09-18 04:25:42 UTC (rev 378) @@ -8,7 +8,7 @@ DCTOOL = dc-tool$(EXECUTABLEEXTENSION) -OBJECTS = dc-tool.o minilzo.o syscalls.o +OBJECTS = dc-tool.o minilzo.o syscalls.o unlink.o LZOFILES = $(LZOPATH)/minilzo.c $(LZOPATH)/minilzo.h $(LZOPATH)/lzoconf.h .c.o: Added: dcload/dcload-serial/host-src/tool/unlink.c =================================================================== --- dcload/dcload-serial/host-src/tool/unlink.c (rev 0) +++ dcload/dcload-serial/host-src/tool/unlink.c 2006-09-18 04:25:42 UTC (rev 378) @@ -0,0 +1,24 @@ +#include <sys/types.h> +#include <unistd.h> +#include <sys/stat.h> + +#ifndef S_ISLNK +#ifdef S_IFLNK +#define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK) +#else +#define S_ISLNK(m) 0 +#define lstat stat +#endif +#endif + +int +unlink_if_ordinary (const char *name) +{ + struct stat st; + + if (lstat (name, &st) == 0 + && (S_ISREG (st.st_mode) || S_ISLNK (st.st_mode))) + return unlink (name); + + return 1; +} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <at...@us...> - 2007-07-18 23:45:54
|
Revision: 424 http://svn.sourceforge.net/cadcdev/?rev=424&view=rev Author: atani Date: 2007-07-18 16:45:51 -0700 (Wed, 18 Jul 2007) Log Message: ----------- cleanups for dc-chain binutils-2.17 updates Modified Paths: -------------- dcload/dcload-ip/Makefile.cfg dcload/dcload-ip/host-src/tool/Makefile dcload/dcload-ip/host-src/tool/dc-tool.c dcload/dcload-serial/Makefile.cfg dcload/dcload-serial/host-src/tool/Makefile dcload/dcload-serial/host-src/tool/dc-tool.c Modified: dcload/dcload-ip/Makefile.cfg =================================================================== --- dcload/dcload-ip/Makefile.cfg 2007-07-18 23:03:43 UTC (rev 423) +++ dcload/dcload-ip/Makefile.cfg 2007-07-18 23:45:51 UTC (rev 424) @@ -18,7 +18,7 @@ # sh-elf-stuff TARGETCC = sh-elf-gcc -TARGETCFLAGS = -O2 -ml -m4 +TARGETCFLAGS = -O2 -ml -m4-single-only TARGETOBJCOPY = sh-elf-objcopy TARGETLD = sh-elf-ld @@ -34,7 +34,7 @@ #DREAMCAST_IP = 10.0.0.32 # dir to install dc-tool in -TOOLINSTALLDIR = /usr/local/dcdev/bin +TOOLINSTALLDIR = /usr/local/dc/bin #TOOLINSTALLDIR = /usr/local/dc/bin # uncomment this for cygwin Modified: dcload/dcload-ip/host-src/tool/Makefile =================================================================== --- dcload/dcload-ip/host-src/tool/Makefile 2007-07-18 23:03:43 UTC (rev 423) +++ dcload/dcload-ip/host-src/tool/Makefile 2007-07-18 23:45:51 UTC (rev 424) @@ -18,6 +18,7 @@ .PHONY : install install: $(DCTOOL) + -mkdir $(TOOLINSTALLDIR) cp $(DCTOOL) $(TOOLINSTALLDIR) .PHONY : clean Modified: dcload/dcload-ip/host-src/tool/dc-tool.c =================================================================== --- dcload/dcload-ip/host-src/tool/dc-tool.c 2007-07-18 23:03:43 UTC (rev 423) +++ dcload/dcload-ip/host-src/tool/dc-tool.c 2007-07-18 23:45:51 UTC (rev 424) @@ -24,8 +24,8 @@ #include <fcntl.h> #include <stdio.h> #include <stdlib.h> +#include <string.h> #ifdef _WIN32 -#include <string.h> #include <windows.h> #include <sys/time.h> #include <unistd.h> @@ -446,13 +446,13 @@ if ((section->flags & SEC_HAS_CONTENTS) && (section->flags & SEC_LOAD)) { printf("Section %s, ",section->name); printf("lma 0x%x, ",section->lma); - printf("size %d\n",section->_raw_size); - if (section->_raw_size) { - size += section->_raw_size; - inbuf = malloc(section->_raw_size); - bfd_get_section_contents(somebfd, section, inbuf, 0, section->_raw_size); + printf("size %d\n",bfd_section_size(somebfd, section)); + if (bfd_section_size(somebfd, section)) { + size += bfd_section_size(somebfd, section); + inbuf = malloc(bfd_section_size(somebfd, section)); + bfd_get_section_contents(somebfd, section, inbuf, 0, bfd_section_size(somebfd, section)); - send_data(inbuf, section->lma, section->_raw_size); + send_data(inbuf, section->lma, bfd_section_size(somebfd, section)); free(inbuf); } Modified: dcload/dcload-serial/Makefile.cfg =================================================================== --- dcload/dcload-serial/Makefile.cfg 2007-07-18 23:03:43 UTC (rev 423) +++ dcload/dcload-serial/Makefile.cfg 2007-07-18 23:45:51 UTC (rev 424) @@ -6,7 +6,7 @@ # dc compiler prefix -- this is usually what you used for --prefix when # building your compiler. -TARGETPREFIX = /usr/local/dcdev/sh-elf +TARGETPREFIX = /usr/local/dc/sh-elf # you may have to change the paths for BFDLIB and BFDINCLUDE to # the correct ones for your system @@ -50,7 +50,7 @@ #SERIALDEVICE = COM1 # dir to install dc-tool in -TOOLINSTALLDIR = /usr/local/dcdev/bin +TOOLINSTALLDIR = /usr/local/dc/bin # uncomment this for cygwin #EXECUTABLEEXTENSION = .exe Modified: dcload/dcload-serial/host-src/tool/Makefile =================================================================== --- dcload/dcload-serial/host-src/tool/Makefile 2007-07-18 23:03:43 UTC (rev 423) +++ dcload/dcload-serial/host-src/tool/Makefile 2007-07-18 23:45:51 UTC (rev 424) @@ -24,6 +24,7 @@ .PHONY : install install: $(DCTOOL) + -mkdir $(TOOLINSTALLDIR) cp $(DCTOOL) $(TOOLINSTALLDIR) .PHONY : clean Modified: dcload/dcload-serial/host-src/tool/dc-tool.c =================================================================== --- dcload/dcload-serial/host-src/tool/dc-tool.c 2007-07-18 23:03:43 UTC (rev 423) +++ dcload/dcload-serial/host-src/tool/dc-tool.c 2007-07-18 23:45:51 UTC (rev 424) @@ -25,8 +25,8 @@ #include <fcntl.h> #include <stdio.h> #include <stdlib.h> +#include <string.h> #ifdef _WIN32 -#include <string.h> #include <windows.h> #else #include <termios.h> @@ -337,7 +337,7 @@ ok = 'G'; serial_write(&ok, 1); total -= size; - (unsigned char *) data += size; + data += size; break; case 'C': // compressed if (verbose) { @@ -351,7 +351,7 @@ ok = 'G'; serial_write(&ok, 1); total -= newsize; - (unsigned char *) data += newsize; + data += newsize; } else { ok = 'B'; serial_write(&ok, 1); @@ -705,20 +705,20 @@ if ((section->flags & SEC_HAS_CONTENTS) && (section->flags & SEC_LOAD)) { printf("Section %s, ",section->name); printf("lma 0x%x, ",section->lma); - printf("size %d\n",section->_raw_size); - if (section->_raw_size) { - size += section->_raw_size; - inbuf = malloc(section->_raw_size); - bfd_get_section_contents(somebfd, section, inbuf, 0, section->_raw_size); + printf("size %d\n",bfd_section_size(somebfd, section)); + if (bfd_section_size(somebfd, section)) { + size += bfd_section_size(somebfd, section); + inbuf = malloc(bfd_section_size(somebfd, section)); + bfd_get_section_contents(somebfd, section, inbuf, 0, bfd_section_size(somebfd, section)); c = 'B'; serial_write(&c, 1); blread(&c, 1); send_uint(section->lma); - send_uint(section->_raw_size); + send_uint(bfd_section_size(somebfd, section)); - send_data(inbuf, section->_raw_size, 1); + send_data(inbuf, bfd_section_size(somebfd, section), 1); free(inbuf); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <c99...@us...> - 2008-01-27 01:30:39
|
Revision: 555 http://cadcdev.svn.sourceforge.net/cadcdev/?rev=555&view=rev Author: c99koder Date: 2008-01-26 17:30:37 -0800 (Sat, 26 Jan 2008) Log Message: ----------- Fix a few problems with r554 Modified Paths: -------------- dcload/dcload-ip/host-src/tool/dc-tool.c dcload/dcload-serial/host-src/tool/dc-tool.c Modified: dcload/dcload-ip/host-src/tool/dc-tool.c =================================================================== --- dcload/dcload-ip/host-src/tool/dc-tool.c 2008-01-26 19:54:59 UTC (rev 554) +++ dcload/dcload-ip/host-src/tool/dc-tool.c 2008-01-27 01:30:37 UTC (rev 555) @@ -574,7 +574,7 @@ perror(isofile); } -#ifndef __MINGW32__ +#ifndef __MINGW32__ if (path) if (chroot(path)) perror(path); Modified: dcload/dcload-serial/host-src/tool/dc-tool.c =================================================================== --- dcload/dcload-serial/host-src/tool/dc-tool.c 2008-01-26 19:54:59 UTC (rev 554) +++ dcload/dcload-serial/host-src/tool/dc-tool.c 2008-01-27 01:30:37 UTC (rev 555) @@ -38,8 +38,8 @@ #include <winsock.h> #else #include <arpa/inet.h> +#include <sys/socket.h> #endif -#include <sys/socket.h> #include "minilzo.h" #include "syscalls.h" #include "dc-io.h" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <c99...@us...> - 2008-01-27 01:49:52
|
Revision: 556 http://cadcdev.svn.sourceforge.net/cadcdev/?rev=556&view=rev Author: c99koder Date: 2008-01-26 17:49:46 -0800 (Sat, 26 Jan 2008) Log Message: ----------- Enable native line endings on source files Property Changed: ---------------- dcload/dcload-ip/Makefile dcload/dcload-ip/Makefile.cfg dcload/dcload-ip/example-src/Makefile dcload/dcload-ip/example-src/asm.h dcload/dcload-ip/example-src/console-test.c dcload/dcload-ip/example-src/crt0.S dcload/dcload-ip/example-src/dc.x dcload/dcload-ip/example-src/dcload-syscall.h dcload/dcload-ip/example-src/dcload-syscall.s dcload/dcload-ip/example-src/dcload-syscalls.c dcload/dcload-ip/example-src/dcload-syscalls.h dcload/dcload-ip/example-src/exception-test.c dcload/dcload-ip/example-src/gethostinfo.c dcload/dcload-ip/example-src/memcpy.S dcload/dcload-ip/host-src/Makefile dcload/dcload-ip/host-src/tool/Makefile dcload/dcload-ip/host-src/tool/commands.h dcload/dcload-ip/host-src/tool/dc-io.h dcload/dcload-ip/host-src/tool/dc-tool.c dcload/dcload-ip/host-src/tool/dcload-types.h dcload/dcload-ip/host-src/tool/syscalls.c dcload/dcload-ip/host-src/tool/syscalls.h dcload/dcload-ip/host-src/tool/unlink.c dcload/dcload-ip/make-cd/Makefile dcload/dcload-ip/target-inc/_ansi.h dcload/dcload-ip/target-inc/_syslist.h dcload/dcload-ip/target-inc/ar.h dcload/dcload-ip/target-inc/assert.h dcload/dcload-ip/target-inc/ctype.h dcload/dcload-ip/target-inc/dirent.h dcload/dcload-ip/target-inc/errno.h dcload/dcload-ip/target-inc/fastmath.h dcload/dcload-ip/target-inc/fcntl.h dcload/dcload-ip/target-inc/grp.h dcload/dcload-ip/target-inc/ieeefp.h dcload/dcload-ip/target-inc/locale.h dcload/dcload-ip/target-inc/machine/fastmath.h dcload/dcload-ip/target-inc/machine/ieeefp.h dcload/dcload-ip/target-inc/machine/setjmp-dj.h dcload/dcload-ip/target-inc/machine/setjmp.h dcload/dcload-ip/target-inc/machine/time.h dcload/dcload-ip/target-inc/machine/types.h dcload/dcload-ip/target-inc/malloc.h dcload/dcload-ip/target-inc/math.h dcload/dcload-ip/target-inc/paths.h dcload/dcload-ip/target-inc/process.h dcload/dcload-ip/target-inc/pwd.h dcload/dcload-ip/target-inc/reent.h dcload/dcload-ip/target-inc/regdef.h dcload/dcload-ip/target-inc/setjmp.h dcload/dcload-ip/target-inc/signal.h dcload/dcload-ip/target-inc/stdio.h dcload/dcload-ip/target-inc/stdlib.h dcload/dcload-ip/target-inc/string.h dcload/dcload-ip/target-inc/sys/_types.h dcload/dcload-ip/target-inc/sys/config.h dcload/dcload-ip/target-inc/sys/dirent.h dcload/dcload-ip/target-inc/sys/errno.h dcload/dcload-ip/target-inc/sys/fcntl.h dcload/dcload-ip/target-inc/sys/file.h dcload/dcload-ip/target-inc/sys/param.h dcload/dcload-ip/target-inc/sys/reent.h dcload/dcload-ip/target-inc/sys/resource.h dcload/dcload-ip/target-inc/sys/signal.h dcload/dcload-ip/target-inc/sys/stat-dj.h dcload/dcload-ip/target-inc/sys/stat.h dcload/dcload-ip/target-inc/sys/syscall.h dcload/dcload-ip/target-inc/sys/time.h dcload/dcload-ip/target-inc/sys/timeb.h dcload/dcload-ip/target-inc/sys/times.h dcload/dcload-ip/target-inc/sys/types.h dcload/dcload-ip/target-inc/sys/unistd.h dcload/dcload-ip/target-inc/sys/utime.h dcload/dcload-ip/target-inc/sys/wait.h dcload/dcload-ip/target-inc/termios.h dcload/dcload-ip/target-inc/time.h dcload/dcload-ip/target-inc/unctrl.h dcload/dcload-ip/target-inc/unistd.h dcload/dcload-ip/target-inc/utime.h dcload/dcload-ip/target-inc/utmp.h dcload/dcload-ip/target-src/1st_read/1st_read.c dcload/dcload-ip/target-src/1st_read/Makefile dcload/dcload-ip/target-src/1st_read/asm.h dcload/dcload-ip/target-src/1st_read/crt0.S dcload/dcload-ip/target-src/1st_read/dc.x dcload/dcload-ip/target-src/1st_read/disable.s dcload/dcload-ip/target-src/1st_read/memcpy.S dcload/dcload-ip/target-src/Makefile dcload/dcload-ip/target-src/dcload/Makefile dcload/dcload-ip/target-src/dcload/adapter.c dcload/dcload-ip/target-src/dcload/adapter.h dcload/dcload-ip/target-src/dcload/asm.h dcload/dcload-ip/target-src/dcload/bswap.h dcload/dcload-ip/target-src/dcload/bswap.s dcload/dcload-ip/target-src/dcload/cdfs.h dcload/dcload-ip/target-src/dcload/cdfs_redir.s dcload/dcload-ip/target-src/dcload/cdfs_syscalls.c dcload/dcload-ip/target-src/dcload/commands.c dcload/dcload-ip/target-src/dcload/commands.h dcload/dcload-ip/target-src/dcload/dcload-crt0.s dcload/dcload-ip/target-src/dcload/dcload.c dcload/dcload-ip/target-src/dcload/dcload.h dcload/dcload-ip/target-src/dcload/dcload.x dcload/dcload-ip/target-src/dcload/disable.h dcload/dcload-ip/target-src/dcload/disable.s dcload/dcload-ip/target-src/dcload/exception.s dcload/dcload-ip/target-src/dcload/go.h dcload/dcload-ip/target-src/dcload/go.s dcload/dcload-ip/target-src/dcload/lan_adapter.c dcload/dcload-ip/target-src/dcload/lan_adapter.h dcload/dcload-ip/target-src/dcload/memcmp.c dcload/dcload-ip/target-src/dcload/memcpy.S dcload/dcload-ip/target-src/dcload/memset.S dcload/dcload-ip/target-src/dcload/net.c dcload/dcload-ip/target-src/dcload/net.h dcload/dcload-ip/target-src/dcload/packet.c dcload/dcload-ip/target-src/dcload/packet.h dcload/dcload-ip/target-src/dcload/rtl8139.c dcload/dcload-ip/target-src/dcload/rtl8139.h dcload/dcload-ip/target-src/dcload/scif.c dcload/dcload-ip/target-src/dcload/scif.h dcload/dcload-ip/target-src/dcload/syscalls.c dcload/dcload-ip/target-src/dcload/syscalls.h dcload/dcload-ip/target-src/dcload/video.h dcload/dcload-ip/target-src/dcload/video.s dcload/dcload-serial/Makefile dcload/dcload-serial/Makefile.cfg dcload/dcload-serial/example-src/Makefile dcload/dcload-serial/example-src/console-test.c dcload/dcload-serial/example-src/crt0.S dcload/dcload-serial/example-src/dc.x dcload/dcload-serial/example-src/dcload-syscall.h dcload/dcload-serial/example-src/dcload-syscall.s dcload/dcload-serial/example-src/dcload-syscalls.c dcload/dcload-serial/example-src/dcload-syscalls.h dcload/dcload-serial/example-src/exception-test.c dcload/dcload-serial/host-src/Makefile dcload/dcload-serial/host-src/misc/Makefile dcload/dcload-serial/host-src/misc/lzo.c dcload/dcload-serial/host-src/tool/Makefile dcload/dcload-serial/host-src/tool/dc-io.h dcload/dcload-serial/host-src/tool/dc-tool.c dcload/dcload-serial/host-src/tool/syscalls.c dcload/dcload-serial/host-src/tool/syscalls.h dcload/dcload-serial/host-src/tool/unlink.c dcload/dcload-serial/make-cd/Makefile dcload/dcload-serial/minilzo.106/Makefile dcload/dcload-serial/minilzo.106/lzoconf.h dcload/dcload-serial/minilzo.106/minilzo.c dcload/dcload-serial/minilzo.106/minilzo.h dcload/dcload-serial/minilzo.106/testmini.c dcload/dcload-serial/target-inc/_ansi.h dcload/dcload-serial/target-inc/_syslist.h dcload/dcload-serial/target-inc/ar.h dcload/dcload-serial/target-inc/assert.h dcload/dcload-serial/target-inc/ctype.h dcload/dcload-serial/target-inc/dirent.h dcload/dcload-serial/target-inc/errno.h dcload/dcload-serial/target-inc/fastmath.h dcload/dcload-serial/target-inc/fcntl.h dcload/dcload-serial/target-inc/grp.h dcload/dcload-serial/target-inc/ieeefp.h dcload/dcload-serial/target-inc/locale.h dcload/dcload-serial/target-inc/machine/fastmath.h dcload/dcload-serial/target-inc/machine/ieeefp.h dcload/dcload-serial/target-inc/machine/setjmp-dj.h dcload/dcload-serial/target-inc/machine/setjmp.h dcload/dcload-serial/target-inc/machine/time.h dcload/dcload-serial/target-inc/machine/types.h dcload/dcload-serial/target-inc/malloc.h dcload/dcload-serial/target-inc/math.h dcload/dcload-serial/target-inc/paths.h dcload/dcload-serial/target-inc/process.h dcload/dcload-serial/target-inc/pwd.h dcload/dcload-serial/target-inc/reent.h dcload/dcload-serial/target-inc/regdef.h dcload/dcload-serial/target-inc/setjmp.h dcload/dcload-serial/target-inc/signal.h dcload/dcload-serial/target-inc/stdio.h dcload/dcload-serial/target-inc/stdlib.h dcload/dcload-serial/target-inc/string.h dcload/dcload-serial/target-inc/sys/_types.h dcload/dcload-serial/target-inc/sys/config.h dcload/dcload-serial/target-inc/sys/dirent.h dcload/dcload-serial/target-inc/sys/errno.h dcload/dcload-serial/target-inc/sys/fcntl.h dcload/dcload-serial/target-inc/sys/file.h dcload/dcload-serial/target-inc/sys/param.h dcload/dcload-serial/target-inc/sys/reent.h dcload/dcload-serial/target-inc/sys/resource.h dcload/dcload-serial/target-inc/sys/signal.h dcload/dcload-serial/target-inc/sys/stat-dj.h dcload/dcload-serial/target-inc/sys/stat.h dcload/dcload-serial/target-inc/sys/syscall.h dcload/dcload-serial/target-inc/sys/time.h dcload/dcload-serial/target-inc/sys/timeb.h dcload/dcload-serial/target-inc/sys/times.h dcload/dcload-serial/target-inc/sys/types.h dcload/dcload-serial/target-inc/sys/unistd.h dcload/dcload-serial/target-inc/sys/utime.h dcload/dcload-serial/target-inc/sys/wait.h dcload/dcload-serial/target-inc/termios.h dcload/dcload-serial/target-inc/time.h dcload/dcload-serial/target-inc/unctrl.h dcload/dcload-serial/target-inc/unistd.h dcload/dcload-serial/target-inc/utime.h dcload/dcload-serial/target-inc/utmp.h dcload/dcload-serial/target-src/1st_read/1st_read.c dcload/dcload-serial/target-src/1st_read/Makefile dcload/dcload-serial/target-src/1st_read/asm.h dcload/dcload-serial/target-src/1st_read/crt0.S dcload/dcload-serial/target-src/1st_read/dc.x dcload/dcload-serial/target-src/1st_read/disable.s dcload/dcload-serial/target-src/1st_read/memcmp.c dcload/dcload-serial/target-src/1st_read/memcpy.S dcload/dcload-serial/target-src/1st_read/memmove.c dcload/dcload-serial/target-src/1st_read/memset.S dcload/dcload-serial/target-src/Makefile dcload/dcload-serial/target-src/dcload/Makefile dcload/dcload-serial/target-src/dcload/asm.h dcload/dcload-serial/target-src/dcload/cdfs_redir.s dcload/dcload-serial/target-src/dcload/cdfs_syscalls.c dcload/dcload-serial/target-src/dcload/dcload-crt0.s dcload/dcload-serial/target-src/dcload/dcload.c dcload/dcload-serial/target-src/dcload/dcload.x dcload/dcload-serial/target-src/dcload/disable.s dcload/dcload-serial/target-src/dcload/exception.s dcload/dcload-serial/target-src/dcload/go.s dcload/dcload-serial/target-src/dcload/memcmp.c dcload/dcload-serial/target-src/dcload/memcpy.S dcload/dcload-serial/target-src/dcload/memmove.c dcload/dcload-serial/target-src/dcload/memset.S dcload/dcload-serial/target-src/dcload/scif.c dcload/dcload-serial/target-src/dcload/scif.h dcload/dcload-serial/target-src/dcload/syscalls.c dcload/dcload-serial/target-src/dcload/video.h dcload/dcload-serial/target-src/dcload/video.s Property changes on: dcload/dcload-ip/Makefile ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/Makefile.cfg ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/example-src/Makefile ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/example-src/asm.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/example-src/console-test.c ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/example-src/crt0.S ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/example-src/dc.x ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/example-src/dcload-syscall.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/example-src/dcload-syscall.s ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/example-src/dcload-syscalls.c ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/example-src/dcload-syscalls.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/example-src/exception-test.c ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/example-src/gethostinfo.c ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/example-src/memcpy.S ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/host-src/Makefile ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/host-src/tool/Makefile ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/host-src/tool/commands.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/host-src/tool/dc-io.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/host-src/tool/dc-tool.c ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/host-src/tool/dcload-types.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/host-src/tool/syscalls.c ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/host-src/tool/syscalls.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/host-src/tool/unlink.c ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/make-cd/Makefile ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/_ansi.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/_syslist.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/ar.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/assert.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/ctype.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/dirent.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/errno.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/fastmath.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/fcntl.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/grp.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/ieeefp.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/locale.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/machine/fastmath.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/machine/ieeefp.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/machine/setjmp-dj.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/machine/setjmp.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/machine/time.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/machine/types.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/malloc.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/math.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/paths.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/process.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/pwd.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/reent.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/regdef.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/setjmp.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/signal.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/stdio.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/stdlib.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/string.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/sys/_types.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/sys/config.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/sys/dirent.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/sys/errno.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/sys/fcntl.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/sys/file.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/sys/param.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/sys/reent.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/sys/resource.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/sys/signal.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/sys/stat-dj.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/sys/stat.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/sys/syscall.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/sys/time.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/sys/timeb.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/sys/times.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/sys/types.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/sys/unistd.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/sys/utime.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/sys/wait.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/termios.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/time.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/unctrl.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/unistd.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/utime.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-inc/utmp.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/1st_read/1st_read.c ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/1st_read/Makefile ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/1st_read/asm.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/1st_read/crt0.S ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/1st_read/dc.x ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/1st_read/disable.s ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/1st_read/memcpy.S ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/Makefile ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/dcload/Makefile ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/dcload/adapter.c ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/dcload/adapter.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/dcload/asm.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/dcload/bswap.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/dcload/bswap.s ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/dcload/cdfs.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/dcload/cdfs_redir.s ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/dcload/cdfs_syscalls.c ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/dcload/commands.c ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/dcload/commands.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/dcload/dcload-crt0.s ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/dcload/dcload.c ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/dcload/dcload.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/dcload/dcload.x ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/dcload/disable.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/dcload/disable.s ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/dcload/exception.s ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/dcload/go.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/dcload/go.s ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/dcload/lan_adapter.c ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/dcload/lan_adapter.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/dcload/memcmp.c ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/dcload/memcpy.S ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/dcload/memset.S ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/dcload/net.c ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/dcload/net.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/dcload/packet.c ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/dcload/packet.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/dcload/rtl8139.c ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/dcload/rtl8139.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/dcload/scif.c ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/dcload/scif.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/dcload/syscalls.c ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/dcload/syscalls.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/dcload/video.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-ip/target-src/dcload/video.s ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/Makefile ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/Makefile.cfg ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/example-src/Makefile ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/example-src/console-test.c ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/example-src/crt0.S ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/example-src/dc.x ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/example-src/dcload-syscall.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/example-src/dcload-syscall.s ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/example-src/dcload-syscalls.c ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/example-src/dcload-syscalls.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/example-src/exception-test.c ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/host-src/Makefile ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/host-src/misc/Makefile ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/host-src/misc/lzo.c ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/host-src/tool/Makefile ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/host-src/tool/dc-io.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/host-src/tool/dc-tool.c ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/host-src/tool/syscalls.c ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/host-src/tool/syscalls.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/host-src/tool/unlink.c ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/make-cd/Makefile ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/minilzo.106/Makefile ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/minilzo.106/lzoconf.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/minilzo.106/minilzo.c ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/minilzo.106/minilzo.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/minilzo.106/testmini.c ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/_ansi.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/_syslist.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/ar.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/assert.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/ctype.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/dirent.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/errno.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/fastmath.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/fcntl.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/grp.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/ieeefp.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/locale.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/machine/fastmath.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/machine/ieeefp.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/machine/setjmp-dj.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/machine/setjmp.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/machine/time.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/machine/types.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/malloc.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/math.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/paths.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/process.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/pwd.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/reent.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/regdef.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/setjmp.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/signal.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/stdio.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/stdlib.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/string.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/sys/_types.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/sys/config.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/sys/dirent.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/sys/errno.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/sys/fcntl.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/sys/file.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/sys/param.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/sys/reent.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/sys/resource.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/sys/signal.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/sys/stat-dj.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/sys/stat.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/sys/syscall.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/sys/time.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/sys/timeb.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/sys/times.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/sys/types.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/sys/unistd.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/sys/utime.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/sys/wait.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/termios.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/time.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/unctrl.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/unistd.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/utime.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-inc/utmp.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-src/1st_read/1st_read.c ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-src/1st_read/Makefile ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-src/1st_read/asm.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-src/1st_read/crt0.S ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-src/1st_read/dc.x ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-src/1st_read/disable.s ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-src/1st_read/memcmp.c ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-src/1st_read/memcpy.S ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-src/1st_read/memmove.c ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-src/1st_read/memset.S ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-src/Makefile ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-src/dcload/Makefile ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-src/dcload/asm.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-src/dcload/cdfs_redir.s ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-src/dcload/cdfs_syscalls.c ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-src/dcload/dcload-crt0.s ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-src/dcload/dcload.c ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-src/dcload/dcload.x ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-src/dcload/disable.s ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-src/dcload/exception.s ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-src/dcload/go.s ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-src/dcload/memcmp.c ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-src/dcload/memcpy.S ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-src/dcload/memmove.c ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-src/dcload/memset.S ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-src/dcload/scif.c ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-src/dcload/scif.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-src/dcload/syscalls.c ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-src/dcload/video.h ___________________________________________________________________ Name: svn:eol-style + native Property changes on: dcload/dcload-serial/target-src/dcload/video.s ___________________________________________________________________ Name: svn:eol-style + native This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |