Files
2022-02-08 11:20:42 -08:00

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."