Update package version to 6.12.19

This commit is contained in:
2025-03-15 15:32:03 +02:00
parent bd17c3611a
commit 72ab2fc100
2 changed files with 13 additions and 7 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
name: linux-lts
description: The longterm support version of the linux kernel
version: 6.12.17
version: 6.12.19
url: https://www.kernel.org/
license: GPL2-only
architecture: any
+12 -6
View File
@@ -26,13 +26,19 @@ build() {
# The package function is executed in the source directory
# This function is used to move the compiled files into the output directory
package() {
# Install kernel modules
make INSTALL_MOD_PATH="$BPM_OUTPUT" modules_install
mkdir -p "$BPM_OUTPUT"/boot
cp -v arch/x86/boot/bzImage "$BPM_OUTPUT"/boot/vmlinuz-"$BPM_PKG_VERSION"-tide
cp -v .config "$BPM_OUTPUT"/boot/config-"$BPM_PKG_VERSION"-tide
# Install kernel image and config
install -Dm644 arch/x86/boot/bzImage "$BPM_OUTPUT"/boot/vmlinuz-"$BPM_PKG_VERSION"-tide
install -Dm644 .config "$BPM_OUTPUT"/boot/config-"$BPM_PKG_VERSION"-tide
# Install kernel headers
find usr/include -type f ! -name '*.h' -delete
mkdir -p "$BPM_OUTPUT"/usr/include
install -d "$BPM_OUTPUT"/usr/include
cp -r usr/include/. "$BPM_OUTPUT"/usr/include/
mkdir -p "$BPM_OUTPUT"/usr/share/doc/
cp -r Documentation -T "$BPM_OUTPUT"/usr/share/doc/linux-"$BPM_PKG_VERSION"-tide
# Install documentation
install -d "$BPM_OUTPUT"/usr/share/doc/
cp -r Documentation "$BPM_OUTPUT"/usr/share/doc/linux-"$BPM_PKG_VERSION"-tide
}