summaryrefslogtreecommitdiffstats
path: root/freebsd-to-rtems.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Added rtems specific page tracking methods for uma page allocation.Jennifer Averett2012-07-201-0/+1
|
* Makefile: Copied files are now in dedicated subdirectoryJoel Sherrill2012-07-171-14/+43
| | | | | | | Each target has the option of reusing a file from another target. To be able to get pieces from different architectures cleanly, files are copied by the Makefile to a central directory named "copied". This makes them easier to remove and keeps the source tree clean.
* Makefile: sparc/sis builds againJoel Sherrill2012-07-141-2/+1
| | | | | | | | | | + sparc did not really have a unique in_cksum.c and Makefile needed to be adjusted to reflect this + some destination directories for copied files did not exist. make the destination directory before copying. This is really not a great thing to do as it messes with the source tree but it works for now. It would be better to make a special place to put generated source and integrate that into the build system.
* Makefile: Use i386 PCI code for all targets until proven otherwiseJoel Sherrill2012-07-141-0/+33
| | | | | The i386 PCI code appears to be target independent with the RTEMS conditionals and support code. Compiled for SuperH.
* Makefile: Use MIPS generic in_cksum when no target specific implementationJoel Sherrill2012-07-141-3/+35
| | | | | | The MIPS in_cksum.c method supports big and little endian targets. This does not include any inline assembly and should be reasonable for most targets.
* Makefile: Correct dependencies for parallelismJoel Sherrill2012-07-141-7/+4
|
* Makefile: Use dummy PIC code on Simple Vectored targetsJoel Sherrill2012-07-141-0/+6
|
* Makefile: install all CPU specific contents correctlyJoel Sherrill2012-07-131-2/+5
|
* Add ARM, PowerPC, and SPARC64 cpufunc.h files from FreeBSDJoel Sherrill2012-07-131-0/+9
|
* Makefile: Clean up build and do not use install pointJoel Sherrill2012-07-131-3/+6
|
* MIPS: Remove code with advertising clauseJoel Sherrill2012-07-131-7/+0
| | | | | | | At this point, we are unsure what actual functionality will be required for a functional MIPS port so just provide a stub. This lets the build complete and avoids the code with the advertising clause.
* Makefile: Do not fail if FreeBSD CPU directory does not exist.Joel Sherrill2012-07-131-1/+9
|
* Makefile: Fix clean and install of user spaceJennifer Averett2012-07-111-1/+1
|
* Build freebsd-userspaceJoel Sherrill2012-07-111-2/+7
|
* Removed in_cksum_arm.S file.Kevin Polulak2012-07-111-4/+1
|
* Added nexus_setup_intr support and did some cleanup.Jennifer Averett2012-07-111-0/+1
|
* Makefile: Do not install contrib .h files until proven neededJoel Sherrill2012-07-101-1/+1
| | | | | | They were not installed in the correct subdirectory for the way they were included in the kernel source anyway. If they are needed at the user level, then we can re-address it then.
* Makefile: updated to probably install architecture specific .h filesJoel Sherrill2012-07-091-2/+12
|
* Put CPU specific bus_space routines into separate filesJoel Sherrill2012-07-061-1/+1
| | | | | | | | | | | The code in rtemsbsd/freebsd/machine/bus.h assumed that all bus space accesses were through memory in a simple fashion. The i386 has a true distinction between I/O and memory space which must be accounted for. This may not be the eventual structure of this code but we must have different bus space accessors for different hardware configurations. And in many, if not most, cases we will want these to be inlined for performance.
* Add a couple of isa header files.Jennifer Averett2012-07-021-0/+2
|
* Added missing header file.Jennifer Averett2012-06-291-0/+1
|
* Added legacy in order to get pcib to work correctly and resoleved fxp attach ↵Jennifer Averett2012-06-291-0/+3
| | | | | | | issue. The fxp attach has a resource allocation issue still to address, but should work as soon as that is debugged.
* Added pcib.Jennifer Averett2012-06-111-1/+9
|
* Added support for initialization of uihashinit().Jennifer Averett2012-05-301-0/+1
|
* Added pcib for Nics.Jennifer Averett2012-05-231-0/+5
|
* Resolved issues with pc386 build.Jennifer Averett2012-05-171-0/+8
|
* Provide SWI(9) and TIMEOUT(9)Christian Mauderer2012-05-101-2/+2
|
* Move rtems_bsd_thread0_ucredSebastian Huber2012-05-101-0/+1
|
* Added subr_unit.c needed for addtional Nics.Jennifer Averett2012-05-091-0/+1
|
* Added EtherExpress, tulip, and Broadcom Nics.Jennifer Averett2012-05-091-0/+3
| | | | | BCM570x, E1000, and Legacy Nics are commented out until pieces are added to get them to link.
* Added stubs for funsetown() and fsetown()Jennifer Averett2012-05-021-0/+1
|
* Remove proc0 creationSebastian Huber2012-04-261-3/+3
|
* Merged rtems-bsd-uma.c back into uma_core.cJennifer Averett2012-04-191-2/+1
| | | | The majority of this file was the same as the freebsd file uma_core.c.
* Add kern_linker.c and dependenciesSebastian Huber2012-04-191-3/+2
|
* Add dependency generationSebastian Huber2012-04-191-3/+4
|
* Merged the rtems version of resource back to kern_resource and added method ↵Jennifer Averett2012-04-181-1/+0
| | | | to resolve linker errors.
* Added an RTEMS specific version of routines needed from copyinout.cJennifer Averett2012-04-181-0/+1
|
* Add rtems-bsd-timeout.c to MakefileJoel Sherrill2012-04-181-0/+1
|
* Removed rtems-bsd-subr.cJennifer Averett2012-04-181-2/+1
|
* Moved rtems-bsd-cyclecount.c to cpu.hJennifer Averett2012-04-181-2/+1
|
* Add BUS_DMA(9) support for mbufsSebastian Huber2012-04-181-0/+2
|
* Removed fileSebastian Huber2012-04-181-1/+0
| | | | | | | In this file the copyright information was wrong. It claimed to be copyrighted by embedded brains GmbH, but this is not the case. It seems to be a partial copy from FreeBSD "kern/kern_prot.c" with format changes.
* Added rtems version of get_cyclecount().Jennifer Averett2012-04-171-0/+1
|
* Added chgsbsize() method.Jennifer Averett2012-04-171-0/+1
|
* Added rtems unique version of uio_yield()Jennifer Averett2012-04-171-0/+1
|
* Fix NoConverter class inheritanceSebastian Huber2012-04-171-1/+1
|
* Add missing header fileSebastian Huber2012-04-171-0/+1
|
* Add PCI and PCIB interface filesSebastian Huber2012-04-171-1/+4
|
* Use MIPS in_cksum.c for SPARCSebastian Huber2012-04-171-1/+1
|
* Added methods to resolve linker errors.Jennifer Averett2012-04-171-0/+1
|