summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Corrected resource requirements.Joel Sherrill2000-05-251-0/+1
|
* Removed warning.Joel Sherrill2000-05-253-7/+7
|
* Increased memory reserved for stack requirements.Joel Sherrill2000-05-251-2/+3
|
* Increased resources configured.Joel Sherrill2000-05-251-2/+4
|
* Update from Stephan Wilms <Stephan.Wilms@CWA.de> that adds autodetection.Joel Sherrill2000-05-251-33/+39
| | | | | | | | | | | | | | | What I implemented in this new driver version is, that the driver will first probe for a DEC21140 card and use it if found. If not found it will probe for a DEC21143 card and use that if found. This removes the need for defining/undefining a macro (as was required with my previous version). I tested the driver with my 21143 card using netdemo and it apears to work just fine. Here are some cases that I did not test, mainly because I do not have the required testing hardware: - I did not enhance or test PPC support - I did not test DEC21140 support - I did not use other test software than netdemo
* Patch to remove warnings from Eric Norum <eric@cls.usask.ca>.Joel Sherrill2000-05-254-25/+28
|
* Patch from Nick Simom (Nick.SIMON@syntegra.bt.co.uk) so eth_commJoel Sherrill2000-05-241-1/+3
| | | | can return to start code without faulting.
* Significantly lowered the default memory requirements:Joel Sherrill2000-05-24165-352/+514
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | - CONFIGURE_RTEMS_INIT_TASKS_TABLE was 10 now 0 - CONFIGURE_POSIX_INIT_THREAD_TABLE was 10 now 0 - CONFIGURE_ITRON_INIT_TASK_TABLE was 10 now 0 - CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS was 20 now 3 - added CONFIGURE_NUMBER_OF_TERMIOS_PORTS and defaulted to 1 - added CONFIGURE_TERMIOS_DISABLED defaulted to "enabled" - miniIMFS is now the default Added configuration error checks that: + Ensure > 0 tasks/threads are configured + Ensure at least one inititalization task/thread is defined bsp.h now defines these so BSP specific requirements are accounted for. + CONFIGURE_NUMBER_OF_TERMIOS_PORTS + CONFIGURE_INTERRUPT_STACK_MEMORY console_reserve_resources and rtems_termios_reserve_resources are no longer required and considered obsolete. Calls to rtems_termios_reserve_resources have been eliminated although the routine is still there and the body "if 0'ed". We are very close to having NO reason to modify the configuration tables in the BSP. Be warned that eventually we would like to see the need for BSP_Configuration eliminated!
* Significantly lowered the default memory requirements:Joel Sherrill2000-05-241-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | - CONFIGURE_RTEMS_INIT_TASKS_TABLE was 10 now 0 - CONFIGURE_POSIX_INIT_THREAD_TABDE was 10 now 0 - CONFIGURE_ITRON_INIT_TASK_TABLE was 10 now 0 - CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS was 20 now 3 - added CONFIGURE_NUMBER_OF_TERMIOS_PORTS and defaulted to 1 - added CONFIGURE_TERMIOS_DISABLED defaulted to "enabled" - miniIMFS is now the default Added configuration error checks that: + Ensure > 0 tasks/threads are configured + Ensure at least one inititalization task/thread is defined bsp.h now defines these so BSP specific requirements are accounted for. + CONFIGURE_NUMBER_OF_TERMIOS_PORTS + CONFIGURE_INTERRUPT_STACK_MEMORY console_reserve_resources and rtems_termios_reserve_resources are no longer required and considered obsolete. Calls to rtems_termios_reserve_resources have been eliminated although the routine is still there and the body "if 0'ed". We are very close to having NO reason to modify the configuration tables in the BSP. Be warned that eventually we would like to see the need for BSP_Configuration eliminated!
* Handle mp variants better.Joel Sherrill2000-05-241-3/+3
|
* Make sure debug variant output goes into a different log file.Joel Sherrill2000-05-244-17/+13
|
* Now can bring up an idle initialization task.Joel Sherrill2000-05-241-1/+5
|
* Added screen contents.Joel Sherrill2000-05-242-1/+469
|
* This commit was manufactured by cvs2svn to create branch 'rtems-4-5-branch'.cvs2git2000-05-243-0/+1873
| | | | | | Cherrypick from master 2000-05-24 16:51:23 UTC Joel Sherrill <joel.sherrill@OARcorp.com> 'New file.': c/src/tests/libtests/malloctest/malloctest.scn scripts/config.guess scripts/config.sub
* Increased task stack configured.Joel Sherrill2000-05-241-0/+3
|
* Added malloctest back in to set of tests to run.Joel Sherrill2000-05-241-1/+1
|
* Fixed bug so debug variant of MP tests could be run.Joel Sherrill2000-05-241-2/+3
|
* Updated.Joel Sherrill2000-05-241-2/+5
|
* Initial DEC 21143 support from Stephan Wilms <Stephan.Wilms@CWA.de>.Joel Sherrill2000-05-241-3/+31
| | | | | | | | | | | | Comments follow: This support is (for now) only available for the __i386 target, because that's the only testing platform I have. It should to my best knowledge work in the same way for the "__PPC" target, but someone should test this first before it's put into the code. Thanks go to Andrew Klossner who provided the vital information about the Intel 21143 chip. (FWIW: my network card is a Kingston KNE100TX with 21143PD chip)
* Eliminated printing from switch extension.Joel Sherrill2000-05-244-21/+68
|
* Significantly lowered the default memory requirements:Joel Sherrill2000-05-249-56/+124
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | - CONFIGURE_RTEMS_INIT_TASKS_TABLE was 10 now 0 - CONFIGURE_POSIX_INIT_THREAD_TABLE was 10 now 0 - CONFIGURE_ITRON_INIT_TASK_TABLE was 10 now 0 - CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS was 20 now 3 - added CONFIGURE_NUMBER_OF_TERMIOS_PORTS and defaulted to 1 - added CONFIGURE_TERMIOS_DISABLED defaulted to "enabled" - miniIMFS is now the default Added configuration error checks that: + Ensure > 0 tasks/threads are configured + Ensure at least one inititalization task/thread is defined bsp.h now defines so BSP specific requirements are accounted for: + CONFIGURE_NUMBER_OF_TERMIOS_PORTS + CONFIGURE_INTERRUPT_STACK_MEMORY console_reserve_resources and rtems_termios_reserve_resources are no longer required and considered obsolete. Calls to rtems_termios_reserve_resources have been eliminated although the routine is still there and the body "if 0'ed". We are very close to having NO reason to modify the configuration tables in the BSP. Be warned that eventually we would like to see the need for BSP_Configuration eliminated!
* Added a return to the bottom.Joel Sherrill2000-05-241-0/+1
|
* Removed some warnings.Joel Sherrill2000-05-241-5/+5
|
* Remove NO_CPU reference.Joel Sherrill2000-05-231-2/+2
|
* Patch from Jennifer Averett <jennifer.averett@oarcorp.com> to makeJoel Sherrill2000-05-2313-64/+64
| | | | this C++ safe.
* Added routines addr2ascii.c and ascii2addr.c even though theyJoel Sherrill2000-05-231-8/+9
| | | | | are not reentrant. Eric Norum <eric@cls.usask.ca> at request of John Cotton <john.cotton@nrc.ca>.
* Added code to determine RPM CPU type for the host OS. This isJoel Sherrill2000-05-212-2/+20
| | | | | | | needed to determine that on x86-linux, RPM builds "i386" RPMs while on Sparc/Solaris, it builds "sparc" RPMs. Since the buildall script installs the binutils RPM to build the gccnewlib RPM, it needs to know this.
* This is an update of all Classic API Message Manager tests toJoel Sherrill2000-05-1914-64/+114
| | | | | | | eliminate code which assumes that 4 * sizeof(unsigned32) == 16) and that a 16 byte message can be assumed to be 4 unsigned32's. These assumptions are invalid on target processors that are not byte-addressable.
* Changed versions.Joel Sherrill2000-05-191-2/+2
|
* Use minimum stack size.Joel Sherrill2000-05-191-3/+6
|
* Changed to use minimum stack size.Joel Sherrill2000-05-191-1/+1
|
* Changed screen to have indeterminate addresses.Joel Sherrill2000-05-191-16/+19
|
* Made note that Version, CPU, and BSP will vary.Joel Sherrill2000-05-191-2/+4
|
* Removed duplicated call to unmount filesystem.Joel Sherrill2000-05-191-10/+1
|
* Corrected direction of comparison in sizeof context overlay.Joel Sherrill2000-05-191-1/+1
|
* Removed HWAPI reference.Joel Sherrill2000-05-171-1/+1
|
* Applied patch to wrong place in code.Joel Sherrill2000-05-171-2/+2
|
* Adding code to test for maximum filesize and skip some tests.Joel Sherrill2000-05-161-3/+8
|
* Initialize the variable.Joel Sherrill2000-05-161-0/+1
|
* Use sizeof(unsigned32) not 4.Joel Sherrill2000-05-161-1/+1
|
* Use CPU_ALIGNMENT not 4.Joel Sherrill2000-05-161-1/+1
|
* Constant of 4 for size is bad.Joel Sherrill2000-05-161-2/+2
|
* Modified to avoid copying too much data.Joel Sherrill2000-05-161-4/+13
|
* Updated to have better comments that can be searched and replaced.Joel Sherrill2000-05-165-9/+290
|
* Changed RTEMS_MAXIMUM_NAME_LENGTH to ITRON_MAXIMUM_NAME_LENGTH.Joel Sherrill2000-05-167-7/+7
|
* Do not prototype fileno() if is is a macro. This was tripped on Solaris.Joel Sherrill2000-05-161-0/+4
|
* Corrected order of arguments to strncpy().Joel Sherrill2000-05-161-1/+1
|
* Use CPU_HEAP_ALIGNMENT not CPU_ALIGNMENT.Joel Sherrill2000-05-161-1/+1
|
* Changed <= to < to prevent overindexing array of file control blocksJoel Sherrill2000-05-161-2/+2
| | | | (rtems_libio_iops).
* Do not look for C++ compiler if C++ is disabled.Joel Sherrill2000-05-161-5/+10
|