[kernel] Add sanity check for baserelease

Chuck Ebbert cebbert at fedoraproject.org
Mon Nov 7 13:46:56 UTC 2011


commit 05e763b50e0db1ef9c00a211e3c6a92f5032190a
Author: Chuck Ebbert <cebbert at redhat.com>
Date:   Mon Nov 7 08:46:25 2011 -0500

    Add sanity check for baserelease

 kernel.spec |   14 +++++++++++---
 1 files changed, 11 insertions(+), 3 deletions(-)
---
diff --git a/kernel.spec b/kernel.spec
index e5a4fc6..6c240e4 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -48,10 +48,13 @@ Summary: The Linux kernel
 # reset this by hand to 1 (or to 0 and then use rpmdev-bumpspec).
 # scripts/rebase.sh should be made to do that for you, actually.
 #
-# For non-released -rc kernels, this will be prepended with "0.", so
-# for example a 3 here will become 0.3
+# NOTE: baserelease must be > 0 or bad things will happen if you switch
+#       to a released kernel (released version will be < rc version)
 #
-%global baserelease 0
+# For non-released -rc kernels, this will be appended after the rcX and
+# gitX tags, so a 3 here would become part of release "0.rcX.gitX.3"
+#
+%global baserelease 1
 %global fedora_build %{baserelease}
 
 # base_sublevel is the kernel version we're starting with and patching
@@ -968,6 +971,11 @@ exit 1
 %endif
 %endif
 
+%if !%{baserelease}
+echo "baserelease must be greater than zero"
+exit 1
+%endif
+
 # more sanity checking; do it quietly
 if [ "%{patches}" != "%%{patches}" ] ; then
   for patch in %{patches} ; do


More information about the scm-commits mailing list