2009-11-23 Joel Sherrill <joel.sherrill@OARcorp.com>

* Makefile.am, startup/bspstart.c:
	Use ../../sparc/shared/bsppretaskinghook.c.
	* console/console.c: Remove sis comment.
This commit is contained in:
Joel Sherrill
2009-11-23 20:09:22 +00:00
parent f1860440e0
commit d4df43d226
4 changed files with 7 additions and 23 deletions

View File

@@ -1,3 +1,9 @@
2009-11-23 Joel Sherrill <joel.sherrill@OARcorp.com>
* Makefile.am, startup/bspstart.c:
Use ../../sparc/shared/bsppretaskinghook.c.
* console/console.c: Remove sis comment.
2009-10-30 Ralf Corsépius <ralf.corsepius@rtems.org>
* amba/amba.c: Re-add tmp.

View File

@@ -39,6 +39,7 @@ libbsp_a_SOURCES =
# startup
libbsp_a_SOURCES += ../../shared/bspclean.c ../../shared/bsplibc.c \
../../shared/bsppost.c ../../shared/bootcard.c startup/bspstart.c \
../../sparc/shared/bsppretaskinghook.c \
../../sparc/shared/bspgetworkarea.c ../../shared/sbrk.c startup/setvec.c \
startup/spurious.c startup/bspidle.S
# gnatsupp

View File

@@ -28,17 +28,6 @@
* Should we use a polled or interrupt drived console?
*
* NOTE: This is defined in the custom/leon.cfg file.
*
* WARNING: In sis 1.6, it did not appear that the UART interrupts
* worked in a desirable fashion. Immediately upon writing
* a character into the TX buffer, an interrupt was generated.
* This did not allow enough time for the program to put more
* characters in the buffer. So every character resulted in
* "priming" the transmitter. This effectively results in
* in a polled console with a useless interrupt per character
* on output. It is reasonable to assume that input does not
* share this problem although it was not investigated.
*
*/
/*

View File

@@ -46,18 +46,6 @@ static inline int set_snooping(void)
return (tmp >> 27) & 1;
}
/*
* bsp_pretasking_hook
*
* BSP pretasking hook. Called just before drivers are initialized.
* Used to setup libc and install any BSP extensions .
*/
void bsp_pretasking_hook(void)
{
bsp_spurious_initialize();
}
/*
* bsp_start
*