summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/dummy/default-configuration.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-03-22cpukit/libmisc/dummy: Change license to BSD-2.Joel Sherrill1-3/+22
Updates #3053.
2019-12-19config: CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORSSebastian Huber1-1/+1
Rename CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS into CONFIGURE_MAXIMUM_FILE_DESCRIPTORS. Update #3753.
2019-07-02misc/rtemsdefaultconfig: Add bdbuf so libbsd can be used with configure.Chris Johns1-1/+2
2018-11-12m32c: Remove this targetSebastian Huber1-8/+4
Update #3599.
2018-07-30confdefs: Fix uniprocessor configurationSebastian Huber1-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.
2018-06-20config: SMP only CONFIGURE_MAXIMUM_PROCESSORSSebastian Huber1-1/+3
Do not set the CONFIGURE_MAXIMUM_PROCESSORS in uni-processor default configuration, since this may lead to an oversize workspace. Update #3459.
2017-08-25Include missing <string.h>Sebastian Huber1-0/+1
Update #2133.
2017-02-14Rename CONFIGURE_SMP_MAXIMUM_PROCESSORSSebastian Huber1-1/+1
Rename CONFIGURE_SMP_MAXIMUM_PROCESSORS to CONFIGURE_MAXIMUM_PROCESSORS since the SMP part is superfluous. Update #2894.
2017-02-02Remove CONFIGURE_SMP_APPLICATIONSebastian Huber1-2/+0
Enable the SMP support if CONFIGURE_SMP_MAXIMUM_PROCESSORS > 1. Update #2893.
2015-07-08libmisc: Use SMP application by default on SMPSebastian Huber1-0/+4
2015-03-24dummy/default-configuration.c: Tune configuration down for small targetsJoel Sherrill1-4/+10
2014-12-16Delete CONFIGURE_USE_IMFS_AS_BASE_FILESYSTEMSebastian Huber1-1/+0
This define was superfluous, undocumented and used inconsistently.
2014-12-05libmisc: More useful default configurationSebastian Huber1-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.