summaryrefslogtreecommitdiffstats
path: root/libbsd.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* if_lpe.c: Port to LibBSDSebastian Huber2022-06-241-0/+1
|
* if_lpe.c: Import legacy LPC Ethernet driverSebastian Huber2022-06-241-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.
* tcpdump01: New testSebastian Huber2022-05-121-0/+1
| | | | Update #4650.
* libbsd: Add TFTP filesystem to test media01Frank Kühndel2022-04-251-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
* if_xae: Port to RTEMSAlex White2022-03-071-0/+35
|
* Add MicroBlaze supportJennifer Averett2022-03-071-3/+3
|
* if_mve: Add MV643XX Ethernet driverHeinz Junkes2022-03-071-0/+19
| | | | Update #4345.
* Add support for Xilinx Versal APACChris Johns2021-10-211-0/+1
|
* kern/sys: Add NFSv4 clientChris Johns2021-08-311-1/+137
| | | | Update #4475
* kern/sys: Add the kernel RPC and XDR supportChris Johns2021-08-281-0/+67
| | | | Updates #4475
* sys/kern: Add VFS supportChris Johns2021-08-281-1/+48
| | | | | | | | | | - Refactor the libio interface - Move syscalls into an rtemsbsd location - Provide a root directory mount point Update #4475
* rtemsbsd: Remove DHCP init wrapperChris Johns2021-08-281-1/+0
| | | | | | - Object files cannot config init and resided in libbsd.a Update #4475
* kern: Add kernel trace support (KTR)Chris Johns2021-08-281-0/+2
| | | | Update #4475
* kern: Add a proc0Chris Johns2021-08-281-0/+2
| | | | | | - Provides the thread's proc pointer and with that access to creds Update #4475
* waf: Fix clashing symbols in the user land symbolsChris Johns2021-08-281-1/+1
| | | | Update #4475
* rtemsbsd: Add interface support routinesChris Johns2021-08-271-0/+1
| | | | - Add the ability to check if an interface is up
* rtemsbsd: Added a test for the TTCP command.Stephen Clark2021-06-291-0/+1
| | | | | | Added a new test for the TTCP command. Modified default-network-init.h to conditionally build the shell with TTCP. Modified libbsd.py to build the new TTCP test.
* rtemsbsd: Made TTCP command build for RTEMSStephen Clark2021-06-291-0/+2
| | | | | | | | | | Updated ttcp.c to build clean for RTEMS 6 and the machines it originally built for. Also fixed ttcp.c to close network sockets after completion. Defined a shell command for TTCP in rtems-bsd-shell-ttcp.c. Added TTCP to the list of RTEMS network commands in netcmds-config.h. Added declaration of the TTCP shell command to rtems-bsd-commands.h. Modified libbsd.py to make waf build TTCP and its shell command.
* waf_libbsd.py: Apply path-mappings to header-pathsJan Sommer2021-06-091-1/+1
|
* STM32H7: Add SDMMC driverChristian Mauderer2021-04-011-0/+2
| | | | Update #4372
* testsuite/media01: Add pattern testChristian Mauderer2021-04-011-1/+1
| | | | Update #4372
* nexus: Add ZynqMP SLCR driverKinsey Moore2021-03-101-0/+1
| | | | | | | Add a System Level Control Register driver for the Xilinx Zynq Ultrascale+ MPSoC with basic clock control functionality for use with the Cadence GEM. This also removes the Zynq-7000 clock control weakref from compilation depending on the BSP in use.
* ehci_pci: Add to build systemMoyano, Gabriel2021-03-081-0/+2
| | | | Closes #4264
* zynq: Add support for SDHCI devicesKinsey Moore2020-12-221-0/+1
|
* Update arm64/aarch64 supportKinsey Moore2020-11-131-0/+21
|
* dwc_otg: Add support for nexus busSebastian Huber2020-10-271-0/+2
| | | | Update #3910.
* if_stmac: Add driver for STM32H7 ethernet moduleSebastian Huber2020-10-271-0/+1
| | | | Update #3910.
* powerpc/nexus: Add legacy PCI support to PowerPC Motorola Shared BSP familyChris Johns2020-10-201-1/+1
|
* waf: Fix test module dependency checkChris Johns2020-09-301-2/+2
|
* Add moxie supportSebastian Huber2020-09-291-1/+2
|
* Add or1k supportSebastian Huber2020-09-291-1/+1
|
* waf: Implement module dependency checking in the build systemChris Johns2020-09-161-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
* build: Separate the kernel and user land include pathsChris Johns2020-09-161-229/+301
| | | | | | | | | | | | | | | | | | | | | | | - 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
* mcast01: Add test programSebastian Huber2020-09-101-0/+1
|
* ifmcstat: Port to RTEMSSebastian Huber2020-09-071-0/+3
|
* imx: Use RTEMS GPIO driver instead of FreeBSD oneChristian Mauderer2020-07-291-1/+1
| | | | Update 3869
* gpioregulator: Remove.Christian Mauderer2020-07-291-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.
* i386: Add missing files to build systemJan Sommer2020-04-171-3/+9
| | | | | | | - Update FreeBSD files in libbsd.py to required by i386 based BSPs - Some machine specific header files have moved to different directories in FreeBSD - Add missing files e1000 network driver (iflib*)
* waf: Add path-mappings featureJan Sommer2020-04-171-0/+8
| | | | | | - path-mappings allow to fix autogenerated include paths for some corner cases of target platforms without the need to change the build system - Currently used for i386 based bsps
* ehci_imx: Add to build.Christian Mauderer2020-04-151-0/+2
|
* regulator: Add to build.Christian Mauderer2020-04-141-0/+30
| | | | Update #3869.
* imx6_ccm: Add and build module.Christian Mauderer2020-04-141-0/+23
| | | | Update #3869.
* waf: Change the test configure check for libdebugger to it's libChris Johns2020-03-051-2/+2
| | | | | | | | | - Add support for a 'test-if-library' - Use rtems_waf's 'test_application()' fragment in the check_cc call Closes #3948
* Update to FreeBSD stable/12 2020-02-10Sebastian Huber2020-02-181-4/+4
| | | | Git mirror commit 0d1c391321b34b3025cf0e72f2231d836ff76da8.
* SOCKATMARK(3): Import from FreeBSDSebastian Huber2019-12-191-0/+1
| | | | Close #3798.
* NVMECONTROL(8): Port to RTEMSSebastian Huber2019-11-131-0/+1
| | | | Update #3821.
* NVMECONTROL(8): Add to buildSebastian Huber2019-11-131-0/+31
| | | | Update #3821.
* NVD(4): Add RTEMS-specific NVMe disk driverSebastian Huber2019-11-131-0/+6
| | | | Update #3821.
* NVME(4): Install header filesSebastian Huber2019-11-131-0/+1
| | | | Update #3821.
* NVME(4): Add build moduleSebastian Huber2019-11-131-0/+30
| | | | Update #3821.