summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/dummy/default-configuration.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* config: CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORSSebastian Huber2019-12-191-1/+1
| | | | | | | Rename CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS into CONFIGURE_MAXIMUM_FILE_DESCRIPTORS. Update #3753.
* misc/rtemsdefaultconfig: Add bdbuf so libbsd can be used with configure.Chris Johns2019-07-021-1/+2
|
* m32c: Remove this targetSebastian Huber2018-11-121-8/+4
| | | | Update #3599.
* confdefs: Fix uniprocessor configurationSebastian Huber2018-07-301-2/+0
| | | | | | | | | | Introduce a new internal define _CONFIGURE_MAXIMUM_PROCESSORS and ensure that it is _CONFIGURE_MAXIMUM_PROCESSORS > 1 only in SMP configurations. This avoids to allocate data structures for non-existing additional processors in uniprocessor configuration. Update #3459.
* config: SMP only CONFIGURE_MAXIMUM_PROCESSORSSebastian Huber2018-06-201-1/+3
| | | | | | | Do not set the CONFIGURE_MAXIMUM_PROCESSORS in uni-processor default configuration, since this may lead to an oversize workspace. Update #3459.
* Include missing <string.h>Sebastian Huber2017-08-251-0/+1
| | | | Update #2133.
* Rename CONFIGURE_SMP_MAXIMUM_PROCESSORSSebastian Huber2017-02-141-1/+1
| | | | | | | Rename CONFIGURE_SMP_MAXIMUM_PROCESSORS to CONFIGURE_MAXIMUM_PROCESSORS since the SMP part is superfluous. Update #2894.
* Remove CONFIGURE_SMP_APPLICATIONSebastian Huber2017-02-021-2/+0
| | | | | | Enable the SMP support if CONFIGURE_SMP_MAXIMUM_PROCESSORS > 1. Update #2893.
* libmisc: Use SMP application by default on SMPSebastian Huber2015-07-081-0/+4
|
* dummy/default-configuration.c: Tune configuration down for small targetsJoel Sherrill2015-03-241-4/+10
|
* Delete CONFIGURE_USE_IMFS_AS_BASE_FILESYSTEMSebastian Huber2014-12-161-1/+0
| | | | This define was superfluous, undocumented and used inconsistently.
* libmisc: More useful default configurationSebastian Huber2014-12-051-0/+105
The dummy.c was a de-facto default configuration. Rename it to default-configuration.c. Use unlimited objects and the stack checker. This makes it easier for new RTEMS users which will likely use this file if they just work with the usual main() function as the application entry point. Provide proper arguments for main() using the BSP command line. Add spare user extensions and drivers. Do not initialize the network by default. Delete bspinit.c.