Skip to content

Commit

Permalink
update changelog & README.
Browse files Browse the repository at this point in the history
  • Loading branch information
HappyBasher committed Nov 12, 2023
1 parent 3e18017 commit 4c35258
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -373,15 +373,15 @@ Perform the following 4 steps to execute your own boot script during the linbo-c
4. Apply your changes to the linbo filesystem by executing `update-linbofs`.
## Integrate your own kernel
From Linbo version 4.2.4 you can integrate your own kernel into the Linbo file system. Simply create a file under `/etc/linuxmuster/linbo/custom_kernel` and define the paths to the kernel image and the module directory:
From Linbo version 4.2.4 you can integrate an alternative kernel into the Linbo file system. Simply create a file under `/etc/linuxmuster/linbo/custom_kernel` and define the paths to the kernel image and the modules directory. For the legacy kernel shipped with Linbo you have to make the following two entries:
```
# path to kernel image
KERNELPATH="/boot/vmlinuz-$(uname -r)"
KERNELPATH="/var/lib/linuxmuster/linbo/legacy/linbo64"

# path to the corresponding modules directory
MODULESPATH="/lib/modules/$(uname -r)"
MODULESPATH="/var/lib/linuxmuster/linbo/legacy/modules"
```
To apply your own kernel you have to execute `update-linbofs`. The example above points to the currently active kernel image and modules used by the server. But you can use any other kernel, kernels delivered with the server or other distros or even one compiled on another machine and copied to the server. You only have to provide the paths to the kernel image and the module directory. Note that your own kernel will be a much larger than the included linbo kernel and that you have to test it if it fits to your client hardware. With self-compiled Linbo kernels, art is to omit unneededed modules to optimize size. A starting point can be the [configuration file of the supplied kernel](https://github.com/linuxmuster/linuxmuster-linbo7/blob/main/build/config/kernel).
To apply then changes you have to execute `update-linbofs`. The example above points to the alternative Linbo legacy kernel image and modules. But you can use any other kernel, kernels delivered with the server or other distros or even one compiled on another machine and copied to the server. You only have to provide the paths to the kernel image and the modules directory. Note that your own kernel will be a much larger than the included linbo kernels and that you have to test it if it fits to your client hardware. With self-compiled Linbo kernels, art is to omit unneededed modules to optimize size. A starting point can be the [configuration file of the supplied kernel](https://github.com/linuxmuster/linuxmuster-linbo7/blob/main/build/config/kernel).
## Build environment
Expand Down
2 changes: 1 addition & 1 deletion debian/changelog
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ linuxmuster-linbo7 (4.2.5-0) lmn72; urgency=low

* add ability to use Linbo's legacy kernel 5.15.138 alternatively (#107, 503b181, b6f0242).

-- Thomas Schmitt <[email protected]> Sun, 12 Nov 2023 13:08:48 +0000
-- Thomas Schmitt <[email protected]> Sun, 12 Nov 2023 13:23:39 +0000

linuxmuster-linbo7 (4.2.4-0) lmn72; urgency=low

Expand Down

0 comments on commit 4c35258

Please sign in to comment.