summaryrefslogtreecommitdiffstats
path: root/libbsd.py (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-08-21rtemsbsd/sys/arm: Add imxrt1166 USBPHY driverChristian Mauderer1-0/+6
Adds a driver for the i.MXRT1166 USB PHY and enable USB for the imxrt11xx BSPs.
2022-09-06if_lpe.c: Port to LibBSDSebastian Huber1-0/+1
2022-09-06if_lpe.c: Import legacy LPC Ethernet driverSebastian Huber1-1/+0
The standard FreeBSD MII support causes severe problems on the LPC3200 chip family. If an Ethernet module register is accessed while there is no clock from the PHY, the chip completely locks up and only an external watchdog can recover from this state. The legacy driver had a custom PHY management code which helped to avoid such issues. The if_lpe.c driver is no longer maintained by FreeBSD.
2022-05-12tcpdump01: New testSebastian Huber1-0/+1
Update #4650.
2022-04-25libbsd: Add TFTP filesystem to test media01Frank Kühndel1-1/+1
How test media01 can be executed is described in section *Qemu and Networking* of the README.md at the top of the rtems-libbsd GIT repository. When connected via `telnet` with the RTEMS shell of the media01.exe test executed by QEMU, one can list the filesystems available for mounting: TLNT [/] # mount -L File systems: / dosfs tftpfs The list will contain `tftpfs`. The filesystem can be mounted as in the following example: TLNT [/] # mkdir /tftp TLNT [/] # mount -t tftpfs -o verbose "" /tftp A TFTP server is needed to use this filesystem. The simplest way would be to run such a server on the host machine and open the firewall for the TFTP protocol (port 69) on the TAP device used. Files can then be downloaded using the usual shell commands as in the following example: TLNT [/] # cat /tftp/169.254.1.1:hello.txt Uploading is also possible provided the TFTP server supports it, for example: TLNT [/] # cp /etc/dhcpcd.duid /tftp/169.254.1.1:myfile
2022-03-07if_mve: Add MV643XX Ethernet driverHeinz Junkes1-0/+19
Close #4345.
2022-03-07libbsd.py: Fix addition of plain text filesSebastian Huber1-9/+9
The addPlainTextFile() was renamed to addPlainTextFiles() in commit cd931b50d9febe8fe7ee890df1c83549d7acfe40.
2021-06-07waf_libbsd.py: Apply path-mappings to header-pathsJan Sommer1-1/+1
2021-04-13Revert "Import telnetd from RTEMS repository"Vijay Kumar Banerjee1-13/+9
This reverts commit 1b07480ddc93c10777eff5072e7621ed0c96d30c.
2021-04-07Import telnetd from RTEMS repositoryVijay Kumar Banerjee1-9/+13
The files have been taken from RTEMS repository with head commit at bd9e45d91f77657445400bc2c814f251c9e37cef
2021-04-01STM32H7: Add SDMMC driverChristian Mauderer1-0/+2
Update #4372
2021-04-01testsuite/media01: Add pattern testChristian Mauderer1-1/+1
Update #4372
2021-03-31libbsd.py: Build i2c shell commandVijay Kumar Banerjee1-0/+1
2021-03-21arm/ti/ti_pinmux: Remove TI pinmux driverG S Niteesh Babu1-4/+0
The TI driver has been moved to RTEMS so the driver can be removed from libBSD. The following files have been removed from libBSD and moved to RTEMS. 1) ti/am335x/am335x_scm_padconf.c 2) ti/am335x/am335x_scm_padconf.h 3) ti/ti_pinmux.c 4) ti/ti_pinmux.h Update #3784
2021-03-08ehci_pci: Add to build systemMoyano, Gabriel1-0/+2
Updates #4264
2020-11-13Update arm64/aarch64 supportKinsey Moore1-0/+21
2020-10-27dwc_otg: Add support for nexus busSebastian Huber1-0/+2
Update #3910.
2020-10-27if_stmac: Add driver for STM32H7 ethernet moduleSebastian Huber1-0/+1
Update #3910.
2020-10-26powerpc/nexus: Add legacy PCI support to PowerPC Motorola Shared BSP familyChris Johns1-1/+1
2020-09-30waf: Fix test module dependency checkChris Johns1-2/+2
2020-09-23Add moxie supportSebastian Huber1-1/+2
2020-09-23Add or1k supportSebastian Huber1-1/+1
2020-09-16i386: Add missing files to build systemJan Sommer1-3/+7
- Update FreeBSD files in libbsd.py to required by i386 based BSPs - Add missing files e1000 network driver (iflib*)
2020-09-16waf: Implement module dependency checking in the build systemChris Johns1-15/+14
- 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 Johns1-230/+309
- 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-10mcast01: Add test programSebastian Huber1-0/+1
2020-09-10ifmcstat: Port to RTEMSSebastian Huber1-0/+3
2020-07-29imx: Use RTEMS GPIO driver instead of FreeBSD oneChristian Mauderer1-1/+1
Update 3869
2020-07-29gpioregulator: Remove.Christian Mauderer1-1/+0
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-06-04libbsd.py: Install the evdev header files5.35.25.15Vijay Kumar Banerjee1-0/+1
2020-04-15ehci_imx: Add to build.Christian Mauderer1-0/+2
2020-04-15regulator: Add to build.Christian Mauderer1-0/+30
Update #3869.
2020-04-15imx6_ccm: Add and build module.Christian Mauderer1-0/+23
Update #3869.
2020-03-05waf: Change the test configure check for libdebugger to it's libChris Johns1-2/+2
- Add support for a 'test-if-library' - Use rtems_waf's 'test_application()' fragment in the check_cc call Closes #3948
2020-02-10i386: Add to buildJan Sommer1-2/+5
2019-12-19SOCKATMARK(3): Import from FreeBSDSebastian Huber1-0/+1
Update #3798.
2019-11-13NVMECONTROL(8): Port to RTEMSSebastian Huber1-0/+1
Update #3821.
2019-11-13NVMECONTROL(8): Add to buildSebastian Huber1-0/+31
Update #3821.
2019-11-13NVD(4): Add RTEMS-specific NVMe disk driverSebastian Huber1-0/+6
Update #3821.
2019-11-13NVME(4): Install header filesSebastian Huber1-0/+1
Update #3821.
2019-11-13NVME(4): Add build moduleSebastian Huber1-0/+30
Update #3821.
2019-11-13Update to FreeBSD head 2019-09-24Sebastian Huber1-83/+92
Git mirror commit 6b0307a0a5184339393f555d5d424190d8a8277a.
2019-09-24Remove obsolete header filesSebastian Huber1-1/+0
2019-09-24Fix pgsigio() warningsSebastian Huber1-1/+0
2019-09-23PCI(4): Import missing fileSebastian Huber1-1/+2
2019-09-23PCI(4): Install header filesSebastian Huber1-1/+2
2019-09-23Add <sys/disk.h> to build moduleSebastian Huber1-0/+1
2019-08-31rtemsbsd: remove dead code fb.cVijay Kumar Banerjee1-1/+0
2019-08-27Remove superfluous support for preloaded modulesSebastian Huber1-1/+0
2019-08-11am335x display drivers: Port to RTEMSVijay Kumar Banerjee1-0/+5