Update package version to 6.12.19
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
name: linux-lts
|
name: linux-lts
|
||||||
description: The longterm support version of the linux kernel
|
description: The longterm support version of the linux kernel
|
||||||
version: 6.12.17
|
version: 6.12.19
|
||||||
url: https://www.kernel.org/
|
url: https://www.kernel.org/
|
||||||
license: GPL2-only
|
license: GPL2-only
|
||||||
architecture: any
|
architecture: any
|
||||||
|
|||||||
@@ -26,13 +26,19 @@ build() {
|
|||||||
# The package function is executed in the source directory
|
# The package function is executed in the source directory
|
||||||
# This function is used to move the compiled files into the output directory
|
# This function is used to move the compiled files into the output directory
|
||||||
package() {
|
package() {
|
||||||
|
# Install kernel modules
|
||||||
make INSTALL_MOD_PATH="$BPM_OUTPUT" modules_install
|
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
|
# Install kernel image and config
|
||||||
cp -v .config "$BPM_OUTPUT"/boot/config-"$BPM_PKG_VERSION"-tide
|
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
|
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/
|
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
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user