summaryrefslogtreecommitdiffstats
path: root/scripts
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:32 +0200
commit89767e4a7aebe2809c5e033a14fd17bcc59f8451 (patch)
tree0bb00cd944bd348b6d1b86a299efea26dfad826c /scripts
parent6f580f37f8a1a7d9189664fab3e4dc095a014339 (diff)
downloadkernel-89767e4a7aebe2809c5e033a14fd17bcc59f8451.tar.gz
kernel-89767e4a7aebe2809c5e033a14fd17bcc59f8451.tar.xz
kernel-89767e4a7aebe2809c5e033a14fd17bcc59f8451.zip
adjust script for 5.0
Diffstat (limited to 'scripts')
-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 2cbda8a34..9055ae248 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
@@ -40,7 +39,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
@@ -48,7 +47,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