Commit Graph

4150 Commits

Author SHA1 Message Date
Joel Sherrill
310a2ec478 Added .cvsignore. 2000-06-13 21:45:42 +00:00
Joel Sherrill
f94441ee91 Added .cvsignore files. 2000-06-13 21:45:04 +00:00
Joel Sherrill
d2803ea634 Accounted for 1 task used. 2000-06-13 21:44:57 +00:00
Joel Sherrill
c30f5e88ce Removed unused directories from Makefile.am and warnings
from cvs by adding .cvsignore files.
2000-06-13 21:44:09 +00:00
Joel Sherrill
80ad143b73 Temporary hack to compile. Need to probably address definition
of all FIO constants and conflict with libnetworking code.
2000-06-13 21:42:55 +00:00
Joel Sherrill
2adcb4dda6 Temporary hack to compile. 2000-06-13 21:41:45 +00:00
Joel Sherrill
3ab61f0a35 Patch from John Cotton <john.cotton@nrc.ca>, Charles-Antoine Gauthier
<charles.gauthier@iit.nrc.ca>, and Darlene A. Stewart
<Darlene.Stewart@nrc.ca> to add support for a number of very
significant things:

  + BSPs for many variations on the Motorola MBX8xx board series
  + Cache Manager including initial support for m68040
    and PowerPC
  + Rework of mpc8xx libcpu code so all mpc8xx CPUs now use
    same code base.
  + Rework of eth_comm BSP to utiltize above.

John reports this works on the 821 and 860.
2000-06-12 21:34:51 +00:00
Joel Sherrill
edc61d488b Fixed so hppa1.1 compiles with only problems in simhppa BSP. 2000-06-12 20:27:50 +00:00
Joel Sherrill
41ab696625 Patch from John Cotton <john.cotton@nrc.ca>, Charles-Antoine Gauthier
<charles.gauthier@iit.nrc.ca>, and Darlene A. Stewart
<Darlene.Stewart@nrc.ca> to add support for a number of very
significant things:

  + BSPs for many variations on the Motorola MBX8xx board series
  + Cache Manager including initial support for m68040
    and PowerPC
  + Rework of mpc8xx libcpu code so all mpc8xx CPUs now use
    same code base.
  + Rework of eth_comm BSP to utiltize above.

John reports this works on the 821 and 860
2000-06-12 20:06:59 +00:00
Joel Sherrill
8ef38186fa Patch from John Cotton <john.cotton@nrc.ca>, Charles-Antoine Gauthier
<charles.gauthier@iit.nrc.ca>, and Darlene A. Stewart
<Darlene.Stewart@nrc.ca> to add support for a number of very
significant things:

  + BSPs for many variations on the Motorola MBX8xx board series
  + Cache Manager including initial support for m68040
    and PowerPC
  + Rework of mpc8xx libcpu code so all mpc8xx CPUs now use
    same code base.
  + Rework of eth_comm BSP to utiltize above.

John reports this works on the 821 and 860
2000-06-12 19:57:02 +00:00
Joel Sherrill
f481c39c01 Ensure that when -msoft-float is specified for multilib builds, that
something indicates this.  Eventually this needs to be merged into
gcc.
2000-06-12 18:46:54 +00:00
Joel Sherrill
ce5b291fa4 Works on Solaris and Linux. 2000-06-12 18:45:54 +00:00
Joel Sherrill
e275cabc4f Patch rtemsdoc-4.5.0-rc-12-cvs.diff from Ralf Corsepius
<corsepiu@faw.uni-ulm.de> that makes the following changes:

  * Don't use a temporary file for ch19.texi anymore
  * pass all files to be handled by summarize as commandline arguments
  * Remove a dangling empty first line in posix1003_1.texi (texi2html
    (!) expects \input texinfo on the first line)
