Commit Graph

1294 Commits

Author SHA1 Message Date
Joel Sherrill
94a6c986f7 new directory structure for hwapi 1998-02-11 14:58:23 +00:00
Joel Sherrill
7175b59b43 hwapi added 1998-02-11 14:50:49 +00:00
Joel Sherrill
9aceddaf7c updates 1998-02-11 14:50:31 +00:00
Joel Sherrill
84b0f7c99d Robin Kirkham reported that the install point was incorrect in this file. 1998-02-10 16:22:57 +00:00
Joel Sherrill
b68e057ebe Fixed to correctly operate on target variants like debug and profile. 1998-02-07 19:56:00 +00:00
Joel Sherrill
e496c1f1ed Should not install build-tools using target variant options. 1998-02-07 19:43:38 +00:00
Joel Sherrill
1e52499574 Updated copyrights 1998-02-06 14:14:30 +00:00
Joel Sherrill
5599d6e9e6 Added @table/@end table capability along with the avdas.d test case where
this capability was first used.
1998-02-06 13:48:44 +00:00
Joel Sherrill
f02ffcaa6a 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.
1998-02-06 13:47:09 +00:00
Joel Sherrill
02d19d8123 Added code to more correctly process abstract types (handle, range, etc). 1998-02-05 20:05:26 +00:00
Joel Sherrill
b37137b3ea Removed special ix86-rtems stanza. 1998-02-04 15:56:12 +00:00
Joel Sherrill
7a524954fe 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.
1998-02-04 15:54:31 +00:00
Joel Sherrill
e44e678b45 Cleaned up the definition of CONSOLE_USE_POLLED and CONSOLE_USE_INTERRUPTS. 1998-02-04 15:47:44 +00:00
Joel Sherrill
0312defbeb Patch from Ralf Corsepius to reduce the amount of memory consumed by
the workspace by default.
1998-02-04 15:35:26 +00:00
Joel Sherrill
6c77bbab39 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".
1998-02-04 14:54:27 +00:00
Joel Sherrill
77ea27fc16 Ralf Corsepius noticed that generally was spelled incorrectly. 1998-02-04 14:47:23 +00:00
Joel Sherrill
f00d7add72 Added call to libc_wrapup() in _exit. This fixes a problem where
the atexit routines on the global reentrancy structure were not
invoked.  But it does not seem like a 100% correct solution.
1998-02-03 18:30:05 +00:00
Joel Sherrill
52dd75da50 Corrected spelling error so interrupt driven console would work. 1998-02-03 18:29:05 +00:00
Joel Sherrill
594a413fae Fixed so installed Makefile structure work. 1998-02-02 16:55:57 +00:00
Joel Sherrill
5c3511e5cf Big patch form Ralf Corsepius described in this email:
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
1998-01-30 21:49:51 +00:00
Joel Sherrill
421dfef68e Corrected Linux port for glibc2 1998-01-30 20:59:22 +00:00
Joel Sherrill
243ce5d741 correction 1998-01-30 20:57:53 +00:00
Joel Sherrill
bb9084dba9 configure.in 1998-01-30 20:57:43 +00:00
Joel Sherrill
b4767da586 Modified output of @Example style in MsWord output routine so it would
be one paragraph with manual line breaks rather than multiple paragraphs..
1998-01-30 19:17:25 +00:00
Joel Sherrill
3a85d03d4e Change to remove warning on glibc2 systems per Ralf Corsepius's
suggestion.
1998-01-28 15:39:30 +00:00
Joel Sherrill
16fc19518a Fix from Eric Norum:
There's an explicit invocation of `make' in c/Makefile.in.  This
  breaks for those of us with different `gmake' and `make' programs.
1998-01-27 20:24:52 +00:00
Joel Sherrill
4da42c64d4 Removed some stanzas per Ralf Corsepius:
> 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).
1998-01-27 14:30:01 +00:00
Joel Sherrill
13331814f7 not submitted 1998-01-27 14:14:20 +00:00
Joel Sherrill
35eb035a15 Fixed missing carriage return at the bottom of the file reported
by Ralf Corsepius
1998-01-27 14:02:21 +00:00
Joel Sherrill
2ece449623 new file 1998-01-26 19:53:28 +00:00
Joel Sherrill
2936b425fd Solaris port updates from Chris Johns 1998-01-23 17:45:05 +00:00
Joel Sherrill
48971e5ed0 Cleaned up a bit. 1998-01-23 17:06:36 +00:00
Joel Sherrill
bd620fe64a Added information about multilib problems. 1998-01-23 17:06:17 +00:00
Joel Sherrill
173c59c841 minor updates .. mostly version 1998-01-23 16:57:29 +00:00
Joel Sherrill
1d01241029 Fixed some "NodeNameIncludesChapterName" problems which were uncovered
doing the HWAPI manual.
1998-01-23 16:56:40 +00:00
Joel Sherrill
4a7c0451ad Reverted change ... 1998-01-22 22:46:55 +00:00
Joel Sherrill
fdff6bf20c Added some GRUB information from Phil Wilshire. 1998-01-22 17:50:27 +00:00
Joel Sherrill
ba02475531 Corrected/simplified setting of RTEMS_ROOT. 1998-01-22 15:20:43 +00:00
Joel Sherrill
9ad1f135fa Added autoconf support for strerror/sys_errlist per Ralf Corsepius'
direction.  This fixes a problem reported by Steve Evans of Radstone
since he is using glibc2.
1998-01-21 18:28:09 +00:00
Joel Sherrill
d73ed76b03 Changed reference from PROJECT_ROOT to RTEMS_ROOT. 1998-01-21 16:50:45 +00:00
Joel Sherrill
419fdf1248 Corrected prototypes for main per Ralf Corsepius' report of warnings
generated when egcs is used with "-Wall -pedantic".
1998-01-21 16:50:18 +00:00
Joel Sherrill
972dc40ea7 Added Code to dop the output in a format which a custom Visual Basic
Application Cindy has written can transform into a nice Word document.
1998-01-21 15:15:12 +00:00
Joel Sherrill
6ab91d9724 Removed warning per Chris Johns' suggestion. 1998-01-20 20:32:15 +00:00
Joel Sherrill
fbaf52eb26 Removed warning per Chris John's suggestion. 1998-01-20 20:31:21 +00:00
Joel Sherrill
cb5bfe40fd Removed CONFIG_DIR and PROJECT_HOME directories. 1998-01-20 19:41:09 +00:00
Joel Sherrill
6d6f1b34e1 Fixed libhwapi to reflect eeprom to non volatile memory rename. 1998-01-20 19:30:48 +00:00
Joel Sherrill
bffb938799 Removed PROJECT_HOME and CONFIG_DIR variables. 1998-01-20 19:30:30 +00:00
Joel Sherrill
3294650cc3 Added _times_r. 1998-01-19 22:31:23 +00:00
Joel Sherrill
866c465f53 more info from Eric 1998-01-19 22:27:56 +00:00
Joel Sherrill
4dc0fd685b Patch from Eric Norum:
With this in place, it is possible to fdopen a TCP stream socket and
  getc/fprintf/etc. on the STDIO stream!
1998-01-19 22:22:25 +00:00