[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <200802131118.11413.elendil@planet.nl>
Date: Wed, 13 Feb 2008 11:18:11 +0100
From: Frans Pop <elendil@...net.nl>
To: linux-kernel@...r.kernel.org
Cc: sam@...nborg.org
Subject: [PATCH] kbuild: allow to specify a custom revision for .deb packages
From: Frans Pop <elendil@...net.nl>
Allow to specify a custom revision for the generated .deb package
by exporting the environment variable KERNELDEBREVISION.
Signed-off-by: Frans Pop <elendil@...net.nl>
diff --git a/scripts/package/builddeb b/scripts/package/builddeb
index ba6bf5d..2577dec 100644
--- a/scripts/package/builddeb
+++ b/scripts/package/builddeb
@@ -14,6 +14,11 @@ set -e
# Some variables and settings used throughout the script
version=$KERNELRELEASE
revision=`cat .version`
+if [ x"$KERNELDEBREVISION" = x ]; then
+ debrevision=$version-$revision
+else
+ debrevision=$KERNELDEBREVISION
+fi
tmpdir="$objtree/debian/tmp"
packagename=linux-$version
@@ -66,7 +71,7 @@ done
name="Kernel Compiler <$(id -nu)@$(hostname -f)>"
# Generate a simple changelog template
cat <<EOF > debian/changelog
-linux ($version-$revision) unstable; urgency=low
+linux ($debrevision) unstable; urgency=low
* A standard release
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists