summaryrefslogtreecommitdiffstats
path: root/rtemsbsd (follow)
Commit message (Collapse)AuthorAgeFilesLines
* nfsclient: Fix for 64-bit targetsSebastian Huber2019-03-291-1/+8
| | | | | | | The use of the serporid structure with several embedded unions to split up the specific NFS request/response structures is quite a hack. It breaks on 64-bit targets due to the presence of pointer members which affect the overall alignment.
* Revert "Add BURN_BRIDGES global kernel option"Sebastian Huber2019-03-291-5/+0
| | | | This reverts commit 0904e3371406d2775cba848da441e00fd1ef1ef6.
* Add BURN_BRIDGES global kernel optionSebastian Huber2019-03-281-0/+5
|
* bin/openssl: Port to RTEMS.Christian Mauderer2019-03-273-0/+43
|
* Remove unused fileSebastian Huber2019-03-011-224/+0
|
* Build C++ kernel-space compatibility fileSebastian Huber2019-02-181-2/+3
|
* Fix atomic_load_32()Sebastian Huber2019-02-181-1/+1
|
* Remove <linux/rbtree.h>Sebastian Huber2019-02-121-146/+0
| | | | It is already provided by RTEMS.
* Remove obsolete <rtems/pty.h>Sebastian Huber2019-02-121-68/+0
|
* mghttpd: RemoveSebastian Huber2019-02-122-5907/+0
| | | | The mghttpd is already provided by RTEMS.
* ZONE(9): Fix UMA_PCPU_ALLOC_SIZESebastian Huber2019-02-121-2/+2
| | | | | Using CACHE_LINE_SIZE for UMA_PCPU_ALLOC_SIZE was a huge memory waste since the backend memory allocator is page based.
* atomic.h: Add atomic_fetchadd_64()Sebastian Huber2019-02-111-0/+26
|
* atomic.h: Add atomic_load_32()Sebastian Huber2019-02-111-0/+21
|
* Fix INVARIANTS supportSebastian Huber2019-01-222-2/+35
|
* dpaa: Use if_transmit instead of legacy if_startSebastian Huber2019-01-151-82/+65
| | | | This avoids a lock contention on the send queue.
* dpaa: Fix FMan MAC SGT zone alignmentSebastian Huber2019-01-151-1/+1
|
* Update rtems-bsd-kernel-namespace.hSebastian Huber2018-12-201-1/+26
|
* Update to FreeBSD head 2018-12-20Sebastian Huber2018-12-205-30/+177
| | | | | | | | | | Git mirror commit 19a6ceb89dbacf74697d493e48c388767126d418. It includes an update of wpa_supplicant to version 2.7. It includes an update of the OpenSSL baseline to version 1.1.1a. Update #3472.
* freebsd/if_cpsw: Port.Christian Mauderer2018-12-202-0/+2
|
* Fix locking issue in epoch_sysinit()Sebastian Huber2018-12-201-0/+4
| | | | | The _Watchdog_Per_CPU_insert_ticks() assumes that interrupts are disabled.
* Update to FreeBSD head 2018-11-15Sebastian Huber2018-11-153-577/+592
| | | | | | Git mirror commit a18b0830c4be01b39489a891b63d6023ada6358a. Update #3472.
* Disable or make static kern_* functionsSebastian Huber2018-11-151-9/+0
|
* mutex: Avoid NULL pointer access in panic()Sebastian Huber2018-11-151-1/+2
|
* Fix locking issue in epoch_watchdog()Sebastian Huber2018-11-151-0/+3
| | | | | The _Watchdog_Per_CPU_insert_ticks() assumes that interrupts are disabled.
* Include missing <sys/types.h>Sebastian Huber2018-11-131-0/+1
| | | | Update #3598.
* 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
|
* pppd: Fix use of uninitialized stack variablesSebastian Huber2018-10-231-3/+3
|
* Use global stdout for kernel output and syslog()Sebastian Huber2018-10-101-7/+19
|
* Fix syslog() priority handlingSebastian Huber2018-10-101-10/+30
| | | | Ths syslog priority is a mask not a level.
* Fix typo (RTEMS_BSD_MODULE_NET80211)Sebastian Huber2018-10-021-2/+2
|
* telnetd: Update due to API changesSebastian Huber2018-10-021-7/+2
| | | | Update #3526.
* Add PHY-driver for KSZ8091RNB with 50MHz.Christian Mauderer2018-09-271-0/+186
| | | | | This adds a driver for the KSZ8091RNB PHY. This PHY needs some special treatment if it is clocked with a 50MHz clock.
* 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-252-10/+80
| | | | Update #3525.
* CONFIG_INTRHOOK(9): Port to RTEMSSebastian Huber2018-09-251-58/+0
| | | | | | | | | Some device drivers (e.g. MMC) need a complex intialization with working callouts. Remove the dummy CONFIG_INTRHOOK() implementation and replace it with the real one from FreeBSD. Make sure TIMEOUT(9) services work at this point. Update #3525.
* if_ffec_mpc8xx: Fix incoming data invalidationSebastian Huber2018-09-211-8/+4
| | | | | | | With a write-back cache dirty cache lines may be evicted which could overwrite new data. Close #3523.
* if_ffec_mpc8xx: Use M_NOWAIT for incoming framesSebastian Huber2018-09-211-22/+32
| | | | Update #3523.
* if_ffec_mpc8xx: New MDIO driver supportSebastian Huber2018-09-212-172/+129
| | | | Update #3523.
* if_ffec_mpc8xx: Port driver to libbsdSebastian Huber2018-09-212-223/+186
| | | | Update #3523.
* if_ffec_mpc8xx: Import legacy driver from RTEMSSebastian Huber2018-09-211-0/+1248
| | | | | | | Imported from RTEMS commit 1fe1b820de02c274c2b2b3431340152734ee9fb6 (2018-09-12). Update #3523.
* Update to FreeBSD head 2018-09-17Sebastian Huber2018-09-2118-129/+3069
| | | | | | Git mirror commit 6c2192b1ef8c50788c751f878552526800b1e319. Update #3472.
* Update to FreeBSD head 2018-06-01Sebastian Huber2018-09-217-38/+606
| | | | | | Git mirror commit fb63610a69b0eb7f69a201ba05c4c1a7a2739cf9. Update #3472.
* Update to FreeBSD head 2018-04-01Sebastian Huber2018-09-216-34/+189
| | | | | | Git mirror commit 8dfb1ccc26d1cea7e2529303003ff61f9f1784c4. Update #3472.
* Update to FreeBSD head 2018-02-01Sebastian Huber2018-09-2115-60/+2755
| | | | | | Git mirror commit d079ae0442af8fa3cfd6d7ede190d04e64a2c0d4. Update #3472.
* Update to FreeBSD head 2017-12-01Sebastian Huber2018-09-219-23/+83
| | | | | | 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-218-9/+107
| | | | | | Git mirror commit f5002f5e5f78cae9f0269d812dc0aedb0339312c. Update #3472.
* Update to FreeBSD head 2017-06-01Sebastian Huber2018-09-213-24/+16
| | | | | | Git mirror commit dfb26efac4ce9101dda240e94d9ab53f80a9e131. Update #3472.