summaryrefslogtreecommitdiffstats
path: root/buildset (follow)
Commit message (Collapse)AuthorAgeFilesLines
* if_mve: Add MV643XX Ethernet driverHeinz Junkes2022-03-071-0/+1
| | | | Close #4345.
* build: Separate the kernel and user land include pathsChris Johns2020-09-161-0/+2
| | | | | | | | | | | | | | | | | | | | | | | - Provide support for separate user and kernel include paths in libbsd.py. - Update all added files with a suitable context to build them with. Supported contexts are `kernel` and `user`. - Kernel source use the kernel, CPU, and build header paths in this order. - User source use the user, kernel, CPU and build header paths in this order. The FreeBSD /usr/include tree has some kernel header files installed as well as user land header files. This complicates the separation as some kernel header files are not visible to user land code while other are. This is handled by appending the kernel header paths to the user header paths so user land code will include a user header with the same name as a kernel header over the kernel header but will find a kernel header if there is no matching user header file. Closes #4067
* regulator: Add to build.Christian Mauderer2020-04-151-0/+1
| | | | Update #3869.
* imx6_ccm: Add and build module.Christian Mauderer2020-04-151-0/+1
| | | | Update #3869.
* NVME(4): Port to RTEMSSebastian Huber2019-11-131-0/+1
| | | | Update #3821.
* TDA19988: Port to RTEMSVijay Kumar Banerjee2019-08-111-0/+1
|
* Pinmux: Port to RTEMSVijay Kumar Banerjee2019-08-111-0/+1
|
* iicbus: port to RTEMSVijay Kumar Banerjee2019-06-291-0/+1
|
* Add USB mass storage only build setSebastian Huber2019-05-131-0/+18
|
* bin/openssl: Port to RTEMS.Christian Mauderer2019-03-272-0/+2
|
* mghttpd: RemoveSebastian Huber2019-02-121-1/+0
| | | | The mghttpd is already provided by RTEMS.
* IPFW(4): Remove FreeBSD importSebastian Huber2018-08-241-1/+0
| | | | | | | | This firewall was not ported to RTEMS and is just dead code which may make trouble during FreeBSD baseline updates. It also increased the compile-time of the library for nothing. Update #3472.
* buildset/everything: Add some usefull comments.Christian Mauderer2018-08-021-0/+3
|
* if_ipsec: Port and add to everything-buildset.Christian Mauderer2018-08-012-0/+2
| | | | | This ports the kernel space parts for ipsec and adds them to the everything-buildset.
* buildset: Add minimal and everything config.Christian Mauderer2018-05-034-16/+47
| | | | | | | | | | | | This adds two new buildset configurations: One that leaves out as much features as possible and one that enables all features. For the default configuration WiFi support is now disabled. To disable IPv6 for the minimal configuration, all -DINET6 are eliminated in libbsd.py. They are now replaced by a #ifdef that checks for RTEMS_BSD_MODULE_NETINET6 instead. Close #3351.
* waf: Add configurations with different modules.Christian Mauderer2018-04-102-0/+68
Update #3351