summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Put Ada scripts in group gnatrtems.Joel Sherrill2000-01-282-2/+2
|
* Removed gnat and made final cleanup.Joel Sherrill2000-01-278-269/+50
|
* Patch rtems-rc-20000118-0.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill2000-01-272-340/+0
| | | | | | | | | | | | | | | | | | | | that converts the a29k to automake. This patch contains * An initial merger of the libcpu/a29k stuff you sent yesterday. AFAIS, most code inside them seems to be empty stubs. One file even contains a function called mips_*** which might indicate that this part might contain mips code or the code the initial porter used as template for porting. Unfortunately, I don't know anything about the a29k so I can't comment on the details. * A dummy bsp_specs to libbsp/29k/portsw * An update to the automake files related to the a29k. Note: * This patch is completely untested, because I don't have a toolchain for it. * The files in libcpu/a29k include bsp.h => The libbsp vs. libcpu-issue hits again.
* GNAT/RTEMS RPMs have built for the binutils/gnat/gcc combinationJoel Sherrill2000-01-279-174/+294
| | | | and appear to be close for gdb.
* Patch to fix typo from Ralf Corsepius <corsepiu@faw.uni-ulm.de>.Joel Sherrill2000-01-271-1/+1
|
* Added note from Ian Lance Taylor <ian@zembu.com>.Joel Sherrill2000-01-271-2/+6
|
* Added after report from Quality Quorum <qqi@world.std.com> thatJoel Sherrill2000-01-273-0/+21
| | | | pc686.cfg was not present.
* First attempt at debugging.Joel Sherrill2000-01-2612-293/+187
|
* First cut at adding RPM scripts for building GNAT/RTEMS RPMs.Joel Sherrill2000-01-2622-0/+2026
|
* No longer incorrectly references mips.Joel Sherrill2000-01-263-22/+8
|
* Patch rtems-rc-20000118-0.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill2000-01-2622-331/+823
| | | | | | | | | | | | | | | | | | | | that converts the a29k to automake. This patch contains * An initial merger of the libcpu/a29k stuff you sent yesterday. AFAIS, most code inside them seems to be empty stubs. One file even contains a function called mips_*** which might indicate that this part might contain mips code or the code the initial porter used as template for porting. Unfortunately, I don't know anything about the a29k so I can't comment on the details. * A dummy bsp_specs to libbsp/29k/portsw * An update to the automake files related to the a29k. Note: * This patch is completely untested, because I don't have a toolchain for it. * The files in libcpu/a29k include bsp.h => The libbsp vs. libcpu-issue hits again.
* Now binutils, gcc, and gdb build into a "base" package that is sharedJoel Sherrill2000-01-258-13/+40
| | | | | | by all targets and one or more target specific RPMs. This significantly reduces the conflicts between the RPMs whether installing one or multiple targets.
* Attempting to split binutils and gcc into base/shared and CPU specificJoel Sherrill2000-01-243-31/+71
| | | | packages.
* Patch from David Fiddes <D.J@fiddes.surfaid.org> which adds basicJoel Sherrill2000-01-2311-62/+74
| | | | | | | | | | | | | | | | Cygwin support to the RPM scripts. The patch from David did not apply cleanly and Joel ended up making all the modifications plus some it should have included for consistency by hand. His comments: I've included a diff against the last (19991203) snapshot RPM scripts that adds what I think is required for Cygwin support. Basically all this boils down to is adding EXE extension support. I've added the AC_EXEEXT rule to conifgure.in (requires a valid 'cc' to work - this is not available in the standard Cygwin distro). Each of the *.spec.in have @exe_ext@ includes in them for each program that results in an EXE. The only odity here is that the chill driver program is a shell script and thus does not require .exe to be added... The mk*.in have all been updated to process the new exe_ext rule.
* Directive rtems_task_variable_get() added by Eric Norum.Joel Sherrill2000-01-236-2/+172
|
* Added rtems_task_variable_get from Eric Norum.Joel Sherrill2000-01-231-1/+48
|
* Updated to reflect changing to void * on task variables byJoel Sherrill2000-01-231-8/+10
| | | | Eric Norum <eric@cls.usask.ca>.
* Wrong BSP referenced.Joel Sherrill2000-01-232-2/+2
|
* Removing unused file accidentally left in CVS. Discovered byJoel Sherrill2000-01-233-269/+0
| | | | Ralf Corsepius <corsepiu@faw.uni-ulm.de>.
* Documentation to reflect patch from Eric Norum <eric@cls.usask.ca> toJoel Sherrill2000-01-211-2/+11
| | | | | the network initialization enhancement request by Jake Janovetz <janovetz@tempest.ece.uiuc.edu>.
* Patch from Eric Norum <eric@cls.usask.ca> at the request of JakeJoel Sherrill2000-01-213-99/+168
| | | | | | | Janovetz <janovetz@tempest.ece.uiuc.edu> to return a status from network initialization rather than panic'ing. It changes a bunch of rtems_panics to printfs and returns a status from rtems_bsdnet_initialize_network().
* Patch from Eric Norum <eric@cls.usask.ca> to implement this:Joel Sherrill2000-01-2112-42/+50
| | | | | | | | | | | | | | | | | | | | I'd like to propose a change to RTEMS task variables that I think would make them more useful. I think that it is early enough in their existence to still make changes to their API. 1) Change type from `int' to `void *'. 2) Add extra argument to task_variable_add -- if non-NULL, a pointer to a `destructor' function to be called when the task exits. This function would be called with that task's value of the task variable as its argument. In many cases, the `dtor' function could be `free'. rtems_status_code rtems_task_variable_add ( rtems_id tid, void **ptr, void (*dtor)(void *)); rtems_status_code rtems_task_variable_delete (rtems_id tid, void **ptr); This would be all we'd need to cleanly and efficiently support C++ per-thread exception information without dragging in all that POSIX API stuff.
* Patch from Eric Norum <eric@cls.usask.ca> to remove warnings.Joel Sherrill2000-01-213-12/+9
|
* Patch from Eric Norum <eric@cls.usask.ca>:Joel Sherrill2000-01-211-28/+16
| | | | | | | | Some excellent sleuthing by Bob Wisdom <bobwis@ascweb.co.uk> revealed that an empty mbuf at the end of a packet chain would cause the `retire' function to blow up. Moving the line of code which bumps the transmit buffer descriptor pointer fixes the problem. Some additional cleanup of the sendpacket function was also completed.
* changed version to 20000118aJoel Sherrill2000-01-191-1/+1
|
* changed version to 20000118Joel Sherrill2000-01-181-1/+1
|
* changed version to 20000114Joel Sherrill2000-01-141-1/+1
|
* Updated to reflect final test output.Joel Sherrill2000-01-142-6/+30
|
* Updated screen to reflect final test output.Joel Sherrill2000-01-142-48/+228
|
* Added -U__STRICT_ANSI__ to remove MANY warnings since the BSD codeJoel Sherrill2000-01-141-1/+1
| | | | is not strict ANSI.
* Removed unused variable warning.Joel Sherrill2000-01-144-4/+0
|
* Removed no prototype of kill() warning.Joel Sherrill2000-01-142-0/+4
|
* Updated versions.Joel Sherrill2000-01-141-6/+6
|
* Updated list of targets to build.Joel Sherrill2000-01-141-2/+1
|
* Now ignores minimum and does not run it.Joel Sherrill2000-01-142-2/+2
|
* Now using Makefile.am to generate this file.Joel Sherrill2000-01-141-279/+0
|
* Warning corrections per feedback from Emmanuel Raguet <raguet@crf.canon.fr>.Joel Sherrill2000-01-141-1/+1
|
* Removed warning.Joel Sherrill2000-01-144-4/+8
|
* Removed numerous warnings.Joel Sherrill2000-01-147-8/+16
|
* Updated files missed in earlier batch from Eric Norum.Joel Sherrill2000-01-132-26/+18
|
* Fixed warnings.Joel Sherrill2000-01-132-28/+0
|
* Patch rtems-rc-20000104-17.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill2000-01-1314-100/+4986
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | that addresses the librdbg/rpcgen related problems: Changes: * All rpcgen generated files are now kept inside of the source tree * Fix librdbg/configure to correctly detect presence of rpcgen and awk * Use rpcgen -m to generated remdeb_svc.c * Remove msgout/_msgout from awk.svc * minor cleanups to librdbg/configure.in ATTENTION --- IMPORTANT: * With keeping rpc-generated files pre-build inside of the source tree, you as the packager of RTEMS have to ensure that timestamps are correctly set up: The generated files must not be older than the *.x files. * This is extraordinarily important when - putting the package on read-only media - after checking out from CVS - after modifications to the *.x files * If one of the *.x files is modified you have to either - build for i386/pc386 and powerpc/mcp750 - or to invoke the same rpcgen calls as the librdbg/src/<cpu>/<bsp>/Makefile.am do manually before checking-in the files to CVS. Proposal: We could add something to bootstrap for touching the rpcgen-generated sources and/or to manually regenerate them. NOTE FROM JOEL: Ralf proposed modifying bootstrap to handle rpcgen. I think this is the best solution as it is something already done in the snapshot procedure.
* All m68k BSPs now build with new ELF style linkcmds.Joel Sherrill2000-01-1346-681/+192
|
* POSIX message queues now include complete functionality includingJoel Sherrill2000-01-132-4/+44
| | | | | | | | | | | | | | | | blocking sends when the queue is full. The SuperCore was enhanced to support blocking on send. The existing POSIX API was debugged and numerous test cases were added to psxmsgq01 by Jennifer Averett. SuperCore enhancements and resulting modifications to other APIs were done by Joel. There is one significant point of interpretation for the POSIX API. What happens to threads already blocked on a message queue when the mode of that same message queue is changed from blocking to non-blocking? We decided to unblock all waiting tasks with an EAGAIN error just as if a non-blocking version of the same operation had returned unsatisfied. This case is not discussed in the POSIX standard and other implementations may have chosen differently.
* Added test case for broadcast to queue with messages pending.Joel Sherrill2000-01-134-0/+28
|
* Changed error checking macros for POSIX.Joel Sherrill2000-01-134-100/+220
|
* POSIX message queues now include complete functionality includingJoel Sherrill2000-01-1328-774/+2556
| | | | | | | | | | | | | | | | blocking sends when the queue is full. The SuperCore was enhanced to support blocking on send. The existing POSIX API was debugged and numerous test cases were added to psxmsgq01 by Jennifer Averett. SuperCore enhancements and resulting modifications to other APIs were done by Joel. There is one significant point of interpretation for the POSIX API. What happens to threads already blocked on a message queue when the mode of that same message queue is changed from blocking to non-blocking? We decided to unblock all waiting tasks with an EAGAIN error just as if a non-blocking version of the same operation had returned unsatisfied. This case is not discussed in the POSIX standard and other implementations may have chosen differently.
* Missed removing this file in an earlier commit. This is removedJoel Sherrill2000-01-131-70/+0
| | | | because of the conversion to automake and replaced by a Makefile.am.
* Added POSIX interpretation subsection and updated status.Joel Sherrill2000-01-132-4/+16
| | | | | The message queue manager chapter needs to be updated to reflect completion of the implementation.
* + Added commentsJennifer Averett2000-01-136-16/+92
|