summaryrefslogtreecommitdiffstats
path: root/scripts/stable-update.sh
diff options
context:
space:
mode:
authorThorsten Leemhuis <fedora@leemhuis.info>2019-03-10 07:49:52 +0100
committerThorsten Leemhuis <fedora@leemhuis.info>2019-09-21 07:46:23 +0200
commita68356aa40d379ffd9fbe964520e63e06dd18d17 (patch)
treee21ad122f8049010d3d5ae790b540f139e14d1ec /scripts/stable-update.sh
parent6f4466e5dde2443428a2fa51e86fd6d7109d8fc5 (diff)
downloadkernel-a68356aa40d379ffd9fbe964520e63e06dd18d17.tar.gz
kernel-a68356aa40d379ffd9fbe964520e63e06dd18d17.tar.xz
kernel-a68356aa40d379ffd9fbe964520e63e06dd18d17.zip
adjust script for 5.0
Diffstat (limited to 'scripts/stable-update.sh')
-rwxr-xr-xscripts/stable-update.sh5
1 files changed, 2 insertions, 3 deletions
diff --git a/scripts/stable-update.sh b/scripts/stable-update.sh
index 2ea5fb78b..27081df22 100755
--- a/scripts/stable-update.sh
+++ b/scripts/stable-update.sh
@@ -1,5 +1,4 @@
#!/bin/sh
-#
# Author: Laura Abbott <labbott@fedoraproject.org>
#
# Apply a stable patch update to the Fedora tree. This takes care of
@@ -35,7 +34,7 @@ if [ -z $VERSION ]; then
fi
if [ ! -f patch-$1.xz ]; then
- wget https://cdn.kernel.org/pub/linux/kernel/v4.x/patch-$1.xz
+ wget https://cdn.kernel.org/pub/linux/kernel/v5.x/patch-$1.xz
if [ ! $? -eq 0 ]; then
echo "Download fail"
exit 1
@@ -43,7 +42,7 @@ if [ ! -f patch-$1.xz ]; then
fi
if [ ! -f "patch-$1.sign" ]; then
- wget "https://cdn.kernel.org/pub/linux/kernel/v4.x/patch-$1.sign"
+ wget "https://cdn.kernel.org/pub/linux/kernel/v5.x/patch-$1.sign"
if [ ! $? -eq 0 ]; then
echo "Signature download failed"
exit 1