From 900e106773deca1e2c1ddc59c5025bfa70b603f3 Mon Sep 17 00:00:00 2001 From: "Justin M. Forbes" Date: Sun, 10 Mar 2019 23:07:35 -0500 Subject: Linux-v5.0.1 --- scripts/stable-update.sh | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) (limited to 'scripts/stable-update.sh') diff --git a/scripts/stable-update.sh b/scripts/stable-update.sh index 2ea5fb78b..26c81b937 100755 --- a/scripts/stable-update.sh +++ b/scripts/stable-update.sh @@ -35,28 +35,13 @@ 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 fi fi -if [ ! -f "patch-$1.sign" ]; then - wget "https://cdn.kernel.org/pub/linux/kernel/v4.x/patch-$1.sign" - if [ ! $? -eq 0 ]; then - echo "Signature download failed" - exit 1 - fi -fi - -xzcat "patch-$1.xz" | gpg2 --verify "patch-$1.sign" - -if [ ! $? -eq 0 ]; then - echo "Patch file has invalid or untrusted signature!" - echo "See https://www.kernel.org/category/signatures.html" - exit 1 -fi - grep $1 sources &> /dev/null if [ ! $? -eq 0 ]; then fedpkg upload patch-$1.xz -- cgit