You've already forked T2-Gentoo-Kernel
mirror of
https://github.com/t2linux/T2-Gentoo-Kernel.git
synced 2026-04-30 13:50:03 -07:00
19 lines
398 B
Bash
19 lines
398 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
# This file is for anyone who does not want to package up their kernel and just want to install it
|
|
|
|
source INFO
|
|
|
|
SCRIPT_DIR="$(dirname -- "$(readlink -f -- "${BASH_SOURCE[0]}")")"
|
|
|
|
cd $SCRIPT_DIR/${KERNEL_DIR}
|
|
echo "==> Installing modules..."
|
|
make modules_install
|
|
|
|
echo "==> Installing Linux Kernel..."
|
|
make install
|
|
|
|
echo "Done installing the Linux Kernel."
|