summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorThorsten Leemhuis <fedora@leemhuis.info>2019-03-18 15:59:30 +0100
committerThorsten Leemhuis <fedora@leemhuis.info>2019-03-18 15:59:30 +0100
commit5a86fcc0d12c79876416d21c6cd67859fe770b2a (patch)
treec6fa3cefc4764036f6f415c3ca2ad6de4f78548b /scripts
parente781a69ec5d97b73d8ab778c671c5cc4baad22b7 (diff)
parentb9534d956de311a7bdb390810010bfb0aa409a44 (diff)
downloadkernel-5a86fcc0d12c79876416d21c6cd67859fe770b2a.tar.gz
kernel-5a86fcc0d12c79876416d21c6cd67859fe770b2a.tar.xz
kernel-5a86fcc0d12c79876416d21c6cd67859fe770b2a.zip
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/rawhide-rc.sh18
1 files changed, 9 insertions, 9 deletions
diff --git a/scripts/rawhide-rc.sh b/scripts/rawhide-rc.sh
index 82e0e5224..45de1a95b 100755
--- a/scripts/rawhide-rc.sh
+++ b/scripts/rawhide-rc.sh
@@ -30,24 +30,24 @@ BASE=`grep "%define base_sublevel" kernel.spec| cut -d ' ' -f 3`
OLDBASE=$BASE
# See comment in kernel.spec about the base numbering
BASE=$(($BASE+1))
+MAJORVER=5
# Kill all patches
awk '!/patch/ { print $0 }' < sources > sources.tmp
mv sources.tmp sources
# Grab the tarball
-if [ ! -f patch-4.$BASE-rc$RC.xz ]; then
- wget -O patch-4.$BASE-rc$RC https://git.kernel.org/torvalds/p/v4.$BASE-rc$RC/v4.$OLDBASE
+if [ ! -f patch-$MAJORVER.$BASE-rc$RC.xz ]; then
+ wget -O patch-$MAJORVER.$BASE-rc$RC https://git.kernel.org/torvalds/p/v$MAJORVER.$BASE-rc$RC/v$MAJORVER.$OLDBASE
if [ ! $? -eq 0 ]; then
exit 1
fi
- xz -9 patch-4.$BASE-rc$RC
+ xz -9 patch-$MAJORVER.$BASE-rc$RC
+ #fedpkg upload patch-$MAJORVER.$BASE-rc$RC.xz
- # fedpkg upload patch-4.$BASE-rc$RC.xz
-
- checksum=$(sha512sum patch-4.$BASE-rc$RC.xz)
- echo "SHA512 (patch-4.$BASE-rc$RC.xz) = ${checksum:0:128}" >> sources
- fi
+ checksum=$(sha512sum patch-$MAJORVER.$BASE-rc$RC.xz)
+ echo "SHA512 (patch-$MAJORVER.$BASE-rc$RC.xz) = ${checksum:0:128}" >> sources
+fi
# bump rcrev in the spec and set git snapshot to 0
RC=$RC perl -p -i -e 's|%global rcrev.*|%global rcrev $ENV{'RC'}|' kernel.spec
@@ -56,6 +56,6 @@ perl -p -i -e 's|%define gitrev.*|%define gitrev 0|' kernel.spec
perl -p -i -e 's|%global baserelease.*|%global baserelease 0|' kernel.spec
-# rpmdev-bumpspec -c "Linux v4.$BASE-rc$RC" kernel.spec
+# rpmdev-bumpspec -c "Linux v$MAJORVER.$BASE-rc$RC" kernel.spec
echo "Don't forget to bump kernel-tools"