|
@@ -217,9 +217,20 @@ else
|
|
|
fi
|
|
|
maintainer="$name <$email>"
|
|
|
|
|
|
+# Try to determine distribution
|
|
|
+if [ -n "$KDEB_CHANGELOG_DIST" ]; then
|
|
|
+ distribution=$KDEB_CHANGELOG_DIST
|
|
|
+elif distribution=$(lsb_release -cs 2>/dev/null) && [ -n "$distribution" ]; then
|
|
|
+ : # nothing to do in this case
|
|
|
+else
|
|
|
+ distribution="unstable"
|
|
|
+ echo >&2 "Using default distribution of 'unstable' in the changelog"
|
|
|
+ echo >&2 "Install lsb-release or set \$KDEB_CHANGELOG_DIST explicitly"
|
|
|
+fi
|
|
|
+
|
|
|
# Generate a simple changelog template
|
|
|
cat <<EOF > debian/changelog
|
|
|
-linux-upstream ($packageversion) unstable; urgency=low
|
|
|
+linux-upstream ($packageversion) $distribution; urgency=low
|
|
|
|
|
|
* Custom built Linux kernel.
|
|
|
|
|
@@ -233,10 +244,10 @@ This is a packacked upstream version of the Linux kernel.
|
|
|
The sources may be found at most Linux ftp sites, including:
|
|
|
ftp://ftp.kernel.org/pub/linux/kernel
|
|
|
|
|
|
-Copyright: 1991 - 2009 Linus Torvalds and others.
|
|
|
+Copyright: 1991 - 2015 Linus Torvalds and others.
|
|
|
|
|
|
The git repository for mainline kernel development is at:
|
|
|
-git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
|
|
|
+git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
it under the terms of the GNU General Public License as published by
|