Timeline



02/18/98:

20:33 Changeset in rtems [00632e53]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
changed version to 980218
20:30 Changeset in rtems [7324989]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Went back to polled console.
19:34 Changeset in rtems [c7744ee0]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Ralf Corsepius noted that there was a dead path in _Thread_Initialize.
14:11 Changeset in rtems [bf4cdb70]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch from Chris Johns to add the interrupt class destructure.

02/17/98:

23:46 Changeset in rtems [60b791ad]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
updated copyright to 1998
23:45 Changeset in rtems [33b304f]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
updated copyright to 1998
23:35 Changeset in rtems [f86ec42]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Added .eh_frame, C++ constructor, and C++ destructor sections.
23:34 Changeset in rtems [818c361]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Renamed init.o to exinit.o to avoid naming conflicts with tests.
23:33 Changeset in rtems [78fdf2b8]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Installing sptables with version information.
23:33 Changeset in rtems [98401e0]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
mods from Ralf Corsepius
22:16 Changeset in rtems [70a88c3]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
renamed init.c exinit.c
21:39 Changeset in rtems [e810408]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
First cut at automatic insertion of version information.
20:42 Changeset in rtems [5d1ea96]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
added -Wno-unused to debug flags
19:23 Changeset in rtems [540292a]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Ralf Corsepius pushing us farther down the autconf path: "Ladies and Gentlement, we proudly present: a roughly hacked autoconf-ed rtems-glom.in" (:-) BTW, to follow up to the discussion about installation points, rtems-glom in its current shape is an ideal example of a target dependent file. If bsp-specific configure-scripts would exist, it might also be a bsp-dependent file that contains RTEMS_BSP hard-coded (by configure) into it.
19:16 Changeset in rtems [ac61209b]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Added unused warning per discussion on rtems-snapshots list.
18:46 Changeset in rtems [9646d5be]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch from Eric Norum <eric@…>: I've gone through and cleaned up the TFTP driver so that it fits into the libio system. Here's the comment from the new driver: /* * Usage: * * To open /bootfiles/image' on hostname' for reading: * fd = open ("/TFTP/hostname/bootfiles/image", O_RDONLY); * * The `hostname' can be a symbolic name or four * dot-separated decimal values. * * To open a file on the host which supplied the BOOTP * information just leave the `hostname' part empty: * fd = open ("/TFTPbootfiles/image", O_RDONLY); * */ You can `fopen' TFTP files the same way: fp = fopen (fullname, "r"); nread = fread (cbuf, sizeof cbuf[0], sizeof cbuf, fp); The diff's are included below. I've also modified the TFTP demo program and the bootstrap PROM example. They should be on my ftp site `soon'. The one thing I don't like is the way I had to do an end-run on the libio routines to get errno passed back from my driver to the application (since there are some errno codes that don't map to RTEMS status codes). My approach was to set errno in the driver and have the driver routine return an RTEMS status code that I `know' isn't in the errno_assoc[] in libio.c. Perhaps there should be an RTEMS_TRANPARENT_ERRNO status code (or something similar) which driver routines could return to indicate that the driver routine has set errno and that the libio routines shouldn't attempt to map the returned status code to errno. Actually, I think the entire I/O system needs looking at -- as you've already mentioned. The hacks I've dropped in to syscalls.c to make fstat work, for example, are *not* shining examples of good code...…
14:12 Changeset in rtems [e81ef51]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch from Ralf Corsepius <corsepiu@…>: Yep, I have a bunch of bug-fixes and additions pending (Yet another monster patch, ... I can hear you scream :-). 1) configure.in : one AC_CONFIG_HEADER(...) line too much. 2) configure.in: gcc28 support is enabled by default, i.e. if no --enable-gcc28 option is passed on the command line. I am not sure if this is intentional. IMO, AC_ARG_ENABLE for --enable-gcc28 should look like: AC_ARG_ENABLE(gcc28, \ [ --enable-gcc28 enable use of gcc 2.8.x features], \ [case "${enableval}" in yes) RTEMS_USE_GCC272=no ;; no) RTEMS_USE_GCC272=yes ;; *) AC_MSG_ERROR(bad value ${enableval} for gcc-28 option) ;; esac],[RTEMS_USE_GCC272=yes]) 3) At the end of c/src/exec/score/cpu/m68k/m68k.h > #ifdef cplusplus > } > #endif > > #endif /* !ASM */ in my opinion these two statements should be swapped: > #endif /* !ASM */ > > #ifdef cplusplus > } > #endif I didn't try to compile for m68k, but does't this give an error? Is it compensated somewhere else - or didn't I look carefully enough? 5) configure.in: --enable-cpp should probably be renamed to --enable-cxx, as gnu-programs use "cxx" to specify C++ specific configure options, while cpp is used for the preprocessor (e.g egcs uses --with-cxx-includedir, autoconf internally uses $CXX), 6) The macro files from aclocal/*.m4 contain the buggy sed-rules formerly contained in aclocal..m4, i.e. the sed/sort-bug fix to aclocal.m4 didn't make it to aclocal/*.m4. I think I should feel guilty for that - Obviously I submitted the contents of an old aclocal-directory last time. - Sorry. 7) For sh-rtems, we currently need to add additional managers to MANAGERS_REQUIRED (from inside of custom/*.cfg). Currently MANAGERS_REQUIRED is defined in make/compilers/*.cfg. This seems to prevent overriding MANAGERS_REQUIRED from custom/*.cfg files - Obviously the files are included in such a way that the settings from compilers/*cfg always override settings from custom/*.cfg files. Furthermore, I think, defining MANAGERS_* inside gcc-<target>.cfg files is not correct - MANAGERS are not gcc-variant-dependent, but depend on targets/bsps and therefore should be defined in a bsp/target dependent file, e.g. in custom/*.cfg or target.cfg.in. I think defining default settings for MANAGERS* in custom/default.cfg could be an appropriate location. But this requires all custom/*.cfg files to include default.cfg, which *-posix.cfg files don't seem to do. Therefore I would like propose to move MANAGERS* to target.cfg.in - they are included by all custom/*.cfg files. Perhaps we/you should use this opportunity to merge parts from custom/default.cfg into target.cfg.in. This ensures to have the setting included once per target makefile and will open the opportunity to have autoconf doing additional work on bsp-configurations. Peanuts sofar, ... but here it comes ... (:-) 8) I am preparing a major enhancement to autoconf support for gnutools/compilers. It is not yet finished, but usable and I'll therefore attach a preliminary version to this mail. Motivation: * Fix problems with --enable-gcc28, if target-cc is not gcc28 compatible * Fix -pipe problems * Fix problems with hard-coded paths in configuration files (esp. posix) * Fix consistency problems with explictly given gnutools and gcc's gnutools Currently included: * detection and checking of host and target compiler (gcc/g++) * checking if target gnutools are in path * checking if <target>-gcc -specs works (autodisabling gcc28 if not) * checking if <target>-gcc -pipe works Todo : * *posix.cfg files are not yet adapted => The hard-coded paths for these systems are still in use. * Check if the host compiler $CC is properly propagated to the Makefiles (I doubt it, but this should not matter) * Check if rtems' generic tools still work properly (It looks like, but who knows) * Integrate CXX support into default.cfg or gcc-target-default.cfg (It looks like C++ support is only used by posix BSPs) * Automatically handle RANLIB/MKLIB for targets * Plenty ... (:-) Open problems: * Untested for non-gcc compatible host and target compilers. This should be no problem if the tools are named follow gnutool's naming convention and are included in $PATH while running configure. * Intentionally using different tools than that gcc has been configured for, e.g. use a different assembler ? This should be still possible if XX_FOR_TARGET is hard-coded into custom/*.cfg. I don't see why anybody should want to do this, but who knows? I have tested this version on linux and solaris hosts, with gcc's directories mounted at weird non-standard mount points, using egcs (linux/sh-rtemscoff), gcc-2.7.2.2 using native tools (solaris), gcc-2.7.2.3 w/ gnutools (solaris/linux). I don't expect it to break anything, but of cause I can't promise it. It will break most/all *-posix.cfg configuration almost for certain, but not more as rtems' current *posix.cfg configurations already do (hard-coded configurations). I am not sure if this is ready to be included into the next snapshot or not. Perhaps you might try this on your systems and if it you don't notice serious bugs you might put it into the snapshot for public testing (I don't like this, but I don't see another possiblity to test generality). I enclose a patch for configure.in and some configuration files which comprizes fixes for all items mentioned except of #3 . Don't forget to run "aclocal -I aclocal; autoconf;" after applying the patch (:-).
14:09 Changeset in rtems [aa8a8c72]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch from Ralf Corsepius <corsepiu@@faw.uni-ulm.de>: Yep, I have a bunch of bug-fixes and additions pending (Yet another monster patch, ... I can hear you scream :-). 1) configure.in : one AC_CONFIG_HEADER(...) line too much. 2) configure.in: gcc28 support is enabled by default, i.e. if no --enable-gcc28 option is passed on the command line. I am not sure if this is intentional. IMO, AC_ARG_ENABLE for --enable-gcc28 should look like: AC_ARG_ENABLE(gcc28, \ [ --enable-gcc28 enable use of gcc 2.8.x features], \ [case "${enableval}" in yes) RTEMS_USE_GCC272=no ;; no) RTEMS_USE_GCC272=yes ;; *) AC_MSG_ERROR(bad value ${enableval} for gcc-28 option) ;; esac],[RTEMS_USE_GCC272=yes]) 3) At the end of c/src/exec/score/cpu/m68k/m68k.h > #ifdef cplusplus > } > #endif > > #endif /* !ASM */ in my opinion these two statements should be swapped: > #endif /* !ASM */ > > #ifdef cplusplus > } > #endif I didn't try to compile for m68k, but does't this give an error? Is it compensated somewhere else - or didn't I look carefully enough? 5) configure.in: --enable-cpp should probably be renamed to --enable-cxx, as gnu-programs use "cxx" to specify C++ specific configure options, while cpp is used for the preprocessor (e.g egcs uses --with-cxx-includedir, autoconf internally uses $CXX), 6) The macro files from aclocal/*.m4 contain the buggy sed-rules formerly contained in aclocal..m4, i.e. the sed/sort-bug fix to aclocal.m4 didn't make it to aclocal/*.m4. I think I should feel guilty for that - Obviously I submitted the contents of an old aclocal-directory last time. - Sorry. 7) For sh-rtems, we currently need to add additional managers to MANAGERS_REQUIRED (from inside of custom/*.cfg). Currently MANAGERS_REQUIRED is defined in make/compilers/*.cfg. This seems to prevent overriding MANAGERS_REQUIRED from custom/*.cfg files - Obviously the files are included in such a way that the settings from compilers/*cfg always override settings from custom/*.cfg files. Furthermore, I think, defining MANAGERS_* inside gcc-<target>.cfg files is not correct - MANAGERS are not gcc-variant-dependent, but depend on targets/bsps and therefore should be defined in a bsp/target dependent file, e.g. in custom/*.cfg or target.cfg.in. I think defining default settings for MANAGERS* in custom/default.cfg could be an appropriate location. But this requires all custom/*.cfg files to include default.cfg, which *-posix.cfg files don't seem to do. Therefore I would like propose to move MANAGERS* to target.cfg.in - they are included by all custom/*.cfg files. Perhaps we/you should use this opportunity to merge parts from custom/default.cfg into target.cfg.in. This ensures to have the setting included once per target makefile and will open the opportunity to have autoconf doing additional work on bsp-configurations. Peanuts sofar, ... but here it comes ... (:-) 8) I am preparing a major enhancement to autoconf support for gnutools/compilers. It is not yet finished, but usable and I'll therefore attach a preliminary version to this mail. Motivation: * Fix problems with --enable-gcc28, if target-cc is not gcc28 compatible * Fix -pipe problems * Fix problems with hard-coded paths in configuration files (esp. posix) * Fix consistency problems with explictly given gnutools and gcc's gnutools Currently included: * detection and checking of host and target compiler (gcc/g++) * checking if target gnutools are in path * checking if <target>-gcc -specs works (autodisabling gcc28 if not) * checking if <target>-gcc -pipe works Todo : * *posix.cfg files are not yet adapted => The hard-coded paths for these systems are still in use. * Check if the host compiler $CC is properly propagated to the Makefiles (I doubt it, but this should not matter) * Check if rtems' generic tools still work properly (It looks like, but who knows) * Integrate CXX support into default.cfg or gcc-target-default.cfg (It looks like C++ support is only used by posix BSPs) * Automatically handle RANLIB/MKLIB for targets * Plenty ... (:-) Open problems: * Untested for non-gcc compatible host and target compilers. This should be no problem if the tools are named follow gnutool's naming convention and are included in $PATH while running configure. * Intentionally using different tools than that gcc has been configured for, e.g. use a different assembler ? This should be still possible if XX_FOR_TARGET is hard-coded into custom/*.cfg. I don't see why anybody should want to do this, but who knows? I have tested this version on linux and solaris hosts, with gcc's directories mounted at weird non-standard mount points, using egcs (linux/sh-rtemscoff), gcc-2.7.2.2 using native tools (solaris), gcc-2.7.2.3 w/ gnutools (solaris/linux). I don't expect it to break anything, but of cause I can't promise it. It will break most/all *-posix.cfg configuration almost for certain, but not more as rtems' current *posix.cfg configurations already do (hard-coded configurations). I am not sure if this is ready to be included into the next snapshot or not. Perhaps you might try this on your systems and if it you don't notice serious bugs you might put it into the snapshot for public testing (I don't like this, but I don't see another possiblity to test generality). I enclose a patch for configure.in and some configuration files which comprizes fixes for all items mentioned except of #3 . Don't forget to run "aclocal -I aclocal; autoconf;" after applying the patch (:-).
13:49 Changeset in rtems [81e0232]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Update from Ralf Corsepius: 6) The macro files from aclocal/*.m4 contain the buggy sed-rules formerly contained in aclocal..m4, i.e. the sed/sort-bug fix to aclocal.m4 didn't make it to aclocal/*.m4. I think I should feel guilty for that - Obviously I submitted the contents of an old aclocal-directory last time. - Sorry.
13:48 Changeset in rtems [3771cc6e]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Update from Ralf Corsepius: Yep, I have a bunch of bug-fixes and additions pending (Yet another monster patch, ... I can hear you scream :-). 1) configure.in : one AC_CONFIG_HEADER(...) line too much. 5) configure.in: --enable-cpp should probably be renamed to --enable-cxx, as gnu-programs use "cxx" to specify C++ specific configure options, while cpp is used for the preprocessor (e.g egcs uses --with-cxx-includedir, autoconf internally uses $CXX),
13:21 Changeset in rtems [b4589477]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Swapped C++ and ASM "endifs"

02/11/98:

22:13 Changeset in rtems [a858910]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Incorporated Ralf Corsepius' idea for new -q flags to properly support "gmake debug".
21:57 Changeset in rtems [fc56b90c]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Don't install tools using variant name.
21:56 Changeset in rtems [360930c]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Install size info using "standard" suffix.
21:20 Changeset in rtems [2bb990f]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Fixed hppa1.1 configuration.
15:03 Changeset in rtems [c2c5fc2]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
new test cases
14:58 Changeset in rtems [94a6c986]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
new directory structure for hwapi
14:50 Changeset in rtems [7175b59]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
hwapi added
14:50 Changeset in rtems [9aceddaf]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
updates

02/10/98:

16:22 Changeset in rtems [84b0f7c9]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Robin Kirkham reported that the install point was incorrect in this file.

02/07/98:

19:56 Changeset in rtems [b68e057e]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Fixed to correctly operate on target variants like debug and profile.
19:43 Changeset in rtems [e496c1f]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Should not install build-tools using target variant options.

02/06/98:

14:14 Changeset in rtems [1e524995]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Updated copyrights
13:48 Changeset in rtems [5599d6e]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Added @table/@end table capability along with the avdas.d test case where this capability was first used.
13:47 Changeset in rtems [f02ffca]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Problem report from Brian Cuthie regarding incorrect calculation of BSS size. The conversion from a count of u8's to a count of u32's was shifting in the wrong direction. This error had been in the start code a long time. It had not caused problems because the BSS is typically much smaller than the C heap which typically follows it in memory. Plus since this code was executed at start time, all that really happened was an extra zeroing of some memory.

02/05/98:

20:05 Changeset in rtems [02d19d8]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Added code to more correctly process abstract types (handle, range, etc).

02/04/98:

15:56 Changeset in rtems [b37137b]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Removed special ix86-rtems stanza.
15:54 Changeset in rtems [7a524954]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Change suggested by Ralf Corsepius: I am not sure if this is related to this problem, but here is an observation: All config.sub scripts from rtems' intrastructure packages internally transform i386-rtems into i386-pc-rtems newlib-1.8.0-rtems/config.sub i386-rtems --> i386-pc-rtems egcs-1.0/config.sub i386-rtems ---> i386-pc-rtems egcs-1.0.1/config.sub i386-rtems ---> i386-pc-rtems bintutils-2.8.1.0.19/config.sub i386-rtems ---> i386-pc-rtems gas-98xxxx/config.sub i386-rtems ---> i386-pc-rtems The only exception is rtems itself: rtems/config.sub i386-rtems ---> i386-rtems I am not sure if this influences i386-rtems + c++/posix, but this indicates that rtems' config.sub script should to be updated. To fix this, simply copying config.sub e.g. from egcs and removing all i[3456]-rtems* case statement lines from configure.in should be sufficient. BTW, from autoconf's point of view i386-pc-rtems is the correct target conforming autoconf's naming conventions, but using i386-rtems for all packages (infrastructure and rtems) should make no difference.
15:47 Changeset in rtems [e44e678]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Cleaned up the definition of CONSOLE_USE_POLLED and CONSOLE_USE_INTERRUPTS.
15:35 Changeset in rtems [0312defb]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch from Ralf Corsepius to reduce the amount of memory consumed by the workspace by default.
14:54 Changeset in rtems [6c77bba]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
New autoconf feature from Ralf Corsepius: It adds make rules for reconfiguring build-trees ("make Makefile") and adds dependency rules for configure and friends (i.e. calls autoconf). Most of this code has been "borrowed" from automake and was adapted to rtems. Addionally, I added automatic generation of the "aclocal.m4"-file by "aclocal" (from the automake package). Therefore I splitted aclocal.m4 into several separate files (attached to this mail), each containing one of rtems customized autoconf/m4-macros and have put them into a new subdirectory "aclocal". Normal users won't be influenced and won't even need this, unless they try to modify configure.in. The main advantage of this is: these aclocal/m4-macros become reusable and easier to administer. As a disadvantage, rtems becomes dependent of having aclocal/automake installed. To keep building rtems functional if autoconf or aclocal isn't installed, the related Makefile commands are prefixed by "-" -- only an error message should be issued by "make".
14:47 Changeset in rtems [77ea27fc]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Ralf Corsepius noticed that generally was spelled incorrectly.
Note: See TracTimeline for information about the timeline view.