Update package version to 6.12.19
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user