From: Frans Pop <[EMAIL PROTECTED]> Allow to specify a custom revision for the generated .deb package by exporting the environment variable KERNELDEBREVISION.
Signed-off-by: Frans Pop <[EMAIL PROTECTED]> 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 [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/