Timeline



12/02/99:

17:45 Changeset in rtems [43283456]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-19991123-rc-2.diff from Ralf Corsepius <corsepiu@…>: The patch below provides * automake support for score/cpu/powerpc * The hack to propagate values from *.cfg to automake configuration * A fix for librdbg/powerpc/mcp750/Makefile.am (Was completely corrupted before) * Fixes some files which apparently where missing in rtems-rc-19991123-rc-2.diff * some minor configuration related patches To apply: rm -rf ./c/src/exec/score/cpu/powerpc/wrap patch -p1 < rtems-rc-19991123-rc-3.diff Attention: c/src/exec/score/cpu/[configure.in|aclocal.m4|configure] should be removed after applying the patch.
17:34 Changeset in rtems [e492f910]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Jennifer added initial test code. Conditional'ed out until she has the opportunity to work with it.
14:58 Changeset in rtems [3a96054]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Merged of mcp750 and mvme2307 BSP by Eric Valette <valette@…>. As part of this effort, the mpc750 libcpu code is now shared with the ppc6xx.
14:31 Changeset in rtems [acc25ee]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Merged of mcp750 and mvme2307 BSP by Eric Valette <valette@…>. As part of this effort, the mpc750 libcpu code is now shared with the ppc6xx.
14:10 Changeset in rtems [4cf56006]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Merged of mcp750 and mvme2307 BSP by Eric Valette <valette@…>. As part of this effort, the mpc750 libcpu code is now shared with the ppc6xx.
14:00 Changeset in rtems [e4ab88f]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Merged of mcp750 and mvme2307 BSP by Eric Valette <valette@…>. As part of this effort, the mpc750 libcpu code is now shared with the ppc6xx.
13:54 Changeset in rtems [5554279]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Merged of mcp750 and mvme2307 BSP by Eric Valette <valette@…>. As part of this effort, the mpc750 libcpu code is now shared with the ppc6xx.

12/01/99:

16:00 Changeset in rtems [5d3da15b]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Removed debugging printfs.
15:54 Changeset in rtems [017061c]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch from Eric Norum <eric@…> to fix a spot in the tftp file system table from when the rtems_filesystem_operations_table structure changed and the initializer in libnetworking/lib/tftpDriver.c did not get updated.
15:05 Changeset in rtems [955a9ba7]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-19991123-rc-2.diff from Ralf Corsepius <corsepiu@…> which implements automake support for some score/cpu/<RTEMS_CPU> subdirectories and fixes a few minor configuration bugs. To apply: rm -rf c/src/exec/score/cpu/a29k/wrap rm -rf c/src/exec/score/cpu/hppa1.1/wrap rm -rf c/src/exec/score/cpu/i386/wrap rm -rf c/src/exec/score/cpu/mips64orion/wrap rm -rf c/src/exec/score/cpu/no_cpu/wrap patch -p1 < rtems-rc-19991123-rc-2.diff.gz Notes: * I don't see a possiblity to convert the powerpc subdirectory in its current layout to automake the time being. * Besides the fact that this subdirectory is not in single-tree building layout, the actual showstopper is the ifeq $(RTEMS_CPU_MODEL),mpc750) gmake-conditional in powerpc/Makefile.in, which automake (correctly) refuses to handle. * The problem is *not* specific to the powerpc. Other CPUs basically have similar problems (SH:sh7032 vs sh7045, SPARC: erc32.h in score/cpu/sparc), but have been lucky to get around real issues (cf. configuration files below score/cpu/sh/). * From a configuration focused POV this problem boils down to a file/subdirectory selection problem: ppc: 1 or others sh: 1 out of 2 sparc: 1 out of 1 Automake's means to implement such behavior is using conditionals to be evaluated at configuration-time. The old configuration scheme however used make-time conditionals. The SH port was lucky to get around this issue because it applies a selection from a limited set of possible selections, the powerpc however applies a selection from an unlimited set, based on data not being available at configuration time. * Currently I only see two general solutions: 1) make RTEMS_CPU_MODEL available at configuration time, ie. replace make-time configuration by configuration-time configuration 2) Perform the selection at build-time, i.e. always install all files, but use #ifdef #else #endif in source files. This is what the m68k has exploited at other locations inside of the source-tree. => This directory is the last one remaining not using automake below the whole exec/ hierarchy.
14:46 Changeset in rtems [1972b1e]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-19991123-rc-2.diff from Ralf Corsepius <corsepiu@…> which implements automake support for some score/cpu/<RTEMS_CPU> subdirectories and fixes a few minor configuration bugs. To apply: rm -rf c/src/exec/score/cpu/a29k/wrap rm -rf c/src/exec/score/cpu/hppa1.1/wrap rm -rf c/src/exec/score/cpu/i386/wrap rm -rf c/src/exec/score/cpu/mips64orion/wrap rm -rf c/src/exec/score/cpu/no_cpu/wrap patch -p1 < rtems-rc-19991123-rc-2.diff.gz Notes: * I don't see a possiblity to convert the powerpc subdirectory in its current layout to automake the time being. * Besides the fact that this subdirectory is not in single-tree building layout, the actual showstopper is the ifeq $(RTEMS_CPU_MODEL),mpc750) gmake-conditional in powerpc/Makefile.in, which automake (correctly) refuses to handle. * The problem is *not* specific to the powerpc. Other CPUs basically have similar problems (SH:sh7032 vs sh7045, SPARC: erc32.h in score/cpu/sparc), but have been lucky to get around real issues (cf. configuration files below score/cpu/sh/). * From a configuration focused POV this problem boils down to a file/subdirectory selection problem: ppc: 1 or others sh: 1 out of 2 sparc: 1 out of 1 Automake's means to implement such behavior is using conditionals to be evaluated at configuration-time. The old configuration scheme however used make-time conditionals. The SH port was lucky to get around this issue because it applies a selection from a limited set of possible selections, the powerpc however applies a selection from an unlimited set, based on data not being available at configuration time. * Currently I only see two general solutions: 1) make RTEMS_CPU_MODEL available at configuration time, ie. replace make-time configuration by configuration-time configuration 2) Perform the selection at build-time, i.e. always install all files, but use #ifdef #else #endif in source files. This is what the m68k has exploited at other locations inside of the source-tree. => This directory is the last one remaining not using automake below the whole exec/ hierarchy.
14:31 Changeset in rtems [7656140]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-19991123-rc-2.diff from Ralf Corsepius <corsepiu@…> which implements automake support for some score/cpu/<RTEMS_CPU> subdirectories and fixes a few minor configuration bugs. To apply: rm -rf c/src/exec/score/cpu/a29k/wrap rm -rf c/src/exec/score/cpu/hppa1.1/wrap rm -rf c/src/exec/score/cpu/i386/wrap rm -rf c/src/exec/score/cpu/mips64orion/wrap rm -rf c/src/exec/score/cpu/no_cpu/wrap patch -p1 < rtems-rc-19991123-rc-2.diff.gz Notes: * I don't see a possiblity to convert the powerpc subdirectory in its current layout to automake the time being. * Besides the fact that this subdirectory is not in single-tree building layout, the actual showstopper is the ifeq $(RTEMS_CPU_MODEL),mpc750) gmake-conditional in powerpc/Makefile.in, which automake (correctly) refuses to handle. * The problem is *not* specific to the powerpc. Other CPUs basically have similar problems (SH:sh7032 vs sh7045, SPARC: erc32.h in score/cpu/sparc), but have been lucky to get around real issues (cf. configuration files below score/cpu/sh/). * From a configuration focused POV this problem boils down to a file/subdirectory selection problem: ppc: 1 or others sh: 1 out of 2 sparc: 1 out of 1 Automake's means to implement such behavior is using conditionals to be evaluated at configuration-time. The old configuration scheme however used make-time conditionals. The SH port was lucky to get around this issue because it applies a selection from a limited set of possible selections, the powerpc however applies a selection from an unlimited set, based on data not being available at configuration time. * Currently I only see two general solutions: 1) make RTEMS_CPU_MODEL available at configuration time, ie. replace make-time configuration by configuration-time configuration 2) Perform the selection at build-time, i.e. always install all files, but use #ifdef #else #endif in source files. This is what the m68k has exploited at other locations inside of the source-tree. => This directory is the last one remaining not using automake below the whole exec/ hierarchy.
14:27 Changeset in rtems [7dd4054]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-19991123-rc-1.diff from Ralf Corsepius <corsepiu@…> which implements automake support for some score/cpu/<RTEMS_CPU> subdirectories and fixes a few minor configuration bugs. To apply: rm -rf c/src/exec/score/cpu/i960/wrap rm -rf c/src/exec/score/cpu/m68k/wrap rm -rf c/src/exec/score/cpu/sh/wrap rm -rf c/src/exec/score/cpu/sparc/wrap rm -rf c/src/exec/score/cpu/unix/wrap patch -p1 < rtems-rc-19991123-rc-1.diff ./bootstrap Known bugs: * "make debug|profile" in c/src/src/score/cpu/<RTEMS_CPU/Makefile does not handle recursion to subdirectories correctly (recurses too often). However, this issue is hardly visible and should be tolerable for the moment.
14:22 Changeset in rtems [ccf8925b]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-19991123-rc-1.diff from Ralf Corsepius <corsepiu@…> which implements automake support for some score/cpu/<RTEMS_CPU> subdirectories and fixes a few minor configuration bugs. To apply: rm -rf c/src/exec/score/cpu/i960/wrap rm -rf c/src/exec/score/cpu/m68k/wrap rm -rf c/src/exec/score/cpu/sh/wrap rm -rf c/src/exec/score/cpu/sparc/wrap rm -rf c/src/exec/score/cpu/unix/wrap patch -p1 < rtems-rc-19991123-rc-1.diff ./bootstrap Known bugs: * "make debug|profile" in c/src/src/score/cpu/<RTEMS_CPU/Makefile does not handle recursion to subdirectories correctly (recurses too often). However, this issue is hardly visible and should be tolerable for the moment.
14:12 Changeset in rtems [4a3757f]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-19991123-rc-1.diff from Ralf Corsepius <corsepiu@…> which implements automake support for some score/cpu/<RTEMS_CPU> subdirectories and fixes a few minor configuration bugs. To apply: rm -rf c/src/exec/score/cpu/i960/wrap rm -rf c/src/exec/score/cpu/m68k/wrap rm -rf c/src/exec/score/cpu/sh/wrap rm -rf c/src/exec/score/cpu/sparc/wrap rm -rf c/src/exec/score/cpu/unix/wrap patch -p1 < rtems-rc-19991123-rc-1.diff ./bootstrap Known bugs: * "make debug|profile" in c/src/src/score/cpu/<RTEMS_CPU/Makefile does not handle recursion to subdirectories correctly (recurses too often). However, this issue is hardly visible and should be tolerable for the moment.

