summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-09-16i386: Delete old machine dependent filesJan Sommer
- The files in the i386 directory have been moved to common x86 directories by FreeBSD: - freebsd/sys/i386/include/machine/bus.h - freebsd/sys/x86/include/machine/legacyvar.h - freebsd/sys/x86/include/machine/specialreg.h - Add header files in rtemsbsd directory to direct compiler to new files
2020-09-16iflib.c: Deactivate use of ifc_cpusJan Sommer
- cpusets and SMP are currently not supported in libbsd for RTEMS - Disable the ifc_cpus context variable and replace its usage, essentially hard-coding for cpu 0
2020-09-16Callout: Redefine callout_reset_on for rtemsJan Sommer
- callout_reset_on takes a cpu which is ignored by the subsequent call to callout_reset_sbt_on in RTEMS. - The macro is redefined to discard the cpu argument directly which enables uses of it with cpu-dependent variables (disabled in RETMS) without further changes, e.g. in iflib.c.
2020-09-16i386: Add missing files to build systemJan Sommer
- Update FreeBSD files in libbsd.py to required by i386 based BSPs - Add missing files e1000 network driver (iflib*)
2020-09-16e1000: Add missing filesJan Sommer
2020-09-16waf: Implement module dependency checking in the build systemChris Johns
- Do not build a test if a dependency is not enabled. - Perform a dependency check and generate an error if an enabled module depends on a disabled module. Closes #4077
2020-09-16build: Separate the kernel and user land include pathsChris Johns
- Provide support for separate user and kernel include paths in libbsd.py. - Update all added files with a suitable context to build them with. Supported contexts are `kernel` and `user`. - Kernel source use the kernel, CPU, and build header paths in this order. - User source use the user, kernel, CPU and build header paths in this order. The FreeBSD /usr/include tree has some kernel header files installed as well as user land header files. This complicates the separation as some kernel header files are not visible to user land code while other are. This is handled by appending the kernel header paths to the user header paths so user land code will include a user header with the same name as a kernel header over the kernel header but will find a kernel header if there is no matching user header file. Closes #4067
2020-09-16waf: Add a config reportChris Johns
2020-09-16waf: Reformat to PEP8 using yapfChris Johns
2020-09-14rtems-bsd-cxx: Undefine _GNU_SOURCESebastian Huber
At least the powerpc C++ compiler defines currently _GNU_SOURCE due to a GCC configuration error. This leads to conflicting qsort_r() definitions. As a workaround undefine _GNU_SOURCE for this C++ compatibility test file. Update #4078.
2020-09-10mcast01: Add test programSebastian Huber
2020-09-10ifmcstat: Port to RTEMSSebastian Huber
2020-09-10ifmcstat: Import from FreeBSDSebastian Huber
2020-08-18nfsclient: Next attempt to fix 64-bit targetsSebastian Huber
In serporidok use the same structures used to hand over to the XDR encode/decode routines. We must not mix packed and unpacked structures. Close #4025.
2020-08-06Fix linker errors with minimal build setSebastian Huber
2020-08-06build: Do not convert cflags to definesSebastian Huber
This makes it possible to use module-specific C flags, for example to instrument functions (-finstrument-functions).
2020-08-06telnet: Use rtems_shell_dup_current_env()Sebastian Huber
Update #3859.
2020-08-05Conditionally include <bsp/linker-symbols.h>Sebastian Huber
Remove superfluous <bsp.h> include.
2020-08-05racoon: Change type due to Newlib API changesSebastian Huber
2020-08-05wscript: add uninstall commandVijay Kumar Banerjee
2020-08-05Update rtems_wafVijay Kumar Banerjee
2020-07-31testsuite: Use new name of test-info.h.Christian Mauderer
In RTEMS the test.h has been renamed to test-info.h to allow the new test framework to take over.
2020-07-29if_ffec: Align send buffers to cache if necessary.Christian Mauderer
2020-07-29imx: Don't use USB_NEED_BUSDMA_COHERENT_ALLOCChristian Mauderer
That option makes problems with some drivers because the buffers are not allways cache line aligned. Update 3869
2020-07-29busdma: Don't sync nocache memory on ARMChristian Mauderer
The busdma shouldn't try to flush or invalidate cache in a nocache area.
2020-07-29rtwn_usb: Make sure buffers are cache alignedChristian Mauderer
2020-07-29busdma: Option to round to cache lines on syncChristian Mauderer
Some targets support only flushing or invalidating complete cache lines. In this cases misaligned buffers might lead to unexpected results. This patch adds a flag that allows drivers to signal to the bus dma driver that it is OK to round a buffer to the next full cache line. That's for example necessary if a driver wants to send out 14 byte via a USB DMA. Only the driver knows whether these 14 bytes are located in an otherwise unused cache line aligned buffer.
2020-07-29imx: Use RTEMS GPIO driver instead of FreeBSD oneChristian Mauderer
Update 3869
2020-07-29gpioregulator: Remove.Christian Mauderer
There is a bug in the #ifdef regarding FDT so this file hasn't been compiled. If that bug is solved, the driver doesn't work for some other reason. With the FDT-bug the driver hasn't been used by anyone. So just remove it again.
2020-07-29wscript: Update RTEMS version to 6.Christian Mauderer
2020-07-29README: Update with information for RTEMS 6Christian Mauderer
2020-06-23mDNSResponder: Port to RTEMSSebastian Huber
Update #4010.
2020-06-23mDNSResponder: Update to v878.270.2Sebastian Huber
The sources can be obtained via: https://opensource.apple.com/tarballs/mDNSResponder/mDNSResponder-878.270.2.tar.gz Update #4010.
2020-06-23mDNSResponder: Update to v878.260.1Sebastian Huber
The sources can be obtained via: https://opensource.apple.com/tarballs/mDNSResponder/mDNSResponder-878.260.1.tar.gz Update #4010.
2020-06-23mDNSResponder: Update to v878.250.4Sebastian Huber
The sources can be obtained via: https://opensource.apple.com/tarballs/mDNSResponder/mDNSResponder-878.250.4.tar.gz Update #4010.
2020-06-23mDNSResponder: Update to v878.240.1Sebastian Huber
The sources can be obtained via: https://opensource.apple.com/tarballs/mDNSResponder/mDNSResponder-878.240.1.tar.gz Update #4010.
2020-06-23mDNSResponder: Update to v878.230.2Sebastian Huber
The sources can be obtained via: https://opensource.apple.com/tarballs/mDNSResponder/mDNSResponder-878.230.2.tar.gz Update #4010.
2020-06-23mDNSResponder: Update to v878.200.35Sebastian Huber
The sources can be obtained via: https://opensource.apple.com/tarballs/mDNSResponder/mDNSResponder-878.200.35.tar.gz Update #4010.
2020-06-23mDNSResponder: Update to v878.70.2Sebastian Huber
The sources can be obtained via: https://opensource.apple.com/tarballs/mDNSResponder/mDNSResponder-878.70.2.tar.gz Update #4010.
2020-06-23mDNSResponder: Update to v878.50.17Sebastian Huber
The sources can be obtained via: https://opensource.apple.com/tarballs/mDNSResponder/mDNSResponder-878.50.17.tar.gz Update #4010.
2020-06-23mDNSResponder: Back to mDNSResponder-878.30.4Sebastian Huber
Update #4010.
2020-06-23epoch01: Fix sporadic test failuresSebastian Huber
2020-06-04libbsd.py: Install the evdev header files5.15Vijay Kumar Banerjee
2020-04-20imx6_usbphy: Fix regulator (vbus-supply)Christian Mauderer
Update #3869.
2020-04-17regulator: Disable FDT parts for non-FDT targetsChristian Mauderer
2020-04-16imx: Fix build for all other BSPs.Christian Mauderer
2020-04-15imx6_usbphy: Add regulator (vbus-supply).Christian Mauderer
Update #3869.
2020-04-15ehci_imx: Set/clear ENHOSTDISCONNECT in USB PHY.Christian Mauderer
This is not a nice solution but it should work on all chips. As soon as FreeBSD has a nice solution via the USB PHY driver, this should be replaced. Update #3869.
2020-04-15ehci_imx: Add to build.Christian Mauderer
2020-04-15ehci_imx: Port to RTEMSChristian Mauderer
Update #3869.