summaryrefslogtreecommitdiffstats
path: root/spec/build/bsps/i386 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Update company nameSebastian Huber2023-05-2034-34/+34
| | | | | The embedded brains GmbH & Co. KG is the legal successor of embedded brains GmbH.
* build: Use enabled by for defaultsSebastian Huber2023-01-1717-51/+61
| | | | | | | | | | | | | | Merge the "default" and "default-by-variant" attributes. Use an "enabled-by" expression to select the default value based on the enabled set. This makes it possible to select default values depending on other options. For example you could choose memory settings based on whether RTEMS_SMP is enabled or disabled. The change was tested by comparing the output of ./waf bspdefaults before and after the change.
* build: Format build itemsSebastian Huber2023-01-171-1/+1
| | | | | Use yaml.dump(data, default_flow_style=False, allow_unicode=True) with a custom representer for integer default values to format all build items.
* build: Add reason to test state definitionsSebastian Huber2023-01-171-8/+11
|
* spec/bsps: Do not install tm27.hChris Johns2022-08-221-1/+0
| | | | Updates #4705
* build: Fix optimization flags definition orderSebastian Huber2022-07-046-12/+12
| | | | | | OPTIMIZATION_FLAGS must be defined before /build/bsp/bspopts is processed. Update #4670.
* build: Add cppflags, cflags, cxxflags to groupsSebastian Huber2022-07-042-0/+6
| | | | | | | Propagate the group defined cppflags, cflags, and cxxflags from parent groups to child items through the build item context. Update #4670.
* validation: Add test suitesSebastian Huber2022-03-242-0/+22
| | | | | | | | | | | | The test source code is generated from specification items by the "./spec2modules.py" script contained in the git://git.rtems.org/rtems-central.git Git repository. Please read the "How-To" section in the "Software Requirements Engineering" chapter of the RTEMS Software Engineering manual to get more information about the process. Update #3716.
* libc: Optimize malloc() initializationSebastian Huber2021-11-301-0/+1
| | | | | | | | | | | | | | | | The BSPs provide memory for the separate C Program Heap initialization via _Memory_Get(). Most BSPs provide exactly one memory area. Only two BSPs provide more than one memory area (arm/altera-cyclone-v and bsps/powerpc/mpc55xxevb). Only if more than one memory area is provided, there is a need to use _Heap_Extend(). Provide two implementations to initialize the separate C Program Heap and let the BSP select one of the implementations based on the number of provided memory areas. This gets rid of a dependency on _Heap_Extend(). It also avoids dead code sections for most BSPs. Change licence to BSD-2-Clause according to file history. Update #3053.
* score: Optimize Workspace Handler initializationSebastian Huber2021-11-301-0/+1
| | | | | | | | | | | | The BSPs provide memory for the workspace initialization via _Memory_Get(). Most BSPs provide exactly one memory area. Only two BSPs provide more than one memory area (arm/altera-cyclone-v and bsps/powerpc/mpc55xxevb). Only if more than one memory area is provided, there is a need to use _Heap_Extend(). Provide two implementations to initialize the workspace handler and let the BSP select one of the implementations based on the number of provided memory areas. This gets rid of a dependency on _Heap_Extend(). It also avoids dead code sections for most BSPs.
* build: Merge default-by-family into by-variantSebastian Huber2021-08-1816-16/+0
| | | | | | | Prefix the BSP family name with "bsps/" to make it distinct to the BSP variant names. Update #4468.
* build: Use BSP family for optionsChris Johns2021-07-1516-0/+16
| | | | | | | - Optionally add support for 'default-by-family' to allow option to be set by a family and so all related BSPs Close #4468
* spec: Remove RTEMS_NETWORKING optionsVijay Kumar Banerjee2021-04-072-21/+0
| | | | Update #3850
* bsps: Add default rtems_get_target_hash()Sebastian Huber2021-02-261-0/+1
| | | | Update #4267.
* build: Fix multiple defintion error for i386/pc386Sebastian Huber2020-09-151-4/+9
| | | | | | Make the objcopy an bld.objects() task generator. Close #4079.
* build: Fix i386/pc386 link of SMP start fileSebastian Huber2020-09-151-1/+1
| | | | Update #3818.
* build: Add RELOCADDR to i386/pc386 optionsSebastian Huber2020-09-152-0/+29
| | | | Update #3818.
* build: Fix i386/pc386 ABI flagsSebastian Huber2020-09-151-5/+0
| | | | Update #3818.
* build: Fix i386/pc386 with SMP enabledSebastian Huber2020-09-153-1/+52
| | | | Update #3818.
* build: Alternative build system based on wafSebastian Huber2020-09-1432-0/+709
Update #3818.