summaryrefslogtreecommitdiffstats
path: root/c/src/lib (unfollow)
Commit message (Collapse)AuthorFilesLines
1999-11-11Updated.Joel Sherrill1-4/+15
1999-11-09This patch adds the basic framework for the ITRON 3.0 API implementationJoel Sherrill2-14/+3
for RTEMS.
1999-11-09Removed.Joel Sherrill5-298/+0
1999-11-09Now using libchip instead of local precursor to libchip. Untested.Joel Sherrill10-2274/+86
1999-11-09Removed reaching "up and over" to install BSP header files.Joel Sherrill3-6/+3
1999-11-09Added imfs_unixstub.c to satisfy linker problems on UNIX port.Joel Sherrill2-1/+73
1999-11-09Added #define to make this file exactly like its siblings in mpc821Joel Sherrill1-1/+2
and mpc860 directories.
1999-11-09Removed "up and over" into libbsp/.../include.Joel Sherrill2-3/+1
1999-11-09Moved include files to hppa1.1 subdirectory and put their sourcesJoel Sherrill6-10/+65
in the include directory.
1999-11-09Removed runway directory and moved contents to include.Joel Sherrill2-77/+0
1999-11-05Correctly set and called handlers table for the link.Jennifer Averett1-1/+3
1999-11-05Fixed commentJennifer Averett1-1/+1
1999-11-05Moved imfs set handlers prototype to the imfs.h file.Jennifer Averett2-6/+4
1999-11-05New file. Added as part of adding a formal API to this object.Joel Sherrill1-0/+54
1999-11-05New file.Joel Sherrill1-0/+38
1999-11-05Unmount was failing as a side-effect of splitting the rmnod handlerJoel Sherrill8-65/+105
and not handling every case properly.
1999-11-05Following comments from Eric Norum <eric@cls.usask.ca>, a fairlyJoel Sherrill4-287/+262
substantial upgrade of newlibc.c occurred. Now the user extension data area is used rather than notepads and as many routines as possible were split into other files further reducing the minimum footprint of an RTEMS executable.
1999-11-05Patch from Eric Valette <valette@crf.canon.fr> so this will buildJoel Sherrill9-463/+94
independently of a BSP.
1999-11-05This is another pass at making sure that nothing outside the BSPJoel Sherrill14-48/+29
unnecessarily uses any variables defined by the BSP. On this sweep, use of BSP_Configuration and Cpu_table was eliminated. A significant part of this modification was the addition of macros to access fields in the RTEMS configuration structures. 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>.
1999-11-04The files in libcpu should not be directly dependent on any BSP. InJoel Sherrill54-110/+672
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.
1999-11-03Typo fixed by Ralf Corsepius <corsepiu@faw.uni-ulm.de>.Joel Sherrill1-1/+1
1999-11-02The object memfile.o was being included in the miniIMFS even though itJoel Sherrill11-129/+228
should not have been. This required that IMFS_rmnod be split into three separate (per file type) routines to avoid dependencies. In the end, a miniIMFS application is 6K smaller than one using the full IMFS.
1999-11-02Fixed F_SETFL to properly convert between internalJoel Sherrill1-2/+3
libio flags and external fcntl.h style flags.
1999-11-02Added support for configuring base filesystem. First attempt atJoel Sherrill1-17/+41
a full mount table at initialization. This is the wrong place to mount filesystems 2-n since no device drivers are initialized yet.
1999-11-02Install imfs.h so base filesystem can be configured or IMFS mountedJoel Sherrill1-1/+1
by an application.
1999-11-02Check for NULL being passed in.Joel Sherrill4-2/+17
1999-11-02Fixed typo where memfile_handlers set twice and directory_handlersJoel Sherrill1-3/+3
was not set.
1999-11-02Properly initialize location variable.Joel Sherrill1-0/+8
1999-11-02Split console_reserve_resources into its own file to reduce dependencies.Joel Sherrill3-10/+30
Still need to move debug io routines out.
1999-11-01Corrected wildcard to pickup CPU model dependent library pieces.Joel Sherrill1-4/+2
1999-11-01Removed all references to shared memory driver as it is not supportedJoel Sherrill1-5/+0
yet on the mvme2307.
1999-11-01Removed shmsupp directory as it is not really implemented.Joel Sherrill1-6/+1
1999-11-01MVME2307 does not really include MP support.Joel Sherrill5-311/+0
1999-10-29Moved the rmnod callback from the operations table to the handler table.Jennifer Averett7-16/+26
1999-10-29Joel added a table of mount entry requests to be processed duringJennifer Averett2-0/+28
initialization.
1999-10-28Patch rtems-rc-19991011-3.diff from Ralf Corsepius.Joel Sherrill4-4/+35
1999-10-28Notes on what to do when merging a BSP.Joel Sherrill1-0/+73
1999-10-27Patch from Aleksey (Quality Quorum <qqi@world.std.com>) toJoel Sherrill2-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.
1999-10-27Added $(EXEEXT) in attempt to help Cygwin install process.Joel Sherrill1-2/+2
1999-10-27Last cleanup to attempt to link.Joel Sherrill2-1/+3
1999-10-27rxgen960 now compiles -- may not link.Joel Sherrill11-42/+32
1999-10-27Added CVS Ids and a basic header. More header cleanup needed.Joel Sherrill42-9/+174
1999-10-27Removed systbl.S save_systbl.c. They were unnecessary.Joel Sherrill3-523/+2
1999-10-27Removed sctns.S. This file was obviously the output of the compiler.Joel Sherrill2-336/+1
1999-10-27Replaced Makefile.in's with modified copies of cvme961 to getJoel Sherrill9-152/+242
autoconf/automake changes.
1999-10-27Moved timerisr.s to timerisr.S per GNU conventions.Joel Sherrill1-0/+0
1999-10-27Moved systbl.s to systbl.S per GNU conventions.Joel Sherrill1-0/+0
1999-10-27Moved sctns.s to sctns.S per GNU conventions.Joel Sherrill1-0/+0
1999-10-27Moved rxgen_romld.s to rxgen_romld.S per GNU conventions.Joel Sherrill1-0/+0
1999-10-27Moved ihandler.s to ihandler.S per GNU conventions.Joel Sherrill1-0/+0