Timeline



01/23/00:

19:20 Changeset in rtems [0c602f0]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch from David Fiddes <D.J@…> which adds basic 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.
19:07 Changeset in rtems [8d37343]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Directive rtems_task_variable_get() added by Eric Norum.
19:06 Changeset in rtems [b5a31d4]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Added rtems_task_variable_get from Eric Norum.
18:59 Changeset in rtems [a6900508]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Updated to reflect changing to void * on task variables by Eric Norum <eric@…>.
18:29 Changeset in rtems [41b27b94]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Wrong BSP referenced.
18:22 Changeset in rtems [f13b1c4]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Removing unused file accidentally left in CVS. Discovered by Ralf Corsepius <corsepiu@…>.

01/21/00:

15:15 Changeset in rtems [d7f33012]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Documentation to reflect patch from Eric Norum <eric@…> to the network initialization enhancement request by Jake Janovetz <janovetz@…>.
15:11 Changeset in rtems [4a9b897]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch from Eric Norum <eric@…> at the request of Jake Janovetz <janovetz@…> 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().
15:07 Changeset in rtems [c941a98]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch from Eric Norum <eric@…> to implement this: 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.
14:49 Changeset in rtems [e570c761]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch from Eric Norum <eric@…> to remove warnings.
01:47 Changeset in rtems [b9478fc6]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch from Eric Norum <eric@…>: Some excellent sleuthing by Bob Wisdom <bobwis@…> 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.

01/19/00:

19:39 Changeset in rtems [54b99a2]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
changed version to 20000118a

01/18/00:

16:06 Changeset in rtems [1c62aa21]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
changed version to 20000118

01/14/00:

22:33 Changeset in rtems [1bbcbd9]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
changed version to 20000114
19:26 Changeset in rtems [f8e2a94]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Updated to reflect final test output.
19:26 Changeset in rtems [ff70333]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Updated screen to reflect final test output.
18:50 Changeset in rtems [94a51f8b]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Added -USTRICT_ANSI to remove MANY warnings since the BSD code is not strict ANSI.
18:37 Changeset in rtems [e49ebbfa]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Removed unused variable warning.
18:37 Changeset in rtems [4d1af20]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Removed no prototype of kill() warning.
17:41 Changeset in rtems [318e23b]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Updated versions.
17:41 Changeset in rtems [1cb2f89a]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Updated list of targets to build.
17:41 Changeset in rtems [20eb69d]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Now ignores minimum and does not run it.
17:40 Changeset in rtems [512a536]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Now using Makefile.am to generate this file.
15:34 Changeset in rtems [95f5adb]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Warning corrections per feedback from Emmanuel Raguet <raguet@…>.
14:55 Changeset in rtems [752badac]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Removed warning.
14:44 Changeset in rtems [c819ea4]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Removed numerous warnings.

01/13/00:

22:11 Changeset in rtems [5890919]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Updated files missed in earlier batch from Eric Norum.
22:08 Changeset in rtems [49fa9bc]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Fixed warnings.
21:07 Changeset in rtems [4c3ab846]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-20000104-17.diff from Ralf Corsepius <corsepiu@…> 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.
20:45 Changeset in rtems [b8c9883]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
All m68k BSPs now build with new ELF style linkcmds.
19:32 Changeset in rtems [11944b9b]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
POSIX message queues now include complete functionality including 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.
19:27 Changeset in rtems [3e7a0fd]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Added test case for broadcast to queue with messages pending.
19:26 Changeset in rtems [85d62357]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Changed error checking macros for POSIX.
19:25 Changeset in rtems [53fb837a]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
POSIX message queues now include complete functionality including 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.
19:23 Changeset in rtems [ee4ddd83]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Missed removing this file in an earlier commit. This is removed because of the conversion to automake and replaced by a Makefile.am.
19:20 Changeset in rtems [2cef977]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Added POSIX interpretation subsection and updated status. The message queue manager chapter needs to be updated to reflect completion of the implementation.
18:32 Changeset in rtems [9c1c778d]4.104.114.84.95 by Jennifer Averett <Jennifer.Averett@…>
+ Added comments
18:32 Changeset in rtems [d65c3768]4.104.114.84.95 by Jennifer Averett <Jennifer.Averett@…>
+ Added and yellow line tested _CORE_message_queue_Flush_waiting_threads and _CORE_message_queue_Insert_message for posix message queues. + Yellow line tested new source
18:23 Changeset in rtems [e7d76dc]4.104.114.84.95 by Jennifer Averett <Jennifer.Averett@…>
Added comment.
18:22 Changeset in rtems [d78c6fe3]4.104.114.84.95 by Jennifer Averett <Jennifer.Averett@…>
+ Comment cleanup
18:22 Changeset in rtems [661ff9a]4.104.114.84.95 by Jennifer Averett <Jennifer.Averett@…>
Removed referance to rtems error. Added correct include file.
17:13 Changeset in rtems [b0461cd4]4.104.114.84.95 by Jennifer Averett <Jennifer.Averett@…>
Added comment to indicate this path does not occur.
17:01 Changeset in rtems [0724b658]4.104.114.84.95 by Jennifer Averett <Jennifer.Averett@…>
Added start and end herald.
15:07 Changeset in rtems [9b2c969]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Made sweep of changes to get all BSPs to the same point on the linkcmds and memory layout. Next step is to share the same bsp_pretasking_hook.
15:06 Changeset in rtems [c0ebf02]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
New patch from Eric Norum plus some minor mods by Joel.
14:28 Changeset in rtems [e60d75d]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Fixed spacing.
14:05 Changeset in rtems [bd9e482a]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Made _clear_end a "PROVIDE."

