File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 99jobs :
1010 build :
1111 runs-on : ubuntu-latest
12- name : Build on FreeBSD 14.1
12+ name : Build on FreeBSD 14.3
1313 steps :
1414 - uses : actions/checkout@v4
1515
1616 - name : Build and test in FreeBSD VM
1717 uses : vmactions/freebsd-vm@v1
1818 with :
19- release : ' 14.1 '
19+ release : ' 14.3 '
2020 usesh : true
2121 prepare : |
2222 pkg install -y llvm
2828
2929 # Verify kernel sources are available
3030 if [ ! -d /usr/src/sys ]; then
31- echo "ERROR: Kernel sources not found at /usr/src/sys"
31+ echo "Kernel sources not found at /usr/src/sys"
3232 echo "Installing kernel sources..."
33- fetch https://download.freebsd.org/ftp/releases/amd64/14.1 -RELEASE/src.txz
33+ fetch https://download.freebsd.org/ftp/releases/amd64/14.3 -RELEASE/src.txz
3434 tar -C / -xzf src.txz
3535 fi
3636
Original file line number Diff line number Diff line change 11# BFCFS - FreeBSD Kernel Module
22
33[ ![ License] ( https://img.shields.io/badge/License-BSD%203--Clause-blue.svg )] ( LICENSE )
4- [ ![ FreeBSD] ( https://img.shields.io/badge/FreeBSD-14.x +-red.svg )] ( https://www.freebsd.org/ )
4+ [ ![ FreeBSD] ( https://img.shields.io/badge/FreeBSD-14.3 +-red.svg )] ( https://www.freebsd.org/ )
55[ ![ Build Status] ( https://img.shields.io/github/actions/workflow/status/zombocoder/bfcfs-freebsd/freebsd-build.yml?branch=main )] ( https://github.com/zombocoder/bfcfs-freebsd/actions )
66[ ![ Status] ( https://img.shields.io/badge/Status-Stable-brightgreen.svg )] ( #features )
77
@@ -16,7 +16,7 @@ FreeBSD kernel module for mounting BFC (Binary File Container) filesystem images
1616
1717## Requirements
1818
19- - FreeBSD 14.x or later
19+ - FreeBSD 14.3 or later
2020- Kernel sources installed at ` /usr/src/sys `
2121- C compiler (clang)
2222
@@ -36,7 +36,7 @@ Before building, ensure you have:
3636
3737 ``` sh
3838 # If kernel sources are not installed, fetch them:
39- fetch https://download.freebsd.org/ftp/releases/amd64/14.1 -RELEASE/src.txz
39+ fetch https://download.freebsd.org/ftp/releases/amd64/14.3 -RELEASE/src.txz
4040 doas tar -C / -xzf src.txz
4141 ```
4242
@@ -350,7 +350,7 @@ Contributions are welcome! Please:
350350
3513511 . ** Fork the repository** and create a feature branch
3523522 . ** Follow FreeBSD style(9)** coding standards
353- 3 . ** Test thoroughly** on FreeBSD 14.x
353+ 3 . ** Test thoroughly** on FreeBSD 14.3+
3543544 . ** Update documentation** as needed
3553555 . ** Submit a pull request** with clear description
356356
You can’t perform that action at this time.
0 commit comments