summaryrefslogtreecommitdiffstats
path: root/rtemsbsd/rtems/rtems-bsd-pci_bus.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Rename files for kernel namespace scriptSebastian Huber2016-05-061-78/+0
| | | | This makes it easier to create the kernel namespace header.
* Add conditional support for RTEMS PCI to the waf build.Chris Johns2015-06-011-1/+7
| | | | | | | | | | | Check for the "rtems/pci.h" header and provide conditional build support with waf to build for BSPs that do not have PCI support. The Makefile build always defines HAVE_RTEMS_PCI_H which is the same state with this change. The PCI calls still exist however they do nothing and return a constant. Any PCI based driver that makes these calls on a BSP that does not have PCI support will not work which is understandable. Either change the driver or add PCI support the BSP.
* Rename rtems-bsd-config.hSebastian Huber2013-11-111-1/+1
| | | | Rename rtems-bsd-config.h in rtems-bsd-kernel-space.h.
* Update to FreeBSD 8.4Sebastian Huber2013-11-041-0/+1
|
* Update files to match FreeBSD layoutSebastian Huber2013-10-101-0/+71
Add compatibility with Newlib header files. Some FreeBSD header files are mapped by the translation script: o rtems/bsd/sys/_types.h o rtems/bsd/sys/errno.h o rtems/bsd/sys/lock.h o rtems/bsd/sys/param.h o rtems/bsd/sys/resource.h o rtems/bsd/sys/time.h o rtems/bsd/sys/timespec.h o rtems/bsd/sys/types.h o rtems/bsd/sys/unistd.h It is now possible to include <sys/socket.h> directly for example. Generate one Makefile which builds everything including tests.