01/12/00:

20:22 Changeset in rtems [ea2c1d6]4.104.114.84.95 by Jennifer Averett <Jennifer.Averett@…>
+ Added code for waiting send + Yellow lined tested routine with Posix message queue test (01)
18:47 Changeset in rtems [e38cb52]4.104.114.84.95 by Jennifer Averett <Jennifer.Averett@…>
Debugged and yellow line tested routines.
18:46 Changeset in rtems [68b05694]4.104.114.84.95 by Jennifer Averett <Jennifer.Averett@…>
+ Modified return codes + Added messsage size check + Debugged and yellowed out routine
18:44 Changeset in rtems [bcbc50a]4.104.114.84.95 by Jennifer Averett <Jennifer.Averett@…>
+ Added signal processing. + Yellow line tested source.
18:43 Changeset in rtems [352d01e]4.104.114.84.95 by Jennifer Averett <Jennifer.Averett@…>
+ Modified to correct return codes. + Removed extra flag attribute from message queue structure. + Yellow-lined all posix message queue routines.
18:41 Changeset in rtems [70329c80]4.104.114.84.95 by Jennifer Averett <Jennifer.Averett@…>
+ Changed call from core flush to core close routine. This flushes waiting queues as well as the messages.
18:40 Changeset in rtems [399ba06]4.104.114.84.95 by Jennifer Averett <Jennifer.Averett@…>
+ Removed name validation code (this was already done in nametoid.
17:58 Changeset in rtems [c1d2cc9]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-20000104-16.diff from Ralf Corsepius <corsepiu@…> that converts the libbsp/i386 subdirectory to full automake.
16:38 Changeset in rtems [b2b4835]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Eric Norum <eric@…> submitted linker script and bsp_specs for the gen68360 that let it work with ELF and C++ exceptions. This was used as the basis for changes to EVERY m68k bsp_specs and linkcmds. Before this modification is over, the layout of the starting stack, heap, and workspace will likely be modified for every m68k BSP. Then they will all be very similar.
16:38 Changeset in rtems [69537ca9]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-20000104-16.diff from Ralf Corsepius <corsepiu@…> that converts the libbsp/i386 subdirectory to full automake.
16:08 Changeset in rtems [1e194112]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Called symbol table ".nm" not .num like every other BSP.
16:05 Changeset in rtems [737a599]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-20000104-15.diff from Ralf Corsepius <corsepiu@…> that fixes the following problems: 1. Removing bogus ';' in some configure.in (cosmetical fix) 2. Moves GAS_CODE16 checks to libbsp/i386/*/configure.in (essential fix) #2 was responsible for the gcc/binutils-2.9.5 choking while building for the pc386.

01/11/00:

19:09 Changeset in rtems [76c2b35]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
File removed as it was not being used.
17:34 Changeset in rtems [0dd1d44]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Removed old hack of using Configuration Table entry ticks_per_timeslice being set to 0 to indicate that there should be no Clock Tick. This was used by the Timing Tests to avoid clock tick overhead perturbing execution times. Now the Timing Tests simply leave the Clock Tick Driver out of the Device Driver Table.
16:41 Changeset in rtems [bdb2899]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch from Emmanuel Raguet <raguet@…> to correct macro expansion. These macros were modified to correct warnings and obviously needed more parentheses to expand correctly.
15:43 Changeset in rtems [7558283]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Fixed spacing.
15:43 Changeset in rtems [e0c0161]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
This test was enhanced to test for the case in sigtimedwait() where it must deal with a pending process oriented signal. Prior to the addition of this testcase, sigtimedwait() did not return properly when a process oriented signal was pending. The problem was reported by Wayne Bullaughey <wayneb@…>.
15:42 Changeset in rtems [4fa5eae]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
This code did not return properly when a process oriented signal was pending. Reported by Wayne Bullaughey <wayneb@…>.
14:57 Changeset in rtems [86c9eb0]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Bug fix from Wayne Bullaughey <wayneb@…> to use the complement of the mask when disabling the interrupt.

01/10/00:

21:38 Changeset in rtems [0f59d63f]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Now automake generated.
21:37 Changeset in rtems [710f76a]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Added mpc6xx/timer/Makefile.
21:36 Changeset in rtems [01ab7019]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Accidentally deleted.
21:22 Changeset in rtems [19642e2c]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Removed definition of USHRT_MAX to remove lots of redefinition warnings.
20:56 Changeset in rtems [6d3ab0f]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Added pc486 and pc586 as aliases of pc386 with proper cpu flags.
20:40 Changeset in rtems [119204d8]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Removed warning by changing %eax -> %ax as source of move to segment registers.
20:38 Changeset in rtems [c084f11]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Added pc486 and pc586 to list.
20:12 Changeset in rtems [f9bcb58]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Corrected compilation problem in lgdt instruction.
19:07 Changeset in rtems [f4d21dd]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Added include of <bsp/irq.h> per Jay Kulpinski <jskulpin@…>.
18:56 Changeset in rtems [aa1d76e]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Missed cleanup from Ralf Corsepius.
18:47 Changeset in rtems [70af0ea1]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Don't look at the object information structure for threads/tasks for APIs that are not configured. This resulted in weird behavior when ITRON was disabled on some targets.
18:16 Changeset in rtems [f983d57]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-20000104-14.diff from Ralf Corsepius <corsepiu@…> which fixes some PowerPC specific bugs.
18:16 Changeset in rtems [89703c3]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch from Jay Kulpinski <jskulpin@…> to make sure RTEMS_TM27 is defined before the bsp.h is included.
18:10 Changeset in rtems [362ec23e]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-20000104-12.diff from Ralf Corsepius <corsepiu@…> which converts the PowerPC BSPs to configuration and more automake. * Besides adding partial automake support, rsp converting all powerpc BSPs to make them compliant to the new configuration scheme, this patch attempts to fix several configuration bugs in powerpc related Makefiles.
18:07 Changeset in rtems [f9b48de]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Removed reference to Radstone PPCN.
18:07 Changeset in rtems [2352726]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Fixed comment.
15:18 Changeset in rtems [94a86c40]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Per suggestions of Eric Valette <valette@…> and Jay Kulpinski <jskulpin@…>, the bsp_specs now defines USE_ENHANCED_INTR_API and powerpc/shared/include/bsp.h uses that to enable its tm27 support.
15:03 Changeset in rtems [6e7b6ca]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Fixed unterminated comment spotted by eagle eye Ralf Corsepius <corsepiu@…>.
14:50 Changeset in rtems [bc2f04f]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-20000104-13.diff from Ralf Corsepius <corsepiu@…> which does the following: * some cleanups, fixes, addtions to the libbsp automake transition patches * The missing Automake transistion patches all libcpu/<cpu>/<variant>/* previously not yet been converted to automake (libcpu/powerpc, libcpu/hppa1.1, libcpu/mips64orion, libcpu/sparc) => With this patch, libcpu/*/* is under full automake control. NOTES: * This patch is tested by building for random set of bsps affected by this patch, but not tested for all BSPs. * The parts of this patch related to libcpu/powerpc fix many small bugs inside of those Makefiles. * Have a look into libcpu/powerpc/mpc6xx/, which is in rather bad shape, IMO. Obviously most subdirectories seem to be build but are not included into libcpu.a by wrapup/Makefile. Addtionally, no actual BSP uses this cpu-variant subdirectory. Furthermore libcpu/powerpc/mpc6xx has a different directory layout than all other powerpc/<variant>/ directories. Joel's note: I agree but the issue is that there is a conflict between including timer or clock in libcpu/XXX/wrapup/Makefile.* and letting a BSP specifically decide to pick it up. There is no clear solution to this at the moment.
14:31 Changeset in rtems [5fa14794]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-20000104-11.diff from Ralf Corsepius <corsepiu@…> that converts the i386 directory to automake. NOTE: Ralf is unable to build any i386 BSPs. This was true before and after this patch and appears (to Joel) to be a tool issue unrelated since others can build i386 BSPs.
14:29 Changeset in rtems [7068e246]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-20000104-10.diff from Ralf Corsepius <corsepiu@…> that converts the m68k directory to automake. NOTE: This one is fully tested by building *all* bsps with ../../rtems-rc-20000104/configure \ --target=m68k-rtems \ --prefix=/tmp/rtems \ --enable-cxx \ --disable-posix \ --enable-rdbg \ --disable-networking \ --enable-maintainer-mode \ --enable-multiprocessing \ --disable-tests make
14:23 Changeset in rtems [53ab4823]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-20000104-9.diff from Ralf Corsepius <corsepiu@…> that converts the hppa1.1 directory to automake. NOTE: * Due to not having a toolchain (gcc refuses to build) this patch is untested. * I omited/deactivated the pxfl subdirectory, because I don't understand how it supposed to work. Joel's note: It was right to ignore the pxfl directory. It should be removed one the BSPs are moved outside the tree. This was an old hack.
14:17 Changeset in rtems [4200321a]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-20000104-7.diff from Ralf Corsepius <corsepiu@…> that converts the a29k directory to automake. NOTE: This port is not based on the GNU tools so no one can test it.
14:17 Changeset in rtems [1597ab4a]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-20000104-8.diff from Ralf Corsepius <corsepiu@…> that converts the a29k directory to automake. NOTE: This port is not based on the GNU tools so no one can test it.
14:09 Changeset in rtems [59909bf]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-20000104-6.diff from Ralf Corsepius <corsepiu@…> that converts the i960 directory to automake. The same kind of libbsp configuration as for the mips64orion, now for the i960. In addition to libbsp configuration this patch also contains two fixes for cvme961.cfg and rxgen960.cfg, which contained non-functional make-exes. (Now both bsps probably have the same issues with linking c++ applications as the gensh2 has, but this is a different open issue not tried to be solved now). The rxgen961 also seems to have problems with its start file, because linking apps fails due to not finding start.o. (Note that libbsp/i960/rxgen960 lacks a start subdirectory!). I leave solving this issue to you :)
14:07 Changeset in rtems [d0a8b4b8]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-20000104-4.diff from Ralf Corsepius <corsepiu@…> that converts the mips64orion directory to automake. Ralf's Note: This patch demonstrates another kind of supporting the new style of configuration, which avoids having to port all Makefile.ins to automake, but to keep using most old style Makefile.ins.
14:06 Changeset in rtems [82f1f6d]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-20000104-6.diff from Ralf Corsepius <corsepiu@…> that converts the mips64orion directory to automake. Ralf's Note: This patch demonstrates another kind of supporting the new style of configuration, which avoids having to port all Makefile.ins to automake, but to keep using most old style Makefile.ins.
14:04 Changeset in rtems [0cbfa283]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-20000104-4.diff from Ralf Corsepius <corsepiu@…> that converts the no_cpu directory to automake.
14:04 Changeset in rtems [1e562da6]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-20000104-5.diff from Ralf Corsepius <corsepiu@…> that converts the no_cpu directory to automake.
14:03 Changeset in rtems [49e05f41]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-20000104-4.diff from Ralf Corsepius <corsepiu@…> that converts the unix directory to automake. Ralf's note: Please check c/src/lib/libbsp/unix/posix/startup/Makefile.am. I am not sure if it is correct.
13:59 Changeset in rtems [10726095]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-20000104-3.diff from Ralf Corsepius <corsepiu@…> that converts the sparc directory to automake. Ralf's note: The implementation of libbsp/sparc/* gives a nearly minimal example of the new configuration scheme.
13:56 Changeset in rtems [94608578]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-20000104-2.diff from Ralf Corsepius <corsepiu@…> that converts nearly all of libbsp/sh to automake. Comments follow: 1. Almost full automake support for the libbsp/sh/ subdirectories (exception libbsp/sh/gensh*/wrapup/*) 2. Fixes for libbsp/bare/* 3. Updates to libbsp/* configuration which supports old (autoconf/deep configuration) and new (automake/flat/cascaded configuration) style configuration of libbsp/<cpu>/*
13:26 Changeset in rtems [338f1dc]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch from Eric Valette <valette@…> that makes sure the interrupt code works on "old buggy MCP750 boards". The symptom was that there was no ethernet PCI IRQ at all.
Note: See TracTimeline for information about the timeline view.