14 lines
148 B
Bash
14 lines
148 B
Bash
|
#! /bin/bash
|
||
|
|
||
|
cd /usr/src/linux
|
||
|
|
||
|
make oldconfig
|
||
|
|
||
|
make menuconfig
|
||
|
|
||
|
make -j17
|
||
|
make modules_install
|
||
|
make install
|
||
|
|
||
|
grub-mkconfig -o /boot/grub/grub.cfg
|