2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-02 14:02:27 +00:00
repo/core/linux/build
2019-07-19 15:07:42 +07:00

23 lines
476 B
Bash
Executable File

#!/bin/sh -e
# Grab the package version.
read -r version _ < "${0%/*}/version"
mkdir -p "$1/boot" "$1/usr/lib/modules"
make
make \
INSTALL_PATH="$1/boot" \
INSTALL_MOD_PATH="$1/usr" \
modules_install
make \
INSTALL_PATH="$1/boot" \
INSTALL_MOD_PATH="$1/usr" \
install
# Rename 'vmlinuz' and 'System.map" according to package version.
mv "$1/boot/vmlinuz" "$1/boot/vmlinuz-$version" || :
mv "$1/boot/System.map" "$1/boot/System.map-$version" || :