2000-06-12 17:09:16 +00:00
Joel Sherrill
91a49b38b8 Patch from Ralf Corsepius <corsepiu@faw.uni-ulm.de> to correct problems
on RELEASE versus VERSION.
2000-06-12 16:46:36 +00:00
Joel Sherrill
f535868ae4 Added out of date comment. 2000-06-12 16:45:31 +00:00
Joel Sherrill
12b64d7bff Removed references to printk as part of moving it to a more shareable
location in libc.
2000-06-12 16:44:11 +00:00
Joel Sherrill
1bce637587 Added printk as a generic, shared routine. 2000-06-12 16:37:04 +00:00
Joel Sherrill
1f5cb74eb0 New file. This is a simple termios console driver which is sufficient
to do polled IO on a single port with VERY little support code.
2000-06-12 16:36:25 +00:00
Joel Sherrill
68c498f477 Added i960sim BSP which (ignoring the 3 instructions not supported
by gdb 5.0's i960 simulator) is enough to run hello world.
2000-06-12 16:34:46 +00:00
Joel Sherrill
edeed26a86 Merge lossage. Apparently the DOS/UNIX CRLF issue got lost. 2000-06-12 15:39:38 +00:00
Joel Sherrill
df49c60c96 Merged from 4.5.0-beta3a 2000-06-12 15:00:15 +00:00
Joel Sherrill
0ab6547431 Purged as many egcs references as possible. 2000-06-10 20:33:47 +00:00
Joel Sherrill
110445cba5 Patch rtems-rc-4.5.0-21.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>
which splits the current monolithic specs files into a sequence of
subparts.  These can be concatenated togather to make a the whole .spec
file.  This cleans up the maintenance problem of having "all languages"
and a "C/C++ only" gccnewlib spec files.  Plus it should make it easier
to produce variants like the gdb-m68k-bdm which require special hackery. :)
Ralf's comments:

  It addresses the way *.spec.in get composed inside of the source
  tree.

  Changes:
    * Each spec.in is broken into several files (*.add), one *.add file
      per sub-package.
    * Each Makefile.am composes spec.ins from the *.add files
    * Removal of redundant automake support files.
    * Default value for BuildRoot changed to /tmp/<spec-file-name>
    * %clean stage added to *specs

  Advantages (IMHO).
    * The *.add files are easier to adminstrate and more flexible in
      comparison to the former *.specs.ins.
    * gccnewlib_c_only.spec.in now is composed from the same sources as
      gccnewlib.spec.in (less errors)
    * If using the default BuildRoot --clean now deletes all files that
      were generated while building.

  Notes:
    * rtems.spec.in has not yet been adapted to the scheme used for the
      other *spec.ins
    * Except for cosmetical changes the internals of the  *.spec files
      should not have changed.

  To Apply:
    cvs rm -f scripts/binutils/binutils.spec.in
    cvs rm -f scripts/gccnewlib/gccnewlib.spec.in
    cvs rm -f scripts/gccnewlib/gccnewlib_c_only.spec.in
    cvs rm -f scripts/gdb/gdb.spec.in
    cvs rm -f scripts/config.sub
    cvs rm -f scripts/config.guess
    cvs rm -f scripts/install-sh
    cvs rm -f scripts/mkinstalldirs
    cvs rm -f scripts/missing

    patch -p1 < rtems-rc-4.5.0-21.diff

    cvs add scripts/*/*.add
    cvs add scripts/*/README
2000-06-10 19:41:09 +00:00
Joel Sherrill
6810959cf3 Removed old bmenu version. 2000-06-01 21:54:21 +00:00
Joel Sherrill
f8f1ec7c60 Removed since unused. 2000-06-01 21:54:05 +00:00
Joel Sherrill
e189f6b71f Patch from Ralf Corsepius <corsepiu@faw.uni-ulm.de> to:
This patch changes the installation directory of the supplements to
  supplements/<cpu>.

  This allows browsing the html files inside of the source tree,
  because after having applied this patch, the structure of the html
  installation directory hierarchy is the same as the directory
  structure of the source tree.
2000-06-01 21:04:02 +00:00
Joel Sherrill
b777c2a135 Readding. 2000-06-01 17:25:50 +00:00
Joel Sherrill
fc76a6aa19 Patch rtemsdoc-4.5.0-rc-8.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>.
Ralf's comments follow:

  Changes:
    * Enhanced versioning:
      - Addition of automake's version.texi support
      - Replacement of rtemsdoc's former versioning support by automake's
        versioning support (Abandoning RTEMS-UPDATE-* etc.)
      - Abandoning setup.texi.in
      - Add EDITION to each documents Makefile.am
      - version.texi support in project.am
      - Addition of maintainer mode (currently only used to prevent incorrectly
        updating timestamps when users touch automake's version.texi timestamp
        files (stamp-vti)).

    * Fixing info dir support
      - Use texinfo's @dircategory and @direntry instead of infos *-DIR-ENTRY
      - $(infodir)/dir is now correctly set up

    * Avoid using temporary files
      - Pipe texts through REPLACE2 into BMENU2 instead of using temporary files.
      - Abandon using bmenu in favor of bmenu2 (bmenu could be removed now)

    * Prepare Makefile.ams for building in a separate buildtree
      - prefix files with $(srcdir) in Makefile.am for files which must be
        generated inside of the source tree

  Notes:
    * rtemsdoc can not yet be build in a separate source-tree, but we
      are very close to it.
    * You as the maintainer of this package now should always use
      --enable-maintainer-mode to configure rtemsdoc.
