summaryrefslogtreecommitdiffstats
path: root/freebsd (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add bitcount inlinesfor RTEMS. These are found in FREEBSDs types.hKevin Kirspel2017-05-191-0/+3
|
* Modify FREEBSD EVDEV driver for use in RTEMSKevin Kirspel2017-05-191-0/+4
|
* Modify FREEBSD USB keyboard drivers for use in RTEMSKevin Kirspel2017-05-191-0/+2
|
* Add USB UGEN support for RTEMSKevin Kirspel2017-05-191-0/+10
|
* Add FREEBSD USB input device filesKevin Kirspel2017-05-198-0/+9581
|
* Add FREEBSD keyboard driver filesKevin Kirspel2017-05-194-0/+2291
|
* Adding EVDEV FREEBSD filesKevin Kirspel2017-05-1910-0/+4755
|
* devfs: Fix some issuesKevin Kirspel2017-05-123-8/+7
| | | | | Fix issue with cdev private data usage with RTEMS iop structure. Add support for cdev alias device names. Add support for cdev fstat.
* Update USB Serial Driver for use with RTEMSKevin Kirspel2017-05-121-0/+12
|
* Add USB headers to support USB Serial driversKevin Kirspel2017-05-121-0/+99
|
* Adding FREEBSD USB Serial DriversKevin Kirspel2017-05-1223-0/+20104
|
* Updating FREEBSD for tty supportKevin Kirspel2017-05-119-21/+89
|
* Updating STTY command for use in RTEMS shellKevin Kirspel2017-05-1116-0/+175
|
* Adding tty support files from FREEBSD treeKevin Kirspel2017-05-117-0/+6627
|
* Adding stty command files from FREEBSD treeKevin Kirspel2017-05-119-0/+1433
|
* Update to FreeBSD head 2017-04-04Sebastian Huber2017-04-04512-31231/+24243
| | | | Git mirror commit 642b174daddbd0efd9bb5f242c43f4ab4db6869f.
* Fix SOCK_CLOEXEC with socket() and socketpair()Sebastian Huber2017-03-141-4/+0
| | | | | Remove SOCK_CLOEXEC flag to get a valid socket type, e.g. to avoid a EPROTOTYPE in case of socket(..., SOCK_DGRAM | SOCK_CLOEXEC, ...).
* if_tsec: Enable FDT supportSebastian Huber2017-03-081-2/+0
|
* FDT(4): Port to RTEMSSebastian Huber2017-03-083-0/+21
|
* FDT(4): Import from FreeBSDSebastian Huber2017-03-0816-0/+5048
|
* Provide strtoq() and strtouq()Sebastian Huber2017-03-061-0/+19
|
* NETSTAT(1): Disable unused functionsSebastian Huber2017-03-061-0/+4
|
* Disable unused pfil_try_rlock()Sebastian Huber2017-03-061-0/+2
|
* Provide sbuf_hexdump()Sebastian Huber2017-03-061-1/+1
|
* Avoid kern_unsetenv()Sebastian Huber2017-03-061-0/+4
|
* SLEEPQUEUE(9): Fix absolute timeoutsSebastian Huber2017-02-281-5/+24
| | | | | | | | The FreeBSD kernel timeouts are always based on the uptime. Thus, we have to use the relative watchdog. C_ABSOLUTE just means that the timeout value is already an uptime value. https://lists.freebsd.org/pipermail/freebsd-hackers/2017-February/050572.html
* SYSCTL(8): Fix command line option processingSebastian Huber2017-02-141-0/+9
|
* Port LPC32XX Ethernet and USB OHCI to RTEMSKevin Kirspel2017-02-144-2/+189
|
* Adding LPC32XX ethernet driver supportKevin Kirspel2017-02-145-0/+2307
|
* Add ordered Nexus devicesKevin Kirspel2017-02-141-1/+5
| | | | | Add support for ordering the initialization of Nexus devices. This can be used to make sure a device is initialized before a dependant device.
* SLEEPQUEUE(9): Add wmesg to thread wait infoSebastian Huber2017-01-312-2/+5
|
* rtems-bsd-mutex: Use thread queue nameSebastian Huber2017-01-312-0/+4
|
* userspace tools: Regenerate headers.Christian Mauderer2017-01-1720-30/+29
|
* freebsd/wlanstats: Port to FreeBSD.Christian Mauderer2017-01-176-0/+94
|
* freebsd/wlanstats: Import from FreeBSD.Christian Mauderer2017-01-175-0/+1719
|
* rtwn: Port to RTEMSChristian Mauderer2017-01-171-0/+3
|
* rtwn: Import from FreeBSD.Christian Mauderer2017-01-17148-0/+26962
|
* lib80211/regdomain: Port to RTEMS.Christian Mauderer2017-01-171-0/+19
|
* lib80211/regdomain: Import from FreeBSD.Christian Mauderer2017-01-171-9/+0
|
* ifconfig/wlan, expat, lib80211: Port to RTEMS.Christian Mauderer2017-01-176-2/+57
|
* ifconfig/wlan, expat, lib80211: Import from FreeBSD.Christian Mauderer2017-01-1722-154/+15124
|
* Port USB and USB WLAN.Christian Mauderer2017-01-171-0/+3
|
* Import USB and USB WLAN from FreeBSD.Christian Mauderer2017-01-1752-0/+53856
|
* firmware: Port to RTEMS.Christian Mauderer2017-01-171-1/+11
|
* firmware: Import from FreeBSD.Christian Mauderer2017-01-172-0/+592
|
* Import IEEE 802.11 from FreeBSD.Christian Mauderer2017-01-1764-4179/+11199
|
* Use thread name supportSebastian Huber2017-01-132-1/+6
| | | | Update #2858.
* ROUTE(8): Disable routing socket timeout supportSebastian Huber2017-01-112-1/+12
| | | | | | | | | | | | | | FIXME: This reverts the following change in FreeBSD. commit 76a39ff8dc5e1f7bc8a065115ec3837761ed0600 Author: ae <ae@FreeBSD.org> Date: Wed Jul 27 08:26:34 2016 +0000 Due to dropped mbuf in netisr queue route(8) can fall into infinity loop of reading the rtsock's feed. When it used by some scripts, this leads to growing number of not finished route(8) instances and thus growing number of rtsock consumers. Add SIGALRM handler to prevent this.
* pf: Some fixes after the updateSebastian Huber2017-01-103-0/+5
|
* Remove obsolete PF filesSebastian Huber2017-01-1017-27112/+0
|