Skip to content

Commit

Permalink
LKRG 0.9.8
Browse files Browse the repository at this point in the history
  • Loading branch information
solardiz committed Feb 27, 2024
1 parent 3943fa1 commit 3475496
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 13 deletions.
2 changes: 1 addition & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
The following major changes have been made since LKRG 0.9.7:
The following major changes have been made between LKRG 0.9.7 and 0.9.8:

*) Add optional remote kernel message logging, including the sending component
in LKRG itself and the receiving/logging counterpart in a userspace daemon,
Expand Down
23 changes: 12 additions & 11 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ LKRG is a kernel module (not a kernel patch), so it can be built for and loaded
on top of a wide range of mainline and distros' kernels, without needing to
patch those. We currently support kernel versions ranging from as far back as
RHEL7's (and its many clones/revisions) and Ubuntu 16.04's to latest mainline
and distros' kernels. We've tested this revision of LKRG with Linux kernels
up to and including 6.5, and slightly beyond.
and distros' kernels. Our Continuous Integration setup has tested this version
of LKRG with up to latest mainline kernel 6.8.0-060800rc6daily20240227-generic
as available for Ubuntu on the release date.

LKRG currently supports the x86-64, 32-bit x86, AArch64 (ARM64), and 32-bit ARM
CPU architectures.
Expand All @@ -33,9 +34,9 @@ like the below:

wget https://www.openwall.com/signatures/openwall-offline-signatures.asc
gpg --import openwall-offline-signatures.asc
wget https://lkrg.org/download/lkrg-0.9.7.tar.gz.sign
wget https://lkrg.org/download/lkrg-0.9.7.tar.gz
gpg --verify lkrg-0.9.7.tar.gz.sign lkrg-0.9.7.tar.gz
wget https://lkrg.org/download/lkrg-0.9.8.tar.gz.sign
wget https://lkrg.org/download/lkrg-0.9.8.tar.gz
gpg --verify lkrg-0.9.8.tar.gz.sign lkrg-0.9.8.tar.gz

Please preserve the GnuPG key above and also use it to verify future releases,
which will most likely work in a similar manner.
Expand Down Expand Up @@ -179,12 +180,12 @@ What this means in effect is that on kernel upgrades the module is rebuilt.
You can install LKRG using DKMS as well. For instance, on Red Hat'ish
distributions after following the shared download instructions above:

sudo tar -xzf lkrg-0.9.7.tar.gz -C /usr/src/
sudo tar -xzf lkrg-0.9.8.tar.gz -C /usr/src/
sudo dnf update -y
sudo dnf install kernel-devel dkms openssl
sudo dkms add -m lkrg -v 0.9.7
sudo dkms build -m lkrg -v 0.9.7
sudo dkms install -m lkrg -v 0.9.7
sudo dkms add -m lkrg -v 0.9.8
sudo dkms build -m lkrg -v 0.9.8
sudo dkms install -m lkrg -v 0.9.8

The only difference on other distributions should be the installation of the
kernel headers, the DKMS utility, and OpenSSL. Install the headers for the
Expand All @@ -196,7 +197,7 @@ You can then query the status with:

If everything is right, you should get similar output to the following:

lkrg/0.9.7, 5.18.9-200.fc36.x86_64, x86_64: installed
lkrg/0.9.8, 5.18.9-200.fc36.x86_64, x86_64: installed

Please refer to the previous two sections for how to start the LKRG service or
have it started on system bootup. If you wish to use the unit/init file, you
Expand All @@ -215,7 +216,7 @@ while you're in the top level source code directory of the installed version.

If you installed using DKMS, you'd uninstall with:

sudo dkms remove -m lkrg/0.9.7 --all
sudo dkms remove -m lkrg/0.9.8 --all

You can also use the following command to temporarily stop the LKRG service
without uninstalling it, for systemd:
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
lkrg (0.9.8-1) unstable; urgency=medium

* New upstream release.

-- Solar Designer <[email protected]> Tue, 27 Feb 2024 23:30:00 +0100

lkrg (0.9.7-1) unstable; urgency=medium

* New upstream release.
Expand Down
2 changes: 1 addition & 1 deletion dkms.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PACKAGE_NAME="lkrg"
PACKAGE_VERSION="0.9.7"
PACKAGE_VERSION="0.9.8"
#BUILT_MODULE_LOCATION[0]="output"
BUILT_MODULE_NAME[0]="lkrg"
DEST_MODULE_LOCATION[0]="/updates/dkms"
Expand Down

0 comments on commit 3475496

Please sign in to comment.