summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Big patch form Ralf Corsepius described in this email:Joel Sherrill1998-01-30480-1924/+974
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Here is the result of my nightly work to get RTEMS_ROOT=$srcdir working with different shells and relative/absolute paths. What I did is relatively simple in principle: Instead of setting RTEMS_ROOT in configure.in and then let configure substitute @RTEMS_ROOT@ inside the Makefiles, I now let each Makefile set RTEMS_ROOT from each Makefile's @top_srcdir@ value. The difference is subtile, but with enormous side effects: - If RTEMS_ROOT is set in configure, then the same single value will be propagated to all Makefiles. This breaks using relative paths, as the relative path to the root of the source tree is used inside of all subdirectory Makefiles. - Now each Makefile.in sets RTEMS_ROOT = @top_srcdir@. top_srcdir is computed individually by configure for each single Makefile.in, hereby receiving the correct value, no matter if relative or absolute paths are used. To get this working, I needed to remove setting RTEMS_ROOT from target.cfg.in, because this overrides the value of RTEMS_ROOT from each individual Makefile. Furthermore, I removed RTEMS_CUSTOM from the Makefiles and replaced all "include $(RTEMS_CUSTOM)" directives with"include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP)". Perhaps you don't like this, but I think, to have one variable less is clearer and easier to understand than having several variables refering to the next one. I enclose a small patch to this mail, which - fixes the config.h problem (to finally clearify misunderstands) - removes assignment/subsitution of RTEMS_ROOT from configure.in - contains a workaround for the application Makefile's RTEMS_ROOT problem (reported by Eric) - removes some unused lines from the toplevel Makefile.in - removes assignment of RTEMS_ROOT from make/target.cfg.in
* Corrected Linux port for glibc2Joel Sherrill1998-01-3010-7/+16
|
* correctionJoel Sherrill1998-01-301-1/+2
|
* configure.inJoel Sherrill1998-01-301-16/+111
|
* Modified output of @Example style in MsWord output routine so it wouldJoel Sherrill1998-01-302-4/+36
| | | | be one paragraph with manual line breaks rather than multiple paragraphs..
* Change to remove warning on glibc2 systems per Ralf Corsepius'sJoel Sherrill1998-01-282-2/+12
| | | | suggestion.
* Fix from Eric Norum:Joel Sherrill1998-01-271-1/+1
| | | | | There's an explicit invocation of `make' in c/Makefile.in. This breaks for those of us with different `gmake' and `make' programs.
* Removed some stanzas per Ralf Corsepius:Joel Sherrill1998-01-271-18/+2
| | | | | | | > 4) The toplevel Makefile.in contains rules named make_subdir and > clean_modules, which probably can be deleted, IMO. > At least make_subdir doesn't give any sense anymore. (I had removed it > im my original patch).
* not submittedJoel Sherrill1998-01-271-106/+0
|
* Fixed missing carriage return at the bottom of the file reportedJoel Sherrill1998-01-271-1/+0
| | | | by Ralf Corsepius
* new fileJoel Sherrill1998-01-262-0/+18
|
* Solaris port updates from Chris JohnsJoel Sherrill1998-01-2341-83/+118
|
* Cleaned up a bit.Joel Sherrill1998-01-232-18/+62
|
* Added information about multilib problems.Joel Sherrill1998-01-231-0/+8
|
* minor updates .. mostly versionJoel Sherrill1998-01-2320-106/+110
|
* Fixed some "NodeNameIncludesChapterName" problems which were uncoveredJoel Sherrill1998-01-231-11/+29
| | | | doing the HWAPI manual.
* Reverted change ...Joel Sherrill1998-01-222-4/+4
|
* Added some GRUB information from Phil Wilshire.Joel Sherrill1998-01-221-0/+12
|
* Corrected/simplified setting of RTEMS_ROOT.Joel Sherrill1998-01-222-4/+4
|
* Added autoconf support for strerror/sys_errlist per Ralf Corsepius'Joel Sherrill1998-01-2120-143/+418
| | | | | direction. This fixes a problem reported by Steve Evans of Radstone since he is using glibc2.
* Changed reference from PROJECT_ROOT to RTEMS_ROOT.Joel Sherrill1998-01-211-1/+1
|
* Corrected prototypes for main per Ralf Corsepius' report of warningsJoel Sherrill1998-01-2112-20/+48
| | | | generated when egcs is used with "-Wall -pedantic".
* Added Code to dop the output in a format which a custom Visual BasicJoel Sherrill1998-01-213-10/+203
| | | | Application Cindy has written can transform into a nice Word document.
* Removed warning per Chris Johns' suggestion.Joel Sherrill1998-01-206-6/+6
|
* Removed warning per Chris John's suggestion.Joel Sherrill1998-01-201-1/+1
|
* Removed CONFIG_DIR and PROJECT_HOME directories.Joel Sherrill1998-01-20459-511/+492
|
* Fixed libhwapi to reflect eeprom to non volatile memory rename.Joel Sherrill1998-01-202-23/+23
|
* Removed PROJECT_HOME and CONFIG_DIR variables.Joel Sherrill1998-01-2053-0/+5718
|
* Added _times_r.Joel Sherrill1998-01-193-0/+21
|
* more info from EricJoel Sherrill1998-01-191-0/+6
|
* Patch from Eric Norum:Joel Sherrill1998-01-195-7/+27
| | | | | With this in place, it is possible to fdopen a TCP stream socket and getc/fprintf/etc. on the STDIO stream!
* Ralf Corsepius reported a number of missing CVS Id's:Joel Sherrill1998-01-16133-169/+417
| | | | | | | | | | > RTEMS is under CVS control and has been since rtems 3.1.16 which was > around May 1995. So I just to add the $Id$. If you notice other files > with missing $Id$'s let me know. I try to keep w\up with it. Now that you have asked -- I'll attach a list of files lacking an RCS-Id to this mail. This list has been generated by a little sh-script I'll also enclose.
* Jennifer found some uninitialized variables:Joel Sherrill1998-01-163-3/+21
| | | | | | + major and minor number elements in rtems_termios_open. + arg->ioctl_return in rtems_termios_ioctl routine.
* Ralf Corsepius <corsepiu@faw.uni-ulm.de> suggested removing theseJoel Sherrill1998-01-151-2/+0
| | | | | lines so setting RTEMS_BSP in an environment variable works even from the top level directory.
* Patch from Ralf Corsepius <corsepiu@faw.uni-ulm.de>:Joel Sherrill1998-01-151-3/+5
| | | | | | | | | | | RTEMS_CHECK_FILES_IN uses a sequence of find, sort and sed to collect all *.in files in a given subdirectory. The current version uses : `find $1 -name $2 -print | sed 's%\.in%%' | sort` with $1 being a subdirectory $2 set to Makefile.in. This works as long all subdirectories start with a letter that is lexically bigger than the letter M, but will fail otherwise.
* Error reported by Duncan Smith <dds@flavors.com>:Joel Sherrill1998-01-153-3/+3
| | | | | | | | | | | | | | | | | | | | | | >> >>There is a 30 day error in _TOD_Days_since_last_leap_year[2..3] >> > >> >Thanks. >> >What's the condition to hit this error? >> >Every year 4n+2 and 4n+3 ? >> >(i.e. 1998, 1999, 2002, 2003, ...) >> > >> OK: 96 97 00 01 04 05 ... >> Bad: 98 99 02 03 06 07 ... There is also a problem in newlib 1.7.x reported at the same time: >> I found another, that would strike only on 2/29/2000, or other leapyears. >> Only a problem on 1 day. >> >> Joel: FYI, there is a bug in Newlib localtime.c, localtime or (_tm_time). >> Ours is modified for dst and timezones, but the bug was in original source. >> I have not looked at the latest public source (nor do I know where to find >> it).
* Added "done" to end of list of BSPs found.Joel Sherrill1998-01-152-2/+2
|
* Fixed code for --disable-rtems-inlines so that it would completeJoel Sherrill1998-01-153-23/+45
| | | | | | | configuration successfully. Added code to detect configuring macros and POSIX API at the same time. There is no macro implementation for the POSIX API.
* Updates from Eric Norum. Changed CPU CFLAG and went to a common nameJoel Sherrill1998-01-061-150/+112
| | | | for the network driver attach entry point.
* Changed initial settings of first time.Joel Sherrill1998-01-063-9/+15
|
* Fixed spacing.Joel Sherrill1998-01-062-4/+4
|
* Updated for the first time in a long while.Joel Sherrill1997-12-231-30/+45
|
* Added CONFIGURE_GNAT_KEYS to correct the number of keys configuredJoel Sherrill1997-12-233-36/+33
| | | | | | | | | for GNAT. It was the number of Ada tasks when in fact the run-time only required a single key. Also added the CONFIGURE_MAXIMUM_FAKE_ADA_TASKS constant to account for resources allocated for each non-Ada task/thread which invokes the Ada run-time implicitly through an Ada call.
* Removed reference to CC_FOR_TARGET since I don't want anyone overridingJoel Sherrill1997-12-221-4/+8
| | | | | | it anyway. :) Added hints about --prefix and --program-prefix options.
* Made --enable-gcc28 the default.Joel Sherrill1997-12-222-2/+2
|
* Fixes from Eric Norum. C++ support added in previous version was broken:Joel Sherrill1997-12-223-291/+272
| | | | | | | | | | | | | | | | | | 1) In my haste to add C++ constructor/destructors to the 68360 linkcmds scripts I managed to break all existing 68360 programs. Linker scripts which actually produce a working executable are contained below. The problem was that the constructor/destructors weren't included before the etext symbol. On top of that Eric and I appear to have problems with attachments: 2) In deciphering the above problem I think I stumbled across the reason you've had with patches mailed from me. I noticed that the linkcmds (and linkcmds.bootp) scripts in the latest distribution have a control-M (carriage return) at the end of each line. Could you check the files below before installing them in the distribution and see that there aren't returns in the files? Maybe if I send everything as a tar attatchment things will work better.
* Corrected prototypes for all termios console write driver entries toJoel Sherrill1997-12-2210-14/+18
| | | | properly reflect the const on the buffer pointer being passed in.
* Now generating this file with autoconf to avoid having to embed soJoel Sherrill1997-12-222-0/+442
| | | | much target specific information in the script.
* Changed invocation of size_rtems to match new autoconf'ed version.Joel Sherrill1997-12-221-1/+1
|
* Changed from .align to .p2align to avoid differences in meaning ofJoel Sherrill1997-12-221-6/+6
| | | | | .align between i386-rtems (real number on .align) and i386-go32-rtems (power of 2).