11/30/99:

22:14 Changeset in rtems [42881534]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Added missing files from PPP port.
22:12 Changeset in rtems [d0950ad]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Added port of ppp-2.3.5 from Tomasz Domin <dot@…> of ComArch? SA. Tomasz only tested this on the mpc823. The official site for the original source for this PPP implementation is: ftp://cs.anu.edu.au/pub/software/ppp NOTE: As of 11/30/1999, the current version of this source is 2.3.10.
19:58 Changeset in rtems [48bfd992]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Renamed shm.h to shm_driver.h to avoid conflicts with POSIX shm.h. Renamed file shmsupp/intr.c in some BSPs to shmsupp/cause_intr.c to avoid conflict with rtems/src/intr.c (Classic API Interrupt Manager).
16:52 Changeset in rtems [1563d8c]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Removed duplicate definition of rtems_filesystem_umask.
14:43 Changeset in rtems [1591a1aa]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Uncommitted remains of a previous patch from Ralf Corsepius <corsepiu@…> which converted fiels to automake.
14:03 Changeset in rtems [116e54ad]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Uncommitted remains of a previous patch from Ralf Corsepius <corsepiu@…> which converted fiels to automake.
13:58 Changeset in rtems [79f2e19]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Split from console.c to eliminate dependencies.
13:49 Changeset in rtems [96344c8]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-19991123-rc-0.diff from Ralf Corsepius <corsepiu@…> which (among other things) converted the mptests to automake. SUB_DIRS was used instead of SUBDIRS in some Makefile.ins (apparently a leftover from moving the start* directories) Addtional major bugs: * psxtests/include was empty (incomplete psxtests changes). * bogus handling of *.scn in itrontests (screens/sptests vs. screens/itrontests installation dirs) In addition I have added a few more changes (I couldn't resist) * automake support for itrontests * OPERATION_COUNT support in tmitrontests/ * automake support for tmitrontests * automake suppport for mptests * Some (minor) corrections to several configure.in/Makefile.ams => c/src/tests/ is completly under automake control, now. => we could start to sort out the structural issues with c/src/tests (tests/support, stubdr, tools, get "make dist" working)
13:46 Changeset in rtems [e4b25c4]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Corrected so they would compile with POSIX disabled.

11/29/99:

16:07 Changeset in rtems [af5f522]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Clarified.
16:06 Changeset in rtems [4e917492]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Clarified status of mkfifo().
15:45 Changeset in rtems [1d9a2fc]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-19991123-rc-0.diff from Ralf Corsepius <corsepiu@…> which (among other things) converted the mptests to automake. SUB_DIRS was used instead of SUBDIRS in some Makefile.ins (apparently a leftover from moving the start* directories) Addtional major bugs: * psxtests/include was empty (incomplete psxtests changes). * bogus handling of *.scn in itrontests (screens/sptests vs. screens/itrontests installation dirs) In addition I have added a few more changes (I couldn't resist) * automake support for itrontests * OPERATION_COUNT support in tmitrontests/ * automake support for tmitrontests * automake suppport for mptests * Some (minor) corrections to several configure.in/Makefile.ams => c/src/tests/ is completly under automake control, now. => we could start to sort out the structural issues with c/src/tests (tests/support, stubdr, tools, get "make dist" working)
15:40 Changeset in rtems [64f55e7]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Made sure POSIX would build with MP enabled.
15:11 Changeset in rtems [61581a1]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Updated.
15:11 Changeset in rtems [421fae4]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Removed bad descriptions of mount() and umount(). Added shell of an accurate description.
15:10 Changeset in rtems [3dfe0b27]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Fixed spacing.

11/24/99:

19:03 Changeset in rtems [0894d35d]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Added chapter of list of routines provided by libm.
18:42 Changeset in rtems [b4957ebb]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
New file.
18:42 Changeset in rtems [ccaeafd2]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Added routines included by C library.
18:22 Changeset in rtems [f6b0196]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Added information on RTEMS Time/Date? Representatin.
14:19 Changeset in rtems [c4ea5efc]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-19991123-rc-0.diff from Ralf Corsepius <corsepiu@…> which (among other things) converted the mptests to automake.

11/23/99:

19:39 Changeset in rtems [e73014b]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Added sem_timedwait to bullet list at front of chapter.
19:38 Changeset in rtems [3dddcce]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Added descriptions for bullet list and routine section headings.
17:12 Changeset in rtems [fbc5406]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
changed version to 19991123-rc
17:07 Changeset in rtems [ccf00b6a]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Added Timer Manager Chapter.
17:07 Changeset in rtems [95460cc]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Fixed line too long.
17:05 Changeset in rtems [5ab0ad6]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
New file.
16:02 Changeset in rtems [63bdbbd]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Readding files mistakenly removed.
15:53 Changeset in rtems [49da88c]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-19991117-16.diff from Ralf Corsepius <corsepiu@…>: * the PACKHEX etc problem * prevents the *.rels being removed inside the build-tree * a typo which only shows for when MP is activated * Alters some custom/*cfg files
15:48 Changeset in rtems [748cdca9]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Readding Makefile.in's accidentally removed.
14:54 Changeset in rtems [3772e2c]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
* empty log message *
14:20 Changeset in rtems [a1bcc6e9]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Moved pmacros.h to include not support/include.
14:16 Changeset in rtems [f26a3ab5]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-19991117-15.diff from Ralf Corsepius <corsepiu@…> to convert the tests/support directory from Makefile.in to Makefile.am.
14:10 Changeset in rtems [23e3f642]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Missed in previous automake conversion patches from Ralf Corsepius <corsepiu@…>.
13:57 Changeset in rtems [9f4868c]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Miscellaneous patches from Ralf Corsepius <corsepiu@…> that are part of the Makefile.am conversion effort but were missed in the previous commits.
13:52 Changeset in rtems [d5b004b]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch from Ralf Corsepius <corsepiu@…> to convert the libmisc directory from Makefile.in to Makefile.am.
13:45 Changeset in rtems [fd17002]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Added clock06.c to the compile list.
13:43 Changeset in rtems [a23cad6]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Files only used by psxfile01, so moved there.
13:41 Changeset in rtems [4b9cc0a]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Test psxfile02 unused and removed.
13:40 Changeset in rtems [62fffe59]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Unused and removed.
13:39 Changeset in rtems [c94eb25]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-19991117-14.diff from Ralf Corsepius <corsepiu@…> to convert the psxtests directory from Makefile.in to Makefile.am.
13:36 Changeset in rtems [4c28552]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-19991117-12.diff from Ralf Corsepius <corsepiu@…> to convert the libtests directory from Makefile.in to Makefile.am.
13:35 Changeset in rtems [e5a76ee5]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-19991117-13.diff from Ralf Corsepius <corsepiu@…> to convert the libtests directory from Makefile.in to Makefile.am.
13:32 Changeset in rtems [6e9ad6c]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-19991117-12.diff from Ralf Corsepius <corsepiu@…> to convert the tmtests directory from Makefile.in to Makefile.am.
13:29 Changeset in rtems [fba12eb6]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-19991117-11.diff from Ralf Corsepius <corsepiu@…> to convert the libc directory to automake and "dozens of small fixes for Makefile.ins/configure.ins below c/src/lib."
13:23 Changeset in rtems [b0ab1d74]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Added projects chapter to FAQ.

11/22/99:

19:27 Changeset in rtems [7e642ba]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-19991117-9.diff from Ralf Corsepius <corsepiu@…> to convert the libc directory to automake and "dozens of small fixes for Makefile.ins/configure.ins below c/src/lib."
19:23 Changeset in rtems [de759c5]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-19991117-8.diff from Ralf Corsepius <corsepiu@…> to fix some minor bugs in the conversion to automake.
19:21 Changeset in rtems [e31c63e5]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-19991117-7.diff from Ralf Corsepius <corsepiu@…> to convert the sample tests to automake.
19:08 Changeset in rtems [5fe4a109]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Converted to automake.
19:03 Changeset in rtems [e188c95]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Now replaced by an automake file.
19:02 Changeset in rtems [484bd0e]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Corrected.
19:02 Changeset in rtems [b8cda5a6]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Added ifndef around build_time so pmacros.h and tmacros.h could be included by the same application.
19:02 Changeset in rtems [7dbb0bd]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
tmitrontests directory listed twice.
16:14 Changeset in rtems [101e9b0]4.104.114.84.95 by Jennifer Averett <Jennifer.Averett@…>
Fixed dispatching and cleaned up code.
16:13 Changeset in rtems [cb3c1718]4.104.114.84.95 by Jennifer Averett <Jennifer.Averett@…>
+ Corrected enable/disable of dispatch. + Cleaned up code.
16:12 Changeset in rtems [2545646]4.104.114.84.95 by Jennifer Averett <Jennifer.Averett@…>
+ Updated comments. + Corrected enable/disable of dispatch.
16:11 Changeset in rtems [94f81bbd]4.104.114.84.95 by Jennifer Averett <Jennifer.Averett@…>
+ Corrected bug in error check.
16:10 Changeset in rtems [2c3af4c5]4.104.114.84.95 by Jennifer Averett <Jennifer.Averett@…>
+ Added description of routine to comment.
16:09 Changeset in rtems [0ca4fc8]4.104.114.84.95 by Jennifer Averett <Jennifer.Averett@…>
+ Corrected error processing code.
16:08 Changeset in rtems [f85409c]4.104.114.84.95 by Jennifer Averett <Jennifer.Averett@…>
+ Added checks for NULL and NULL string names (for sem_open & sem_unlink).
16:07 Changeset in rtems [0ebf5694]4.104.114.84.95 by Jennifer Averett <Jennifer.Averett@…>
+ Cleaned up comments.
16:05 Changeset in rtems [24f6608]4.104.114.84.95 by Jennifer Averett <Jennifer.Averett@…>
+ Corrected error messages. + Added tests for sem_open, sem_close, and sem_unlink. + Yellow lined sem_open, sem_close, sem_unlink, _POSIX_Semaphore_Delete, _POSIX_Semaphore_Name_to_id, and _POSIX_Semaphore_Create_support. Except for MP, pshared OBJECT_REMOTE, and out of memory paths.
14:30 Changeset in rtems [b41a0d1]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
RTEMS RPM basically working.
14:28 Changeset in rtems [28cc172]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Removed need for START_BASE.
14:28 Changeset in rtems [65052685]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Added ifndef around build_time macro so tmacros.h and pmacros.h can be included from the same file.
14:27 Changeset in rtems [6b910bd]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Use PGM consistently.
14:26 Changeset in rtems [c99d395]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Made it agree on PGM versus PGM/PGMS.
14:25 Changeset in rtems [b7912a89]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Changed name of W, X, and Y macros for fields in the Clock Synthesizer Control Register to remove use of single letter names.
14:03 Changeset in rtems [561e4ff6]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Adding files missed by earlier merger of SH-2.
13:48 Changeset in rtems [875fbdbb]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Added files missed by previous merger of SH-2 port.
13:46 Changeset in rtems [b22a19e]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Adding files not added as part of merger of SH2 port.
13:45 Changeset in rtems [27ea47c]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Removed unneeded directory.
13:41 Changeset in rtems [9608320]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-19991117-4.diff from Ralf Corsepius <corsepiu@…>: .. a major configuration cleanup ... major enhancement of automake support. ... and it contains a *major* breakthough: Automake support for libchip and libmisc *LEAF* directories. To implement this I have used several nasty tricks * The basical trick is to wrap an old Makefile.in's contents into a Makefile.am and still continue to use (i.e include) the old *.cfg files. * Replaced each INSTALL_IF_CHANGE and INSTALL_VARIANT with make dependencies * Add a gnu-make ifdef AUTOMAKE to main.cfg to avoid conflicts between automake and RTEMS make rules * Replaced each install:: and preinstall:: rule with make dependencies * Replaced SUB_DIRS with SUBDIRS in all Makefile.ins (Automake convention) * Removed each manually added autoconf substitution which automake performs automatically. This is not yet full automake support, because using the temporary installation directory, preinstallation in general and building variants are in contradiction to automake's basic working principles ... ... the new Makefile.ams work still somewhat clumsy ... nevertheless they work (quite well). WARNING: At first glance this patch is small, but * it affects the whole configuration system. * it opens the road to introducing automake to all Makefile.ins currently not being under automake control. JOEL> Does this remove or add any files? Both, all Makefile.ins below libchip and libmisc get replaced with Makefile.ams.
13:12 Changeset in rtems [75f2b0b]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Small patch (rtems-rc-19991117-5.diff) from Ralf Corsepius <corsepiu@…> to correct the constraints on the inline assembly language macro for sh_disable_interrupt.

11/19/99:

16:40 Changeset in rtems [d2a05e7]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Renaming all BSP specific startXXX directories to use the same name (start).
16:22 Changeset in rtems [9c0385a]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Renaming all BSP specific startXXX directories to use the same name (start).
16:06 Changeset in rtems [149f3f9]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Moved startsis to start.

11/18/99:

21:30 Changeset in rtems [97c465c]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Minor cleanup to reduce the code space.
21:22 Changeset in rtems [4a238002]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch from "John M. Mills" <jmills@…> with subsequent cleanup from Ralf Corsepius <corsepiu@…> that adds initial Hitachi SH-2 support to RTEMS. Ralf's comments are: Changes: ------ 1. SH-Port: * Many files renamed. * CONSOLE_DEVNAME and MHZ defines removed from libcpu. * console.c moved to libbsp/sh/shared, build in libbsp/sh/<BSP>/console applying VPATH. * CONSOLE_DEVNAME made BSP-specific, replacement is defined in bsp.h * MHZ define replaced with HZ (extendent resolution) in custom/*.cfg * -DHZ=HZ used in bspstart.c, only * Makefile variable HZ used in bsp-dependent directories only. 2. SH1-Port * clock-driver rewritten to provide better resolution for odd CPU frequencies. This driver is only partially tested on hardware, ie. sightly experimental, but I don't expect severe problems with it. * Polling SCI-driver added. This driver is experimental and completly untested yet. Therefore it is not yet used for the console (/dev/console is still pointing to /dev/null, cf. gensh1/bsp.h). * minor changes to the timer driver * SH1 specific delay()/CPU_delay() now is implemented as a function 3. SH2-Port * Merged * IMO, the code is still in its infancy. Therefore I have interspersed comments (FIXME) it for items which I think John should look after. * sci and console drivers partially rewritten and extended (John, I hope you don't mind). * Copyright notices are not yet adapted
20:41 Changeset in rtems [5503d75]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Corrected to include extra arguments for simulators on sparc and powerpc targets.
20:40 Changeset in rtems [ea72a6c]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Corrected to remove references to non-existent subpackages.
20:38 Changeset in rtems [1479c22]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Added code to set extra configure arguments for sparc and powerpc targets such that the simulator is enabled. Also corrected a typo which prevented the simulator files from being included in the file list.
20:37 Changeset in rtems [97d7eaf8]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Added ";;" to correct syntactical error.
19:55 Changeset in rtems [c38f5f16]4.104.114.84.95 by Jennifer Averett <Jennifer.Averett@…>
Added EINVAL for passing a NULL pointer in.
19:51 Changeset in rtems [8c5cc6b2]4.104.114.84.95 by Jennifer Averett <Jennifer.Averett@…>
Added test code for named semaphores and moved to use of directive_failed family of macros to produce better checks and diagnostic messages.
19:50 Changeset in rtems [23168f53]4.104.114.84.95 by Jennifer Averett <Jennifer.Averett@…>
Started to added POSIX message queue test code.
19:50 Changeset in rtems [105d7872]4.104.114.84.95 by Jennifer Averett <Jennifer.Averett@…>
Added routine to remove an object from the namespace. It just clears its name in the name_table. This was required by the POSIX semaphore and message queue managers which support a concept of open, close, and unlink. The object becomes "invisible" to further opens following an unlink but all open sessions remain active until they are closed. This requires that the removal of an object ID be separate from the removal of its name.
19:43 Changeset in rtems [17879f4]4.104.114.84.95 by Jennifer Averett <Jennifer.Averett@…>
+ Debuged to the point that you could open, unlink and close a semaphore. but all paths have not been checked, yet.
19:41 Changeset in rtems [c9ae846]4.104.114.84.95 by Jennifer Averett <Jennifer.Averett@…>
Added a routine to remove a semaphore name from its namespace.
17:05 Changeset in rtems [f811c8e]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Removed IT_COUNT since it was not used.
14:06 Changeset in rtems [dd9c6e0d]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-19991117-0.diff.gz from Ralf Corsepius <corsepiu@…> which corrects some configuration problems and cleans up a few Makefile.in's.
13:58 Changeset in rtems [b7852c2]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch rtems-rc-19991105-3.diff.gz from Ralf Corsepius <corsepiu@…> which turns OPERATION_COUNT into a configure time option.
Note: See TracTimeline for information about the timeline view.