summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* changed version to 19991028Joel Sherrill1999-10-281-1/+1
|
* New test added - psxcancel. This is just a shell for now.Joel Sherrill1999-10-289-2/+202
|
* Added include of <sys/select.h> in attempt to remove compilation warning.Joel Sherrill1999-10-282-0/+8
|
* Added use of __rtems__ rather than LINUX for RTEMS configuration.Joel Sherrill1999-10-286-14/+14
|
* More changes.Joel Sherrill1999-10-281-2/+6
|
* Notes on what to do when merging a BSP.Joel Sherrill1999-10-281-0/+73
|
* Patch from Aleksey (Quality Quorum <qqi@world.std.com>) toJoel Sherrill1999-10-272-19/+36
| | | | | | increase ease of application configuration of the pc386 BSP. This patch allows switching the printk console to a serial port and overriding bsp_start by making it a weak alias.
* Modified to properly descend into the dummy directory.Joel Sherrill1999-10-273-2/+3
|
* Fixed typo.Joel Sherrill1999-10-271-1/+1
|
* New files from Ralf Corsepius <corsepiu@faw.uni-ulm.de> whichJoel Sherrill1999-10-275-0/+188
| | | | | | | | are a dummy for linking programs together when you are primarily concerned with tricking another package into building. This may grow into something which could help link programs on the command line by having a default start sequence.
* Added $(EXEEXT) in attempt to help Cygwin install process.Joel Sherrill1999-10-271-2/+2
|
* Updated.Joel Sherrill1999-10-271-1/+3
|
* Updated to be more like cvme961.cfg.Joel Sherrill1999-10-271-26/+10
|
* Latest version from Ralf Corsepius <corsepiu@faw.uni-ulm.de> whichJoel Sherrill1999-10-271-44/+103
| | | | splits gcc, gcj, chill, f77 and objc into separate rpms..
* Last cleanup to attempt to link.Joel Sherrill1999-10-272-1/+3
|
* rxgen960 now compiles -- may not link.Joel Sherrill1999-10-2714-55/+45
|
* Added CVS Ids and a basic header. More header cleanup needed.Joel Sherrill1999-10-2742-9/+174
|
* Removed systbl.S save_systbl.c. They were unnecessary.Joel Sherrill1999-10-273-523/+2
|
* Removed sctns.S. This file was obviously the output of the compiler.Joel Sherrill1999-10-272-336/+1
|
* Replaced Makefile.in's with modified copies of cvme961 to getJoel Sherrill1999-10-279-152/+242
| | | | autoconf/automake changes.
* Moved timerisr.s to timerisr.S per GNU conventions.Joel Sherrill1999-10-271-0/+0
|
* Moved systbl.s to systbl.S per GNU conventions.Joel Sherrill1999-10-271-0/+0
|
* Moved sctns.s to sctns.S per GNU conventions.Joel Sherrill1999-10-271-0/+0
|
* Moved rxgen_romld.s to rxgen_romld.S per GNU conventions.Joel Sherrill1999-10-271-0/+0
|
* Moved ihandler.s to ihandler.S per GNU conventions.Joel Sherrill1999-10-271-0/+0
|
* Moved asmstub.s to asmstub.S per GNU conventions.Joel Sherrill1999-10-271-0/+0
|
* Moved asmfault.s to asmfault.S per GNU conventions.Joel Sherrill1999-10-271-0/+0
|
* The rxgen960 BSP and i960 RPM support was submitted by Mark BronsonJoel Sherrill1999-10-2781-87/+7486
| | | | <mark@ramix.com> of RAMIX.
* First attempt at icluding Eric Valette and Emmanuel Raguet.Joel Sherrill1999-10-271-0/+6
|
* Warnings removed. Still don't know what to do about the pragmaJoel Sherrill1999-10-276-20/+32
| | | | pack warnings in uemf.h.
* Patch from Emmanuel Raguet <raguet@crf.canon.fr> and Eric ValetteJoel Sherrill1999-10-2768-4/+24260
| | | | | | | | | | <valette@crf.canon.fr> to add a port of the GoAhead web server (httpd) to the RTEMS build tree. They have successfully used this BSP on i386/pc386 and PowerPC/mcp750. Mark and Joel spoke with Nick Berliner <nickb@goahead.com> on 26 Oct 1999 about this port and got verbal approval to include it in RTEMS distributions.
* New files created by split of old imfs_handlers.c.Joel Sherrill1999-10-2612-0/+444
|
* Added include of libio.h so this would compile when posix is disabled.Joel Sherrill1999-10-264-0/+4
|
* Split console_reserve_resources to separate file to reduceJoel Sherrill1999-10-263-7/+42
| | | | code size.
* Added initial cut at miniIMFS which leaves out memfile and directoryJoel Sherrill1999-10-2641-1089/+906
| | | | | readdir support. The next step is to add a mount table and configure either the miniIMFS or the full IMFS at the application level.
* Patch from Gerwin Pfab <pb@schenk.isar.de> to leave dispatchingJoel Sherrill1999-10-262-6/+8
| | | | | disabled on exit to ISR Thread dispatching. This allows a context switch to finish under high high interrupt rates.
* Added information on the evaluate and evaluate for make routines.Jennifer Averett1999-10-262-21/+115
| | | | Added details on how generic code starts the pathevaluation process.
* Patch from Emmanuel Raguet <raguet@crf.canon.fr> to fix a small bug whereJoel Sherrill1999-10-261-1/+1
| | | | the receive buffer size was 16 bytes too small.
* Corrected spacing problem.Jennifer Averett1999-10-261-1/+1
|
* Increased minimum stack size to ensure that there are no problemsJoel Sherrill1999-10-262-2/+2
| | | | running the network stack.
* Patch from Emmanuel Raguet <raguet@crf.canon.fr> to add missing fileJoel Sherrill1999-10-262-2/+2
| | | | reference to the Makefile.
* Removed all references to HOST_ARCH including the file gcc.cfg.in. AllJoel Sherrill1999-10-2610-474/+4
| | | | | host programs are now compiled with automake generated rules. This was done after discussions with Ralf Corsepius and Eric Norum.
* idir=/opt/tmp/opt/rtemsJoel Sherrill1999-10-267-26/+13
| | | | | | | | | | | | rdir=/opt/rtems cd $idir find . -type f | while read file do if [ ! -f ${file} ] ; then echo ${file} missing fi done
* cat /tmp/j | while read fJoel Sherrill1999-10-2654-7836/+0
| | | | | | do rpm -qi $f 2>&1 | grep -v "is not ins" done
* Removing automatically generated files.Joel Sherrill1999-10-264-1088/+0
|
* Removed generated file.Joel Sherrill1999-10-261-1101/+0
|
* New versions for gcc and patch.Joel Sherrill1999-10-261-2/+2
|
* Patch from Ralf Corsepius <corsepiu@faw.uni-ulm.de> to moveJoel Sherrill1999-10-268-12/+11
| | | | c/src/lib/libmisc to c/src/libmisc.
* cat /tmp/j | while read fJoel Sherrill1999-10-2642-5982/+0
| | | | | | do rpm -qi $f 2>&1 | grep -v "is not ins" done
* Patch rtems-rc-19991011-0.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill1999-10-262-6/+5
| | | | fixes a minor configuration bug.