summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Moved start code from lib/start to libbsp.Joel Sherrill1999-11-1614-7/+462
|
* Moved start code from lib/start to libbsp.Joel Sherrill1999-11-165-24/+22
|
* Minor changes since new Makefile.Joel Sherrill1999-11-161-4/+5
|
* Added start subdirectory.Joel Sherrill1999-11-161-1/+1
|
* This patch adds the basic framework for the ITRON 3.0 API implementationJoel Sherrill1999-11-091-14/+2
| | | | for RTEMS.
* Removed.Joel Sherrill1999-11-095-298/+0
|
* Now using libchip instead of local precursor to libchip. Untested.Joel Sherrill1999-11-0910-2274/+86
|
* Patch from Eric Valette <valette@crf.canon.fr> so this will buildJoel Sherrill1999-11-056-444/+80
| | | | independently of a BSP.
* The files in libcpu should not be directly dependent on any BSP. InJoel Sherrill1999-11-0411-8/+607
| | | | | | | | | | | particular, using bsp.h, or getting information from the BSP which should properly be obtained from RTEMS is forbidden. This is necessary to strengthen the division between the BSP independent parts of RTEMS and the BSPs themselves. This started after comments and analysis by Ralf Corsepius <corsepiu@faw.uni-ulm.de>. The changes primarily eliminated the need to include bsp.h and peeking at BSP_Configuration. The use of Cpu_table in each BSP needs to be eliminated.
* Typo fixed by Ralf Corsepius <corsepiu@faw.uni-ulm.de>.Joel Sherrill1999-11-031-1/+1
|
* Split console_reserve_resources into its own file to reduce dependencies.Joel Sherrill1999-11-023-10/+30
| | | | Still need to move debug io routines out.
* Removed all references to shared memory driver as it is not supportedJoel Sherrill1999-11-011-5/+0
| | | | yet on the mvme2307.
* Removed shmsupp directory as it is not really implemented.Joel Sherrill1999-11-011-6/+1
|
* MVME2307 does not really include MP support.Joel Sherrill1999-11-015-311/+0
|
* Patch rtems-rc-19991011-3.diff from Ralf Corsepius.Joel Sherrill1999-10-282-2/+33
|
* Notes on what to do when merging a BSP.Joel Sherrill1999-10-281-0/+73
|
* Patch from Aleksey (Quality Quorum <qqi@world.std.com>) toJoel Sherrill1999-10-272-19/+36
| | | | | | increase ease of application configuration of the pc386 BSP. This patch allows switching the printk console to a serial port and overriding bsp_start by making it a weak alias.
* Added $(EXEEXT) in attempt to help Cygwin install process.Joel Sherrill1999-10-271-2/+2
|
* Last cleanup to attempt to link.Joel Sherrill1999-10-272-1/+3
|
* rxgen960 now compiles -- may not link.Joel Sherrill1999-10-2711-42/+32
|
* Added CVS Ids and a basic header. More header cleanup needed.Joel Sherrill1999-10-2742-9/+174
|
* Removed systbl.S save_systbl.c. They were unnecessary.Joel Sherrill1999-10-273-523/+2
|
* Removed sctns.S. This file was obviously the output of the compiler.Joel Sherrill1999-10-272-336/+1
|
* Replaced Makefile.in's with modified copies of cvme961 to getJoel Sherrill1999-10-279-152/+242
| | | | autoconf/automake changes.
* Moved timerisr.s to timerisr.S per GNU conventions.Joel Sherrill1999-10-271-0/+0
|
* Moved systbl.s to systbl.S per GNU conventions.Joel Sherrill1999-10-271-0/+0
|
* Moved sctns.s to sctns.S per GNU conventions.Joel Sherrill1999-10-271-0/+0
|
* Moved rxgen_romld.s to rxgen_romld.S per GNU conventions.Joel Sherrill1999-10-271-0/+0
|
* Moved ihandler.s to ihandler.S per GNU conventions.Joel Sherrill1999-10-271-0/+0
|
* Moved asmstub.s to asmstub.S per GNU conventions.Joel Sherrill1999-10-271-0/+0
|
* Moved asmfault.s to asmfault.S per GNU conventions.Joel Sherrill1999-10-271-0/+0
|
* The rxgen960 BSP and i960 RPM support was submitted by Mark BronsonJoel Sherrill1999-10-2771-0/+6584
| | | | <mark@ramix.com> of RAMIX.
* Split console_reserve_resources to separate file to reduceJoel Sherrill1999-10-263-7/+42
| | | | code size.
* Patch from Emmanuel Raguet <raguet@crf.canon.fr> to fix a small bug whereJoel Sherrill1999-10-261-1/+1
| | | | the receive buffer size was 16 bytes too small.
* Modifications from Erik Ivanenko <erik.ivanenko@utoronto.ca> to addJoel Sherrill1999-10-262-5/+17
| | | | | proper Multiboot signature to pc386 BSP. This enables Grub to recognize the image.
* Patch from Erik Ivanenko <erik.ivanenko@utoronto.ca> to fix someJoel Sherrill1999-10-261-28/+68
| | | | reported bugs in the start code.
* tch from Eric Valette <valette@crf.canon.fr> and Emmanuel RaguetJoel Sherrill1999-10-252-72/+72
| | | | | <raguet@crf.canon.fr> to fix bugs and make the mcp750 boot RTEMS running the GoAhead web server.
* Modified to produce correct output with new version of sis.Joel Sherrill1999-10-251-1/+6
|
* Now compiles for coff and elf.Joel Sherrill1999-10-111-65/+185
|
* Removed aclocal.m4 generated from aclocal macrosJoel Sherrill1999-10-068-2910/+0
|
* Removed configure generated from configure.inJoel Sherrill1999-10-068-13321/+0
|
* Modified to avoid conflicts on definitions of malloc. newlib 1.8.2Joel Sherrill1999-10-061-1/+1
| | | | | | | | now prototypes the malloc family in stdlib.h. This causes conflicts with the way the network stack overrides the definitions of malloc. As best I (being Joel) can tell, commenting stdlib.h out keeps the files compiling and referencing the desired malloc/free but results in more warnings.
* Modified to explicitly list all files as part of C_PIECES.Joel Sherrill1999-10-061-1/+2
|
* Added sections as required by C++ and ELF.Joel Sherrill1999-10-064-3/+14
|
* Added more sections and made minor modifications to let the linkcmdsJoel Sherrill1999-10-068-29/+54
| | | | | work with m68k-elf on late model versions of binutils (990901+) without overlapping or missing section errors.
* Added comment with CVS Id.Joel Sherrill1999-10-051-0/+4
|
* Changed bra.s to bra.l to remove error with new version of binutils.Joel Sherrill1999-10-052-4/+4
|
* Changed bra.s to bra.l to correct compilation error triggered by newJoel Sherrill1999-10-052-2/+2
| | | | version of binutils.
* Corrected so sections did not overlap with new version of binutils.Joel Sherrill1999-10-051-0/+6
|
* Corrected comment.Joel Sherrill1999-10-052-2/+2
|