Skip to content
This repository was archived by the owner on Sep 19, 2024. It is now read-only.

Commit 0134a74

Browse files
committed
prepare release 0.3.0
1 parent 5c25fbe commit 0134a74

File tree

4 files changed

+23
-12
lines changed

4 files changed

+23
-12
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,16 @@ jobs:
3535
- name: Build with DKMS
3636
working-directory: nasp-kernel-module
3737
run: |
38-
sudo cp -r . /usr/src/nasp-0.1.0/
39-
sudo dkms add -m nasp -v 0.1.0
40-
if sudo dkms build -m nasp -v 0.1.0; then
38+
sudo cp -r . /usr/src/nasp-0.3.0/
39+
sudo dkms add -m nasp -v 0.3.0
40+
if sudo dkms build -m nasp -v 0.3.0; then
4141
echo "DKMS build succeeded"
4242
else
4343
echo "DKMS build failed"
44-
cat /var/lib/dkms/nasp/0.1.0/build/make.log
44+
cat /var/lib/dkms/nasp/0.3.0/build/make.log
4545
exit 1
4646
fi
47-
sudo dkms install -m nasp -v 0.1.0
47+
sudo dkms install -m nasp -v 0.3.0
4848
4949
- name: Build Nasp CLI
5050
working-directory: nasp

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -189,13 +189,13 @@ sudo dnf install --enablerepo epel dkms
189189
The NASP can be installed with DKMS in the following way currently:
190190

191191
```bash
192-
sudo git clone --recurse-submodule https://github.com/cisco-open/nasp-kernel-module.git /usr/src/nasp-0.1.0/
192+
sudo git clone --recurse-submodule https://github.com/cisco-open/nasp-kernel-module.git /usr/src/nasp-0.3.0/
193193

194194
# Add the kernel module to the DKMS source control
195-
sudo dkms add -m nasp -v 0.1.0
195+
sudo dkms add -m nasp -v 0.3.0
196196

197197
# Build and install the kernel module against the current kernel version
198-
sudo dkms install -m nasp -v 0.1.0
198+
sudo dkms install -m nasp -v 0.3.0
199199

200200
# Load the kernel module
201201
sudo modprobe tls # required for kTLS
@@ -212,8 +212,8 @@ Un-installation is very simple as well:
212212
sudo modprobe -r nasp
213213

214214
# Remove the kernel module from DKMS source control
215-
sudo dkms uninstall -m nasp -v 0.1.0
216-
sudo dkms remove -m nasp -v 0.1.0
215+
sudo dkms uninstall -m nasp -v 0.3.0
216+
sudo dkms remove -m nasp -v 0.3.0
217217
```
218218

219219
### Debian package
@@ -237,5 +237,5 @@ make deb
237237
The package can be installed with the following command:
238238

239239
```bash
240-
sudo apt install ../nasp-kernel-module_0.1.0-1_all.deb
240+
sudo apt install ../nasp-kernel-module_0.3.0-1_all.deb
241241
```

debian/changelog

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
nasp-kernel-module (0.3.0) unstable; urgency=medium
2+
3+
* remove the module on package removal
4+
* add tls as module dependency
5+
* fix MODULE_AUTHOR
6+
* vscode template fixes
7+
* change module description
8+
* fix C Flexible array members (FAM) declaration
9+
10+
-- Nasp maintainers <[email protected]> Wed, 13 Dec 2023 18:19:36 +0000
11+
112
nasp-kernel-module (0.2.0) unstable; urgency=medium
213

314
* Second release.

dkms.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PACKAGE_NAME="nasp"
2-
PACKAGE_VERSION="0.1.0"
2+
PACKAGE_VERSION="0.3.0"
33
MAKE[0]="make"
44
BUILT_MODULE_NAME[0]="nasp"
55
BUILT_MODULE_NAME[1]="bearssl"

0 commit comments

Comments
 (0)