2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-04 23:12:28 +00:00
repo/core/linux/build

23 lines
476 B
Plaintext
Raw Normal View History

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