Fix up the rawhide-rc.sh script for 5.x
This commit is contained in:
parent
bfbaeaff47
commit
02d1cba5ee
@ -22,19 +22,20 @@ BASE=`grep "%define base_sublevel" kernel.spec| cut -d ' ' -f 3`
|
|||||||
OLDBASE=$BASE
|
OLDBASE=$BASE
|
||||||
# See comment in kernel.spec about the base numbering
|
# See comment in kernel.spec about the base numbering
|
||||||
BASE=$(($BASE+1))
|
BASE=$(($BASE+1))
|
||||||
|
MAJORVER=5
|
||||||
|
|
||||||
# Kill all patches
|
# Kill all patches
|
||||||
awk '!/patch/ { print $0 }' < sources > sources.tmp
|
awk '!/patch/ { print $0 }' < sources > sources.tmp
|
||||||
mv sources.tmp sources
|
mv sources.tmp sources
|
||||||
|
|
||||||
# Grab the tarball
|
# Grab the tarball
|
||||||
if [ ! -f patch-4.$BASE-rc$RC.xz ]; then
|
if [ ! -f patch-$MAJORVER.$BASE-rc$RC.xz ]; then
|
||||||
wget -O patch-4.$BASE-rc$RC https://git.kernel.org/torvalds/p/v4.$BASE-rc$RC/v4.$OLDBASE
|
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
|
if [ ! $? -eq 0 ]; then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
xz -9 patch-4.$BASE-rc$RC
|
xz -9 patch-$MAJORVER.$BASE-rc$RC
|
||||||
fedpkg upload patch-4.$BASE-rc$RC.xz
|
fedpkg upload patch-$MAJORVER.$BASE-rc$RC.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# bump rcrev in the spec and set git snapshot to 0
|
# bump rcrev in the spec and set git snapshot to 0
|
||||||
@ -44,6 +45,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
|
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"
|
echo "Don't forget to bump kernel-tools"
|
||||||
|
Loading…
Reference in New Issue
Block a user