Skip to content

Commit 42464bc

Browse files
committed
Fix ci and readme file
1 parent 2363e01 commit 42464bc

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/freebsd-build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ on:
99
jobs:
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
@@ -28,9 +28,9 @@ jobs:
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

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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

351351
1. **Fork the repository** and create a feature branch
352352
2. **Follow FreeBSD style(9)** coding standards
353-
3. **Test thoroughly** on FreeBSD 14.x
353+
3. **Test thoroughly** on FreeBSD 14.3+
354354
4. **Update documentation** as needed
355355
5. **Submit a pull request** with clear description
356356

0 commit comments

Comments
 (0)