summaryrefslogtreecommitdiffstats
path: root/doc (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Added Hitachi SHJoel Sherrill1998-03-276-58/+60
|
* Attempting to add variable so that in C all constants start with RTEMS_Joel Sherrill1998-03-279-89/+160
| | | | and all directives start with rtems_.
* Added POSIX 1003.1h and PowerPC supplement to internal manuals.Joel Sherrill1998-03-271-2/+2
|
* New file. Basically m68k version with Hitachi SH comments thrown in.Joel Sherrill1998-03-261-0/+102
|
* The script did not handle public distributions at all.Joel Sherrill1998-03-261-1/+8
|
* Added support for easily building different sets of the manualsJoel Sherrill1998-03-261-7/+27
| | | | for the public, support, partners, and internal use.
* Better handling of local documentation tools and corrected invocationJoel Sherrill1998-03-261-5/+14
| | | | of texi2www to correct path information.
* Updated for SH port and variable insertion of version.Joel Sherrill1998-03-261-1/+2
|
* Added build of tools to build procedure.Joel Sherrill1998-03-261-5/+21
| | | | Automatically insert version information into headers and footers..
* rtems.html renamed index.html since that is what httpd looks forJoel Sherrill1998-03-261-0/+0
| | | | | | automatically in a directory. rtems_full.html is an index.html for the full support documentation set.
* Attempt at separating public, support, partners, and internal.Joel Sherrill1998-03-261-3/+10
|
* Added variables for dates and revision infoJoel Sherrill1998-03-2613-43/+48
|
* Enhanced.Joel Sherrill1998-03-261-2/+5
|
* Installed in partners subdirectoryJoel Sherrill1998-03-261-1/+2
|
* removed @ifinfo around something needed for html structureJoel Sherrill1998-03-261-2/+2
|
* Do not copy headers, use makeJoel Sherrill1998-03-261-2/+1
|
* More appropriate for public consumptionJoel Sherrill1998-03-261-1/+0
|
* Made more appropriate for public consumption.Joel Sherrill1998-03-261-19/+10
|
* renamed to user's guide.Joel Sherrill1998-03-266-30/+46
|
* Added group and example around tree pictures in html.Joel Sherrill1998-03-251-0/+16
|
* Added Constants, Feature Flags, and Macros (included in Functions).Joel Sherrill1998-03-1817-126/+554
| | | | No status information was included.
* First attempt at adding constants and feature flagsJoel Sherrill1998-03-175-10/+324
|
* Completed status pass on functions and data types.Joel Sherrill1998-03-1712-33/+48
|
* Completed first pass at function status.Joel Sherrill1998-03-179-96/+117
| | | | Added most data types without status information.
* Added types, status of functions, cleaned up output of summarize.Joel Sherrill1998-03-169-229/+316
|
* Added function status and data typesJoel Sherrill1998-03-163-21/+54
|
* Cleaned up format and added data types.Joel Sherrill1998-03-161-8/+38
|
* Added Function field.Joel Sherrill1998-03-1615-344/+344
|
* summarize now generates a nicely formatted function status summary.Joel Sherrill1998-03-162-3/+13
|
* Function implmentation status information correct.Joel Sherrill1998-03-161-10/+10
|
* First time summary chapter is included in the document.Joel Sherrill1998-03-163-3/+6
|
* Added blank lines.Joel Sherrill1998-03-142-0/+12
|
* Added summary chapter.Joel Sherrill1998-03-141-2/+11
|
* New file.Joel Sherrill1998-03-141-0/+33
|
* Added functions from POSIX standard.Joel Sherrill1998-03-147-0/+295
|
* Added functions from POSIX standard.Joel Sherrill1998-03-143-2/+116
|
* Added copyright headerJoel Sherrill1998-03-141-0/+8
|
* Added functions from POSIX standard.Joel Sherrill1998-03-147-7/+686
|
* Outline complete and apparently correct.Joel Sherrill1998-03-1116-152/+156
|
* BaselineJoel Sherrill1998-03-1121-0/+754
|
* new test casesJoel Sherrill1998-02-112-0/+92
|
* new directory structure for hwapiJoel Sherrill1998-02-112-2/+2
|
* hwapi addedJoel Sherrill1998-02-111-1/+2
|
* updatesJoel Sherrill1998-02-1117-655/+540
|
* Updated copyrightsJoel Sherrill1998-02-06191-198/+192
|
* Added @table/@end table capability along with the avdas.d test case whereJoel Sherrill1998-02-063-3/+363
| | | | this capability was first used.
* Added code to more correctly process abstract types (handle, range, etc).Joel Sherrill1998-02-052-22/+76
|
* Big patch form Ralf Corsepius described in this email:Joel Sherrill1998-01-301-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* 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..
* minor updates .. mostly versionJoel Sherrill1998-01-2320-106/+110
|