summaryrefslogtreecommitdiffstats
path: root/rtemsbsd/include (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Update to FreeBSD head 2018-10-23Sebastian Huber2018-10-253-0/+14
| | | | | | | | | | | Git mirror commit 59f44d20be3f99d181ca742e636d45fc39ec982b. This commit updates OpenSSL to version 1.1.1. This required an update of racoon which uses some internal stuff from OpenSSL and seems to be mostly unmaintained, e.g. there is update in the FreeBSD ports to cope with OpenSSL 1.1.1. Update #3472.
* Fix redefinition warningsSebastian Huber2018-10-231-4/+0
|
* Fix typo (RTEMS_BSD_MODULE_NET80211)Sebastian Huber2018-10-021-2/+2
|
* fsl_sdhci.c: Port to RTEMSSebastian Huber2018-09-251-0/+3
| | | | Update #3525.
* imx/imx_gpio.c: Port to RTEMSSebastian Huber2018-09-251-0/+2
| | | | Update #3525.
* Update gpio interfaceSebastian Huber2018-09-251-10/+65
| | | | Update #3525.
* if_ffec_mpc8xx: New MDIO driver supportSebastian Huber2018-09-211-0/+1
| | | | Update #3523.
* if_ffec_mpc8xx: Port driver to libbsdSebastian Huber2018-09-211-0/+4
| | | | Update #3523.
* Update to FreeBSD head 2018-09-17Sebastian Huber2018-09-219-82/+739
| | | | | | Git mirror commit 6c2192b1ef8c50788c751f878552526800b1e319. Update #3472.
* Update to FreeBSD head 2018-06-01Sebastian Huber2018-09-214-35/+255
| | | | | | Git mirror commit fb63610a69b0eb7f69a201ba05c4c1a7a2739cf9. Update #3472.
* Update to FreeBSD head 2018-04-01Sebastian Huber2018-09-215-34/+177
| | | | | | Git mirror commit 8dfb1ccc26d1cea7e2529303003ff61f9f1784c4. Update #3472.
* Update to FreeBSD head 2018-02-01Sebastian Huber2018-09-219-41/+214
| | | | | | Git mirror commit d079ae0442af8fa3cfd6d7ede190d04e64a2c0d4. Update #3472.
* Update to FreeBSD head 2017-12-01Sebastian Huber2018-09-217-6/+69
| | | | | | Git mirror commit e724f51f811a4b2bd29447f8b85ab5c2f9b88266. Update #3472.
* Update to FreeBSD head 2017-10-01Sebastian Huber2018-09-214-21/+53
| | | | | | Git mirror commit b2f0376b45428f13151d229c5ae9d4d8f74acbd1. Update #3472.
* Update to FreeBSD head 2017-08-01Sebastian Huber2018-09-215-7/+73
| | | | | | Git mirror commit f5002f5e5f78cae9f0269d812dc0aedb0339312c. Update #3472.
* Update to FreeBSD head 2017-06-01Sebastian Huber2018-09-213-24/+16
| | | | | | Git mirror commit dfb26efac4ce9101dda240e94d9ab53f80a9e131. Update #3472.
* Remove <poll.h>Sebastian Huber2018-09-171-1/+0
| | | | This header file is provided by RTEMS.
* Optimize callout handline via static timer wheelSebastian Huber2018-09-171-2/+0
| | | | | | | The number of callouts is a compile-time constant in libbsd. Use this in struct callout_cpu and avoid dynamic allocation of tables. This signficantly reduces the count of load instructions in the callout handling.
* Fix BUS_SPACE_MAXADDR for 64-bit targetsSebastian Huber2018-09-121-2/+2
|
* Use rtems_counter_read() for get_cyclecount()Sebastian Huber2018-09-111-3/+4
|
* Add FreeBSD kernel space header filesSebastian Huber2018-08-272-0/+131
| | | | | | | | Move the kernel space content of some Newlib provided header files to RTEMS and libbsd. This allows to use the Newlib provided header files with different FreeBSD baselines. Update #3472.
* IPFW(4): Remove FreeBSD importSebastian Huber2018-08-241-175/+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.
* Update rtems-bsd-kernel-namespace.hSebastian Huber2018-08-241-2/+435
| | | | Update #3472.
* Add RTEMS_BSD_CONFIG_IPSEC.Christian Mauderer2018-08-022-0/+27
|
* Add ipsec to rc.conf.Christian Mauderer2018-08-022-0/+55
|
* ipsec-tools: Port libipsec, setkey and racoon.Christian Mauderer2018-08-023-0/+59
| | | | | Note that this replaces the libipsec from FreeBSD with the one provided by ipsec-tools.
* if_ipsec: Port and add to everything-buildset.Christian Mauderer2018-08-011-0/+5
| | | | | This ports the kernel space parts for ipsec and adds them to the everything-buildset.
* Avoid malloc() in getsockaddr()Sebastian Huber2018-07-041-1/+0
| | | | | | | | | | | | | | | | The getsockaddr() function is used to allocate a struct sockaddr of the right length and initialize it with userspace provided data. It is used for the connect(), bind() and sendit() family functions. In particular, the sendit() function is used by the UDP send functions. This means each UDP send needs a malloc() and free() invocation. This is a performance problem in RTEMS (first-fit heap) and may lead to heap fragmentation. Replace the malloc() allocation with a stack allocation. This requires SOCK_MAXADDRLEN (= 255) of additional stack space for libbsd. A further optimization would be to get rid of the stack copy of the socket address. However, this would require to check each consumer of the address to ensure that it is not modified.
* beagle: Disable WiFi if libbsd is build without it.Christian Mauderer2018-06-051-0/+3
| | | | Update #3351.
* dhcpcd: Add hooksSebastian Huber2018-05-081-0/+26
|
* dhcpcd: Add rtems_dhcpcd_start()Sebastian Huber2018-05-082-2/+84
| | | | Use it throughout to start the DHCP client (dhcpcd).
* buildset: Add minimal and everything config.Christian Mauderer2018-05-032-1/+5
| | | | | | | | | | | | 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.
* rtems-debugger: Remove filesSebastian Huber2018-05-021-47/+0
| | | | | | They are now in the main RTEMS sources. Update #3419.
* Use network services from RTEMSSebastian Huber2018-04-303-354/+0
| | | | Close #3419.
* CRYPTO(4): Port to RTEMSSebastian Huber2018-03-281-0/+1
|
* vprintf: Add handler that mutes all output.Christian Mauderer2018-03-231-0/+9
| | | | | This adds a vprintf handler that can be used to suppress all outputs of the libbsd.
* mutex: Use panic() after ISR lock releaseSebastian Huber2018-03-131-3/+18
| | | | | | Using panic() with interrupts disabled could lead to an additional error (INTERNAL_ERROR_BAD_THREAD_DISPATCH_ENVIRONMENT) due to a potentially blocking output.
* Add device tree support for Altera/Intel Cyclone VSebastian Huber2018-02-062-57/+28
| | | | Close #3290.
* sdk_dpaa: Port to RTEMSSebastian Huber2018-01-231-0/+8
| | | | Update #3277.
* dpaa: QMan portal only initializationSebastian Huber2018-01-231-0/+4
| | | | Update #3277.
* dpaa: Add and use SDK_DPAA_COMPAT_STATICSebastian Huber2018-01-231-0/+9
| | | | Update #3277.
* dpaa: Remove unused configuration definesSebastian Huber2018-01-231-9/+0
| | | | Update #3277.
* Add rtems_bsd_ifconfig()Sebastian Huber2018-01-231-0/+16
|
* Add rtems_bsd_initialize_dhcp()Sebastian Huber2017-12-051-0/+22
|
* Revert "RWLOCK(9): Add reader/writer lock implementation"Sebastian Huber2017-11-172-489/+0
| | | | | | This was accidentally committed. This reverts commit 97a98f6cd767b3a68279890488c7b451788f84f4.
* RWLOCK(9): Add reader/writer lock implementationSebastian Huber2017-11-162-0/+489
|
* LOCKING(9): Update to current FreeBSD versionSebastian Huber2017-11-161-23/+51
|
* at91_mci: Port to RTEMS and adapt for atsam.Christian Mauderer2017-11-102-0/+21
|
* saf1761_otg: Port to RTEMS.Christian Mauderer2017-11-101-0/+21
|
* wpa_supplicant: Add lock.Christian Mauderer2017-11-101-0/+55
|