diff options
| author | aura <nw@moneybot.cc> | 2026-08-14 05:27:37 +0200 |
|---|---|---|
| committer | aura <nw@moneybot.cc> | 2026-08-14 05:27:37 +0200 |
| commit | d50dacf84a541c265d690fee7d707ce5b483e708 (patch) | |
| tree | 928aa134d72e266dd9e6635caef7834830a246c7 /slackware-bootstrap | |
| parent | 13cd5f17559e07d631edc08ec939c0f917ffa8fe (diff) | |
Diffstat (limited to 'slackware-bootstrap')
| -rwxr-xr-x | slackware-bootstrap/kernel | 8 |
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 |
