summaryrefslogtreecommitdiff
path: root/slackware-bootstrap
diff options
context:
space:
mode:
Diffstat (limited to 'slackware-bootstrap')
-rwxr-xr-xslackware-bootstrap/kernel8
1 files changed, 4 insertions, 4 deletions
diff --git a/slackware-bootstrap/kernel b/slackware-bootstrap/kernel
index 100364c..a6eb9da 100755
--- a/slackware-bootstrap/kernel
+++ b/slackware-bootstrap/kernel
@@ -1,6 +1,6 @@
#!/bin/bash
-KVER="7.0.9"
+KVER="7.1.3"
CVER=$(uname -r)
pushd $PWD
@@ -8,8 +8,8 @@ pushd $PWD
mkdir $basedir/linux
cd $basedir/linux
wget https://cdn.kernel.org/pub/linux/kernel/v7.x/linux-$KVER.tar.xz
-unxz linux*
-tar -xvf linux*
+unxz linux-$KVER.tar.xz
+tar -xvf linux-$KVER.tar
rm *.tar.xz
mv linux-$KVER /usr/src/
@@ -20,7 +20,7 @@ make mrproper
zcat /proc/config.gz > .config
make olddefconfig
-make -j12
+make -j$(nproc)
make modules_install
cp arch/x86/boot/bzImage /boot/vmlinuz-$KVER