2000-06-01 15:29:01 +00:00
Joel Sherrill
c849746bad Patch from Ralf Corsepius <corsepiu@faw.uni-ulm.de>:
Adds a -I <path> option to texi2www. This option is supposed to
  compatible to the option of the same name in makeinfo, texi2dvi etc.
  [This patch actually is kind of a hack, but it works :]
2000-05-31 13:25:34 +00:00
Joel Sherrill
f65b3668c1 Typo caught by Ralf Corsepius <corsepiu@faw.uni-ulm.de>. 2000-05-31 13:24:52 +00:00
Joel Sherrill
deeecc19e6 Corrected instructions. 2000-05-28 19:40:16 +00:00
Joel Sherrill
91c2b82e20 Corrected typo. 2000-05-28 19:38:56 +00:00
Joel Sherrill
2038a4444c Added information on Application Makefiles. 2000-05-28 19:37:24 +00:00
Joel Sherrill
17324146e8 Added information on how to do this step if you installed tool
binaries rather than unpacking everything.
2000-05-28 19:37:23 +00:00
Joel Sherrill
874f9ed270 Added start-? 2000-05-28 19:37:22 +00:00
Joel Sherrill
8f165050c5 Added build45.texi. 2000-05-28 19:36:46 +00:00
Joel Sherrill
1750364c21 Reformatted ASCII slightly to avoid line wrap. 2000-05-28 19:36:00 +00:00
Joel Sherrill
2f957f19bd Merged Ralf Corsepius' 4.5 Build Issues FAQ into this. 2000-05-28 19:33:59 +00:00
Joel Sherrill
31bfb92fe7 Patch obtain from bug-texinfo mailing list from Trevin Beattie
<trevin@eyring.com> to make hyperlinks take you to the top of
a page rather than the bottom.
2000-05-28 18:31:01 +00:00
Joel Sherrill
3dacf353f4 Change linkcolor to Blue from Cyan per patch from Trevin Beattie
<trevin@eyring.com> obtained from bug-texinfo mailing list.
2000-05-28 18:27:31 +00:00
Joel Sherrill
9fa28fbc92 Bug fix from Trevin Beattie <trevin@eyring.com> picked up from
the bug-texinfo mailing list:

  There is also a bug in the PDF outline: Any outline item containing an
  underscore shows up as a bunch of texinfo codes ("@unhbox @kern.06em
  @vbox{...").  This bug was remedied by the following addition to
  \pdfmakeoutlines.
2000-05-28 18:26:07 +00:00
Joel Sherrill
81ecc05b4c Updated to reflect lower confdefs.h values and new control
over number of termios ports.
2000-05-28 18:21:16 +00:00
Joel Sherrill
f50c11bdd5 These files were added or deleted on the 4.5 branch as part of
Ralf's patch to split the .spec files into multiple ".add" parts.
2000-05-28 18:12:21 +00:00
Joel Sherrill
778239e9bb Added on 4.5 branch 2000-05-28 18:03:55 +00:00
Joel Sherrill
19e87bbb06 Minor corrections from Nick Simon <Nick.SIMON@syntegra.bt.co.uk>.
- char * nameserver[3] appears twice, second occurrence should be ntpserver

 - in sect 3.3.3 ...ifcontig should be ifconfig
2000-05-25 13:22:57 +00:00
Joel Sherrill
fea048f2cd New file. 2000-05-24 16:51:23 +00:00
Joel Sherrill
dcb4a44c03 Added on branch. 2000-05-21 15:20:44 +00:00
Joel Sherrill
b5e8d098cd Corrected paths. 2000-05-17 19:38:53 +00:00
Joel Sherrill
d0a4cad98a Added information on the location where the tools are installed. 2000-05-11 19:05:00 +00:00
Joel Sherrill
e3ec4cc3f7 Added "@" in front of "{" and "}" to make texinfo happy. 2000-05-10 15:03:01 +00:00