This repository was archived by the owner on Sep 19, 2024. It is now read-only.
File tree 5 files changed +15
-8
lines changed
5 files changed +15
-8
lines changed Original file line number Diff line number Diff line change @@ -195,13 +195,13 @@ sudo dnf install dkms
195
195
The Camblet can be installed with DKMS in the following way currently:
196
196
197
197
``` bash
198
- sudo git clone --recurse-submodule https://github.com/cisco-open/camblet-driver.git /usr/src/camblet-0.4 .0/
198
+ sudo git clone --recurse-submodule https://github.com/cisco-open/camblet-driver.git /usr/src/camblet-0.5 .0/
199
199
200
200
# Add the kernel module to the DKMS source control
201
- sudo dkms add -m camblet -v 0.4 .0
201
+ sudo dkms add -m camblet -v 0.5 .0
202
202
203
203
# Build and install the kernel module against the current kernel version
204
- sudo dkms install -m camblet -v 0.4 .0
204
+ sudo dkms install -m camblet -v 0.5 .0
205
205
206
206
# Load the kernel module
207
207
sudo modprobe camblet
@@ -217,8 +217,8 @@ Un-installation is very simple as well:
217
217
sudo modprobe -r camblet
218
218
219
219
# Remove the kernel module from DKMS source control
220
- sudo dkms uninstall -m camblet -v 0.4 .0
221
- sudo dkms remove -m camblet -v 0.4 .0
220
+ sudo dkms uninstall -m camblet -v 0.5 .0
221
+ sudo dkms remove -m camblet -v 0.5 .0
222
222
```
223
223
224
224
### Debian package
Original file line number Diff line number Diff line change
1
+ camblet-driver (0.5.0) unstable; urgency=medium
2
+
3
+ * Contains a fix for KTLS issues
4
+ * Project and code structure renaming
5
+
6
+ -- Camblet maintainers <
[email protected] > Thu, 18 Dec 2024 21:35:07 +0100
7
+
1
8
camblet-driver (0.4.0) unstable; urgency=medium
2
9
3
10
* Create a new make target bump version (#128)
Original file line number Diff line number Diff line change 1
1
PACKAGE_NAME="camblet"
2
- PACKAGE_VERSION="0.4 .0"
2
+ PACKAGE_VERSION="0.5 .0"
3
3
BUILT_MODULE_NAME[0]="camblet"
4
4
BUILT_MODULE_NAME[1]="bearssl"
5
5
MAKE[0]="make"
Original file line number Diff line number Diff line change 28
28
MODULE_AUTHOR (
"Camblet Maintainers <[email protected] >" );
29
29
MODULE_LICENSE ("Dual MIT/GPL" );
30
30
MODULE_DESCRIPTION ("Camblet - Kernel Space Access Control for Zero Trust Networking" );
31
- MODULE_VERSION ("0.3 .0" );
31
+ MODULE_VERSION ("0.5 .0" );
32
32
MODULE_SOFTDEP ("pre: tls" );
33
33
34
34
static bool proxywasm_modules = false;
Original file line number Diff line number Diff line change 1
1
Name: camblet-driver
2
- Version: 0.4 .0
2
+ Version: 0.5 .0
3
3
Release: 1%{?dist }
4
4
Summary: Kernel module for the Camblet project.
5
5
You can’t perform that action at this time.
0 commit comments