summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/mips/p4000/startup/bspstart.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2006-03-16Remove (abandoned).Ralf Corsepius1-117/+0
2004-04-21Remove stray white spaces.Ralf Corsepius1-4/+4
2004-03-312004-03-31 Ralf Corsepius <ralf_corsepius@rtems.org>Ralf Corsepius1-4/+4
* times, include/bsp.h, startup/bspstart.c: Convert to using c99 fixed size types.
2003-09-042003-09-04 Joel Sherrill <joel@OARcorp.com>Joel Sherrill1-1/+1
* console/console.c, include/bsp.h, include/coverhd.h, startup/bspclean.c, startup/bspstart.c, startup/setvec.c: URL for license changed.
2000-11-012000-11-01 Joel Sherrill <joel@OARcorp.com>Joel Sherrill1-4/+2
* startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h, and libcsupport.h moved from libc to lib/include/rtems and now must be referenced as <rtems/XXX.h>. Header file order was cleaned up while doing this.
2000-06-12Merged from 4.5.0-beta3aJoel Sherrill1-1/+1
1999-11-17Updated copyright notice.Joel Sherrill1-2/+1
1999-11-04The files in libcpu should not be directly dependent on any BSP. InJoel Sherrill1-0/+1
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.
1998-04-15Numerous changes which in total greatly reduced the amount of sourceJoel Sherrill1-32/+2
code in each BSP's bspstart.c. These changes were: + confdefs.h now knows libio's semaphore requirements + shared/main.c now copies Configuration to BSP_Configuration + shared/main.c fills in the Cpu_table with default values This removed the need for rtems_libio_config() and the constant BSP_LIBIO_MAX_FDS in every BSP. Plus now the maximum number of open files can now be set on the gcc command line.
1998-04-15Transitioned to shared bsp_libc_init() and cleaned up comments.Joel Sherrill1-55/+23
1998-04-15Per suggestion from Eric Norum, went from one initial extension setJoel Sherrill1-13/+0
to multiple. This lets the stack check extension be installed at system initialization time and avoids the BSP having to even know about its existence.
1998-04-14Stack checker extension now accounted for in confdefs.hJoel Sherrill1-8/+0
1998-04-14Now accounts for region used by RTEMS malloc and extension usedJoel Sherrill1-22/+0
by newlib.
1998-03-30Moved bsp_postdriver_hook() to a shared file and made it a commonJoel Sherrill1-28/+2
component.
1998-03-21Switch to using a shared main() for all of the embedded BSPsJoel Sherrill1-19/+1
based on the GNU tools. This usually involved correcting the type of bsp_start(), bsp_cleanup(), adjusting the start code to call the right start routine (the shared boot_card()), and then removing code from bsp_start() which was performed in the new boot_card()/main() path.
1998-02-17updated copyright to 1998Joel Sherrill1-1/+1
1997-10-08Fixed typo in the pointer to the license terms.Joel Sherrill1-2/+2
1997-07-09Repository damaged -- file re-addedJoel Sherrill1-2/+15
1997-04-22headers updated to reflect new style copyright notice as partJoel Sherrill1-5/+5
of switching to the modified GNU GPL.
1997-01-29All RTEMS system call implementation renamed to be __rtems_*.Joel Sherrill1-4/+4
1996-05-28added initial posix configuration supportJoel Sherrill1-1/+1
1996-02-21Dispersal of internal thread handler resulted in the SYSI task beingJoel Sherrill1-1/+1
only required in a multiprocessor system. It was replace by the MPCI Receive Server. As a result, the CPU Table field for extra stack for the SYSI task was changed to be extra stack for the MPCI Receive Server.
1995-10-30SPARC port passes all testsJoel Sherrill1-4/+7
1995-09-19Minor bug fixes to get all targets compilable and running. TheJoel Sherrill1-5/+31
single biggest changes were the expansion of the workspace size macro to include other types of objects and the increase in the minimum stack size for most CPUs.
1995-09-11The word "RTEMS" almost completely removed from the core.Joel Sherrill1-4/+66
Configuration Table Template file added and all tests modified to use this. All gvar.h and conftbl.h files removed from test directories. Configuration parameter maximum_devices added. Core semaphore and mutex handlers added and RTEMS API Semaphore Manager updated to reflect this. Initialization sequence changed to invoke API specific initialization routines. Initialization tasks table now owned by RTEMS Tasks Manager. Added user extension for post-switch. Utilized user extensions to implement API specific functionality like signal dispatching. Added extensions to the System Initialization Thread so that an API can register a function to be invoked while the system is being initialized. These are largely equivalent to the pre-driver and post-driver hooks. Added the Modules file oar-go32_p5, modified oar-go32, and modified the file make/custom/go32.cfg to look at an environment varable which determines what CPU model is being used. All BSPs updated to reflect named devices and clock driver's IOCTL used by the Shared Memory Driver. Also merged clock isr into main file and removed ckisr.c where possible. Updated spsize to reflect new and moved variables. Makefiles for the executive source and include files updated to show break down of files into Core, RTEMS API, and Neither. Header and inline files installed into subdirectory based on whether logically in the Core or a part of the RTEMS API.