diff mbox

[1/3] UBUNTU: simplify meta package packaging

Message ID 1484862800-18825-2-git-send-email-tim.gardner@canonical.com
State New
Headers show

Commit Message

Tim Gardner Jan. 19, 2017, 9:53 p.m. UTC
git rm Makefile README
        git mv meta-source/debian .
        rmdir meta-source

    BugLink: http://bugs.launchpad.net/bugs/1601954

Signed-off-by: Tim Gardner <tim.gardner@canonical.com>
---
 Makefile                                   |   30 -
 README                                     |   18 -
 debian/changelog                           | 1927 ++++++++++++++++++++++++++++
 debian/compat                              |    1 +
 debian/control.common                      |  102 ++
 debian/control.d/generic                   |  121 ++
 debian/control.d/generic-pae               |  121 ++
 debian/control.d/highbank                  |   26 +
 debian/control.d/omap                      |   26 +
 debian/control.d/powerpc                   |   30 +
 debian/control.d/powerpc-smp               |   33 +
 debian/control.d/powerpc64-smp             |   33 +
 debian/control.d/server                    |   55 +
 debian/control.d/virtual                   |   47 +
 debian/copyright                           |   39 +
 debian/rules                               |   92 ++
 debian/source/options                      |    3 +
 meta-source/debian/changelog               | 1927 ----------------------------
 meta-source/debian/compat                  |    1 -
 meta-source/debian/control.common          |  102 --
 meta-source/debian/control.d/generic       |  121 --
 meta-source/debian/control.d/generic-pae   |  121 --
 meta-source/debian/control.d/highbank      |   26 -
 meta-source/debian/control.d/omap          |   26 -
 meta-source/debian/control.d/powerpc       |   30 -
 meta-source/debian/control.d/powerpc-smp   |   33 -
 meta-source/debian/control.d/powerpc64-smp |   33 -
 meta-source/debian/control.d/server        |   55 -
 meta-source/debian/control.d/virtual       |   47 -
 meta-source/debian/copyright               |   39 -
 meta-source/debian/rules                   |   92 --
 meta-source/debian/source/options          |    3 -
 32 files changed, 2656 insertions(+), 2704 deletions(-)
 delete mode 100644 Makefile
 delete mode 100644 README
 create mode 100644 debian/changelog
 create mode 100644 debian/compat
 create mode 100644 debian/control.common
 create mode 100644 debian/control.d/generic
 create mode 100644 debian/control.d/generic-pae
 create mode 100644 debian/control.d/highbank
 create mode 100644 debian/control.d/omap
 create mode 100644 debian/control.d/powerpc
 create mode 100644 debian/control.d/powerpc-smp
 create mode 100644 debian/control.d/powerpc64-smp
 create mode 100644 debian/control.d/server
 create mode 100644 debian/control.d/virtual
 create mode 100644 debian/copyright
 create mode 100755 debian/rules
 create mode 100644 debian/source/options
 delete mode 100644 meta-source/debian/changelog
 delete mode 100644 meta-source/debian/compat
 delete mode 100644 meta-source/debian/control.common
 delete mode 100644 meta-source/debian/control.d/generic
 delete mode 100644 meta-source/debian/control.d/generic-pae
 delete mode 100644 meta-source/debian/control.d/highbank
 delete mode 100644 meta-source/debian/control.d/omap
 delete mode 100644 meta-source/debian/control.d/powerpc
 delete mode 100644 meta-source/debian/control.d/powerpc-smp
 delete mode 100644 meta-source/debian/control.d/powerpc64-smp
 delete mode 100644 meta-source/debian/control.d/server
 delete mode 100644 meta-source/debian/control.d/virtual
 delete mode 100644 meta-source/debian/copyright
 delete mode 100755 meta-source/debian/rules
 delete mode 100644 meta-source/debian/source/options
diff mbox

Patch

diff --git a/Makefile b/Makefile
deleted file mode 100644
index fc0b59f..0000000
--- a/Makefile
+++ /dev/null
@@ -1,30 +0,0 @@ 
-LOG		:= meta-source/debian/changelog
-META_NAME	:= $(shell head -n 1 $(LOG) | sed 's/\(.*\)[[:space:]]\+(.*).*/\1/')
-META_VERSION	:= $(shell head -n 1 $(LOG) | sed 's/.*(\(.*\)).*/\1/')
-META_SERIES	:= $(shell head -n 1 $(LOG) | sed 's/.*(.*)[[:space:]]\+\(.*\);.*/\1/' | sed 's/-.*//')
-LAST_VERSION	?= $(shell rmadison -a source -s $(META_SERIES)-updates $(META_NAME) | cut -d '|' -f 2 | tr -d '[:blank:]')
-
-ifeq ($(LAST_VERSION),)
-LAST_VERSION	:= $(shell rmadison -a source -s $(META_SERIES) $(META_NAME) | cut -d '|' -f 2 | tr -d '[:blank:]')
-ifeq ($(LAST_VERSION),)
-LAST_VERSION	:= $(META_VERSION)
-endif
-endif
-
-all: source
-
-source: clean
-	ln -s meta-source $(META_NAME)-$(META_VERSION)
-	cd $(META_NAME)-$(META_VERSION); \
-	dpkg-buildpackage -S -sa -rfakeroot -I.git -I.gitignore -i'\.git.*' -v$(LAST_VERSION)
-
-binary: clean
-	ln -s meta-source $(META_NAME)-$(META_VERSION)
-	cd $(META_NAME)-$(META_VERSION); \
-	debuild -b
-
-clean:
-	cd meta-source && fakeroot debian/rules clean
-	rm -f $(META_NAME)-$(META_VERSION)
-	rm -f *.dsc *.changes *.gz *.deb *.build *.upload
-
diff --git a/README b/README
deleted file mode 100644
index bb6ccff..0000000
--- a/README
+++ /dev/null
@@ -1,18 +0,0 @@ 
-The toplevel makefile in this directory is used to create the upload source
-for linux-meta. By convention the directory name is supposed to be the
-name of the package with version number attached.
-In order to fullfill that convention and prevent git from being useless
-(since the renaming produces big diffs), a soft-link is created before
-calling dpkk-buildpackage.
-
-The versioning scheme in debian/changelog must be k.k.k.a.m, where
-k is the kernel version a is the ABI version and m is the version
-of the linux-meta package.
-
-You can create an upload set by calling:
-
-	make source
-
-Afterwards the temporary stuff can be removed by calling:
-
-	make clean
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..2b16f67
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,1927 @@ 
+linux-meta (3.2.0.121.136) precise; urgency=medium
+
+  * linux ABI 3.2.0-121
+
+ -- John Donnelly <john.donnelly@canonical.com>  Mon, 09 Jan 2017 16:52:21 -0200 
+
+linux-meta (3.2.0.120.135) precise; urgency=medium
+
+  * linux ABI 3.2.0-120
+
+ -- Thadeu Lima de Souza Cascardo <cascardo@canonical.com>  Mon, 19 Dec 2016 16:52:21 -0200
+
+linux-meta (3.2.0.119.134) precise; urgency=medium
+
+  * linux ABI 3.2.0-119
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Tue, 06 Dec 2016 13:32:52 +0000
+
+linux-meta (3.2.0.118.133) precise; urgency=medium
+
+  * linux ABI 3.2.0-118
+
+ -- Brad Figg <brad.figg@canonical.com>  Thu, 01 Dec 2016 15:21:39 -0800
+
+linux-meta (3.2.0.117.133) precise; urgency=medium
+
+  * linux ABI 3.2.0-117
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Wed, 30 Nov 2016 10:03:39 +0000
+
+linux-meta (3.2.0.116.132) precise; urgency=medium
+
+  * linux ABI 3.2.0-116
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Wed, 09 Nov 2016 17:07:31 +0000
+
+linux-meta (3.2.0.115.131) precise; urgency=medium
+
+  * linux ABI 3.2.0-115
+
+ -- Seth Forshee <seth.forshee@canonical.com>  Tue, 25 Oct 2016 10:22:42 -0500
+
+linux-meta (3.2.0.114.130) precise; urgency=medium
+
+  * linux ABI 3.2.0-114
+
+ -- Seth Forshee <seth.forshee@canonical.com>  Thu, 20 Oct 2016 17:17:52 -0500
+
+linux-meta (3.2.0.113.129) precise; urgency=medium
+
+  * linux ABI 3.2.0-113
+
+ -- Stefan Bader <stefan.bader@canonical.com>  Tue, 18 Oct 2016 18:58:09 +0200
+
+linux-meta (3.2.0.112.128) precise; urgency=medium
+
+  * linux ABI 3.2.0-112
+
+ -- Seth Forshee <seth.forshee@canonical.com>  Wed, 12 Oct 2016 13:08:09 -0500
+
+linux-meta (3.2.0.111.127) precise; urgency=medium
+
+  * linux ABI 3.2.0-111
+
+ -- Joseph Salisbury <joseph.salisbury@canonical.com>  Wed, 21 Sep 2016 12:13:50 -0400
+
+linux-meta (3.2.0.110.126) precise; urgency=low
+
+  * linux ABI 3.2.0-110
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Tue, 30 Aug 2016 13:46:25 +0000
+
+linux-meta (3.2.0.109.125) precise; urgency=medium
+
+  * linux ABI 3.2.0-109
+
+ -- Stefan Bader <stefan.bader@canonical.com>  Fri, 12 Aug 2016 19:03:46 +0200
+
+linux-meta (3.2.0.108.124) precise; urgency=medium
+
+  [ Stefan Bader ]
+
+  * linux ABI
+
+ -- Stefan Bader <stefan.bader@canonical.com>  Tue, 09 Aug 2016 15:21:43 +0200
+
+linux-meta (3.2.0.107.123) precise; urgency=medium
+
+  [ Seth Forshee ]
+
+  * linux ABI
+
+ -- Seth Forshee <seth.forshee@canonical.com>  Mon, 18 Jul 2016 14:02:26 -0500
+
+linux-meta (3.2.0.106.122) precise; urgency=medium
+
+  [ Kamal Mostafa ]
+
+  * linux ABI
+
+ -- Kamal Mostafa <kamal@canonical.com>  Tue, 28 Jun 2016 14:15:07 -0700
+
+linux-meta (3.2.0.105.121) precise; urgency=medium
+
+  [ Kamal Mostafa ]
+
+  * linux ABI
+
+ -- Kamal Mostafa <kamal@canonical.com>  Fri, 10 Jun 2016 12:58:49 -0700
+
+linux-meta (3.2.0.104.120) precise; urgency=medium
+
+  [ Kamal Mostafa ]
+
+  * linux ABI
+
+ -- Kamal Mostafa <kamal@canonical.com>  Fri, 03 Jun 2016 13:05:04 -0700
+
+linux-meta (3.2.0.103.119) precise; urgency=medium
+
+  [ Kamal Mostafa ]
+
+  * linux ABI
+
+ -- Kamal Mostafa <kamal@canonical.com>  Wed, 11 May 2016 10:24:20 -0700
+
+linux-meta (3.2.0.102.118) precise; urgency=medium
+
+  [ Kamal Mostafa ]
+
+  * linux ABI
+
+ -- Kamal Mostafa <kamal@canonical.com>  Mon, 18 Apr 2016 15:06:19 -0700
+
+linux-meta (3.2.0.101.117) precise; urgency=medium
+
+  [ Brad Figg ]
+
+  * linux ABI
+
+ -- Brad Figg <brad.figg@canonical.com>  Thu, 10 Mar 2016 13:35:21 -0800
+
+linux-meta (3.2.0.100.116) precise; urgency=medium
+
+  [ Brad Figg ]
+
+  * linux ABI
+
+ -- Brad Figg <brad.figg@canonical.com>  Mon, 22 Feb 2016 13:34:52 -0800
+
+linux-meta (3.2.0.99.115) precise; urgency=medium
+
+  [ Brad Figg ]
+
+  * linux ABI
+
+ -- Brad Figg <brad.figg@canonical.com>  Mon, 01 Feb 2016 11:49:08 -0800
+
+linux-meta (3.2.0.98.114) precise; urgency=medium
+
+  [ Luis Henriques ]
+
+  * linux ABI
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Mon, 11 Jan 2016 11:59:07 +0000
+
+linux-meta (3.2.0.97.113) precise; urgency=medium
+
+  [ Luis Henriques ]
+
+  * linux ABI
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Wed, 16 Dec 2015 16:19:34 +0000
+
+linux-meta (3.2.0.96.112) precise; urgency=low
+
+  [ Brad Figg ]
+
+  * Bump ABI
+
+ -- Brad Figg <brad.figg@canonical.com>  Mon, 30 Nov 2015 13:33:42 -0800
+
+linux-meta (3.2.0.95.111) precise; urgency=low
+
+  [ Andy Whitcroft ]
+
+  * Provides/Conficts/Replaces: on linux-image-generic-pae and
+    linux-image-virtual.  Upgrade linux-image-generic to P/C/R.
+
+ -- Andy Whitcroft <apw@canonical.com>  Fri, 13 Nov 2015 18:45:34 +0000
+
+linux-meta (3.2.0.95.110) precise; urgency=low
+
+  [ Andy Whitcroft ]
+
+  * drop linux-backports-*-hv-* from -generic-pae and -virtual also.
+    (LP: #151884)
+
+ -- Andy Whitcroft <apw@canonical.com>  Fri, 13 Nov 2015 08:30:38 +0000
+
+linux-meta (3.2.0.95.109) precise; urgency=low
+
+  [ Luis Henriques ]
+
+  * Merge back Ubuntu-3.2.0.94.108 security release
+  * Bump ABI
+
+  [ Andy Whitcroft ]
+
+  * drop linux-backports-*-hv-* as this is no longer supported
+    and the in kernel driver is now newer and more functional
+    that this.  Conflicts/Replaces: on linux-image-generic
+    to push the meta package for this off: (LP: #1512884)
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Tue, 10 Nov 2015 12:14:16 +0000
+
+linux-meta (3.2.0.94.108) precise; urgency=medium
+
+  [ Luis Henriques ]
+
+  * Bump ABI
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Thu, 05 Nov 2015 17:44:37 +0000
+
+linux-meta (3.2.0.93.107) precise; urgency=medium
+
+  [ Luis Henriques ]
+
+  * Bump ABI
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Tue, 20 Oct 2015 09:47:10 +0100
+
+linux-meta (3.2.0.92.106) precise; urgency=medium
+
+  [ Brad Figg ]
+
+  * Bump ABI
+
+ -- Brad Figg <brad.figg@canonical.com>  Mon, 05 Oct 2015 14:20:57 -0700
+
+linux-meta (3.2.0.91.105) precise; urgency=medium
+
+  [ Luis Henriques ]
+
+  * Bump ABI
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Wed, 09 Sep 2015 11:25:58 +0100
+
+linux-meta (3.2.0.90.104) precise; urgency=medium
+
+  [ Brad Figg ]
+
+  * Bump ABI
+
+ -- Brad Figg <brad.figg@canonical.com>  Fri, 14 Aug 2015 12:25:07 -0700
+
+linux-meta (3.2.0.89.103) precise; urgency=medium
+
+  [ Luis Henriques ]
+
+  * Bump ABI
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Tue, 28 Jul 2015 10:02:24 +0100
+
+linux-meta (3.2.0.88.102) precise; urgency=medium
+
+  [ Brad Figg ]
+
+  * Bump ABI
+
+ -- Brad Figg <brad.figg@canonical.com>  Mon, 06 Jul 2015 14:29:17 -0700
+
+linux-meta (3.2.0.87.101) precise; urgency=medium
+
+  [ Luis Henriques ]
+
+  * Bump ABI
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Thu, 18 Jun 2015 17:21:16 +0100
+
+linux-meta (3.2.0.86.100) precise; urgency=medium
+
+  [ Luis Henriques ]
+
+  * Bump ABI
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Thu, 11 Jun 2015 09:55:44 +0100
+
+linux-meta (3.2.0.85.99) precise; urgency=medium
+
+  [ Luis Henriques ]
+
+  * Bump ABI
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Tue, 26 May 2015 16:38:02 +0100
+
+linux-meta (3.2.0.84.98) precise; urgency=medium
+
+  [ Brad Figg ]
+
+  * Bump ABI
+
+ -- Brad Figg <brad.figg@canonical.com>  Tue, 05 May 2015 11:47:46 -0700
+
+linux-meta (3.2.0.83.97) precise; urgency=medium
+
+  [ Luis Henriques ]
+
+  * Bump ABI
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Wed, 29 Apr 2015 13:46:18 +0100
+
+linux-meta (3.2.0.82.96) precise; urgency=medium
+
+  [ Luis Henriques ]
+
+  * Bump ABI
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Mon, 27 Apr 2015 14:29:31 +0100
+
+linux-meta (3.2.0.81.95) precise; urgency=medium
+
+  [ Brad Figg ]
+
+  * Bump ABI
+
+ -- Brad Figg <brad.figg@canonical.com>  Thu, 09 Apr 2015 09:51:56 -0700
+
+linux-meta (3.2.0.80.94) precise; urgency=medium
+
+  [ Brad Figg ]
+
+  * Bump ABI
+
+ -- Brad Figg <brad.figg@canonical.com>  Mon, 23 Mar 2015 09:57:13 -0700
+
+linux-meta (3.2.0.79.93) precise; urgency=medium
+
+  [ Luis Henriques ]
+
+  * Bump ABI
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Thu, 12 Mar 2015 13:47:13 +0000
+
+linux-meta (3.2.0.78.92) precise; urgency=medium
+
+  [ Seth Forshee ]
+
+  * Bump ABI
+
+ -- Seth Forshee <seth.forshee@canonical.com>  Tue, 03 Mar 2015 09:49:13 -0600
+
+linux-meta (3.2.0.77.91) precise; urgency=medium
+
+  [ Kamal Mostafa ]
+
+  * UBUNTU: [Packaging] force "dpkg-source -I -i" behavior
+
+  [ Seth Forshee ]
+
+  * Bump ABI
+
+ -- Seth Forshee <seth.forshee@canonical.com>  Mon, 09 Feb 2015 15:38:22 -0600
+
+linux-meta (3.2.0.76.90) precise; urgency=medium
+
+  [ Seth Forshee ]
+
+  * Bump ABI
+
+ -- Seth Forshee <seth.forshee@canonical.com>  Tue, 13 Jan 2015 15:39:04 -0600
+
+linux-meta (3.2.0.75.89) precise; urgency=medium
+
+  [ Kamal Mostafa ]
+
+  * Bump ABI
+
+ -- Kamal Mostafa <kamal@canonical.com>  Tue, 16 Dec 2014 10:43:09 -0800
+
+linux-meta (3.2.0.74.88) precise; urgency=medium
+
+  [ Luis Henriques ]
+
+  * Bump ABI
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Tue, 09 Dec 2014 14:45:32 +0000
+
+linux-meta (3.2.0.73.87) precise; urgency=medium
+
+  [ Luis Henriques ]
+
+  * Bump ABI
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Tue, 25 Nov 2014 10:50:07 +0000
+
+linux-meta (3.2.0.72.86) precise; urgency=medium
+
+  [ Luis Henriques ]
+
+  * Bump ABI
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Thu, 06 Nov 2014 13:53:45 +0000
+
+linux-meta (3.2.0.71.85) precise; urgency=medium
+
+  [ Brad Figg ]
+
+  * Bump ABI
+
+ -- Brad Figg <brad.figg@canonical.com>  Mon, 03 Nov 2014 09:31:46 -0800
+
+linux-meta (3.2.0.70.84) precise; urgency=medium
+
+  [ Joseph Salisbury ]
+
+  * Bump ABI
+
+ -- Joseph Salisbury <joseph.salisbury@canonical.com>  Mon, 22 Sep 2014 14:48:37 -0400
+
+linux-meta (3.2.0.69.82) precise; urgency=medium
+
+  [ Brad Figg ]
+
+  * Bump ABI
+
+ -- Brad Figg <brad.figg@canonical.com>  Thu, 04 Sep 2014 09:42:05 -0700
+
+linux-meta (3.2.0.68.81) precise; urgency=medium
+
+  [ Joseph Salisbury ]
+
+  * Bump ABI
+
+ -- Brad Figg <brad.figg@canonical.com>  Mon, 18 Aug 2014 12:06:41 -0700
+
+linux-meta (3.2.0.67.79) precise; urgency=medium
+
+  [ Luis Henriques ]
+
+  * Bump ABI
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Mon, 07 Jul 2014 17:23:11 +0100
+
+linux-meta (3.2.0.66.78) precise; urgency=medium
+
+  * [ Joseph Salisbury ]
+
+  * Bump ABI
+
+ -- Joseph Salisbury <joseph.salisbury@canonical.com>  Mon, 30 Jun 2014 16:28:03 -0400
+
+linux-meta (3.2.0.65.77) precise; urgency=medium
+
+  * [ Joseph Salisbury ]
+
+  * Bump ABI
+
+ -- Joseph Salisbury <joseph.salisbury@canonical.com>  Wed, 11 Jun 2014 14:37:46 -0400
+
+linux-meta (3.2.0.64.76) precise; urgency=medium
+
+  [ Luis Henriques ]
+
+  * Bump ABI
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Wed, 21 May 2014 16:49:13 +0100
+
+linux-meta (3.2.0.63.75) precise; urgency=medium
+
+  * Update latest HWE kernel to Trusty
+    -LP: #1319471
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Thu, 15 May 2014 06:07:14 -0600
+
+linux-meta (3.2.0.63.74) precise; urgency=low
+
+  [ Kamal Mostafa ]
+
+  * Bump ABI
+
+ -- Kamal Mostafa <kamal@canonical.com>  Wed, 07 May 2014 14:34:18 -0700
+
+linux-meta (3.2.0.62.73) precise; urgency=low
+
+  [ Brad Figg ]
+
+  * Bump ABI
+
+ -- Brad Figg <brad.figg@canonical.com>  Tue, 29 Apr 2014 06:47:14 -0700
+
+linux-meta (3.2.0.61.72) precise; urgency=low
+
+  [ Kamal Mostafa ]
+
+  * Bump ABI
+
+ -- Kamal Mostafa <kamal@canonical.com>  Mon, 31 Mar 2014 15:06:21 -0700
+
+linux-meta (3.2.0.60.71) precise; urgency=low
+
+  [ Brad Figg ]
+
+  * Bump ABI
+
+ -- Brad Figg <brad.figg@canonical.com>  Tue, 18 Feb 2014 19:42:30 -0800
+
+linux-meta (3.2.0.59.70) precise; urgency=low
+
+  [ Brad Figg ]
+
+  * Bump ABI
+
+ -- Brad Figg <brad.figg@canonical.com>  Mon, 06 Jan 2014 12:42:57 -0800
+
+linux-meta (3.2.0.58.69) precise; urgency=low
+
+  [ Brad Figg ]
+
+  * Bump ABI
+
+ -- Brad Figg <brad.figg@canonical.com>  Tue, 03 Dec 2013 09:24:15 -0800
+
+linux-meta (3.2.0.57.68) precise; urgency=low
+
+  * UBUNTU: Add v3.10 compat-wireless meta package
+    UBUNTU: Add v3.11 compat-wireless meta package
+    UBUNTU: Add v3.12 compat-wireless meta package
+    -LP: #1246465
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Thu, 14 Nov 2013 11:31:54 -0700
+
+linux-meta (3.2.0.57.67) precise; urgency=low
+
+  [ Steve Conklin ]
+
+  * Bump ABI
+
+ -- Steve Conklin <sconklin@canonical.com>  Tue, 12 Nov 2013 15:35:57 -0600
+
+linux-meta (3.2.0.56.66) precise; urgency=low
+
+  [ Steve Conklin ]
+
+  * Bump ABI
+
+ -- Steve Conklin <sconklin@canonical.com>  Thu, 12 Oct 2013 17:09:21 -0500
+
+linux-meta (3.2.0.55.65) precise; urgency=low
+
+  [ Steve Conklin ]
+
+  * Bump ABI
+
+ -- Steve Conklin <sconklin@canonical.com>  Thu, 01 Oct 2013 10:09:02 -0500
+
+linux-meta (3.2.0.54.64) precise; urgency=low
+
+  [ Steve Conklin ]
+
+  * Bump ABI
+
+ -- Steve Conklin <sconklin@canonical.com>  Thu, 10 Sep 2013 15:00:15 -0500
+
+linux-meta (3.2.0.53.63) precise; urgency=low
+
+  [ Steve Conklin ]
+
+  * Bump ABI
+
+ -- Brad Figg <brad.figg@canonical.com>  Thu, 22 Aug 2013 08:04:58 -0700
+
+linux-meta (3.2.0.52.62) precise; urgency=low
+
+  [ Steve Conklin ]
+
+  * Bump ABI
+
+ -- Steve Conklin <sconklin@canonical.com>  Fri, 26 Jul 2013 11:48:00 -0500
+
+linux-meta (3.2.0.51.61) precise; urgency=low
+
+  [ Brad Figg ]
+
+  * Bump ABI
+
+ -- Brad Figg <brad.figg@canonical.com>  Thu, 25 Jul 2013 06:37:45 -0700
+
+linux-meta (3.2.0.50.60) precise; urgency=low
+
+  [ Brad Figg ]
+
+  * Bump ABI
+
+ -- Brad Figg <brad.figg@canonical.com>  Tue, 09 Jul 2013 11:46:39 -0700
+
+linux-meta (3.2.0.49.59) precise; urgency=low
+
+  [ Steve Conklin ]
+
+  * Bump ABI
+
+ -- Steve Conklin <sconklin@canonical.com>  Tue, 18 Jun 2013 12:37:21 -0500
+
+linux-meta (3.2.0.48.58) precise; urgency=low
+
+  [ Steve Conklin ]
+
+  * Bump ABI
+
+ -- Steve Conklin <sconklin@canonical.com>  Mon, 06 Jun 2013 09:52:01 -0500
+
+linux-meta (3.2.0.47.56) precise; urgency=low
+
+  [ Steve Conklin ]
+
+  * Bump ABI
+
+ -- Steve Conklin <sconklin@canonical.com>  Mon, 03 Jun 2013 12:48:17 -0500
+
+linux-meta (3.2.0.46.55) precise; urgency=low
+
+  [ Steve Conklin ]
+
+  * Bump ABI
+
+ -- Steve Conklin <sconklin@canonical.com>  Fri, 31 May 2013 11:23:49 -0500
+
+linux-meta (3.2.0.45.54) precise; urgency=low
+
+  [ Steve Conklin ]
+
+  * Bump ABI
+
+ -- Steve Conklin <sconklin@canonical.com>  Wed, 29 May 2013 10:00:59 -0500
+
+linux-meta (3.2.0.44.53) precise; urgency=low
+
+  * UBUNTU: Update *current* to reference Raring
+    -LP: #1180930
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Thu, 16 May 2013 14:06:24 -0600
+
+linux-meta (3.2.0.44.52) precise-proposed; urgency=low
+
+  [ Brad Figg ]
+
+  * Bump ABI
+
+ -- Brad Figg <brad.figg@canonical.com>  Thu, 16 May 2013 09:42:10 -0700
+
+linux-meta (3.2.0.43.51) precise-proposed; urgency=low
+
+  [ Steve Conklin ]
+
+  * Bump ABI
+
+ -- Steve Conklin <sconklin@canonical.com>  Mon, 14 May 2013 21:45:58 -0500
+
+linux-meta (3.2.0.42.50) precise-proposed; urgency=low
+
+  [ Brad Figg ]
+
+  * Bump ABI
+
+ -- Brad Figg <brad.figg@canonical.com>  Mon, 06 May 2013 14:09:22 -0700
+
+linux-meta (3.2.0.41.49) precise-proposed; urgency=low
+
+  [ Steve Conklin ]
+
+  * Bump ABI
+
+ -- Steve Conklin <sconklin@canonical.com>  Wed, 10 Apr 2013 15:06:35 -0500
+
+linux-meta (3.2.0.40.48) precise-proposed; urgency=low
+
+  [ Steve Conklin ]
+
+  * Bump ABI
+
+ -- Steve Conklin <sconklin@canonical.com>  Wed, 20 Mar 2013 17:27:27 -0800
+
+linux-meta (3.2.0.39.47) precise-proposed; urgency=low
+
+  [ Brad Figg ]
+
+  * Bump ABI
+
+ -- Brad Figg <brad.figg@canonical.com>  Wed, 27 Feb 2013 07:21:55 -0800
+
+linux-meta (3.2.0.38.46) precise-proposed; urgency=low
+
+  [ Luis Henriques ]
+
+  * Bump ABI
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Tue, 05 Feb 2013 13:37:35 +0000
+
+linux-meta (3.2.0.37.45) precise; urgency=low
+
+  * Remove amd64 linux-backports-modules-hv-precise-generic-pae package.
+
+ -- Adam Conrad <adconrad@ubuntu.com>  Sat, 02 Feb 2013 06:13:27 -0700
+
+linux-meta (3.2.0.37.44) precise-proposed; urgency=low
+
+  [ Luis Henriques ]
+
+  * Bump ABI
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Thu, 24 Jan 2013 14:09:49 +0000
+
+linux-meta (3.2.0.36.43) precise-proposed; urgency=low
+
+  * Add linux-headers-<flavour> to linux-<flavour> to retain headers
+    for dkms et al.  (LP: #960770)
+
+ -- Andy Whitcroft <apw@canonical.com>  Mon, 14 Jan 2013 19:45:34 +0000
+
+linux-meta (3.2.0.36.42) precise-proposed; urgency=low
+
+  [ Brad Figg ]
+
+  * Bump ABI
+
+ -- Brad Figg <brad.figg@canonical.com>  Thu, 03 Jan 2013 09:42:16 -0800
+
+linux-meta (3.2.0.35.41) precise-proposed; urgency=low
+
+  [ Brad Figg ]
+
+  * Bump ABI
+
+ -- Brad Figg <brad.figg@canonical.com>  Wed, 02 Jan 2013 14:58:18 -0800
+
+linux-meta (3.2.0.35.40) precise-proposed; urgency=low
+
+  [ Brad Figg ]
+
+  * UBUNTU: The -hv- driver should be for the same flavour of kernel generic->generic, virtual->virtual, generic-pae->generic-pae
+    - LP: #1089970
+
+ -- Brad Figg <brad.figg@canonical.com>  Thu, 13 Dec 2012 17:23:44 -0800
+
+linux-meta (3.2.0.35.39) precise-proposed; urgency=low
+
+  [ Andy Whitcroft ]
+
+  * Add the linux-backports-modules-hv-precise-virtual for Hyper-V.
+    - LP: #1089970
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Thu, 13 Dec 2012 22:09:24 +0000
+
+linux-meta (3.2.0.35.38) precise-proposed; urgency=low
+
+  [ Leann Ogasawara ]
+
+  * Move metapackages to Section: kernel
+    - LP: #1074787
+
+  [ Luis Henriques ]
+
+  * Bump ABI
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Tue, 04 Dec 2012 15:34:06 +0000
+
+linux-meta (3.2.0.34.37) precise-proposed; urgency=low
+
+  [ Luis Henriques ]
+
+  * Bump ABI
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Wed, 14 Nov 2012 16:02:38 +0000
+
+linux-meta (3.2.0.33.36) precise-proposed; urgency=low
+
+  [ Stefan Bader ]
+
+  * Make linux-crashdump alternatively depend on EFI grub
+    LP: #1064259
+
+  [ Leann Ogasawara ]
+
+  * UBUNTU: Add compat-wireless v3.6 meta package
+    LP: #1066123
+  * UBUNTU: Add compat-wireless v3.5 meta package
+    LP: #1066122
+
+  [ Luis Henriques ]
+
+  * Bump ABI
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Wed, 17 Oct 2012 10:45:56 +0100
+
+linux-meta (3.2.0.32.35) precise-proposed; urgency=low
+
+  [ Luis Henriques ]
+
+  * Bump ABI
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Tue, 25 Sep 2012 10:34:58 +0100
+
+linux-meta (3.2.0.31.34) precise-proposed; urgency=low
+
+  [ Leann Ogasawara ]
+
+  * Add compat-wireless v3.4 meta package
+    - LP: #1023566
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Fri, 07 Sep 2012 16:31:29 +0100
+
+linux-meta (3.2.0.31.33) precise-proposed; urgency=low
+
+  [ Luis Henriques ]
+
+  * Bump ABI
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Wed, 05 Sep 2012 10:44:55 +0100
+
+linux-meta (3.2.0.30.32) precise-proposed; urgency=low
+
+  [ Luis Henriques ]
+
+  * Bump ABI
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Tue, 14 Aug 2012 11:26:27 +0100
+
+linux-meta (3.2.0.29.31) precise-proposed; urgency=low
+
+  [ Luis Henriques ]
+
+  * Bump ABI
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Thu, 26 Jul 2012 16:52:11 +0100
+
+linux-meta (3.2.0.28.30) precise-proposed; urgency=low
+
+  ## Note 3.2.0.28.30 was never uploaded and superceded by 3.2.0.29.31 ##
+
+  [ Luis Henriques ]
+
+  * Bump ABI
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Mon, 23 Jul 2012 12:16:20 +0100
+
+linux-meta (3.2.0.27.29) precise-proposed; urgency=low
+
+  [ Luis Henriques ]
+
+  * Bump ABI
+
+  [ Tim Gardner ]
+
+  * UBUNTU: No meta packages belong in the restricted component
+    - LP: #1016702
+  * UBUNTU: Move all header meta packages into Section: metapackages
+    - LP: #988447
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Mon, 02 Jul 2012 11:04:51 +0100
+
+linux-meta (3.2.0.26.28) precise-proposed; urgency=low
+
+  * Bump ABI
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Tue, 12 Jun 2012 12:07:00 +0100
+
+linux-meta (3.2.0.25.27) precise-proposed; urgency=low
+
+  [ Luis Henriques ]
+
+  * UBUNTU: Fix Vcs-Git in linux-precise-meta
+    - LP: #999726
+
+  [ Tim Gardner ]
+
+  * UBUNTU: Added -hwe- and -current- meta packages
+  * Added Calxeda highbank flavour
+    - LP: #1000831
+  * Bump ABI
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Wed, 23 May 2012 18:51:56 +0100
+
+linux-meta (3.2.0.24.26) precise-proposed; urgency=low
+
+  * Bump ABI
+  * Added meta files for LBM net packages
+    - LP: #978324
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Tue, 24 Apr 2012 09:18:25 -0700
+
+linux-meta (3.2.0.23.25) precise-proposed; urgency=low
+
+  * Bump ABI
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Tue, 10 Apr 2012 10:09:32 -0700
+
+linux-meta (3.2.0.22.24) precise; urgency=low
+
+  * Bump ABI
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Tue, 03 Apr 2012 11:26:33 -0700
+
+linux-meta (3.2.0.21.23) precise; urgency=low
+
+  * Point powerpc meta to powerpc-smp meta
+  * Bump ABI
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Thu, 29 Mar 2012 10:53:59 -0700
+
+linux-meta (3.2.0.20.22) precise; urgency=low
+
+  * Bump ABI
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Wed, 21 Mar 2012 20:24:41 -0700
+
+linux-meta (3.2.0.19.21) precise; urgency=low
+
+  * Drop non-smp PowerPC flavor
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 16 Mar 2012 09:09:24 -0700
+
+linux-meta (3.2.0.18.20) precise; urgency=low
+
+  * linux-image-virtual-extras should depend on linux-virtual
+    LP: #947357 
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Wed, 07 Mar 2012 11:32:59 -0700
+
+linux-meta (3.2.0.18.19) precise; urgency=low
+
+  * amd64 -server no longer exists, no linux-backports-modules there.
+
+ -- Andy Whitcroft <apw@canonical.com>  Mon, 05 Mar 2012 07:06:55 +0000
+
+linux-meta (3.2.0.18.18) precise; urgency=low
+
+  * Add compat-wireless v3.3 meta package
+  * Re-enable linux-backports-modules for Precise
+  * Bump ABI
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 02 Mar 2012 09:29:55 -0800
+
+linux-meta (3.2.0.17.17) precise; urgency=low
+
+  * Bump ABI
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 17 Feb 2012 13:43:43 -0800
+
+linux-meta (3.2.0.16.16) precise; urgency=low
+
+  * Bump ABI
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Tue, 14 Feb 2012 09:09:38 -0800
+
+linux-meta (3.2.0.15.15) precise; urgency=low
+
+  * Bump ABI
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Wed, 08 Feb 2012 06:19:59 -0800
+
+linux-meta (3.2.0.14.14) precise; urgency=low
+
+  * Bump ABI
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Sat, 04 Feb 2012 20:13:43 -0800
+
+linux-meta (3.2.0.13.13) precise; urgency=low
+
+  * Bump ABI
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 03 Feb 2012 06:03:45 -0800
+
+linux-meta (3.2.0.12.12) precise; urgency=low
+
+  * Bump ABI
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 27 Jan 2012 13:14:19 -0800
+
+linux-meta (3.2.0.11.11) precise; urgency=low
+
+  * Bump ABI
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Thu, 26 Jan 2012 06:08:09 -0800
+
+linux-meta (3.2.0.10.10) precise; urgency=low
+
+  * Bump ABI
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Thu, 19 Jan 2012 09:07:24 -0800
+
+linux-meta (3.2.0.9.9) precise; urgency=low
+
+  * Bump ABI
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Sun, 15 Jan 2012 19:57:13 -0800
+
+linux-meta (3.2.0.8.8) precise; urgency=low
+
+  * linux-image should point to the recommended kernel, move it to
+    generic-pae on 32bit to match the rest of the CD.
+    - LP: #897786
+  * Bump ABI
+
+ -- Andy Whitcroft <apw@canonical.com>  Thu, 05 Jan 2012 17:44:26 +0000
+
+linux-meta (3.2.0.7.7) precise; urgency=low
+
+  * Bump ABI
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Mon, 26 Dec 2011 20:12:53 -0800
+
+linux-meta (3.2.0.6.6) precise; urgency=low
+
+  * Bump ABI
+
+ -- Andy Whitcroft <apw@canonical.com>  Mon, 19 Dec 2011 10:25:56 +0000
+
+linux-meta (3.2.0.5.5) precise; urgency=low
+
+  * Bump ABI
+
+ -- Andy Whitcroft <apw@canonical.com>  Fri, 16 Dec 2011 11:08:24 +0000
+
+linux-meta (3.2.0.4.4) precise; urgency=low
+
+  * Bump ABI
+
+ -- Andy Whitcroft <apw@canonical.com>  Sun, 11 Dec 2011 12:29:28 +0000
+
+linux-meta (3.2.0.3.3) precise; urgency=low
+
+  [ Leann Ogasawara ]
+
+  * Bump ABI
+  * Add armhf to linux-meta
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 02 Dec 2011 21:25:42 -0800
+
+linux-meta (3.2.0.2.2) precise; urgency=low
+
+  * Bump ABI
+
+ -- Andy Whitcroft <apw@canonical.com>  Mon, 28 Nov 2011 09:36:56 +0000
+
+linux-meta (3.2.0.1.1) precise; urgency=low
+
+  [ Andy Whitcroft ]
+
+  * amd64 server installs will be fed a -generic kernel
+
+  [ Leann Ogasawara ]
+
+  * Bump Version for v3.2
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 18 Nov 2011 09:11:54 -0800
+
+linux-meta (3.1.0.2.2) precise; urgency=low
+
+  [ Leann Ogasawara ]
+
+  * Bump ABI
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Wed, 26 Oct 2011 11:07:35 -0700
+
+linux-meta (3.1.0.1.1) precise; urgency=low
+
+  [ Leann Ogasawara ]
+
+  * Open Precise
+  * Temporarily disable lbm
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Tue, 18 Oct 2011 11:12:28 -0700
+
+linux-meta (3.0.0.12.14) oneiric; urgency=low
+
+  [ Leann Ogasawara ]
+
+  * Add linux-image-extra-virtual meta package
+    - LP: #869220
+  * Re-enable linux-backports-modules 
+    - LP: #869224
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Thu, 06 Oct 2011 06:49:26 -0700
+
+linux-meta (3.0.0.12.13) oneiric; urgency=low
+
+  [ Leann Ogasawara ]
+
+  * Bump ABI 
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 23 Sep 2011 13:44:36 -0700
+
+linux-meta (3.0.0.11.12) oneiric; urgency=low
+
+  [ Leann Ogasawara ]
+
+  * Bump ABI 
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 09 Sep 2011 10:21:07 -0700
+
+linux-meta (3.0.0.10.11) oneiric; urgency=low
+
+  [ Leann Ogasawara ]
+
+  * Bump ABI 
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 02 Sep 2011 09:46:15 -0700
+
+linux-meta (3.0.0.9.10) oneiric; urgency=low
+
+  [ Leann Ogasawara ]
+
+  * Bump ABI 
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 19 Aug 2011 06:46:18 -0700
+
+linux-meta (3.0.0.8.9) oneiric; urgency=low
+
+  [ Leann Ogasawara ]
+
+  * Bump ABI 
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 05 Aug 2011 11:53:11 -0700
+
+linux-meta (3.0.0.7.8) oneiric; urgency=low
+
+  [ Leann Ogasawara ]
+
+  * Bump ABI 
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 22 Jul 2011 12:53:33 -0700
+
+linux-meta (3.0.0.6.7) oneiric; urgency=low
+
+  [ Leann Ogasawara ]
+
+  * Bump ABI 
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Wed, 20 Jul 2011 06:49:41 -0700
+
+linux-meta (3.0.0.5.6) oneiric; urgency=low
+
+  [ Leann Ogasawara ]
+  * Bump ABI 
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Tue, 12 Jul 2011 10:36:26 -0700
+
+linux-meta (3.0.0.4.5) oneiric; urgency=low
+
+  [ Andy Whitcroft ]
+  * follow main kernel switch to 3.0.0
+  * Bump ABI
+
+ -- Andy Whitcroft <apw@canonical.com>  Mon, 11 Jul 2011 11:24:30 +0100
+
+linux-meta (3.0.0.3.4) oneiric; urgency=low
+
+  [ Leann Ogasawara ]
+  * Bump ABI 
+
+  [ Andy Whitcroft ]
+  * Drop armel versatile flavour to match main kernel
+
+ -- Andy Whitcroft <apw@canonical.com>  Mon, 04 Jul 2011 13:22:45 +0100
+
+linux-meta (3.0.0.2.3) oneiric; urgency=low
+
+  [ Leann Ogasawara ]
+
+  * Bump ABI 
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 24 Jun 2011 11:43:20 -0700
+
+linux-meta (3.0.0.1.2) oneiric; urgency=low
+
+  [ Leann Ogasawara ]
+
+  * Bump ABI 
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Tue, 14 Jun 2011 12:27:07 -0700
+
+linux-meta (3.0.0.0.1) oneiric; urgency=low
+
+  [ Leann Ogasawara ]
+
+  * Open v3.0
+  * Convert from x.y.z to x.y version scheme
+
+  [ Andy Whitcroft ]
+
+  * temporarily move meta _only_ back to 3 digit kernel numbering (5 total)
+    to allow us to choose later which scheme to use
+
+ -- Andy Whitcroft <apw@canonical.com>  Wed, 08 Jun 2011 17:31:35 +0100
+
+linux-meta (2.6.39.3.4) oneiric; urgency=low
+
+  * Bump ABI
+
+ -- Andy Whitcroft <apw@canonical.com>  Mon, 23 May 2011 08:51:59 +0100
+
+linux-meta (2.6.39.2.3) oneiric; urgency=low
+
+  [ Leann Ogasawara ]
+
+  * Bump ABI
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Thu, 12 May 2011 09:34:44 +0200
+
+linux-meta (2.6.39.1.2) oneiric; urgency=low
+
+  [ Leann Ogasawara ]
+
+  * Bump ABI
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Thu, 05 May 2011 11:13:41 -0700
+
+linux-meta (2.6.39.0.1) oneiric; urgency=low
+
+  [ Leann Ogasawara ]
+
+  * UBUNTU: Remove linux-backports-modules-cw-2.6.39
+  * UBUNTU: Remove linux-backports-modules-net
+  * UBUNTU: disable linux-backports-modules
+  * Initial Oneiric kernel version and ABI (2.6.39-0)
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Tue, 19 Apr 2011 09:41:48 -0700
+
+linux-meta (2.6.38.8.22) natty; urgency=low
+
+  [ Leann Ogasawara ]
+
+  * UBUNTU: Enable LBM for Natty
+
+  [ Tim Gardner ]
+
+  * Bump ABI
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Mon, 04 Apr 2011 06:23:14 -0700
+
+linux-meta (2.6.38.7.21) natty; urgency=low
+
+  * Bump ABI
+
+ -- Andy Whitcroft <apw@canonical.com>  Wed, 16 Mar 2011 09:51:30 +0000
+
+linux-meta (2.6.38.6.20) natty; urgency=low
+
+  * Bump ABI
+
+ -- Andy Whitcroft <apw@canonical.com>  Tue, 01 Mar 2011 16:31:13 +0000
+
+linux-meta (2.6.38.5.19) natty; urgency=low
+
+  * Bump ABI
+
+ -- Andy Whitcroft <apw@canonical.com>  Fri, 18 Feb 2011 15:24:44 +0000
+
+linux-meta (2.6.38.4.18) natty; urgency=low
+
+  * Bump ABI
+
+ -- Andy Whitcroft <apw@canonical.com>  Wed, 16 Feb 2011 15:33:37 +0000
+
+linux-meta (2.6.38.3.17) natty; urgency=low
+
+  * Bump ABI
+
+ -- Andy Whitcroft <apw@canonical.com>  Thu, 10 Feb 2011 09:50:33 +0000
+
+linux-meta (2.6.38.2.16) natty; urgency=low
+
+  * Bump ABI
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Sat, 05 Feb 2011 11:35:43 -0700
+
+linux-meta (2.6.38.1.15) UNRELEASED; urgency=low
+
+  * Bump ABI
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Tue, 25 Jan 2011 06:57:57 -0700
+
+linux-meta (2.6.37.12.14) natty; urgency=low
+
+  * Natty ABI 12
+  * reinstate omap flavour
+
+ -- Andy Whitcroft <apw@canonical.com>  Thu, 06 Jan 2011 11:01:28 +0000
+
+linux-meta (2.6.37.11.13) natty; urgency=low
+
+  * Natty ABI 11
+
+ -- Andy Whitcroft <apw@canonical.com>  Wed, 22 Dec 2010 13:55:47 +0000
+
+linux-meta (2.6.37.10.12) natty; urgency=low
+
+  * Natty ABI 10
+
+ -- Andy Whitcroft <apw@canonical.com>  Fri, 17 Dec 2010 13:32:00 +0000
+
+linux-meta (2.6.37.9.11) natty; urgency=low
+
+  * Natty ABI 9
+
+ -- Andy Whitcroft <apw@canonical.com>  Sat, 11 Dec 2010 09:52:43 +0000
+
+linux-meta (2.6.37.8.10) natty; urgency=low
+
+  * Natty ABI 8
+
+ -- Andy Whitcroft <apw@canonical.com>  Mon, 06 Dec 2010 15:23:28 +0000
+
+linux-meta (2.6.37.7.9) natty; urgency=low
+
+  * Natty ABI 7
+
+ -- Andy Whitcroft <apw@canonical.com>  Mon, 29 Nov 2010 09:46:52 +0000
+
+linux-meta (2.6.37.6.8) natty; urgency=low
+
+  * Natty ABI 6
+
+ -- Andy Whitcroft <apw@canonical.com>  Tue, 23 Nov 2010 19:44:31 +0000
+
+linux-meta (2.6.37.5.7) natty; urgency=low
+
+  * Natty ABI 5
+
+ -- Andy Whitcroft <apw@canonical.com>  Wed, 17 Nov 2010 16:26:53 +0000
+
+linux-meta (2.6.37.4.6) natty; urgency=low
+
+  * Natty ABI 4
+
+ -- Andy Whitcroft <apw@canonical.com>  Tue, 16 Nov 2010 00:12:17 +0000
+
+linux-meta (2.6.37.3.5) natty; urgency=low
+
+  * Natty ABI 3
+
+ -- Andy Whitcroft <apw@canonical.com>  Fri, 12 Nov 2010 17:29:08 +0000
+
+linux-meta (2.6.37.2.4) natty; urgency=low
+
+  * Track correct master version number.
+
+ -- Andy Whitcroft <apw@canonical.com>  Fri, 05 Nov 2010 16:08:54 +0000
+
+linux-meta (2.6.36.2.3) natty; urgency=low
+
+  * Pull in powerpc, powerpc-smp, powerpc64-smp into the master branch.
+  * Natty ABI 2
+
+ -- Andy Whitcroft <apw@canonical.com>  Fri, 05 Nov 2010 14:24:10 +0000
+
+linux-meta (2.6.36.1.2) natty; urgency=low
+
+  * Natty ABI 1
+
+ -- Andy Whitcroft <apw@canonical.com>  Thu, 21 Oct 2010 21:31:35 +0100
+
+linux-meta (2.6.36.0.1) natty; urgency=low
+
+  * Initial Natty kernel version and ABI (2.6.36-0)
+  * drop last vestiges of lpia architecture
+  * disable linux-backports-modules
+  * drop omap for armel
+
+ -- Andy Whitcroft <apw@canonical.com>  Wed, 13 Oct 2010 11:22:15 +0100
+
+linux-meta (2.6.35.22.23) maverick; urgency=low
+
+  [ Leann Ogasawara ]
+
+  * Bump ABI - Maverick ABI 22
+
+  [ Andy Whitcroft ] 
+
+  * Fix OMAP3 descriptions.
+    - LP: #623297
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Tue, 14 Sep 2010 16:21:55 -0700
+
+linux-meta (2.6.35.21.22) maverick; urgency=low
+
+  [ Leann Ogasawara ]
+
+  * Bump ABI - Maverick ABI 21
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 10 Sep 2010 14:37:29 -0700
+
+linux-meta (2.6.35.20.21) maverick; urgency=low
+
+  [ Leann Ogasawara ]
+
+  * Add linux-backports-modules-net meta package
+  * Maverick ABI 20 (2.6.35-20.29)
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Thu, 02 Sep 2010 16:40:20 -0700
+
+linux-meta (2.6.35.19.20) maverick; urgency=low
+
+  * Maverick ABI 19 (2.6.35-19.25)
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Tue, 24 Aug 2010 10:27:28 -0700
+
+linux-meta (2.6.35.18.19) maverick; urgency=low
+
+  * Maverick ABI 18 (2.6.35-18.24)
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Sun, 22 Aug 2010 17:50:07 -0700
+
+linux-meta (2.6.35.17.18) maverick; urgency=low
+
+  * Maverick ABI 17 (2.6.35-17.23)
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Thu, 19 Aug 2010 16:55:39 -0700
+
+linux-meta (2.6.35.16.17) maverick; urgency=low
+
+  * Maverick ABI 16 (2.6.35-16.22)
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Mon, 16 Aug 2010 16:23:44 -0700
+
+linux-meta (2.6.35.15.16) maverick; urgency=low
+
+  * Maverick ABI 15 (2.6.35-15.20)
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Mon, 09 Aug 2010 13:20:00 -0700
+
+linux-meta (2.6.35.14.15) maverick; urgency=low
+
+  * Maverick ABI 14 (2.6.35-14.19)
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Sun, 01 Aug 2010 16:53:31 -0700
+
+linux-meta (2.6.35.13.14) maverick; urgency=low
+
+  * Maverick ABI 13
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 30 Jul 2010 18:01:22 -0700
+
+linux-meta (2.6.35.12.13) maverick; urgency=low
+
+  [ Leann Ogasawara ]
+
+  * Maverick ABI 12 (2.6.35-12.17)
+  * Change RELEASE_NAME from lucid to maverick
+  * Drop nouveau
+  * Enable lbm
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Wed, 28 Jul 2010 08:03:04 -0700
+
+linux-meta (2.6.35.11.12) maverick; urgency=low
+
+  * Maverick ABI 11 (2.6.35-11.16)
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 23 Jul 2010 10:44:33 +0200
+
+linux-meta (2.6.35.10.11) maverick; urgency=low
+
+  * Maverick ABI 10 (2.6.35-10.15)
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Thu, 22 Jul 2010 12:48:18 +0200
+
+linux-meta (2.6.35.9.10) maverick; urgency=low
+
+  * Maverick ABI 9 (2.6.35-9.14)
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 16 Jul 2010 17:56:19 -0700
+
+linux-meta (2.6.35.8.9) maverick; urgency=low
+
+  * Maverick ABI 8 (2.6.35-8.13)
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Tue, 13 Jul 2010 19:42:38 -0700
+
+linux-meta (2.6.35.7.8) maverick; urgency=low
+
+  * Maverick ABI 7 (2.6.35-7.10)
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Wed, 07 Jul 2010 11:42:16 -0600
+
+linux-meta (2.6.35.6.7) maverick; urgency=low
+
+  [ Leann Ogasawara ]
+
+  * Maverick ABI 6 (2.6.35-6.7)
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Thu, 24 Jun 2010 15:45:17 -0700
+
+linux-meta (2.6.35.5.6) maverick; urgency=low
+
+  * Add meta-packages for ARM omap which is now in the main package.
+    - LP: #595949
+
+ -- Andy Whitcroft <apw@canonical.com>  Wed, 23 Jun 2010 10:03:02 +0100
+
+linux-meta (2.6.35.5.5) maverick; urgency=low
+
+  [ Leann Ogasawara ]
+
+  * Maverick ABI 5 (2.6.35-5.6)
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Mon, 21 Jun 2010 13:38:44 -0700
+
+linux-meta (2.6.35.4.4) maverick; urgency=low
+
+  [ Leann Ogasawara ]
+
+  * Maverick ABI 4 (2.6.35-4.5)
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Wed, 16 Jun 2010 10:37:09 -0700
+
+linux-meta (2.6.35.3.3) maverick; urgency=low
+
+  [ Leann Ogasawara ]
+
+  * Maverick ABI 3 (2.6.35-3.4)
+  * Drop preempt
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Mon, 14 Jun 2010 10:40:24 -0700
+
+linux-meta (2.6.35.2.2) maverick; urgency=low
+
+  [ Leann Ogasawara ]
+
+  * Maverick ABI 2 (2.6.35-2.2)
+  * Update linux-headers-virtual depends clause 
+
+  [ Loïc Minier ]
+
+  * Enable linux-tools on armel
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Tue, 08 Jun 2010 17:19:53 -0700
+
+linux-meta (2.6.35.1.1) maverick; urgency=low
+
+  * Maverick ABI 1 (2.6.35-1.1)
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 04 Jun 2010 22:30:44 -0700
+
+linux-meta (2.6.34.5.4) maverick; urgency=low
+
+  * Maverick ABI 5
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 28 May 2010 10:24:39 -0700
+
+linux-meta (2.6.34.4.3) maverick; urgency=low
+
+  [ Leann Ogasawara ]
+
+  * Maverick ABI 4
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Tue, 25 May 2010 11:02:43 -0700
+
+linux-meta (2.6.34.3.2) maverick; urgency=low
+
+  [ Leann Ogasawara ]
+
+  * Maverick ABI 3
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Wed, 19 May 2010 08:46:03 -0700
+
+linux-meta (2.6.34.2.1) maverick; urgency=low
+
+  [ Leann Ogasawara ]
+
+  * Initial Maverick ABI
+  * Drop 386 flavour
+  * Disable lbm
+  * Drop lpia
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Thu, 13 May 2010 13:37:43 +0200
+
+linux-meta (2.6.32.22.23) lucid-proposed; urgency=low
+
+  * Lucid ABI 22
+
+ -- Andy Whitcroft <apw@canonical.com>  Wed, 28 Apr 2010 16:43:27 +0100
+
+linux-meta (2.6.32.21.22) lucid; urgency=low
+
+  * Lucid ABI 21
+
+ -- Andy Whitcroft <apw@canonical.com>  Wed, 14 Apr 2010 09:29:56 +0100
+
+linux-meta (2.6.32.20.21) lucid; urgency=low
+
+  * Add linux-tools meta package
+    - LP: #559027
+  * Lucid ABI 20
+
+ -- Andy Whitcroft <apw@canonical.com>  Fri, 09 Apr 2010 09:26:42 +0100
+
+linux-meta (2.6.32.19.20) lucid; urgency=low
+
+  * Lucid ABI 19
+
+ -- Andy Whitcroft <apw@canonical.com>  Thu, 01 Apr 2010 12:01:32 +0100
+
+linux-meta (2.6.32.18.19) lucid; urgency=low
+
+  * Lucid ABI 18
+
+ -- Stefan Bader <stefan.bader@canonical.com>  Fri, 26 Mar 2010 19:20:34 +0100
+
+linux-meta (2.6.32.17.18) lucid; urgency=low
+
+  * Lucid ABI 17
+
+ -- Stefan Bader <stefan.bader@canonical.com>  Tue, 23 Mar 2010 15:34:50 +0100
+
+linux-meta (2.6.32.16.17) lucid; urgency=low
+
+  * add backport modules support for preempt flavour
+
+ -- Andy Whitcroft <apw@canonical.com>  Mon, 08 Mar 2010 19:37:42 +0000
+
+linux-meta (2.6.32.16.16) lucid; urgency=low
+
+  * drop the nouveau meta packages
+  * Lucid ABI 16
+
+ -- Andy Whitcroft <apw@canonical.com>  Mon, 08 Mar 2010 09:16:23 +0000
+
+linux-meta (2.6.32.15.16) lucid; urgency=low
+
+  * Lucid ABI 15
+
+ -- Andy Whitcroft <apw@canonical.com>  Tue, 02 Mar 2010 11:07:13 +0000
+
+linux-meta (2.6.32.14.15) lucid; urgency=low
+
+  * Reinstate transitional packages for i386 moving upgraders from -server
+    to -generic-pae.
+      - LP: 399718
+  * Lucid ABI 14
+  * Correct linkage between wireless packages
+  * Fix typo in i386 nouveau meta package name
+
+ -- Andy Whitcroft <apw@canonical.com>  Fri, 19 Feb 2010 19:13:24 +0000
+
+linux-meta (2.6.32.13.14) lucid; urgency=low
+
+  * add low-latency preempt flavour
+  * add versatile arm flavour
+  * reinstate the LBM meta packages
+  * we are not using anything clever, move to debhelper version 5
+  * lintian -- clean up misc-depends warnings
+
+ -- Andy Whitcroft <apw@canonical.com>  Tue, 16 Feb 2010 13:57:48 +0000
+
+linux-meta (2.6.32.13.13) lucid; urgency=low
+
+  * Lucid ABI 13
+
+ -- Andy Whitcroft <apw@canonical.com>  Thu, 11 Feb 2010 08:51:25 +0000
+
+linux-meta (2.6.32.12.12) lucid; urgency=low
+
+  * Lucid ABI 12
+
+ -- Andy Whitcroft <apw@canonical.com>  Fri, 29 Jan 2010 01:10:17 +0000
+
+linux-meta (2.6.32.11.11) lucid; urgency=low
+
+  * Lucid ABI 11
+
+ -- Andy Whitcroft <apw@canonical.com>  Wed, 20 Jan 2010 09:21:00 +0000
+
+linux-meta (2.6.32.10.10) lucid; urgency=low
+
+  * Lucid ABI 10
+
+ -- Andy Whitcroft <apw@canonical.com>  Sun, 10 Jan 2010 23:46:54 +0000
+
+linux-meta (2.6.32.9.9) lucid; urgency=low
+
+  * Lucid ABI 9
+
+ -- Andy Whitcroft <apw@canonical.com>  Sat, 19 Dec 2009 21:39:57 +0000
+
+linux-meta (2.6.32.8.8) lucid; urgency=low
+
+  * Lucid ABI 8
+
+ -- Andy Whitcroft <apw@canonical.com>  Mon, 14 Dec 2009 12:18:00 +0000
+
+linux-meta (2.6.32.7.7) lucid; urgency=low
+
+  * Lucid ABI 7
+
+ -- Andy Whitcroft <apw@canonical.com>  Mon, 07 Dec 2009 08:38:03 +0000
+
+linux-meta (2.6.32.6.6) lucid; urgency=low
+
+  * Lucid ABI 6
+
+ -- Andy Whitcroft <apw@canonical.com>  Tue, 01 Dec 2009 19:52:55 +0000
+
+linux-meta (2.6.32.5.5) lucid; urgency=low
+
+  * Lucid ABI 5
+
+ -- Andy Whitcroft <apw@canonical.com>  Tue, 24 Nov 2009 11:45:32 +0000
+
+linux-meta (2.6.32.4.4) lucid; urgency=low
+
+  * Lucid ABI 4
+
+ -- Andy Whitcroft <apw@canonical.com>  Fri, 13 Nov 2009 20:09:44 +0000
+
+linux-meta (2.6.32.3.3) lucid; urgency=low
+
+  * Lucid ABI 3
+
+ -- Andy Whitcroft <apw@canonical.com>  Wed, 04 Nov 2009 13:04:07 +0000
+
+linux-meta (2.6.32.2.2) lucid; urgency=low
+
+  * Disable the linux-backports-modules-* until such time as LBM is needed.
+
+ -- Andy Whitcroft <apw@canonical.com>  Wed, 04 Nov 2009 13:04:07 +0000
+
+linux-meta (2.6.32.2.1) lucid; urgency=low
+
+  * Lucid ABI 2
+  * Drop the transitional packages for karmic -server to -generic-pae
+    upgraders for lucid.
+  * Switch series to lucid.
+  * Drop the linux-backports-modules package, we should only use sub-system
+    specific modules for lucid.
+
+ -- Andy Whitcroft <apw@canonical.com>  Sat, 31 Oct 2009 01:43:00 +0000
+
+linux-meta (2.6.31.14.27) karmic; urgency=low
+
+  * Added transitional packages for i386 moving upgraders from -server
+    to -generic-pae.
+      - LP: #399718
+
+ -- Andy Whitcroft <apw@canonical.com>  Thu, 15 Oct 2009 09:28:52 +0100
+
+linux-meta (2.6.31.14.26) karmic; urgency=low
+
+  * Added linux-backports-modules-headers-karmic meta packages
+  * Removed linux-backports-modules-karmic-*-virtual
+    LBM does not generate a virtual flavour.
+  * Added linux-backports-modules-wireless-karmic meta package.
+    The orignal meta package linux-backports-modules-karmic* points
+    to the same package. Need to drop this non-orthogonality in Lucid.
+  * Added linux-backports-modules-alsa-karmic meta package
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Wed, 14 Oct 2009 13:09:22 -0600
+
+linux-meta (2.6.31.14.25) karmic; urgency=low
+
+  * Karmic ABI 14
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Tue, 13 Oct 2009 16:44:48 -0600
+
+linux-meta (2.6.31.13.24) karmic; urgency=low
+
+  * Karmic ABI 13
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Fri, 09 Oct 2009 06:02:03 -0600
+
+linux-meta (2.6.31.12.23) karmic; urgency=low
+
+  * Karmic ABI 12
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Tue, 06 Oct 2009 06:50:19 -0600
+
+linux-meta (2.6.31.11.22) karmic; urgency=low
+
+  * Karmic ABI 11
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Fri, 25 Sep 2009 10:35:13 -0600
+
+linux-meta (2.6.31.10.21) karmic; urgency=low
+
+  * Karmic ABI 10
+  * fix grub2 dependancy to point to grub-pc
+    - LP: #425822
+
+ -- Andy Whitcroft <apw@canonical.com>  Mon, 07 Sep 2009 16:38:51 +0100
+
+linux-meta (2.6.31.9.20) karmic; urgency=low
+
+  * Karmic ABI 9
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Mon, 31 Aug 2009 17:51:24 -0600
+
+linux-meta (2.6.31.8.19) karmic; urgency=low
+
+  * Karmic ABI 8
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Thu, 27 Aug 2009 14:05:46 -0600
+
+linux-meta (2.6.31.7.18) karmic; urgency=low
+
+  * Karmic ABI 7
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Mon, 24 Aug 2009 20:06:16 -0600
+
+linux-meta (2.6.31.6.17) karmic; urgency=low
+
+  * Karmic ABI 6
+  * Removed armel/imx51
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Sun, 16 Aug 2009 20:44:54 -0600
+
+linux-meta (2.6.31.5.16) karmic; urgency=low
+
+  * Karmic ABI 5
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Mon, 03 Aug 2009 10:44:53 -0600
+
+linux-meta (2.6.31.4.15) karmic; urgency=low
+
+  [ Andy Whitcroft ]
+
+  * fix dependancies for i386 virtual kernel
+    - LP: #399914
+  * Karmic ABI 4
+
+ -- Andy Whitcroft <apw@canonical.com>  Tue, 21 Jul 2009 11:47:11 +0100
+
+linux-meta (2.6.31.3.14) karmic; urgency=low
+
+  * Karmic ABI 3
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Tue, 14 Jul 2009 08:07:05 -0600
+
+linux-meta (2.6.31.2.13) karmic; urgency=low
+
+  * Add grub2 as a linux-crashdump dependency
+    -LP: #391026
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Mon, 06 Jul 2009 11:28:50 -0600
+
+linux-meta (2.6.31.2.12) karmic; urgency=low
+
+  * Karmic ABI 2
+
+ -- Andy Whitcroft <apw@canonical.com>  Sun, 05 Jul 2009 12:16:48 +0100
+
+linux-meta (2.6.31.1.11) karmic; urgency=low
+
+  [ Andy Whitcroft ]
+
+  * Rebuild debian/control to contain updated recommends etc
+  * Karmic ABI 1 (2.6.31)
+
+  [ Tim Gardner ]
+
+  * Recommend apport for linux-crashdump
+    - LP: #391026
+
+ -- Andy Whitcroft <apw@canonical.com>  Mon, 29 Jun 2009 15:56:38 +0100
+
+linux-meta (2.6.30.10.10) karmic; urgency=low
+
+  * Karmic ABI 10
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Tue, 23 Jun 2009 06:34:11 -0600
+
+linux-meta (2.6.30.9.9) karmic; urgency=low
+
+  [Matt Zimmerman]
+
+  * Remove linux-doc in preparation for non-ABI dependent package name.
+    -LP: #382115
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Mon, 22 Jun 2009 08:46:53 -0600
+
+linux-meta (2.6.30.9.8) karmic; urgency=low
+
+  * Karmic ABI 9
+
+ -- Andy Whitcroft <apw@canonical.com>  Wed, 10 Jun 2009 14:10:35 +0100
+
+linux-meta (2.6.30.8.7) karmic; urgency=low
+
+  * Karmic ABI 8
+
+ -- Andy Whitcroft <apw@canonical.com>  Thu, 04 Jun 2009 11:27:29 +0100
+
+linux-meta (2.6.30.7.6) karmic; urgency=low
+
+  * Karmic ABI 7
+
+ -- Andy Whitcroft <apw@canonical.com>  Tue, 26 May 2009 09:26:01 +0100
+
+linux-meta (2.6.30.6.5) karmic; urgency=low
+
+  * Karmic ABI 6
+
+ -- Andy Whitcroft <apw@canonical.com>  Sat, 23 May 2009 23:24:09 +0100
+
+linux-meta (2.6.30.5.4) karmic; urgency=low
+
+  * Replaced RELEASE_NAME in the rules file with karmic as well and rebuild
+    the control file.
+
+ -- Stefan Bader <stefan.bader@canonical.com>  Tue, 12 May 2009 16:02:37 +0200
+
+linux-meta (2.6.30.5.3) karmic; urgency=low
+
+  * Updated vcs-git line to reference karmic.
+
+ -- Stefan Bader <stefan.bader@canonical.com>  Tue, 12 May 2009 14:46:54 +0200
+
+linux-meta (2.6.30.5.2) karmic; urgency=low
+
+  * Karmic ABI 5
+
+ -- Stefan Bader <stefan.bader@canonical.com>  Tue, 12 May 2009 11:42:24 +0200
+
+linux-meta (2.6.30.2.1) karmic; urgency=low
+
+  * Karmic ABI 2
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Fri, 01 May 2009 18:17:31 +0100
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7ed6ff8
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@ 
+5
diff --git a/debian/control.common b/debian/control.common
new file mode 100644
index 0000000..07402b9
--- /dev/null
+++ b/debian/control.common
@@ -0,0 +1,102 @@ 
+Source: linux-meta
+Section: devel
+Priority: optional
+Maintainer: Ubuntu Kernel Team <kernel-team@lists.ubuntu.com>
+Standards-Version: 3.6.1
+Build-Depends: dpkg (>= 1.13.19), debhelper (>= 5), gawk
+Vcs-Git: http://kernel.ubuntu.com/git-repos/ubuntu/ubuntu-precise-meta.git
+
+Package: linux
+Architecture: i386 amd64 
+Section: kernel
+Priority: optional
+Depends: ${misc:Depends}, linux-image (= ${binary:Version})
+Description: Generic complete Linux kernel.
+ This package will always depend on the latest generic complete Linux kernel
+ available.
+
+Package: linux-source
+Architecture: all
+Section: devel
+Priority: optional
+Depends: ${misc:Depends}, linux-source-${kernel-version}
+Description: Linux kernel source with Ubuntu patches
+ This package will always depend on the latest Linux kernel source code
+ available. The Ubuntu patches have been applied.
+
+Package: linux-image
+Architecture: i386 amd64 
+Section: kernel
+Priority: optional
+Depends: ${misc:Depends}, linux-image-${generic-depends} (= ${binary:Version})
+Description: Generic Linux kernel image.
+ This package will always depend on the latest generic Linux kernel image
+ available.
+
+Package: linux-crashdump
+Architecture: i386 amd64
+Section: devel
+Depends: ${misc:Depends}, kexec-tools, makedumpfile, grub-pc (>= 1.96+20090611-1ubuntu2) | grub-efi-ia32 | grub-efi-amd64 | grub (>= 0.97-29ubuntu24)
+Recommends: apport
+Suggests: crash
+Description: Linux kernel crashdump setup for the latest generic kernel
+ This package installs all the needed infrstracture to get crashdumps from
+ your running system. If you are experiencing kernel crashes that cannot
+ be debugged normally (because the problem is infrequent or panic's the
+ system in such a way as to make information gathering impossible), then
+ you can install this package to automatically enable capture of the
+ vmcore on crashes.
+
+Package: linux-tools
+Architecture: i386 amd64 armel armhf
+Section: kernel
+Depends: ${misc:Depends}, linux-tools-${kernel-abi-version}
+Description: Linux kernel versioned Tools
+ This package will always depend on the latest Linux kernel versioned tools 
+ available. The Ubuntu patches have been applied.
+
+#
+# This comment applies to the following 4 meta packages.
+#
+# Point to a 12.04 kernel until such time as 12.10 is released. Then update
+# to point to linux-image-generic-lts-backport-trusty. The -hwe- package
+# is not updated until just before a point release. However, the -current-
+# package always tracks the most recent release. In that way, -hwe- will
+# sometimes lag for a few months before being updated to match -current-.
+#
+Package: linux-image-hwe-generic
+Architecture: i386 amd64 
+Section: kernel
+Priority: optional
+Depends: ${misc:Depends}, linux-image-generic-lts-trusty
+Description: Depends on the generic hardware enablement kernel image and headers.
+ This package will always depend on the generic hardware enablement kernel
+ and headers.
+
+Package: linux-hwe-generic
+Architecture: i386 amd64 
+Section: kernel
+Priority: optional
+Depends: ${misc:Depends}, linux-image-hwe-generic, linux-headers-generic-lts-trusty
+Description: Depends on the generic hardware enablement kernel image and headers.
+ This package will always depend on the generic hardware enablement kernel
+ and headers.
+
+Package: linux-image-current-generic
+Architecture: i386 amd64 
+Section: kernel
+Priority: optional
+Depends: ${misc:Depends}, linux-image-generic-lts-trusty
+Description: Depends on the most recently released generic kernel image and headers.
+ This package will always depend on the latest released generic kernel
+ and headers, up to 14.04 inclusive.
+
+Package: linux-current-generic
+Architecture: i386 amd64 
+Section: kernel
+Priority: optional
+Depends: ${misc:Depends}, linux-image-generic-lts-trusty, linux-headers-generic-lts-trusty
+Description: Depends on the most recently released generic kernel image and headers.
+ This package will always depend on the latest released generic kernel
+ and headers, up to 14.04 inclusive.
+
diff --git a/debian/control.d/generic b/debian/control.d/generic
new file mode 100644
index 0000000..8bed1ac
--- /dev/null
+++ b/debian/control.d/generic
@@ -0,0 +1,121 @@ 
+Package: linux-headers-generic
+Architecture: i386 amd64
+Section: kernel
+Priority: optional
+Depends: ${misc:Depends}, linux-headers-${kernel-abi-version}-generic
+Description: Generic Linux kernel headers
+ This package will always depend on the latest generic kernel headers
+ available.
+
+Package: linux-image-generic
+Architecture: i386 amd64
+Section: kernel
+Priority: optional
+Provides: linux-backports-modules-hv-RELEASE_NAME-generic
+Conflicts: linux-backports-modules-hv-RELEASE_NAME-generic
+Replaces: linux-backports-modules-hv-RELEASE_NAME-generic
+Depends: ${misc:Depends}, linux-image-${kernel-abi-version}-generic, linux-firmware
+Description: Generic Linux kernel image
+ This package will always depend on the latest generic kernel image
+ available.
+
+Package: linux-generic
+Architecture: i386 amd64
+Section: kernel
+Priority: optional
+Depends: ${misc:Depends}, linux-image-generic (= ${binary:Version}), linux-headers-generic (= ${binary:Version})
+Description: Complete Generic Linux kernel
+ This package will always depend on the latest complete generic Linux kernel
+ available.
+
+Package: linux-backports-modules-headers-RELEASE_NAME-generic
+Architecture: amd64 i386
+Depends: ${misc:Depends}, linux-headers-lbm-${kernel-abi-version}-generic
+Description: Backported driver headers for generic kernel image
+ This empty package allows people to keep their backported module
+ headers up-to-date when upgrading their Linux kernel.
+
+Package: linux-backports-modules-cw-3.3-RELEASE_NAME-generic
+Architecture: amd64 i386
+Depends: ${misc:Depends}, linux-backports-modules-cw-3.3-${kernel-abi-version}-generic
+Description: Backported wireless drivers for generic kernel image
+ This empty package allows people to keep their backported wireless modules
+ up-to-date when upgrading their Linux kernel.
+
+Package: linux-backports-modules-cw-3.4-RELEASE_NAME-generic
+Architecture: amd64 i386
+Depends: ${misc:Depends}, linux-backports-modules-cw-3.4-${kernel-abi-version}-generic
+Description: Backported wireless drivers for generic kernel image
+ This empty package allows people to keep their backported wireless modules
+ up-to-date when upgrading their Linux kernel.
+
+Package: linux-backports-modules-cw-3.5-RELEASE_NAME-generic
+Architecture: amd64 i386
+Depends: ${misc:Depends}, linux-backports-modules-cw-3.5-${kernel-abi-version}-generic
+Description: Backported wireless drivers for generic kernel image
+ This empty package allows people to keep their backported wireless modules
+ up-to-date when upgrading their Linux kernel.
+
+Package: linux-backports-modules-cw-3.6-RELEASE_NAME-generic
+Architecture: amd64 i386
+Depends: ${misc:Depends}, linux-backports-modules-cw-3.6-${kernel-abi-version}-generic
+Description: Backported wireless drivers for generic kernel image
+ This empty package allows people to keep their backported wireless modules
+ up-to-date when upgrading their Linux kernel.
+
+Package: linux-backports-modules-cw-3.7-RELEASE_NAME-generic
+Architecture: amd64 i386
+Depends: ${misc:Depends}, linux-backports-modules-cw-3.7-${kernel-abi-version}-generic
+Description: Backported wireless drivers for generic kernel image
+ This empty package allows people to keep their backported wireless modules
+ up-to-date when upgrading their Linux kernel.
+
+Package: linux-backports-modules-cw-3.8-RELEASE_NAME-generic
+Architecture: amd64 i386
+Depends: ${misc:Depends}, linux-backports-modules-cw-3.8-${kernel-abi-version}-generic
+Description: Backported wireless drivers for generic kernel image
+ This empty package allows people to keep their backported wireless modules
+ up-to-date when upgrading their Linux kernel.
+
+Package: linux-backports-modules-cw-3.10-RELEASE_NAME-generic
+Architecture: amd64 i386
+Depends: ${misc:Depends}, linux-backports-modules-cw-3.10-${kernel-abi-version}-generic
+Description: Backported wireless drivers for generic kernel image
+ This empty package allows people to keep their backported wireless modules
+ up-to-date when upgrading their Linux kernel.
+
+Package: linux-backports-modules-cw-3.11-RELEASE_NAME-generic
+Architecture: amd64 i386
+Depends: ${misc:Depends}, linux-backports-modules-cw-3.11-${kernel-abi-version}-generic
+Description: Backported wireless drivers for generic kernel image
+ This empty package allows people to keep their backported wireless modules
+ up-to-date when upgrading their Linux kernel.
+
+Package: linux-backports-modules-cw-3.12-RELEASE_NAME-generic
+Architecture: amd64 i386
+Depends: ${misc:Depends}, linux-backports-modules-cw-3.12-${kernel-abi-version}-generic
+Description: Backported wireless drivers for generic kernel image
+ This empty package allows people to keep their backported wireless modules
+ up-to-date when upgrading their Linux kernel.
+
+Package: linux-backports-modules-net-RELEASE_NAME-generic
+Architecture: amd64 i386
+Depends: ${misc:Depends}, linux-backports-modules-net-${kernel-abi-version}-generic
+Description: Backported ethernet drivers for generic kernel image.
+ This empty package allows people to keep their backported ethernet modules
+ up-to-date when upgrading their Linux kernel.
+
+#Package: linux-backports-modules-alsa-RELEASE_NAME-generic
+#Architecture: amd64 i386
+#Depends: ${misc:Depends}, linux-backports-modules-alsa-${kernel-abi-version}-generic
+#Description: Backported drivers for alsa-driver snapshot.
+# This empty package allows people to keep their alsa-driver snapshot
+# up-to-date when upgrading their Linux kernel.
+#
+
+#Package: linux-backports-modules-hv-RELEASE_NAME-generic
+#Architecture: amd64 i386
+#Depends: ${misc:Depends}, linux-backports-modules-hv-${kernel-abi-version}-generic
+#Description: Backported Hyper-V hypervisor interfaces
+# This empty package allows people to keep their Hyper-V updated drivers
+# up-to-date when upgrading their Linux kernel.
diff --git a/debian/control.d/generic-pae b/debian/control.d/generic-pae
new file mode 100644
index 0000000..a2d56c6
--- /dev/null
+++ b/debian/control.d/generic-pae
@@ -0,0 +1,121 @@ 
+Package: linux-headers-generic-pae
+Architecture: i386
+Section: kernel
+Priority: optional
+Depends: ${misc:Depends}, linux-headers-${kernel-abi-version}-generic-pae
+Description: Generic Linux kernel headers
+ This package will always depend on the latest generic kernel headers
+ available.
+
+Package: linux-image-generic-pae
+Architecture: i386
+Section: kernel
+Priority: optional
+Provides: linux-backports-modules-hv-RELEASE_NAME-generic-pae
+Conflicts: linux-backports-modules-hv-RELEASE_NAME-generic-pae
+Replaces: linux-backports-modules-hv-RELEASE_NAME-generic-pae
+Depends: ${misc:Depends}, linux-image-${kernel-abi-version}-generic-pae, linux-firmware
+Description: Generic Linux kernel image
+ This package will always depend on the latest generic kernel image
+ available.
+
+Package: linux-generic-pae
+Architecture: i386
+Section: kernel
+Priority: optional
+Depends: ${misc:Depends}, linux-image-generic-pae (= ${binary:Version}), linux-headers-generic-pae (= ${binary:Version})
+Description: Complete Generic Linux kernel
+ This package will always depend on the latest complete generic Linux kernel
+ available.
+
+Package: linux-backports-modules-headers-RELEASE_NAME-generic-pae
+Architecture: i386
+Depends: ${misc:Depends}, linux-headers-lbm-${kernel-abi-version}-generic-pae
+Description: Backported driver headers for generic-pae kernel image
+ This empty package allows people to keep their backported module
+ headers up-to-date when upgrading their Linux kernel.
+
+Package: linux-backports-modules-cw-3.3-RELEASE_NAME-generic-pae
+Architecture: i386
+Depends: ${misc:Depends}, linux-backports-modules-cw-3.3-${kernel-abi-version}-generic-pae
+Description: Backported wireless drivers for generic-pae kernel image
+ This empty package allows people to keep their backported wireless modules
+ up-to-date when upgrading their Linux kernel.
+
+Package: linux-backports-modules-cw-3.4-RELEASE_NAME-generic-pae
+Architecture: i386
+Depends: ${misc:Depends}, linux-backports-modules-cw-3.4-${kernel-abi-version}-generic-pae
+Description: Backported wireless drivers for generic-pae kernel image
+ This empty package allows people to keep their backported wireless modules
+ up-to-date when upgrading their Linux kernel.
+
+Package: linux-backports-modules-cw-3.5-RELEASE_NAME-generic-pae
+Architecture: i386
+Depends: ${misc:Depends}, linux-backports-modules-cw-3.5-${kernel-abi-version}-generic-pae
+Description: Backported wireless drivers for generic-pae kernel image
+ This empty package allows people to keep their backported wireless modules
+ up-to-date when upgrading their Linux kernel.
+
+Package: linux-backports-modules-cw-3.6-RELEASE_NAME-generic-pae
+Architecture: i386
+Depends: ${misc:Depends}, linux-backports-modules-cw-3.6-${kernel-abi-version}-generic-pae
+Description: Backported wireless drivers for generic-pae kernel image
+ This empty package allows people to keep their backported wireless modules
+ up-to-date when upgrading their Linux kernel.
+
+Package: linux-backports-modules-cw-3.7-RELEASE_NAME-generic-pae
+Architecture: i386
+Depends: ${misc:Depends}, linux-backports-modules-cw-3.7-${kernel-abi-version}-generic-pae
+Description: Backported wireless drivers for generic-pae kernel image
+ This empty package allows people to keep their backported wireless modules
+ up-to-date when upgrading their Linux kernel.
+
+Package: linux-backports-modules-cw-3.8-RELEASE_NAME-generic-pae
+Architecture: i386
+Depends: ${misc:Depends}, linux-backports-modules-cw-3.8-${kernel-abi-version}-generic-pae
+Description: Backported wireless drivers for generic-pae kernel image
+ This empty package allows people to keep their backported wireless modules
+ up-to-date when upgrading their Linux kernel.
+
+Package: linux-backports-modules-cw-3.10-RELEASE_NAME-generic-pae
+Architecture: i386
+Depends: ${misc:Depends}, linux-backports-modules-cw-3.10-${kernel-abi-version}-generic-pae
+Description: Backported wireless drivers for generic-pae kernel image
+ This empty package allows people to keep their backported wireless modules
+ up-to-date when upgrading their Linux kernel.
+
+Package: linux-backports-modules-cw-3.11-RELEASE_NAME-generic-pae
+Architecture: i386
+Depends: ${misc:Depends}, linux-backports-modules-cw-3.11-${kernel-abi-version}-generic-pae
+Description: Backported wireless drivers for generic-pae kernel image
+ This empty package allows people to keep their backported wireless modules
+ up-to-date when upgrading their Linux kernel.
+
+Package: linux-backports-modules-cw-3.12-RELEASE_NAME-generic-pae
+Architecture: i386
+Depends: ${misc:Depends}, linux-backports-modules-cw-3.12-${kernel-abi-version}-generic-pae
+Description: Backported wireless drivers for generic-pae kernel image
+ This empty package allows people to keep their backported wireless modules
+ up-to-date when upgrading their Linux kernel.
+
+Package: linux-backports-modules-net-RELEASE_NAME-generic-pae
+Architecture: i386
+Depends: ${misc:Depends}, linux-backports-modules-net-${kernel-abi-version}-generic-pae
+Description: Backported ethernet drivers for generic kernel image.
+ This empty package allows people to keep their backported ethernet modules
+ up-to-date when upgrading their Linux kernel.
+
+#Package: linux-backports-modules-alsa-RELEASE_NAME-generic-pae
+#Architecture: i386
+#Depends: ${misc:Depends}, linux-backports-modules-alsa-${kernel-abi-version}-generic-pae
+#Description: Backported drivers for alsa-driver snapshot.
+# This empty package allows people to keep their alsa-driver snapshot
+# up-to-date when upgrading their Linux kernel.
+#
+
+#Package: linux-backports-modules-hv-RELEASE_NAME-generic-pae
+#Architecture: i386
+#Depends: ${misc:Depends}, linux-backports-modules-hv-${kernel-abi-version}-generic-pae
+#Description: Backported Hyper-V hypervisor interfaces
+# This empty package allows people to keep their Hyper-V updated drivers
+# up-to-date when upgrading their Linux kernel.
diff --git a/debian/control.d/highbank b/debian/control.d/highbank
new file mode 100644
index 0000000..386ec97
--- /dev/null
+++ b/debian/control.d/highbank
@@ -0,0 +1,26 @@ 
+Package: linux-headers-highbank
+Architecture: armhf
+Section: kernel
+Priority: optional
+Depends: ${misc:Depends}, linux-headers-${kernel-abi-version}-highbank 
+Description: Linux kernel headers for the Calxeda Highbank flavour.
+ This package will always depend on the latest kernel headers available
+ for Calxeda Highbank systems.
+
+Package: linux-image-highbank
+Architecture: armhf
+Section: kernel
+Priority: optional
+Depends: ${misc:Depends}, linux-image-${kernel-abi-version}-highbank, linux-firmware
+Description: Linux kernel image for the Calxeda Highbank flavour.
+ This package will always depend on the latest kernel image available
+ for Calxeda Highbank systems.
+
+Package: linux-highbank
+Architecture: armhf
+Section: kernel
+Priority: optional
+Depends: ${misc:Depends}, linux-image-highbank (= ${binary:Version}), linux-headers-highbank (= ${binary:Version})
+Description: Complete Linux kernel for the Calxeda Highbank architecture.
+ This package will always depend on the latest complete Linux kernel available
+ for Calxeda Highbank systems.
diff --git a/debian/control.d/omap b/debian/control.d/omap
new file mode 100644
index 0000000..0b6fd21
--- /dev/null
+++ b/debian/control.d/omap
@@ -0,0 +1,26 @@ 
+Package: linux-headers-omap
+Architecture: armel armhf
+Section: kernel
+Priority: optional
+Depends: ${misc:Depends}, linux-headers-${kernel-abi-version}-omap 
+Description: Linux kernel headers for the OMAP3 architecture.
+ This package will always depend on the latest kernel headers available
+ for ARM TI OMAP3 systems.
+
+Package: linux-image-omap
+Architecture: armel armhf
+Section: kernel
+Priority: optional
+Depends: ${misc:Depends}, linux-image-${kernel-abi-version}-omap, linux-firmware
+Description: Linux kernel image for the OMAP3 architecture.
+ This package will always depend on the latest kernel image available
+ for ARM TI OMAP3 systems.
+
+Package: linux-omap
+Architecture: armel armhf
+Section: kernel
+Priority: optional
+Depends: ${misc:Depends}, linux-image-omap (= ${binary:Version}), linux-headers-omap (= ${binary:Version})
+Description: Complete Linux kernel for the OMAP3 architecture.
+ This package will always depend on the latest complete Linux kernel available
+ for ARM TI OMAP3 systems.
diff --git a/debian/control.d/powerpc b/debian/control.d/powerpc
new file mode 100644
index 0000000..6176fea
--- /dev/null
+++ b/debian/control.d/powerpc
@@ -0,0 +1,30 @@ 
+#
+# PowerPC
+#
+Package: linux-powerpc
+Architecture: powerpc
+Section: kernel
+Priority: optional
+Depends: linux-powerpc-smp (= ${binary:Version})
+Description: Complete Linux kernel on PowerPC.
+ This package will always depend on the latest complete Linux kernel available
+ for PowerPC.
+
+Package: linux-image-powerpc
+Architecture: powerpc
+Section: kernel
+Priority: optional
+Depends: linux-image-powerpc-smp (= ${binary:Version}), linux-firmware
+Description: Linux kernel image on PowerPC
+ This package will always depend on the latest kernel image available
+ for PowerPC support.
+
+Package: linux-headers-powerpc
+Architecture: powerpc
+Section: kernel
+Priority: optional
+Depends: linux-headers-powerpc-smp (= ${binary:Version})
+Description: Linux kernel headers on PowerPC
+ This package will always depend on the latest kernel headers available
+ for PowerPC.
+
diff --git a/debian/control.d/powerpc-smp b/debian/control.d/powerpc-smp
new file mode 100644
index 0000000..07e470b
--- /dev/null
+++ b/debian/control.d/powerpc-smp
@@ -0,0 +1,33 @@ 
+#
+# PowerPC-SMP
+#
+Package: linux-powerpc-smp
+Architecture: powerpc
+Section: kernel
+Priority: optional
+Depends: linux-image-powerpc-smp (= ${binary:Version}), linux-headers-powerpc-smp (= ${binary:Version})
+Description: Complete Linux kernel on PowerPC SMP.
+ This package will always depend on the latest complete Linux kernel available
+ for PowerPC with SMP support.
+ SMP (symmetric multi-processing) is needed if you have multiple processors.
+
+Package: linux-image-powerpc-smp
+Architecture: powerpc
+Section: kernel
+Priority: optional
+Depends: linux-image-${kernel-abi-version}-powerpc-smp, linux-firmware
+Description: Linux kernel image on PowerPC SMP.
+ This package will always depend on the latest kernel image available
+ for PowerPC with SMP support.
+ SMP (symmetric multi-processing) is needed if you have multiple processors.
+
+Package: linux-headers-powerpc-smp
+Architecture: powerpc
+Section: kernel
+Priority: optional
+Depends: linux-headers-${kernel-abi-version}-powerpc-smp
+Description: Linux kernel headers on PowerPC SMP
+ This package will always depend on the latest kernel headers available
+ for PowerPC with SMP support.
+ SMP (symmetric multi-processing) is needed if you have multiple processors.
+
diff --git a/debian/control.d/powerpc64-smp b/debian/control.d/powerpc64-smp
new file mode 100644
index 0000000..ffd85cc
--- /dev/null
+++ b/debian/control.d/powerpc64-smp
@@ -0,0 +1,33 @@ 
+#
+# PowerPC64-SMP
+#
+Package: linux-powerpc64-smp
+Architecture: powerpc
+Section: kernel
+Priority: optional
+Depends: linux-image-powerpc64-smp (= ${binary:Version}), linux-headers-powerpc64-smp (= ${binary:Version})
+Description: Complete Linux kernel on PowerPC64 SMP.
+ This package will always depend on the latest complete Linux kernel available
+ for PowerPC64 with SMP support.
+ SMP (symmetric multi-processing) is needed if you have multiple processors.
+
+Package: linux-image-powerpc64-smp
+Architecture: powerpc
+Section: kernel
+Priority: optional
+Depends: linux-image-${kernel-abi-version}-powerpc64-smp, linux-firmware
+Description: Linux kernel image on PowerPC64 SMP.
+ This package will always depend on the latest kernel image available
+ for PowerPC64 with SMP support.
+ SMP (symmetric multi-processing) is needed if you have multiple processors.
+
+Package: linux-headers-powerpc64-smp
+Architecture: powerpc
+Section: kernel
+Priority: optional
+Depends: linux-headers-${kernel-abi-version}-powerpc64-smp
+Description: Linux kernel headers on PowerPC64 SMP
+ This package will always depend on the latest kernel headers available
+ for PowerPC64 with SMP support.
+ SMP (symmetric multi-processing) is needed if you have multiple processors.
+
diff --git a/debian/control.d/server b/debian/control.d/server
new file mode 100644
index 0000000..a876d90
--- /dev/null
+++ b/debian/control.d/server
@@ -0,0 +1,55 @@ 
+Package: linux-headers-server
+Architecture: amd64 i386
+Section: kernel
+Priority: optional
+Depends: ${misc:Depends}, linux-headers-${kernel-abi-version}-generic [amd64], linux-headers-generic-pae [i386]
+Description: Linux kernel headers on Server Equipment.
+ This package will always depend on the latest kernel headers available
+ for Server Equipment.
+
+Package: linux-image-server
+Architecture: amd64 i386
+Section: kernel
+Priority: optional
+Depends: ${misc:Depends}, linux-image-${kernel-abi-version}-generic [amd64], linux-firmware [amd64], linux-image-generic-pae [i386]
+Description: Linux kernel image on Server Equipment.
+ This package will always depend on the latest kernel image available
+ for Server Equipment.
+
+Package: linux-server
+Architecture: amd64 i386
+Section: kernel
+Priority: optional
+Depends: ${misc:Depends}, linux-image-server (= ${binary:Version}) [amd64], linux-headers-server (= ${binary:Version}) [amd64], linux-generic-pae [i386]
+Description: Complete Linux kernel on Server Equipment.
+ This package will always depend on the latest complete Linux kernel available
+ for Server Equipment.
+
+Package: linux-backports-modules-net-RELEASE_NAME-server
+Architecture: amd64 i386
+Depends: ${misc:Depends}, linux-backports-modules-net-${kernel-abi-version}-generic [amd64], linux-backports-modules-net-${kernel-abi-version}-generic-pae [i386]
+Description: Backported ethernet drivers for generic kernel image.
+ This empty package allows people to keep their backported ethernet modules
+ up-to-date when upgrading their Linux kernel.
+
+#Package: linux-backports-modules-headers-RELEASE_NAME-server
+#Architecture: amd64
+#Depends: ${misc:Depends}, linux-headers-lbm-${kernel-abi-version}-generic
+#Description: Backported driver headers for server kernel image
+# This empty package allows people to keep their backported module
+# headers up-to-date when upgrading their Linux kernel.
+
+#Package: linux-backports-modules-cw-3.3-RELEASE_NAME-server
+#Architecture: amd64
+#Depends: ${misc:Depends}, linux-backports-modules-cw-3.3-${kernel-abi-version}-server
+#Description: Backported wireless drivers for server kernel image
+# This empty package allows people to keep their backported wireless modules
+# up-to-date when upgrading their Linux kernel.
+#
+#Package: linux-backports-modules-alsa-RELEASE_NAME-server
+#Architecture: amd64
+#Depends: ${misc:Depends}, linux-backports-modules-alsa-${kernel-abi-version}-generic
+#Description: Backported drivers for alsa-driver snapshot.
+# This empty package allows people to keep their alsa-driver snapshot
+# up-to-date when upgrading their Linux kernel.
+#
diff --git a/debian/control.d/virtual b/debian/control.d/virtual
new file mode 100644
index 0000000..ede7be1
--- /dev/null
+++ b/debian/control.d/virtual
@@ -0,0 +1,47 @@ 
+Package: linux-headers-virtual
+Architecture: i386 amd64
+Section: kernel
+Priority: optional
+Depends: ${misc:Depends}, linux-headers-${kernel-abi-version}-virtual
+Description: Linux kernel headers for virtual machines
+ This package will always depend on the latest kernel headers available
+ for virtual machines.
+
+Package: linux-image-virtual
+Architecture: i386 amd64
+Section: kernel
+Priority: optional
+Provides: linux-backports-modules-hv-RELEASE_NAME-virtual
+Conflicts: linux-backports-modules-hv-RELEASE_NAME-virtual
+Replaces: linux-backports-modules-hv-RELEASE_NAME-virtual
+Depends: ${misc:Depends}, linux-image-${kernel-abi-version}-virtual, linux-firmware
+Description: Linux kernel image for virtual machines
+ This package will always depend on the latest kernel image available
+ for virtual machines. Install linux-image-extra-virtual to get all
+ available kernel modules.
+
+Package: linux-virtual
+Architecture: i386 amd64
+Section: kernel
+Priority: optional
+Depends: ${misc:Depends}, linux-image-virtual (= ${binary:Version}), linux-headers-virtual (= ${binary:Version})
+Description: Complete Linux kernel for virtual machines
+ This package will always depend on the latest complete Linux kernel available
+ for virtual machines. Install linux-image-extra-virtual to get all
+ available kernel modules.
+
+Package: linux-image-extra-virtual
+Architecture: i386 amd64
+Section: kernel
+Priority: optional
+Depends: ${misc:Depends}, linux-image-virtual (= ${binary:Version}), linux-image-extra-${kernel-abi-version}-virtual
+Description: Linux kernel extra modules for virtual machines
+ This package will always depend on the latest kernel extra modules available
+ for virtual machines.
+
+#Package: linux-backports-modules-hv-RELEASE_NAME-virtual
+#Architecture: amd64 i386
+#Depends: ${misc:Depends}, linux-backports-modules-hv-${kernel-abi-version}-virtual
+#Description: Backported Hyper-V hypervisor interfaces
+# This empty package allows people to keep their Hyper-V updated drivers
+# up-to-date when upgrading their Linux kernel.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..95305a2
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,39 @@ 
+This is the Debian GNU/Linux prepackaged version of the Linux kernel.
+Linux was written by Linus Torvalds <Linus.Torvalds@cs.Helsinki.FI>
+and others.
+
+This package was put together by Simon Shapiro <Shimon@i-Connect.Net>, from
+sources retrieved from directories under
+ftp.cs.helsinki.fi:/pub/Software/Linux/Kernel/
+The sources may be found at most Linux ftp sites, including 
+ftp://ftp.kernel.org/pub/linux/kernel/
+
+This package was then maintained by Sven Rudolph.
+
+This package was maintained by Herbert Xu <herbert@gondor.apana.org.au>
+from March 1997 to May 2004.
+
+This package was maintained by the
+Debian Kernel Team <debian-kernel@lists.debian.org>
+
+This package was split off by Herbert Xu <herbert@gondor.apana.org.au>
+in September 2004.
+
+Linux is copyrighted by Linus Torvalds and others.
+
+   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
+   the Free Software Foundation; version 2 dated June, 1991.
+
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this program; if not, write to the Free Software
+   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+   02110-1301, USA.
+
+On Debian GNU/Linux systems, the complete text of the GNU General
+Public License can be found in `/usr/share/common-licenses/GPL'.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..6e812c8
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,92 @@ 
+#!/usr/bin/make -f
+#
+# debian/rules for kernel-source.
+#
+# GNU copyright 1997 to 1999 by Joey Hess.
+# Copyright (c) 1999-2004 Herbert Xu <herbert@gondor.apana.org.au>
+# Copyright (c) 2004 Jens Schmalzing <jensen@debian.org>
+#
+
+RELEASE_NAME=precise
+
+# 5 digit versions (2.6.38.<abi>.<upload>, 3 digit kernel base versions (2.6.38)
+KERNEL_VERSION=$(shell dpkg-parsechangelog | grep ^Version | sed -e \
+	's/Version: \([0-9]*\.[0-9]*\.[0-9]*\)\..*/\1/')
+KERNEL_ABI=$(shell head -n1 < debian/changelog | gawk '{n=split($$0,v,"."); print v[4];}')
+
+# 4 digit versions (3.0.<abi>.<upload>), 2 digit kernel base versions (3.0)
+#KERNEL_VERSION=$(shell dpkg-parsechangelog | grep ^Version | sed -e \
+	's/Version: \([0-9]*\.[0-9]*\)\..*/\1/')
+#KERNEL_ABI=$(shell head -n1 < debian/changelog | gawk '{n=split($$0,v,"."); print v[3];}')
+
+KERNEL_ABI_VERSION=$(KERNEL_VERSION)-$(KERNEL_ABI)
+
+GENERIC_i386=generic-pae
+GENERIC_amd64=generic
+
+GENERIC=$(value GENERIC_$(shell dpkg-architecture -qDEB_HOST_ARCH))
+GENERIC_DEP=$(if $(GENERIC),$(GENERIC),)
+
+control_files := debian/control.common $(shell LC_ALL=C ls -d debian/control.d/*)
+
+SHELL := sh -e
+
+build:
+	dh_testdir
+
+clean: debian/control
+	dh_testdir
+	dh_testroot
+	dh_clean
+
+debian/control: $(control_files)
+	rm -f debian/control.tmp
+	for i in $^; do \
+		sed 's/RELEASE_NAME/$(RELEASE_NAME)/g' $$i >> debian/control.tmp; \
+		echo >> debian/control.tmp; \
+	done
+	rm -f $@
+	mv debian/control.tmp $@
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+gencontrol_flags = -Vkernel-version=$(KERNEL_VERSION)
+gencontrol_flags += -Vkernel-abi-version=$(KERNEL_ABI_VERSION)
+gencontrol_flags += -Vgeneric-depends=$(GENERIC_DEP)
+
+# Build architecture-independent files here.
+binary-indep: debian/control install
+	dh_testdir
+	dh_testroot
+
+	dh_installdirs -i
+	dh_installdocs -i
+	dh_installchangelogs -i
+	dh_compress -i
+	dh_fixperms -i
+	dh_installdeb -i
+	dh_gencontrol -i -- $(gencontrol_flags)
+	dh_md5sums -i
+	dh_builddeb -i
+
+# Build architecture-dependent files here.
+binary-arch: debian/control install
+	dh_testdir
+	dh_testroot
+
+	dh_installdirs -s
+	dh_installdocs -s
+	dh_installchangelogs -s
+	dh_compress -s
+	dh_fixperms -s
+	dh_installdeb -s
+	dh_gencontrol -s -- $(gencontrol_flags)
+	dh_md5sums -s
+	dh_builddeb -s
+
+binary: binary-indep binary-arch
+
+.PHONY: build clean binary-indep binary-arch binary install
diff --git a/debian/source/options b/debian/source/options
new file mode 100644
index 0000000..8e1f8cf
--- /dev/null
+++ b/debian/source/options
@@ -0,0 +1,3 @@ 
+# force "dpkg-source -I -i" behavior
+diff-ignore
+tar-ignore
diff --git a/meta-source/debian/changelog b/meta-source/debian/changelog
deleted file mode 100644
index 2b16f67..0000000
--- a/meta-source/debian/changelog
+++ /dev/null
@@ -1,1927 +0,0 @@ 
-linux-meta (3.2.0.121.136) precise; urgency=medium
-
-  * linux ABI 3.2.0-121
-
- -- John Donnelly <john.donnelly@canonical.com>  Mon, 09 Jan 2017 16:52:21 -0200 
-
-linux-meta (3.2.0.120.135) precise; urgency=medium
-
-  * linux ABI 3.2.0-120
-
- -- Thadeu Lima de Souza Cascardo <cascardo@canonical.com>  Mon, 19 Dec 2016 16:52:21 -0200
-
-linux-meta (3.2.0.119.134) precise; urgency=medium
-
-  * linux ABI 3.2.0-119
-
- -- Luis Henriques <luis.henriques@canonical.com>  Tue, 06 Dec 2016 13:32:52 +0000
-
-linux-meta (3.2.0.118.133) precise; urgency=medium
-
-  * linux ABI 3.2.0-118
-
- -- Brad Figg <brad.figg@canonical.com>  Thu, 01 Dec 2016 15:21:39 -0800
-
-linux-meta (3.2.0.117.133) precise; urgency=medium
-
-  * linux ABI 3.2.0-117
-
- -- Luis Henriques <luis.henriques@canonical.com>  Wed, 30 Nov 2016 10:03:39 +0000
-
-linux-meta (3.2.0.116.132) precise; urgency=medium
-
-  * linux ABI 3.2.0-116
-
- -- Luis Henriques <luis.henriques@canonical.com>  Wed, 09 Nov 2016 17:07:31 +0000
-
-linux-meta (3.2.0.115.131) precise; urgency=medium
-
-  * linux ABI 3.2.0-115
-
- -- Seth Forshee <seth.forshee@canonical.com>  Tue, 25 Oct 2016 10:22:42 -0500
-
-linux-meta (3.2.0.114.130) precise; urgency=medium
-
-  * linux ABI 3.2.0-114
-
- -- Seth Forshee <seth.forshee@canonical.com>  Thu, 20 Oct 2016 17:17:52 -0500
-
-linux-meta (3.2.0.113.129) precise; urgency=medium
-
-  * linux ABI 3.2.0-113
-
- -- Stefan Bader <stefan.bader@canonical.com>  Tue, 18 Oct 2016 18:58:09 +0200
-
-linux-meta (3.2.0.112.128) precise; urgency=medium
-
-  * linux ABI 3.2.0-112
-
- -- Seth Forshee <seth.forshee@canonical.com>  Wed, 12 Oct 2016 13:08:09 -0500
-
-linux-meta (3.2.0.111.127) precise; urgency=medium
-
-  * linux ABI 3.2.0-111
-
- -- Joseph Salisbury <joseph.salisbury@canonical.com>  Wed, 21 Sep 2016 12:13:50 -0400
-
-linux-meta (3.2.0.110.126) precise; urgency=low
-
-  * linux ABI 3.2.0-110
-
- -- Tim Gardner <tim.gardner@canonical.com>  Tue, 30 Aug 2016 13:46:25 +0000
-
-linux-meta (3.2.0.109.125) precise; urgency=medium
-
-  * linux ABI 3.2.0-109
-
- -- Stefan Bader <stefan.bader@canonical.com>  Fri, 12 Aug 2016 19:03:46 +0200
-
-linux-meta (3.2.0.108.124) precise; urgency=medium
-
-  [ Stefan Bader ]
-
-  * linux ABI
-
- -- Stefan Bader <stefan.bader@canonical.com>  Tue, 09 Aug 2016 15:21:43 +0200
-
-linux-meta (3.2.0.107.123) precise; urgency=medium
-
-  [ Seth Forshee ]
-
-  * linux ABI
-
- -- Seth Forshee <seth.forshee@canonical.com>  Mon, 18 Jul 2016 14:02:26 -0500
-
-linux-meta (3.2.0.106.122) precise; urgency=medium
-
-  [ Kamal Mostafa ]
-
-  * linux ABI
-
- -- Kamal Mostafa <kamal@canonical.com>  Tue, 28 Jun 2016 14:15:07 -0700
-
-linux-meta (3.2.0.105.121) precise; urgency=medium
-
-  [ Kamal Mostafa ]
-
-  * linux ABI
-
- -- Kamal Mostafa <kamal@canonical.com>  Fri, 10 Jun 2016 12:58:49 -0700
-
-linux-meta (3.2.0.104.120) precise; urgency=medium
-
-  [ Kamal Mostafa ]
-
-  * linux ABI
-
- -- Kamal Mostafa <kamal@canonical.com>  Fri, 03 Jun 2016 13:05:04 -0700
-
-linux-meta (3.2.0.103.119) precise; urgency=medium
-
-  [ Kamal Mostafa ]
-
-  * linux ABI
-
- -- Kamal Mostafa <kamal@canonical.com>  Wed, 11 May 2016 10:24:20 -0700
-
-linux-meta (3.2.0.102.118) precise; urgency=medium
-
-  [ Kamal Mostafa ]
-
-  * linux ABI
-
- -- Kamal Mostafa <kamal@canonical.com>  Mon, 18 Apr 2016 15:06:19 -0700
-
-linux-meta (3.2.0.101.117) precise; urgency=medium
-
-  [ Brad Figg ]
-
-  * linux ABI
-
- -- Brad Figg <brad.figg@canonical.com>  Thu, 10 Mar 2016 13:35:21 -0800
-
-linux-meta (3.2.0.100.116) precise; urgency=medium
-
-  [ Brad Figg ]
-
-  * linux ABI
-
- -- Brad Figg <brad.figg@canonical.com>  Mon, 22 Feb 2016 13:34:52 -0800
-
-linux-meta (3.2.0.99.115) precise; urgency=medium
-
-  [ Brad Figg ]
-
-  * linux ABI
-
- -- Brad Figg <brad.figg@canonical.com>  Mon, 01 Feb 2016 11:49:08 -0800
-
-linux-meta (3.2.0.98.114) precise; urgency=medium
-
-  [ Luis Henriques ]
-
-  * linux ABI
-
- -- Luis Henriques <luis.henriques@canonical.com>  Mon, 11 Jan 2016 11:59:07 +0000
-
-linux-meta (3.2.0.97.113) precise; urgency=medium
-
-  [ Luis Henriques ]
-
-  * linux ABI
-
- -- Luis Henriques <luis.henriques@canonical.com>  Wed, 16 Dec 2015 16:19:34 +0000
-
-linux-meta (3.2.0.96.112) precise; urgency=low
-
-  [ Brad Figg ]
-
-  * Bump ABI
-
- -- Brad Figg <brad.figg@canonical.com>  Mon, 30 Nov 2015 13:33:42 -0800
-
-linux-meta (3.2.0.95.111) precise; urgency=low
-
-  [ Andy Whitcroft ]
-
-  * Provides/Conficts/Replaces: on linux-image-generic-pae and
-    linux-image-virtual.  Upgrade linux-image-generic to P/C/R.
-
- -- Andy Whitcroft <apw@canonical.com>  Fri, 13 Nov 2015 18:45:34 +0000
-
-linux-meta (3.2.0.95.110) precise; urgency=low
-
-  [ Andy Whitcroft ]
-
-  * drop linux-backports-*-hv-* from -generic-pae and -virtual also.
-    (LP: #151884)
-
- -- Andy Whitcroft <apw@canonical.com>  Fri, 13 Nov 2015 08:30:38 +0000
-
-linux-meta (3.2.0.95.109) precise; urgency=low
-
-  [ Luis Henriques ]
-
-  * Merge back Ubuntu-3.2.0.94.108 security release
-  * Bump ABI
-
-  [ Andy Whitcroft ]
-
-  * drop linux-backports-*-hv-* as this is no longer supported
-    and the in kernel driver is now newer and more functional
-    that this.  Conflicts/Replaces: on linux-image-generic
-    to push the meta package for this off: (LP: #1512884)
-
- -- Luis Henriques <luis.henriques@canonical.com>  Tue, 10 Nov 2015 12:14:16 +0000
-
-linux-meta (3.2.0.94.108) precise; urgency=medium
-
-  [ Luis Henriques ]
-
-  * Bump ABI
-
- -- Luis Henriques <luis.henriques@canonical.com>  Thu, 05 Nov 2015 17:44:37 +0000
-
-linux-meta (3.2.0.93.107) precise; urgency=medium
-
-  [ Luis Henriques ]
-
-  * Bump ABI
-
- -- Luis Henriques <luis.henriques@canonical.com>  Tue, 20 Oct 2015 09:47:10 +0100
-
-linux-meta (3.2.0.92.106) precise; urgency=medium
-
-  [ Brad Figg ]
-
-  * Bump ABI
-
- -- Brad Figg <brad.figg@canonical.com>  Mon, 05 Oct 2015 14:20:57 -0700
-
-linux-meta (3.2.0.91.105) precise; urgency=medium
-
-  [ Luis Henriques ]
-
-  * Bump ABI
-
- -- Luis Henriques <luis.henriques@canonical.com>  Wed, 09 Sep 2015 11:25:58 +0100
-
-linux-meta (3.2.0.90.104) precise; urgency=medium
-
-  [ Brad Figg ]
-
-  * Bump ABI
-
- -- Brad Figg <brad.figg@canonical.com>  Fri, 14 Aug 2015 12:25:07 -0700
-
-linux-meta (3.2.0.89.103) precise; urgency=medium
-
-  [ Luis Henriques ]
-
-  * Bump ABI
-
- -- Luis Henriques <luis.henriques@canonical.com>  Tue, 28 Jul 2015 10:02:24 +0100
-
-linux-meta (3.2.0.88.102) precise; urgency=medium
-
-  [ Brad Figg ]
-
-  * Bump ABI
-
- -- Brad Figg <brad.figg@canonical.com>  Mon, 06 Jul 2015 14:29:17 -0700
-
-linux-meta (3.2.0.87.101) precise; urgency=medium
-
-  [ Luis Henriques ]
-
-  * Bump ABI
-
- -- Luis Henriques <luis.henriques@canonical.com>  Thu, 18 Jun 2015 17:21:16 +0100
-
-linux-meta (3.2.0.86.100) precise; urgency=medium
-
-  [ Luis Henriques ]
-
-  * Bump ABI
-
- -- Luis Henriques <luis.henriques@canonical.com>  Thu, 11 Jun 2015 09:55:44 +0100
-
-linux-meta (3.2.0.85.99) precise; urgency=medium
-
-  [ Luis Henriques ]
-
-  * Bump ABI
-
- -- Luis Henriques <luis.henriques@canonical.com>  Tue, 26 May 2015 16:38:02 +0100
-
-linux-meta (3.2.0.84.98) precise; urgency=medium
-
-  [ Brad Figg ]
-
-  * Bump ABI
-
- -- Brad Figg <brad.figg@canonical.com>  Tue, 05 May 2015 11:47:46 -0700
-
-linux-meta (3.2.0.83.97) precise; urgency=medium
-
-  [ Luis Henriques ]
-
-  * Bump ABI
-
- -- Luis Henriques <luis.henriques@canonical.com>  Wed, 29 Apr 2015 13:46:18 +0100
-
-linux-meta (3.2.0.82.96) precise; urgency=medium
-
-  [ Luis Henriques ]
-
-  * Bump ABI
-
- -- Luis Henriques <luis.henriques@canonical.com>  Mon, 27 Apr 2015 14:29:31 +0100
-
-linux-meta (3.2.0.81.95) precise; urgency=medium
-
-  [ Brad Figg ]
-
-  * Bump ABI
-
- -- Brad Figg <brad.figg@canonical.com>  Thu, 09 Apr 2015 09:51:56 -0700
-
-linux-meta (3.2.0.80.94) precise; urgency=medium
-
-  [ Brad Figg ]
-
-  * Bump ABI
-
- -- Brad Figg <brad.figg@canonical.com>  Mon, 23 Mar 2015 09:57:13 -0700
-
-linux-meta (3.2.0.79.93) precise; urgency=medium
-
-  [ Luis Henriques ]
-
-  * Bump ABI
-
- -- Luis Henriques <luis.henriques@canonical.com>  Thu, 12 Mar 2015 13:47:13 +0000
-
-linux-meta (3.2.0.78.92) precise; urgency=medium
-
-  [ Seth Forshee ]
-
-  * Bump ABI
-
- -- Seth Forshee <seth.forshee@canonical.com>  Tue, 03 Mar 2015 09:49:13 -0600
-
-linux-meta (3.2.0.77.91) precise; urgency=medium
-
-  [ Kamal Mostafa ]
-
-  * UBUNTU: [Packaging] force "dpkg-source -I -i" behavior
-
-  [ Seth Forshee ]
-
-  * Bump ABI
-
- -- Seth Forshee <seth.forshee@canonical.com>  Mon, 09 Feb 2015 15:38:22 -0600
-
-linux-meta (3.2.0.76.90) precise; urgency=medium
-
-  [ Seth Forshee ]
-
-  * Bump ABI
-
- -- Seth Forshee <seth.forshee@canonical.com>  Tue, 13 Jan 2015 15:39:04 -0600
-
-linux-meta (3.2.0.75.89) precise; urgency=medium
-
-  [ Kamal Mostafa ]
-
-  * Bump ABI
-
- -- Kamal Mostafa <kamal@canonical.com>  Tue, 16 Dec 2014 10:43:09 -0800
-
-linux-meta (3.2.0.74.88) precise; urgency=medium
-
-  [ Luis Henriques ]
-
-  * Bump ABI
-
- -- Luis Henriques <luis.henriques@canonical.com>  Tue, 09 Dec 2014 14:45:32 +0000
-
-linux-meta (3.2.0.73.87) precise; urgency=medium
-
-  [ Luis Henriques ]
-
-  * Bump ABI
-
- -- Luis Henriques <luis.henriques@canonical.com>  Tue, 25 Nov 2014 10:50:07 +0000
-
-linux-meta (3.2.0.72.86) precise; urgency=medium
-
-  [ Luis Henriques ]
-
-  * Bump ABI
-
- -- Luis Henriques <luis.henriques@canonical.com>  Thu, 06 Nov 2014 13:53:45 +0000
-
-linux-meta (3.2.0.71.85) precise; urgency=medium
-
-  [ Brad Figg ]
-
-  * Bump ABI
-
- -- Brad Figg <brad.figg@canonical.com>  Mon, 03 Nov 2014 09:31:46 -0800
-
-linux-meta (3.2.0.70.84) precise; urgency=medium
-
-  [ Joseph Salisbury ]
-
-  * Bump ABI
-
- -- Joseph Salisbury <joseph.salisbury@canonical.com>  Mon, 22 Sep 2014 14:48:37 -0400
-
-linux-meta (3.2.0.69.82) precise; urgency=medium
-
-  [ Brad Figg ]
-
-  * Bump ABI
-
- -- Brad Figg <brad.figg@canonical.com>  Thu, 04 Sep 2014 09:42:05 -0700
-
-linux-meta (3.2.0.68.81) precise; urgency=medium
-
-  [ Joseph Salisbury ]
-
-  * Bump ABI
-
- -- Brad Figg <brad.figg@canonical.com>  Mon, 18 Aug 2014 12:06:41 -0700
-
-linux-meta (3.2.0.67.79) precise; urgency=medium
-
-  [ Luis Henriques ]
-
-  * Bump ABI
-
- -- Luis Henriques <luis.henriques@canonical.com>  Mon, 07 Jul 2014 17:23:11 +0100
-
-linux-meta (3.2.0.66.78) precise; urgency=medium
-
-  * [ Joseph Salisbury ]
-
-  * Bump ABI
-
- -- Joseph Salisbury <joseph.salisbury@canonical.com>  Mon, 30 Jun 2014 16:28:03 -0400
-
-linux-meta (3.2.0.65.77) precise; urgency=medium
-
-  * [ Joseph Salisbury ]
-
-  * Bump ABI
-
- -- Joseph Salisbury <joseph.salisbury@canonical.com>  Wed, 11 Jun 2014 14:37:46 -0400
-
-linux-meta (3.2.0.64.76) precise; urgency=medium
-
-  [ Luis Henriques ]
-
-  * Bump ABI
-
- -- Luis Henriques <luis.henriques@canonical.com>  Wed, 21 May 2014 16:49:13 +0100
-
-linux-meta (3.2.0.63.75) precise; urgency=medium
-
-  * Update latest HWE kernel to Trusty
-    -LP: #1319471
-
- -- Tim Gardner <tim.gardner@canonical.com>  Thu, 15 May 2014 06:07:14 -0600
-
-linux-meta (3.2.0.63.74) precise; urgency=low
-
-  [ Kamal Mostafa ]
-
-  * Bump ABI
-
- -- Kamal Mostafa <kamal@canonical.com>  Wed, 07 May 2014 14:34:18 -0700
-
-linux-meta (3.2.0.62.73) precise; urgency=low
-
-  [ Brad Figg ]
-
-  * Bump ABI
-
- -- Brad Figg <brad.figg@canonical.com>  Tue, 29 Apr 2014 06:47:14 -0700
-
-linux-meta (3.2.0.61.72) precise; urgency=low
-
-  [ Kamal Mostafa ]
-
-  * Bump ABI
-
- -- Kamal Mostafa <kamal@canonical.com>  Mon, 31 Mar 2014 15:06:21 -0700
-
-linux-meta (3.2.0.60.71) precise; urgency=low
-
-  [ Brad Figg ]
-
-  * Bump ABI
-
- -- Brad Figg <brad.figg@canonical.com>  Tue, 18 Feb 2014 19:42:30 -0800
-
-linux-meta (3.2.0.59.70) precise; urgency=low
-
-  [ Brad Figg ]
-
-  * Bump ABI
-
- -- Brad Figg <brad.figg@canonical.com>  Mon, 06 Jan 2014 12:42:57 -0800
-
-linux-meta (3.2.0.58.69) precise; urgency=low
-
-  [ Brad Figg ]
-
-  * Bump ABI
-
- -- Brad Figg <brad.figg@canonical.com>  Tue, 03 Dec 2013 09:24:15 -0800
-
-linux-meta (3.2.0.57.68) precise; urgency=low
-
-  * UBUNTU: Add v3.10 compat-wireless meta package
-    UBUNTU: Add v3.11 compat-wireless meta package
-    UBUNTU: Add v3.12 compat-wireless meta package
-    -LP: #1246465
-
- -- Tim Gardner <tim.gardner@canonical.com>  Thu, 14 Nov 2013 11:31:54 -0700
-
-linux-meta (3.2.0.57.67) precise; urgency=low
-
-  [ Steve Conklin ]
-
-  * Bump ABI
-
- -- Steve Conklin <sconklin@canonical.com>  Tue, 12 Nov 2013 15:35:57 -0600
-
-linux-meta (3.2.0.56.66) precise; urgency=low
-
-  [ Steve Conklin ]
-
-  * Bump ABI
-
- -- Steve Conklin <sconklin@canonical.com>  Thu, 12 Oct 2013 17:09:21 -0500
-
-linux-meta (3.2.0.55.65) precise; urgency=low
-
-  [ Steve Conklin ]
-
-  * Bump ABI
-
- -- Steve Conklin <sconklin@canonical.com>  Thu, 01 Oct 2013 10:09:02 -0500
-
-linux-meta (3.2.0.54.64) precise; urgency=low
-
-  [ Steve Conklin ]
-
-  * Bump ABI
-
- -- Steve Conklin <sconklin@canonical.com>  Thu, 10 Sep 2013 15:00:15 -0500
-
-linux-meta (3.2.0.53.63) precise; urgency=low
-
-  [ Steve Conklin ]
-
-  * Bump ABI
-
- -- Brad Figg <brad.figg@canonical.com>  Thu, 22 Aug 2013 08:04:58 -0700
-
-linux-meta (3.2.0.52.62) precise; urgency=low
-
-  [ Steve Conklin ]
-
-  * Bump ABI
-
- -- Steve Conklin <sconklin@canonical.com>  Fri, 26 Jul 2013 11:48:00 -0500
-
-linux-meta (3.2.0.51.61) precise; urgency=low
-
-  [ Brad Figg ]
-
-  * Bump ABI
-
- -- Brad Figg <brad.figg@canonical.com>  Thu, 25 Jul 2013 06:37:45 -0700
-
-linux-meta (3.2.0.50.60) precise; urgency=low
-
-  [ Brad Figg ]
-
-  * Bump ABI
-
- -- Brad Figg <brad.figg@canonical.com>  Tue, 09 Jul 2013 11:46:39 -0700
-
-linux-meta (3.2.0.49.59) precise; urgency=low
-
-  [ Steve Conklin ]
-
-  * Bump ABI
-
- -- Steve Conklin <sconklin@canonical.com>  Tue, 18 Jun 2013 12:37:21 -0500
-
-linux-meta (3.2.0.48.58) precise; urgency=low
-
-  [ Steve Conklin ]
-
-  * Bump ABI
-
- -- Steve Conklin <sconklin@canonical.com>  Mon, 06 Jun 2013 09:52:01 -0500
-
-linux-meta (3.2.0.47.56) precise; urgency=low
-
-  [ Steve Conklin ]
-
-  * Bump ABI
-
- -- Steve Conklin <sconklin@canonical.com>  Mon, 03 Jun 2013 12:48:17 -0500
-
-linux-meta (3.2.0.46.55) precise; urgency=low
-
-  [ Steve Conklin ]
-
-  * Bump ABI
-
- -- Steve Conklin <sconklin@canonical.com>  Fri, 31 May 2013 11:23:49 -0500
-
-linux-meta (3.2.0.45.54) precise; urgency=low
-
-  [ Steve Conklin ]
-
-  * Bump ABI
-
- -- Steve Conklin <sconklin@canonical.com>  Wed, 29 May 2013 10:00:59 -0500
-
-linux-meta (3.2.0.44.53) precise; urgency=low
-
-  * UBUNTU: Update *current* to reference Raring
-    -LP: #1180930
-
- -- Tim Gardner <tim.gardner@canonical.com>  Thu, 16 May 2013 14:06:24 -0600
-
-linux-meta (3.2.0.44.52) precise-proposed; urgency=low
-
-  [ Brad Figg ]
-
-  * Bump ABI
-
- -- Brad Figg <brad.figg@canonical.com>  Thu, 16 May 2013 09:42:10 -0700
-
-linux-meta (3.2.0.43.51) precise-proposed; urgency=low
-
-  [ Steve Conklin ]
-
-  * Bump ABI
-
- -- Steve Conklin <sconklin@canonical.com>  Mon, 14 May 2013 21:45:58 -0500
-
-linux-meta (3.2.0.42.50) precise-proposed; urgency=low
-
-  [ Brad Figg ]
-
-  * Bump ABI
-
- -- Brad Figg <brad.figg@canonical.com>  Mon, 06 May 2013 14:09:22 -0700
-
-linux-meta (3.2.0.41.49) precise-proposed; urgency=low
-
-  [ Steve Conklin ]
-
-  * Bump ABI
-
- -- Steve Conklin <sconklin@canonical.com>  Wed, 10 Apr 2013 15:06:35 -0500
-
-linux-meta (3.2.0.40.48) precise-proposed; urgency=low
-
-  [ Steve Conklin ]
-
-  * Bump ABI
-
- -- Steve Conklin <sconklin@canonical.com>  Wed, 20 Mar 2013 17:27:27 -0800
-
-linux-meta (3.2.0.39.47) precise-proposed; urgency=low
-
-  [ Brad Figg ]
-
-  * Bump ABI
-
- -- Brad Figg <brad.figg@canonical.com>  Wed, 27 Feb 2013 07:21:55 -0800
-
-linux-meta (3.2.0.38.46) precise-proposed; urgency=low
-
-  [ Luis Henriques ]
-
-  * Bump ABI
-
- -- Luis Henriques <luis.henriques@canonical.com>  Tue, 05 Feb 2013 13:37:35 +0000
-
-linux-meta (3.2.0.37.45) precise; urgency=low
-
-  * Remove amd64 linux-backports-modules-hv-precise-generic-pae package.
-
- -- Adam Conrad <adconrad@ubuntu.com>  Sat, 02 Feb 2013 06:13:27 -0700
-
-linux-meta (3.2.0.37.44) precise-proposed; urgency=low
-
-  [ Luis Henriques ]
-
-  * Bump ABI
-
- -- Luis Henriques <luis.henriques@canonical.com>  Thu, 24 Jan 2013 14:09:49 +0000
-
-linux-meta (3.2.0.36.43) precise-proposed; urgency=low
-
-  * Add linux-headers-<flavour> to linux-<flavour> to retain headers
-    for dkms et al.  (LP: #960770)
-
- -- Andy Whitcroft <apw@canonical.com>  Mon, 14 Jan 2013 19:45:34 +0000
-
-linux-meta (3.2.0.36.42) precise-proposed; urgency=low
-
-  [ Brad Figg ]
-
-  * Bump ABI
-
- -- Brad Figg <brad.figg@canonical.com>  Thu, 03 Jan 2013 09:42:16 -0800
-
-linux-meta (3.2.0.35.41) precise-proposed; urgency=low
-
-  [ Brad Figg ]
-
-  * Bump ABI
-
- -- Brad Figg <brad.figg@canonical.com>  Wed, 02 Jan 2013 14:58:18 -0800
-
-linux-meta (3.2.0.35.40) precise-proposed; urgency=low
-
-  [ Brad Figg ]
-
-  * UBUNTU: The -hv- driver should be for the same flavour of kernel generic->generic, virtual->virtual, generic-pae->generic-pae
-    - LP: #1089970
-
- -- Brad Figg <brad.figg@canonical.com>  Thu, 13 Dec 2012 17:23:44 -0800
-
-linux-meta (3.2.0.35.39) precise-proposed; urgency=low
-
-  [ Andy Whitcroft ]
-
-  * Add the linux-backports-modules-hv-precise-virtual for Hyper-V.
-    - LP: #1089970
-
- -- Luis Henriques <luis.henriques@canonical.com>  Thu, 13 Dec 2012 22:09:24 +0000
-
-linux-meta (3.2.0.35.38) precise-proposed; urgency=low
-
-  [ Leann Ogasawara ]
-
-  * Move metapackages to Section: kernel
-    - LP: #1074787
-
-  [ Luis Henriques ]
-
-  * Bump ABI
-
- -- Luis Henriques <luis.henriques@canonical.com>  Tue, 04 Dec 2012 15:34:06 +0000
-
-linux-meta (3.2.0.34.37) precise-proposed; urgency=low
-
-  [ Luis Henriques ]
-
-  * Bump ABI
-
- -- Luis Henriques <luis.henriques@canonical.com>  Wed, 14 Nov 2012 16:02:38 +0000
-
-linux-meta (3.2.0.33.36) precise-proposed; urgency=low
-
-  [ Stefan Bader ]
-
-  * Make linux-crashdump alternatively depend on EFI grub
-    LP: #1064259
-
-  [ Leann Ogasawara ]
-
-  * UBUNTU: Add compat-wireless v3.6 meta package
-    LP: #1066123
-  * UBUNTU: Add compat-wireless v3.5 meta package
-    LP: #1066122
-
-  [ Luis Henriques ]
-
-  * Bump ABI
-
- -- Luis Henriques <luis.henriques@canonical.com>  Wed, 17 Oct 2012 10:45:56 +0100
-
-linux-meta (3.2.0.32.35) precise-proposed; urgency=low
-
-  [ Luis Henriques ]
-
-  * Bump ABI
-
- -- Luis Henriques <luis.henriques@canonical.com>  Tue, 25 Sep 2012 10:34:58 +0100
-
-linux-meta (3.2.0.31.34) precise-proposed; urgency=low
-
-  [ Leann Ogasawara ]
-
-  * Add compat-wireless v3.4 meta package
-    - LP: #1023566
-
- -- Luis Henriques <luis.henriques@canonical.com>  Fri, 07 Sep 2012 16:31:29 +0100
-
-linux-meta (3.2.0.31.33) precise-proposed; urgency=low
-
-  [ Luis Henriques ]
-
-  * Bump ABI
-
- -- Luis Henriques <luis.henriques@canonical.com>  Wed, 05 Sep 2012 10:44:55 +0100
-
-linux-meta (3.2.0.30.32) precise-proposed; urgency=low
-
-  [ Luis Henriques ]
-
-  * Bump ABI
-
- -- Luis Henriques <luis.henriques@canonical.com>  Tue, 14 Aug 2012 11:26:27 +0100
-
-linux-meta (3.2.0.29.31) precise-proposed; urgency=low
-
-  [ Luis Henriques ]
-
-  * Bump ABI
-
- -- Luis Henriques <luis.henriques@canonical.com>  Thu, 26 Jul 2012 16:52:11 +0100
-
-linux-meta (3.2.0.28.30) precise-proposed; urgency=low
-
-  ## Note 3.2.0.28.30 was never uploaded and superceded by 3.2.0.29.31 ##
-
-  [ Luis Henriques ]
-
-  * Bump ABI
-
- -- Luis Henriques <luis.henriques@canonical.com>  Mon, 23 Jul 2012 12:16:20 +0100
-
-linux-meta (3.2.0.27.29) precise-proposed; urgency=low
-
-  [ Luis Henriques ]
-
-  * Bump ABI
-
-  [ Tim Gardner ]
-
-  * UBUNTU: No meta packages belong in the restricted component
-    - LP: #1016702
-  * UBUNTU: Move all header meta packages into Section: metapackages
-    - LP: #988447
-
- -- Luis Henriques <luis.henriques@canonical.com>  Mon, 02 Jul 2012 11:04:51 +0100
-
-linux-meta (3.2.0.26.28) precise-proposed; urgency=low
-
-  * Bump ABI
-
- -- Luis Henriques <luis.henriques@canonical.com>  Tue, 12 Jun 2012 12:07:00 +0100
-
-linux-meta (3.2.0.25.27) precise-proposed; urgency=low
-
-  [ Luis Henriques ]
-
-  * UBUNTU: Fix Vcs-Git in linux-precise-meta
-    - LP: #999726
-
-  [ Tim Gardner ]
-
-  * UBUNTU: Added -hwe- and -current- meta packages
-  * Added Calxeda highbank flavour
-    - LP: #1000831
-  * Bump ABI
-
- -- Luis Henriques <luis.henriques@canonical.com>  Wed, 23 May 2012 18:51:56 +0100
-
-linux-meta (3.2.0.24.26) precise-proposed; urgency=low
-
-  * Bump ABI
-  * Added meta files for LBM net packages
-    - LP: #978324
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Tue, 24 Apr 2012 09:18:25 -0700
-
-linux-meta (3.2.0.23.25) precise-proposed; urgency=low
-
-  * Bump ABI
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Tue, 10 Apr 2012 10:09:32 -0700
-
-linux-meta (3.2.0.22.24) precise; urgency=low
-
-  * Bump ABI
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Tue, 03 Apr 2012 11:26:33 -0700
-
-linux-meta (3.2.0.21.23) precise; urgency=low
-
-  * Point powerpc meta to powerpc-smp meta
-  * Bump ABI
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Thu, 29 Mar 2012 10:53:59 -0700
-
-linux-meta (3.2.0.20.22) precise; urgency=low
-
-  * Bump ABI
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Wed, 21 Mar 2012 20:24:41 -0700
-
-linux-meta (3.2.0.19.21) precise; urgency=low
-
-  * Drop non-smp PowerPC flavor
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 16 Mar 2012 09:09:24 -0700
-
-linux-meta (3.2.0.18.20) precise; urgency=low
-
-  * linux-image-virtual-extras should depend on linux-virtual
-    LP: #947357 
-
- -- Tim Gardner <tim.gardner@canonical.com>  Wed, 07 Mar 2012 11:32:59 -0700
-
-linux-meta (3.2.0.18.19) precise; urgency=low
-
-  * amd64 -server no longer exists, no linux-backports-modules there.
-
- -- Andy Whitcroft <apw@canonical.com>  Mon, 05 Mar 2012 07:06:55 +0000
-
-linux-meta (3.2.0.18.18) precise; urgency=low
-
-  * Add compat-wireless v3.3 meta package
-  * Re-enable linux-backports-modules for Precise
-  * Bump ABI
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 02 Mar 2012 09:29:55 -0800
-
-linux-meta (3.2.0.17.17) precise; urgency=low
-
-  * Bump ABI
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 17 Feb 2012 13:43:43 -0800
-
-linux-meta (3.2.0.16.16) precise; urgency=low
-
-  * Bump ABI
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Tue, 14 Feb 2012 09:09:38 -0800
-
-linux-meta (3.2.0.15.15) precise; urgency=low
-
-  * Bump ABI
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Wed, 08 Feb 2012 06:19:59 -0800
-
-linux-meta (3.2.0.14.14) precise; urgency=low
-
-  * Bump ABI
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Sat, 04 Feb 2012 20:13:43 -0800
-
-linux-meta (3.2.0.13.13) precise; urgency=low
-
-  * Bump ABI
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 03 Feb 2012 06:03:45 -0800
-
-linux-meta (3.2.0.12.12) precise; urgency=low
-
-  * Bump ABI
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 27 Jan 2012 13:14:19 -0800
-
-linux-meta (3.2.0.11.11) precise; urgency=low
-
-  * Bump ABI
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Thu, 26 Jan 2012 06:08:09 -0800
-
-linux-meta (3.2.0.10.10) precise; urgency=low
-
-  * Bump ABI
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Thu, 19 Jan 2012 09:07:24 -0800
-
-linux-meta (3.2.0.9.9) precise; urgency=low
-
-  * Bump ABI
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Sun, 15 Jan 2012 19:57:13 -0800
-
-linux-meta (3.2.0.8.8) precise; urgency=low
-
-  * linux-image should point to the recommended kernel, move it to
-    generic-pae on 32bit to match the rest of the CD.
-    - LP: #897786
-  * Bump ABI
-
- -- Andy Whitcroft <apw@canonical.com>  Thu, 05 Jan 2012 17:44:26 +0000
-
-linux-meta (3.2.0.7.7) precise; urgency=low
-
-  * Bump ABI
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Mon, 26 Dec 2011 20:12:53 -0800
-
-linux-meta (3.2.0.6.6) precise; urgency=low
-
-  * Bump ABI
-
- -- Andy Whitcroft <apw@canonical.com>  Mon, 19 Dec 2011 10:25:56 +0000
-
-linux-meta (3.2.0.5.5) precise; urgency=low
-
-  * Bump ABI
-
- -- Andy Whitcroft <apw@canonical.com>  Fri, 16 Dec 2011 11:08:24 +0000
-
-linux-meta (3.2.0.4.4) precise; urgency=low
-
-  * Bump ABI
-
- -- Andy Whitcroft <apw@canonical.com>  Sun, 11 Dec 2011 12:29:28 +0000
-
-linux-meta (3.2.0.3.3) precise; urgency=low
-
-  [ Leann Ogasawara ]
-
-  * Bump ABI
-  * Add armhf to linux-meta
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 02 Dec 2011 21:25:42 -0800
-
-linux-meta (3.2.0.2.2) precise; urgency=low
-
-  * Bump ABI
-
- -- Andy Whitcroft <apw@canonical.com>  Mon, 28 Nov 2011 09:36:56 +0000
-
-linux-meta (3.2.0.1.1) precise; urgency=low
-
-  [ Andy Whitcroft ]
-
-  * amd64 server installs will be fed a -generic kernel
-
-  [ Leann Ogasawara ]
-
-  * Bump Version for v3.2
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 18 Nov 2011 09:11:54 -0800
-
-linux-meta (3.1.0.2.2) precise; urgency=low
-
-  [ Leann Ogasawara ]
-
-  * Bump ABI
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Wed, 26 Oct 2011 11:07:35 -0700
-
-linux-meta (3.1.0.1.1) precise; urgency=low
-
-  [ Leann Ogasawara ]
-
-  * Open Precise
-  * Temporarily disable lbm
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Tue, 18 Oct 2011 11:12:28 -0700
-
-linux-meta (3.0.0.12.14) oneiric; urgency=low
-
-  [ Leann Ogasawara ]
-
-  * Add linux-image-extra-virtual meta package
-    - LP: #869220
-  * Re-enable linux-backports-modules 
-    - LP: #869224
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Thu, 06 Oct 2011 06:49:26 -0700
-
-linux-meta (3.0.0.12.13) oneiric; urgency=low
-
-  [ Leann Ogasawara ]
-
-  * Bump ABI 
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 23 Sep 2011 13:44:36 -0700
-
-linux-meta (3.0.0.11.12) oneiric; urgency=low
-
-  [ Leann Ogasawara ]
-
-  * Bump ABI 
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 09 Sep 2011 10:21:07 -0700
-
-linux-meta (3.0.0.10.11) oneiric; urgency=low
-
-  [ Leann Ogasawara ]
-
-  * Bump ABI 
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 02 Sep 2011 09:46:15 -0700
-
-linux-meta (3.0.0.9.10) oneiric; urgency=low
-
-  [ Leann Ogasawara ]
-
-  * Bump ABI 
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 19 Aug 2011 06:46:18 -0700
-
-linux-meta (3.0.0.8.9) oneiric; urgency=low
-
-  [ Leann Ogasawara ]
-
-  * Bump ABI 
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 05 Aug 2011 11:53:11 -0700
-
-linux-meta (3.0.0.7.8) oneiric; urgency=low
-
-  [ Leann Ogasawara ]
-
-  * Bump ABI 
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 22 Jul 2011 12:53:33 -0700
-
-linux-meta (3.0.0.6.7) oneiric; urgency=low
-
-  [ Leann Ogasawara ]
-
-  * Bump ABI 
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Wed, 20 Jul 2011 06:49:41 -0700
-
-linux-meta (3.0.0.5.6) oneiric; urgency=low
-
-  [ Leann Ogasawara ]
-  * Bump ABI 
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Tue, 12 Jul 2011 10:36:26 -0700
-
-linux-meta (3.0.0.4.5) oneiric; urgency=low
-
-  [ Andy Whitcroft ]
-  * follow main kernel switch to 3.0.0
-  * Bump ABI
-
- -- Andy Whitcroft <apw@canonical.com>  Mon, 11 Jul 2011 11:24:30 +0100
-
-linux-meta (3.0.0.3.4) oneiric; urgency=low
-
-  [ Leann Ogasawara ]
-  * Bump ABI 
-
-  [ Andy Whitcroft ]
-  * Drop armel versatile flavour to match main kernel
-
- -- Andy Whitcroft <apw@canonical.com>  Mon, 04 Jul 2011 13:22:45 +0100
-
-linux-meta (3.0.0.2.3) oneiric; urgency=low
-
-  [ Leann Ogasawara ]
-
-  * Bump ABI 
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 24 Jun 2011 11:43:20 -0700
-
-linux-meta (3.0.0.1.2) oneiric; urgency=low
-
-  [ Leann Ogasawara ]
-
-  * Bump ABI 
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Tue, 14 Jun 2011 12:27:07 -0700
-
-linux-meta (3.0.0.0.1) oneiric; urgency=low
-
-  [ Leann Ogasawara ]
-
-  * Open v3.0
-  * Convert from x.y.z to x.y version scheme
-
-  [ Andy Whitcroft ]
-
-  * temporarily move meta _only_ back to 3 digit kernel numbering (5 total)
-    to allow us to choose later which scheme to use
-
- -- Andy Whitcroft <apw@canonical.com>  Wed, 08 Jun 2011 17:31:35 +0100
-
-linux-meta (2.6.39.3.4) oneiric; urgency=low
-
-  * Bump ABI
-
- -- Andy Whitcroft <apw@canonical.com>  Mon, 23 May 2011 08:51:59 +0100
-
-linux-meta (2.6.39.2.3) oneiric; urgency=low
-
-  [ Leann Ogasawara ]
-
-  * Bump ABI
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Thu, 12 May 2011 09:34:44 +0200
-
-linux-meta (2.6.39.1.2) oneiric; urgency=low
-
-  [ Leann Ogasawara ]
-
-  * Bump ABI
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Thu, 05 May 2011 11:13:41 -0700
-
-linux-meta (2.6.39.0.1) oneiric; urgency=low
-
-  [ Leann Ogasawara ]
-
-  * UBUNTU: Remove linux-backports-modules-cw-2.6.39
-  * UBUNTU: Remove linux-backports-modules-net
-  * UBUNTU: disable linux-backports-modules
-  * Initial Oneiric kernel version and ABI (2.6.39-0)
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Tue, 19 Apr 2011 09:41:48 -0700
-
-linux-meta (2.6.38.8.22) natty; urgency=low
-
-  [ Leann Ogasawara ]
-
-  * UBUNTU: Enable LBM for Natty
-
-  [ Tim Gardner ]
-
-  * Bump ABI
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Mon, 04 Apr 2011 06:23:14 -0700
-
-linux-meta (2.6.38.7.21) natty; urgency=low
-
-  * Bump ABI
-
- -- Andy Whitcroft <apw@canonical.com>  Wed, 16 Mar 2011 09:51:30 +0000
-
-linux-meta (2.6.38.6.20) natty; urgency=low
-
-  * Bump ABI
-
- -- Andy Whitcroft <apw@canonical.com>  Tue, 01 Mar 2011 16:31:13 +0000
-
-linux-meta (2.6.38.5.19) natty; urgency=low
-
-  * Bump ABI
-
- -- Andy Whitcroft <apw@canonical.com>  Fri, 18 Feb 2011 15:24:44 +0000
-
-linux-meta (2.6.38.4.18) natty; urgency=low
-
-  * Bump ABI
-
- -- Andy Whitcroft <apw@canonical.com>  Wed, 16 Feb 2011 15:33:37 +0000
-
-linux-meta (2.6.38.3.17) natty; urgency=low
-
-  * Bump ABI
-
- -- Andy Whitcroft <apw@canonical.com>  Thu, 10 Feb 2011 09:50:33 +0000
-
-linux-meta (2.6.38.2.16) natty; urgency=low
-
-  * Bump ABI
-
- -- Tim Gardner <tim.gardner@canonical.com>  Sat, 05 Feb 2011 11:35:43 -0700
-
-linux-meta (2.6.38.1.15) UNRELEASED; urgency=low
-
-  * Bump ABI
-
- -- Tim Gardner <tim.gardner@canonical.com>  Tue, 25 Jan 2011 06:57:57 -0700
-
-linux-meta (2.6.37.12.14) natty; urgency=low
-
-  * Natty ABI 12
-  * reinstate omap flavour
-
- -- Andy Whitcroft <apw@canonical.com>  Thu, 06 Jan 2011 11:01:28 +0000
-
-linux-meta (2.6.37.11.13) natty; urgency=low
-
-  * Natty ABI 11
-
- -- Andy Whitcroft <apw@canonical.com>  Wed, 22 Dec 2010 13:55:47 +0000
-
-linux-meta (2.6.37.10.12) natty; urgency=low
-
-  * Natty ABI 10
-
- -- Andy Whitcroft <apw@canonical.com>  Fri, 17 Dec 2010 13:32:00 +0000
-
-linux-meta (2.6.37.9.11) natty; urgency=low
-
-  * Natty ABI 9
-
- -- Andy Whitcroft <apw@canonical.com>  Sat, 11 Dec 2010 09:52:43 +0000
-
-linux-meta (2.6.37.8.10) natty; urgency=low
-
-  * Natty ABI 8
-
- -- Andy Whitcroft <apw@canonical.com>  Mon, 06 Dec 2010 15:23:28 +0000
-
-linux-meta (2.6.37.7.9) natty; urgency=low
-
-  * Natty ABI 7
-
- -- Andy Whitcroft <apw@canonical.com>  Mon, 29 Nov 2010 09:46:52 +0000
-
-linux-meta (2.6.37.6.8) natty; urgency=low
-
-  * Natty ABI 6
-
- -- Andy Whitcroft <apw@canonical.com>  Tue, 23 Nov 2010 19:44:31 +0000
-
-linux-meta (2.6.37.5.7) natty; urgency=low
-
-  * Natty ABI 5
-
- -- Andy Whitcroft <apw@canonical.com>  Wed, 17 Nov 2010 16:26:53 +0000
-
-linux-meta (2.6.37.4.6) natty; urgency=low
-
-  * Natty ABI 4
-
- -- Andy Whitcroft <apw@canonical.com>  Tue, 16 Nov 2010 00:12:17 +0000
-
-linux-meta (2.6.37.3.5) natty; urgency=low
-
-  * Natty ABI 3
-
- -- Andy Whitcroft <apw@canonical.com>  Fri, 12 Nov 2010 17:29:08 +0000
-
-linux-meta (2.6.37.2.4) natty; urgency=low
-
-  * Track correct master version number.
-
- -- Andy Whitcroft <apw@canonical.com>  Fri, 05 Nov 2010 16:08:54 +0000
-
-linux-meta (2.6.36.2.3) natty; urgency=low
-
-  * Pull in powerpc, powerpc-smp, powerpc64-smp into the master branch.
-  * Natty ABI 2
-
- -- Andy Whitcroft <apw@canonical.com>  Fri, 05 Nov 2010 14:24:10 +0000
-
-linux-meta (2.6.36.1.2) natty; urgency=low
-
-  * Natty ABI 1
-
- -- Andy Whitcroft <apw@canonical.com>  Thu, 21 Oct 2010 21:31:35 +0100
-
-linux-meta (2.6.36.0.1) natty; urgency=low
-
-  * Initial Natty kernel version and ABI (2.6.36-0)
-  * drop last vestiges of lpia architecture
-  * disable linux-backports-modules
-  * drop omap for armel
-
- -- Andy Whitcroft <apw@canonical.com>  Wed, 13 Oct 2010 11:22:15 +0100
-
-linux-meta (2.6.35.22.23) maverick; urgency=low
-
-  [ Leann Ogasawara ]
-
-  * Bump ABI - Maverick ABI 22
-
-  [ Andy Whitcroft ] 
-
-  * Fix OMAP3 descriptions.
-    - LP: #623297
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Tue, 14 Sep 2010 16:21:55 -0700
-
-linux-meta (2.6.35.21.22) maverick; urgency=low
-
-  [ Leann Ogasawara ]
-
-  * Bump ABI - Maverick ABI 21
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 10 Sep 2010 14:37:29 -0700
-
-linux-meta (2.6.35.20.21) maverick; urgency=low
-
-  [ Leann Ogasawara ]
-
-  * Add linux-backports-modules-net meta package
-  * Maverick ABI 20 (2.6.35-20.29)
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Thu, 02 Sep 2010 16:40:20 -0700
-
-linux-meta (2.6.35.19.20) maverick; urgency=low
-
-  * Maverick ABI 19 (2.6.35-19.25)
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Tue, 24 Aug 2010 10:27:28 -0700
-
-linux-meta (2.6.35.18.19) maverick; urgency=low
-
-  * Maverick ABI 18 (2.6.35-18.24)
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Sun, 22 Aug 2010 17:50:07 -0700
-
-linux-meta (2.6.35.17.18) maverick; urgency=low
-
-  * Maverick ABI 17 (2.6.35-17.23)
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Thu, 19 Aug 2010 16:55:39 -0700
-
-linux-meta (2.6.35.16.17) maverick; urgency=low
-
-  * Maverick ABI 16 (2.6.35-16.22)
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Mon, 16 Aug 2010 16:23:44 -0700
-
-linux-meta (2.6.35.15.16) maverick; urgency=low
-
-  * Maverick ABI 15 (2.6.35-15.20)
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Mon, 09 Aug 2010 13:20:00 -0700
-
-linux-meta (2.6.35.14.15) maverick; urgency=low
-
-  * Maverick ABI 14 (2.6.35-14.19)
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Sun, 01 Aug 2010 16:53:31 -0700
-
-linux-meta (2.6.35.13.14) maverick; urgency=low
-
-  * Maverick ABI 13
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 30 Jul 2010 18:01:22 -0700
-
-linux-meta (2.6.35.12.13) maverick; urgency=low
-
-  [ Leann Ogasawara ]
-
-  * Maverick ABI 12 (2.6.35-12.17)
-  * Change RELEASE_NAME from lucid to maverick
-  * Drop nouveau
-  * Enable lbm
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Wed, 28 Jul 2010 08:03:04 -0700
-
-linux-meta (2.6.35.11.12) maverick; urgency=low
-
-  * Maverick ABI 11 (2.6.35-11.16)
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 23 Jul 2010 10:44:33 +0200
-
-linux-meta (2.6.35.10.11) maverick; urgency=low
-
-  * Maverick ABI 10 (2.6.35-10.15)
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Thu, 22 Jul 2010 12:48:18 +0200
-
-linux-meta (2.6.35.9.10) maverick; urgency=low
-
-  * Maverick ABI 9 (2.6.35-9.14)
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 16 Jul 2010 17:56:19 -0700
-
-linux-meta (2.6.35.8.9) maverick; urgency=low
-
-  * Maverick ABI 8 (2.6.35-8.13)
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Tue, 13 Jul 2010 19:42:38 -0700
-
-linux-meta (2.6.35.7.8) maverick; urgency=low
-
-  * Maverick ABI 7 (2.6.35-7.10)
-
- -- Tim Gardner <tim.gardner@canonical.com>  Wed, 07 Jul 2010 11:42:16 -0600
-
-linux-meta (2.6.35.6.7) maverick; urgency=low
-
-  [ Leann Ogasawara ]
-
-  * Maverick ABI 6 (2.6.35-6.7)
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Thu, 24 Jun 2010 15:45:17 -0700
-
-linux-meta (2.6.35.5.6) maverick; urgency=low
-
-  * Add meta-packages for ARM omap which is now in the main package.
-    - LP: #595949
-
- -- Andy Whitcroft <apw@canonical.com>  Wed, 23 Jun 2010 10:03:02 +0100
-
-linux-meta (2.6.35.5.5) maverick; urgency=low
-
-  [ Leann Ogasawara ]
-
-  * Maverick ABI 5 (2.6.35-5.6)
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Mon, 21 Jun 2010 13:38:44 -0700
-
-linux-meta (2.6.35.4.4) maverick; urgency=low
-
-  [ Leann Ogasawara ]
-
-  * Maverick ABI 4 (2.6.35-4.5)
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Wed, 16 Jun 2010 10:37:09 -0700
-
-linux-meta (2.6.35.3.3) maverick; urgency=low
-
-  [ Leann Ogasawara ]
-
-  * Maverick ABI 3 (2.6.35-3.4)
-  * Drop preempt
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Mon, 14 Jun 2010 10:40:24 -0700
-
-linux-meta (2.6.35.2.2) maverick; urgency=low
-
-  [ Leann Ogasawara ]
-
-  * Maverick ABI 2 (2.6.35-2.2)
-  * Update linux-headers-virtual depends clause 
-
-  [ Loïc Minier ]
-
-  * Enable linux-tools on armel
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Tue, 08 Jun 2010 17:19:53 -0700
-
-linux-meta (2.6.35.1.1) maverick; urgency=low
-
-  * Maverick ABI 1 (2.6.35-1.1)
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 04 Jun 2010 22:30:44 -0700
-
-linux-meta (2.6.34.5.4) maverick; urgency=low
-
-  * Maverick ABI 5
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 28 May 2010 10:24:39 -0700
-
-linux-meta (2.6.34.4.3) maverick; urgency=low
-
-  [ Leann Ogasawara ]
-
-  * Maverick ABI 4
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Tue, 25 May 2010 11:02:43 -0700
-
-linux-meta (2.6.34.3.2) maverick; urgency=low
-
-  [ Leann Ogasawara ]
-
-  * Maverick ABI 3
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Wed, 19 May 2010 08:46:03 -0700
-
-linux-meta (2.6.34.2.1) maverick; urgency=low
-
-  [ Leann Ogasawara ]
-
-  * Initial Maverick ABI
-  * Drop 386 flavour
-  * Disable lbm
-  * Drop lpia
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Thu, 13 May 2010 13:37:43 +0200
-
-linux-meta (2.6.32.22.23) lucid-proposed; urgency=low
-
-  * Lucid ABI 22
-
- -- Andy Whitcroft <apw@canonical.com>  Wed, 28 Apr 2010 16:43:27 +0100
-
-linux-meta (2.6.32.21.22) lucid; urgency=low
-
-  * Lucid ABI 21
-
- -- Andy Whitcroft <apw@canonical.com>  Wed, 14 Apr 2010 09:29:56 +0100
-
-linux-meta (2.6.32.20.21) lucid; urgency=low
-
-  * Add linux-tools meta package
-    - LP: #559027
-  * Lucid ABI 20
-
- -- Andy Whitcroft <apw@canonical.com>  Fri, 09 Apr 2010 09:26:42 +0100
-
-linux-meta (2.6.32.19.20) lucid; urgency=low
-
-  * Lucid ABI 19
-
- -- Andy Whitcroft <apw@canonical.com>  Thu, 01 Apr 2010 12:01:32 +0100
-
-linux-meta (2.6.32.18.19) lucid; urgency=low
-
-  * Lucid ABI 18
-
- -- Stefan Bader <stefan.bader@canonical.com>  Fri, 26 Mar 2010 19:20:34 +0100
-
-linux-meta (2.6.32.17.18) lucid; urgency=low
-
-  * Lucid ABI 17
-
- -- Stefan Bader <stefan.bader@canonical.com>  Tue, 23 Mar 2010 15:34:50 +0100
-
-linux-meta (2.6.32.16.17) lucid; urgency=low
-
-  * add backport modules support for preempt flavour
-
- -- Andy Whitcroft <apw@canonical.com>  Mon, 08 Mar 2010 19:37:42 +0000
-
-linux-meta (2.6.32.16.16) lucid; urgency=low
-
-  * drop the nouveau meta packages
-  * Lucid ABI 16
-
- -- Andy Whitcroft <apw@canonical.com>  Mon, 08 Mar 2010 09:16:23 +0000
-
-linux-meta (2.6.32.15.16) lucid; urgency=low
-
-  * Lucid ABI 15
-
- -- Andy Whitcroft <apw@canonical.com>  Tue, 02 Mar 2010 11:07:13 +0000
-
-linux-meta (2.6.32.14.15) lucid; urgency=low
-
-  * Reinstate transitional packages for i386 moving upgraders from -server
-    to -generic-pae.
-      - LP: 399718
-  * Lucid ABI 14
-  * Correct linkage between wireless packages
-  * Fix typo in i386 nouveau meta package name
-
- -- Andy Whitcroft <apw@canonical.com>  Fri, 19 Feb 2010 19:13:24 +0000
-
-linux-meta (2.6.32.13.14) lucid; urgency=low
-
-  * add low-latency preempt flavour
-  * add versatile arm flavour
-  * reinstate the LBM meta packages
-  * we are not using anything clever, move to debhelper version 5
-  * lintian -- clean up misc-depends warnings
-
- -- Andy Whitcroft <apw@canonical.com>  Tue, 16 Feb 2010 13:57:48 +0000
-
-linux-meta (2.6.32.13.13) lucid; urgency=low
-
-  * Lucid ABI 13
-
- -- Andy Whitcroft <apw@canonical.com>  Thu, 11 Feb 2010 08:51:25 +0000
-
-linux-meta (2.6.32.12.12) lucid; urgency=low
-
-  * Lucid ABI 12
-
- -- Andy Whitcroft <apw@canonical.com>  Fri, 29 Jan 2010 01:10:17 +0000
-
-linux-meta (2.6.32.11.11) lucid; urgency=low
-
-  * Lucid ABI 11
-
- -- Andy Whitcroft <apw@canonical.com>  Wed, 20 Jan 2010 09:21:00 +0000
-
-linux-meta (2.6.32.10.10) lucid; urgency=low
-
-  * Lucid ABI 10
-
- -- Andy Whitcroft <apw@canonical.com>  Sun, 10 Jan 2010 23:46:54 +0000
-
-linux-meta (2.6.32.9.9) lucid; urgency=low
-
-  * Lucid ABI 9
-
- -- Andy Whitcroft <apw@canonical.com>  Sat, 19 Dec 2009 21:39:57 +0000
-
-linux-meta (2.6.32.8.8) lucid; urgency=low
-
-  * Lucid ABI 8
-
- -- Andy Whitcroft <apw@canonical.com>  Mon, 14 Dec 2009 12:18:00 +0000
-
-linux-meta (2.6.32.7.7) lucid; urgency=low
-
-  * Lucid ABI 7
-
- -- Andy Whitcroft <apw@canonical.com>  Mon, 07 Dec 2009 08:38:03 +0000
-
-linux-meta (2.6.32.6.6) lucid; urgency=low
-
-  * Lucid ABI 6
-
- -- Andy Whitcroft <apw@canonical.com>  Tue, 01 Dec 2009 19:52:55 +0000
-
-linux-meta (2.6.32.5.5) lucid; urgency=low
-
-  * Lucid ABI 5
-
- -- Andy Whitcroft <apw@canonical.com>  Tue, 24 Nov 2009 11:45:32 +0000
-
-linux-meta (2.6.32.4.4) lucid; urgency=low
-
-  * Lucid ABI 4
-
- -- Andy Whitcroft <apw@canonical.com>  Fri, 13 Nov 2009 20:09:44 +0000
-
-linux-meta (2.6.32.3.3) lucid; urgency=low
-
-  * Lucid ABI 3
-
- -- Andy Whitcroft <apw@canonical.com>  Wed, 04 Nov 2009 13:04:07 +0000
-
-linux-meta (2.6.32.2.2) lucid; urgency=low
-
-  * Disable the linux-backports-modules-* until such time as LBM is needed.
-
- -- Andy Whitcroft <apw@canonical.com>  Wed, 04 Nov 2009 13:04:07 +0000
-
-linux-meta (2.6.32.2.1) lucid; urgency=low
-
-  * Lucid ABI 2
-  * Drop the transitional packages for karmic -server to -generic-pae
-    upgraders for lucid.
-  * Switch series to lucid.
-  * Drop the linux-backports-modules package, we should only use sub-system
-    specific modules for lucid.
-
- -- Andy Whitcroft <apw@canonical.com>  Sat, 31 Oct 2009 01:43:00 +0000
-
-linux-meta (2.6.31.14.27) karmic; urgency=low
-
-  * Added transitional packages for i386 moving upgraders from -server
-    to -generic-pae.
-      - LP: #399718
-
- -- Andy Whitcroft <apw@canonical.com>  Thu, 15 Oct 2009 09:28:52 +0100
-
-linux-meta (2.6.31.14.26) karmic; urgency=low
-
-  * Added linux-backports-modules-headers-karmic meta packages
-  * Removed linux-backports-modules-karmic-*-virtual
-    LBM does not generate a virtual flavour.
-  * Added linux-backports-modules-wireless-karmic meta package.
-    The orignal meta package linux-backports-modules-karmic* points
-    to the same package. Need to drop this non-orthogonality in Lucid.
-  * Added linux-backports-modules-alsa-karmic meta package
-
- -- Tim Gardner <tim.gardner@canonical.com>  Wed, 14 Oct 2009 13:09:22 -0600
-
-linux-meta (2.6.31.14.25) karmic; urgency=low
-
-  * Karmic ABI 14
-
- -- Tim Gardner <tim.gardner@canonical.com>  Tue, 13 Oct 2009 16:44:48 -0600
-
-linux-meta (2.6.31.13.24) karmic; urgency=low
-
-  * Karmic ABI 13
-
- -- Tim Gardner <tim.gardner@canonical.com>  Fri, 09 Oct 2009 06:02:03 -0600
-
-linux-meta (2.6.31.12.23) karmic; urgency=low
-
-  * Karmic ABI 12
-
- -- Tim Gardner <tim.gardner@canonical.com>  Tue, 06 Oct 2009 06:50:19 -0600
-
-linux-meta (2.6.31.11.22) karmic; urgency=low
-
-  * Karmic ABI 11
-
- -- Tim Gardner <tim.gardner@canonical.com>  Fri, 25 Sep 2009 10:35:13 -0600
-
-linux-meta (2.6.31.10.21) karmic; urgency=low
-
-  * Karmic ABI 10
-  * fix grub2 dependancy to point to grub-pc
-    - LP: #425822
-
- -- Andy Whitcroft <apw@canonical.com>  Mon, 07 Sep 2009 16:38:51 +0100
-
-linux-meta (2.6.31.9.20) karmic; urgency=low
-
-  * Karmic ABI 9
-
- -- Tim Gardner <tim.gardner@canonical.com>  Mon, 31 Aug 2009 17:51:24 -0600
-
-linux-meta (2.6.31.8.19) karmic; urgency=low
-
-  * Karmic ABI 8
-
- -- Tim Gardner <tim.gardner@canonical.com>  Thu, 27 Aug 2009 14:05:46 -0600
-
-linux-meta (2.6.31.7.18) karmic; urgency=low
-
-  * Karmic ABI 7
-
- -- Tim Gardner <tim.gardner@canonical.com>  Mon, 24 Aug 2009 20:06:16 -0600
-
-linux-meta (2.6.31.6.17) karmic; urgency=low
-
-  * Karmic ABI 6
-  * Removed armel/imx51
-
- -- Tim Gardner <tim.gardner@canonical.com>  Sun, 16 Aug 2009 20:44:54 -0600
-
-linux-meta (2.6.31.5.16) karmic; urgency=low
-
-  * Karmic ABI 5
-
- -- Tim Gardner <tim.gardner@canonical.com>  Mon, 03 Aug 2009 10:44:53 -0600
-
-linux-meta (2.6.31.4.15) karmic; urgency=low
-
-  [ Andy Whitcroft ]
-
-  * fix dependancies for i386 virtual kernel
-    - LP: #399914
-  * Karmic ABI 4
-
- -- Andy Whitcroft <apw@canonical.com>  Tue, 21 Jul 2009 11:47:11 +0100
-
-linux-meta (2.6.31.3.14) karmic; urgency=low
-
-  * Karmic ABI 3
-
- -- Tim Gardner <tim.gardner@canonical.com>  Tue, 14 Jul 2009 08:07:05 -0600
-
-linux-meta (2.6.31.2.13) karmic; urgency=low
-
-  * Add grub2 as a linux-crashdump dependency
-    -LP: #391026
-
- -- Tim Gardner <tim.gardner@canonical.com>  Mon, 06 Jul 2009 11:28:50 -0600
-
-linux-meta (2.6.31.2.12) karmic; urgency=low
-
-  * Karmic ABI 2
-
- -- Andy Whitcroft <apw@canonical.com>  Sun, 05 Jul 2009 12:16:48 +0100
-
-linux-meta (2.6.31.1.11) karmic; urgency=low
-
-  [ Andy Whitcroft ]
-
-  * Rebuild debian/control to contain updated recommends etc
-  * Karmic ABI 1 (2.6.31)
-
-  [ Tim Gardner ]
-
-  * Recommend apport for linux-crashdump
-    - LP: #391026
-
- -- Andy Whitcroft <apw@canonical.com>  Mon, 29 Jun 2009 15:56:38 +0100
-
-linux-meta (2.6.30.10.10) karmic; urgency=low
-
-  * Karmic ABI 10
-
- -- Tim Gardner <tim.gardner@canonical.com>  Tue, 23 Jun 2009 06:34:11 -0600
-
-linux-meta (2.6.30.9.9) karmic; urgency=low
-
-  [Matt Zimmerman]
-
-  * Remove linux-doc in preparation for non-ABI dependent package name.
-    -LP: #382115
-
- -- Tim Gardner <tim.gardner@canonical.com>  Mon, 22 Jun 2009 08:46:53 -0600
-
-linux-meta (2.6.30.9.8) karmic; urgency=low
-
-  * Karmic ABI 9
-
- -- Andy Whitcroft <apw@canonical.com>  Wed, 10 Jun 2009 14:10:35 +0100
-
-linux-meta (2.6.30.8.7) karmic; urgency=low
-
-  * Karmic ABI 8
-
- -- Andy Whitcroft <apw@canonical.com>  Thu, 04 Jun 2009 11:27:29 +0100
-
-linux-meta (2.6.30.7.6) karmic; urgency=low
-
-  * Karmic ABI 7
-
- -- Andy Whitcroft <apw@canonical.com>  Tue, 26 May 2009 09:26:01 +0100
-
-linux-meta (2.6.30.6.5) karmic; urgency=low
-
-  * Karmic ABI 6
-
- -- Andy Whitcroft <apw@canonical.com>  Sat, 23 May 2009 23:24:09 +0100
-
-linux-meta (2.6.30.5.4) karmic; urgency=low
-
-  * Replaced RELEASE_NAME in the rules file with karmic as well and rebuild
-    the control file.
-
- -- Stefan Bader <stefan.bader@canonical.com>  Tue, 12 May 2009 16:02:37 +0200
-
-linux-meta (2.6.30.5.3) karmic; urgency=low
-
-  * Updated vcs-git line to reference karmic.
-
- -- Stefan Bader <stefan.bader@canonical.com>  Tue, 12 May 2009 14:46:54 +0200
-
-linux-meta (2.6.30.5.2) karmic; urgency=low
-
-  * Karmic ABI 5
-
- -- Stefan Bader <stefan.bader@canonical.com>  Tue, 12 May 2009 11:42:24 +0200
-
-linux-meta (2.6.30.2.1) karmic; urgency=low
-
-  * Karmic ABI 2
-
- -- Tim Gardner <tim.gardner@canonical.com>  Fri, 01 May 2009 18:17:31 +0100
diff --git a/meta-source/debian/compat b/meta-source/debian/compat
deleted file mode 100644
index 7ed6ff8..0000000
--- a/meta-source/debian/compat
+++ /dev/null
@@ -1 +0,0 @@ 
-5
diff --git a/meta-source/debian/control.common b/meta-source/debian/control.common
deleted file mode 100644
index 07402b9..0000000
--- a/meta-source/debian/control.common
+++ /dev/null
@@ -1,102 +0,0 @@ 
-Source: linux-meta
-Section: devel
-Priority: optional
-Maintainer: Ubuntu Kernel Team <kernel-team@lists.ubuntu.com>
-Standards-Version: 3.6.1
-Build-Depends: dpkg (>= 1.13.19), debhelper (>= 5), gawk
-Vcs-Git: http://kernel.ubuntu.com/git-repos/ubuntu/ubuntu-precise-meta.git
-
-Package: linux
-Architecture: i386 amd64 
-Section: kernel
-Priority: optional
-Depends: ${misc:Depends}, linux-image (= ${binary:Version})
-Description: Generic complete Linux kernel.
- This package will always depend on the latest generic complete Linux kernel
- available.
-
-Package: linux-source
-Architecture: all
-Section: devel
-Priority: optional
-Depends: ${misc:Depends}, linux-source-${kernel-version}
-Description: Linux kernel source with Ubuntu patches
- This package will always depend on the latest Linux kernel source code
- available. The Ubuntu patches have been applied.
-
-Package: linux-image
-Architecture: i386 amd64 
-Section: kernel
-Priority: optional
-Depends: ${misc:Depends}, linux-image-${generic-depends} (= ${binary:Version})
-Description: Generic Linux kernel image.
- This package will always depend on the latest generic Linux kernel image
- available.
-
-Package: linux-crashdump
-Architecture: i386 amd64
-Section: devel
-Depends: ${misc:Depends}, kexec-tools, makedumpfile, grub-pc (>= 1.96+20090611-1ubuntu2) | grub-efi-ia32 | grub-efi-amd64 | grub (>= 0.97-29ubuntu24)
-Recommends: apport
-Suggests: crash
-Description: Linux kernel crashdump setup for the latest generic kernel
- This package installs all the needed infrstracture to get crashdumps from
- your running system. If you are experiencing kernel crashes that cannot
- be debugged normally (because the problem is infrequent or panic's the
- system in such a way as to make information gathering impossible), then
- you can install this package to automatically enable capture of the
- vmcore on crashes.
-
-Package: linux-tools
-Architecture: i386 amd64 armel armhf
-Section: kernel
-Depends: ${misc:Depends}, linux-tools-${kernel-abi-version}
-Description: Linux kernel versioned Tools
- This package will always depend on the latest Linux kernel versioned tools 
- available. The Ubuntu patches have been applied.
-
-#
-# This comment applies to the following 4 meta packages.
-#
-# Point to a 12.04 kernel until such time as 12.10 is released. Then update
-# to point to linux-image-generic-lts-backport-trusty. The -hwe- package
-# is not updated until just before a point release. However, the -current-
-# package always tracks the most recent release. In that way, -hwe- will
-# sometimes lag for a few months before being updated to match -current-.
-#
-Package: linux-image-hwe-generic
-Architecture: i386 amd64 
-Section: kernel
-Priority: optional
-Depends: ${misc:Depends}, linux-image-generic-lts-trusty
-Description: Depends on the generic hardware enablement kernel image and headers.
- This package will always depend on the generic hardware enablement kernel
- and headers.
-
-Package: linux-hwe-generic
-Architecture: i386 amd64 
-Section: kernel
-Priority: optional
-Depends: ${misc:Depends}, linux-image-hwe-generic, linux-headers-generic-lts-trusty
-Description: Depends on the generic hardware enablement kernel image and headers.
- This package will always depend on the generic hardware enablement kernel
- and headers.
-
-Package: linux-image-current-generic
-Architecture: i386 amd64 
-Section: kernel
-Priority: optional
-Depends: ${misc:Depends}, linux-image-generic-lts-trusty
-Description: Depends on the most recently released generic kernel image and headers.
- This package will always depend on the latest released generic kernel
- and headers, up to 14.04 inclusive.
-
-Package: linux-current-generic
-Architecture: i386 amd64 
-Section: kernel
-Priority: optional
-Depends: ${misc:Depends}, linux-image-generic-lts-trusty, linux-headers-generic-lts-trusty
-Description: Depends on the most recently released generic kernel image and headers.
- This package will always depend on the latest released generic kernel
- and headers, up to 14.04 inclusive.
-
diff --git a/meta-source/debian/control.d/generic b/meta-source/debian/control.d/generic
deleted file mode 100644
index 8bed1ac..0000000
--- a/meta-source/debian/control.d/generic
+++ /dev/null
@@ -1,121 +0,0 @@ 
-Package: linux-headers-generic
-Architecture: i386 amd64
-Section: kernel
-Priority: optional
-Depends: ${misc:Depends}, linux-headers-${kernel-abi-version}-generic
-Description: Generic Linux kernel headers
- This package will always depend on the latest generic kernel headers
- available.
-
-Package: linux-image-generic
-Architecture: i386 amd64
-Section: kernel
-Priority: optional
-Provides: linux-backports-modules-hv-RELEASE_NAME-generic
-Conflicts: linux-backports-modules-hv-RELEASE_NAME-generic
-Replaces: linux-backports-modules-hv-RELEASE_NAME-generic
-Depends: ${misc:Depends}, linux-image-${kernel-abi-version}-generic, linux-firmware
-Description: Generic Linux kernel image
- This package will always depend on the latest generic kernel image
- available.
-
-Package: linux-generic
-Architecture: i386 amd64
-Section: kernel
-Priority: optional
-Depends: ${misc:Depends}, linux-image-generic (= ${binary:Version}), linux-headers-generic (= ${binary:Version})
-Description: Complete Generic Linux kernel
- This package will always depend on the latest complete generic Linux kernel
- available.
-
-Package: linux-backports-modules-headers-RELEASE_NAME-generic
-Architecture: amd64 i386
-Depends: ${misc:Depends}, linux-headers-lbm-${kernel-abi-version}-generic
-Description: Backported driver headers for generic kernel image
- This empty package allows people to keep their backported module
- headers up-to-date when upgrading their Linux kernel.
-
-Package: linux-backports-modules-cw-3.3-RELEASE_NAME-generic
-Architecture: amd64 i386
-Depends: ${misc:Depends}, linux-backports-modules-cw-3.3-${kernel-abi-version}-generic
-Description: Backported wireless drivers for generic kernel image
- This empty package allows people to keep their backported wireless modules
- up-to-date when upgrading their Linux kernel.
-
-Package: linux-backports-modules-cw-3.4-RELEASE_NAME-generic
-Architecture: amd64 i386
-Depends: ${misc:Depends}, linux-backports-modules-cw-3.4-${kernel-abi-version}-generic
-Description: Backported wireless drivers for generic kernel image
- This empty package allows people to keep their backported wireless modules
- up-to-date when upgrading their Linux kernel.
-
-Package: linux-backports-modules-cw-3.5-RELEASE_NAME-generic
-Architecture: amd64 i386
-Depends: ${misc:Depends}, linux-backports-modules-cw-3.5-${kernel-abi-version}-generic
-Description: Backported wireless drivers for generic kernel image
- This empty package allows people to keep their backported wireless modules
- up-to-date when upgrading their Linux kernel.
-
-Package: linux-backports-modules-cw-3.6-RELEASE_NAME-generic
-Architecture: amd64 i386
-Depends: ${misc:Depends}, linux-backports-modules-cw-3.6-${kernel-abi-version}-generic
-Description: Backported wireless drivers for generic kernel image
- This empty package allows people to keep their backported wireless modules
- up-to-date when upgrading their Linux kernel.
-
-Package: linux-backports-modules-cw-3.7-RELEASE_NAME-generic
-Architecture: amd64 i386
-Depends: ${misc:Depends}, linux-backports-modules-cw-3.7-${kernel-abi-version}-generic
-Description: Backported wireless drivers for generic kernel image
- This empty package allows people to keep their backported wireless modules
- up-to-date when upgrading their Linux kernel.
-
-Package: linux-backports-modules-cw-3.8-RELEASE_NAME-generic
-Architecture: amd64 i386
-Depends: ${misc:Depends}, linux-backports-modules-cw-3.8-${kernel-abi-version}-generic
-Description: Backported wireless drivers for generic kernel image
- This empty package allows people to keep their backported wireless modules
- up-to-date when upgrading their Linux kernel.
-
-Package: linux-backports-modules-cw-3.10-RELEASE_NAME-generic
-Architecture: amd64 i386
-Depends: ${misc:Depends}, linux-backports-modules-cw-3.10-${kernel-abi-version}-generic
-Description: Backported wireless drivers for generic kernel image
- This empty package allows people to keep their backported wireless modules
- up-to-date when upgrading their Linux kernel.
-
-Package: linux-backports-modules-cw-3.11-RELEASE_NAME-generic
-Architecture: amd64 i386
-Depends: ${misc:Depends}, linux-backports-modules-cw-3.11-${kernel-abi-version}-generic
-Description: Backported wireless drivers for generic kernel image
- This empty package allows people to keep their backported wireless modules
- up-to-date when upgrading their Linux kernel.
-
-Package: linux-backports-modules-cw-3.12-RELEASE_NAME-generic
-Architecture: amd64 i386
-Depends: ${misc:Depends}, linux-backports-modules-cw-3.12-${kernel-abi-version}-generic
-Description: Backported wireless drivers for generic kernel image
- This empty package allows people to keep their backported wireless modules
- up-to-date when upgrading their Linux kernel.
-
-Package: linux-backports-modules-net-RELEASE_NAME-generic
-Architecture: amd64 i386
-Depends: ${misc:Depends}, linux-backports-modules-net-${kernel-abi-version}-generic
-Description: Backported ethernet drivers for generic kernel image.
- This empty package allows people to keep their backported ethernet modules
- up-to-date when upgrading their Linux kernel.
-
-#Package: linux-backports-modules-alsa-RELEASE_NAME-generic
-#Architecture: amd64 i386
-#Depends: ${misc:Depends}, linux-backports-modules-alsa-${kernel-abi-version}-generic
-#Description: Backported drivers for alsa-driver snapshot.
-# This empty package allows people to keep their alsa-driver snapshot
-# up-to-date when upgrading their Linux kernel.
-#
-
-#Package: linux-backports-modules-hv-RELEASE_NAME-generic
-#Architecture: amd64 i386
-#Depends: ${misc:Depends}, linux-backports-modules-hv-${kernel-abi-version}-generic
-#Description: Backported Hyper-V hypervisor interfaces
-# This empty package allows people to keep their Hyper-V updated drivers
-# up-to-date when upgrading their Linux kernel.
diff --git a/meta-source/debian/control.d/generic-pae b/meta-source/debian/control.d/generic-pae
deleted file mode 100644
index a2d56c6..0000000
--- a/meta-source/debian/control.d/generic-pae
+++ /dev/null
@@ -1,121 +0,0 @@ 
-Package: linux-headers-generic-pae
-Architecture: i386
-Section: kernel
-Priority: optional
-Depends: ${misc:Depends}, linux-headers-${kernel-abi-version}-generic-pae
-Description: Generic Linux kernel headers
- This package will always depend on the latest generic kernel headers
- available.
-
-Package: linux-image-generic-pae
-Architecture: i386
-Section: kernel
-Priority: optional
-Provides: linux-backports-modules-hv-RELEASE_NAME-generic-pae
-Conflicts: linux-backports-modules-hv-RELEASE_NAME-generic-pae
-Replaces: linux-backports-modules-hv-RELEASE_NAME-generic-pae
-Depends: ${misc:Depends}, linux-image-${kernel-abi-version}-generic-pae, linux-firmware
-Description: Generic Linux kernel image
- This package will always depend on the latest generic kernel image
- available.
-
-Package: linux-generic-pae
-Architecture: i386
-Section: kernel
-Priority: optional
-Depends: ${misc:Depends}, linux-image-generic-pae (= ${binary:Version}), linux-headers-generic-pae (= ${binary:Version})
-Description: Complete Generic Linux kernel
- This package will always depend on the latest complete generic Linux kernel
- available.
-
-Package: linux-backports-modules-headers-RELEASE_NAME-generic-pae
-Architecture: i386
-Depends: ${misc:Depends}, linux-headers-lbm-${kernel-abi-version}-generic-pae
-Description: Backported driver headers for generic-pae kernel image
- This empty package allows people to keep their backported module
- headers up-to-date when upgrading their Linux kernel.
-
-Package: linux-backports-modules-cw-3.3-RELEASE_NAME-generic-pae
-Architecture: i386
-Depends: ${misc:Depends}, linux-backports-modules-cw-3.3-${kernel-abi-version}-generic-pae
-Description: Backported wireless drivers for generic-pae kernel image
- This empty package allows people to keep their backported wireless modules
- up-to-date when upgrading their Linux kernel.
-
-Package: linux-backports-modules-cw-3.4-RELEASE_NAME-generic-pae
-Architecture: i386
-Depends: ${misc:Depends}, linux-backports-modules-cw-3.4-${kernel-abi-version}-generic-pae
-Description: Backported wireless drivers for generic-pae kernel image
- This empty package allows people to keep their backported wireless modules
- up-to-date when upgrading their Linux kernel.
-
-Package: linux-backports-modules-cw-3.5-RELEASE_NAME-generic-pae
-Architecture: i386
-Depends: ${misc:Depends}, linux-backports-modules-cw-3.5-${kernel-abi-version}-generic-pae
-Description: Backported wireless drivers for generic-pae kernel image
- This empty package allows people to keep their backported wireless modules
- up-to-date when upgrading their Linux kernel.
-
-Package: linux-backports-modules-cw-3.6-RELEASE_NAME-generic-pae
-Architecture: i386
-Depends: ${misc:Depends}, linux-backports-modules-cw-3.6-${kernel-abi-version}-generic-pae
-Description: Backported wireless drivers for generic-pae kernel image
- This empty package allows people to keep their backported wireless modules
- up-to-date when upgrading their Linux kernel.
-
-Package: linux-backports-modules-cw-3.7-RELEASE_NAME-generic-pae
-Architecture: i386
-Depends: ${misc:Depends}, linux-backports-modules-cw-3.7-${kernel-abi-version}-generic-pae
-Description: Backported wireless drivers for generic-pae kernel image
- This empty package allows people to keep their backported wireless modules
- up-to-date when upgrading their Linux kernel.
-
-Package: linux-backports-modules-cw-3.8-RELEASE_NAME-generic-pae
-Architecture: i386
-Depends: ${misc:Depends}, linux-backports-modules-cw-3.8-${kernel-abi-version}-generic-pae
-Description: Backported wireless drivers for generic-pae kernel image
- This empty package allows people to keep their backported wireless modules
- up-to-date when upgrading their Linux kernel.
-
-Package: linux-backports-modules-cw-3.10-RELEASE_NAME-generic-pae
-Architecture: i386
-Depends: ${misc:Depends}, linux-backports-modules-cw-3.10-${kernel-abi-version}-generic-pae
-Description: Backported wireless drivers for generic-pae kernel image
- This empty package allows people to keep their backported wireless modules
- up-to-date when upgrading their Linux kernel.
-
-Package: linux-backports-modules-cw-3.11-RELEASE_NAME-generic-pae
-Architecture: i386
-Depends: ${misc:Depends}, linux-backports-modules-cw-3.11-${kernel-abi-version}-generic-pae
-Description: Backported wireless drivers for generic-pae kernel image
- This empty package allows people to keep their backported wireless modules
- up-to-date when upgrading their Linux kernel.
-
-Package: linux-backports-modules-cw-3.12-RELEASE_NAME-generic-pae
-Architecture: i386
-Depends: ${misc:Depends}, linux-backports-modules-cw-3.12-${kernel-abi-version}-generic-pae
-Description: Backported wireless drivers for generic-pae kernel image
- This empty package allows people to keep their backported wireless modules
- up-to-date when upgrading their Linux kernel.
-
-Package: linux-backports-modules-net-RELEASE_NAME-generic-pae
-Architecture: i386
-Depends: ${misc:Depends}, linux-backports-modules-net-${kernel-abi-version}-generic-pae
-Description: Backported ethernet drivers for generic kernel image.
- This empty package allows people to keep their backported ethernet modules
- up-to-date when upgrading their Linux kernel.
-
-#Package: linux-backports-modules-alsa-RELEASE_NAME-generic-pae
-#Architecture: i386
-#Depends: ${misc:Depends}, linux-backports-modules-alsa-${kernel-abi-version}-generic-pae
-#Description: Backported drivers for alsa-driver snapshot.
-# This empty package allows people to keep their alsa-driver snapshot
-# up-to-date when upgrading their Linux kernel.
-#
-
-#Package: linux-backports-modules-hv-RELEASE_NAME-generic-pae
-#Architecture: i386
-#Depends: ${misc:Depends}, linux-backports-modules-hv-${kernel-abi-version}-generic-pae
-#Description: Backported Hyper-V hypervisor interfaces
-# This empty package allows people to keep their Hyper-V updated drivers
-# up-to-date when upgrading their Linux kernel.
diff --git a/meta-source/debian/control.d/highbank b/meta-source/debian/control.d/highbank
deleted file mode 100644
index 386ec97..0000000
--- a/meta-source/debian/control.d/highbank
+++ /dev/null
@@ -1,26 +0,0 @@ 
-Package: linux-headers-highbank
-Architecture: armhf
-Section: kernel
-Priority: optional
-Depends: ${misc:Depends}, linux-headers-${kernel-abi-version}-highbank 
-Description: Linux kernel headers for the Calxeda Highbank flavour.
- This package will always depend on the latest kernel headers available
- for Calxeda Highbank systems.
-
-Package: linux-image-highbank
-Architecture: armhf
-Section: kernel
-Priority: optional
-Depends: ${misc:Depends}, linux-image-${kernel-abi-version}-highbank, linux-firmware
-Description: Linux kernel image for the Calxeda Highbank flavour.
- This package will always depend on the latest kernel image available
- for Calxeda Highbank systems.
-
-Package: linux-highbank
-Architecture: armhf
-Section: kernel
-Priority: optional
-Depends: ${misc:Depends}, linux-image-highbank (= ${binary:Version}), linux-headers-highbank (= ${binary:Version})
-Description: Complete Linux kernel for the Calxeda Highbank architecture.
- This package will always depend on the latest complete Linux kernel available
- for Calxeda Highbank systems.
diff --git a/meta-source/debian/control.d/omap b/meta-source/debian/control.d/omap
deleted file mode 100644
index 0b6fd21..0000000
--- a/meta-source/debian/control.d/omap
+++ /dev/null
@@ -1,26 +0,0 @@ 
-Package: linux-headers-omap
-Architecture: armel armhf
-Section: kernel
-Priority: optional
-Depends: ${misc:Depends}, linux-headers-${kernel-abi-version}-omap 
-Description: Linux kernel headers for the OMAP3 architecture.
- This package will always depend on the latest kernel headers available
- for ARM TI OMAP3 systems.
-
-Package: linux-image-omap
-Architecture: armel armhf
-Section: kernel
-Priority: optional
-Depends: ${misc:Depends}, linux-image-${kernel-abi-version}-omap, linux-firmware
-Description: Linux kernel image for the OMAP3 architecture.
- This package will always depend on the latest kernel image available
- for ARM TI OMAP3 systems.
-
-Package: linux-omap
-Architecture: armel armhf
-Section: kernel
-Priority: optional
-Depends: ${misc:Depends}, linux-image-omap (= ${binary:Version}), linux-headers-omap (= ${binary:Version})
-Description: Complete Linux kernel for the OMAP3 architecture.
- This package will always depend on the latest complete Linux kernel available
- for ARM TI OMAP3 systems.
diff --git a/meta-source/debian/control.d/powerpc b/meta-source/debian/control.d/powerpc
deleted file mode 100644
index 6176fea..0000000
--- a/meta-source/debian/control.d/powerpc
+++ /dev/null
@@ -1,30 +0,0 @@ 
-#
-# PowerPC
-#
-Package: linux-powerpc
-Architecture: powerpc
-Section: kernel
-Priority: optional
-Depends: linux-powerpc-smp (= ${binary:Version})
-Description: Complete Linux kernel on PowerPC.
- This package will always depend on the latest complete Linux kernel available
- for PowerPC.
-
-Package: linux-image-powerpc
-Architecture: powerpc
-Section: kernel
-Priority: optional
-Depends: linux-image-powerpc-smp (= ${binary:Version}), linux-firmware
-Description: Linux kernel image on PowerPC
- This package will always depend on the latest kernel image available
- for PowerPC support.
-
-Package: linux-headers-powerpc
-Architecture: powerpc
-Section: kernel
-Priority: optional
-Depends: linux-headers-powerpc-smp (= ${binary:Version})
-Description: Linux kernel headers on PowerPC
- This package will always depend on the latest kernel headers available
- for PowerPC.
-
diff --git a/meta-source/debian/control.d/powerpc-smp b/meta-source/debian/control.d/powerpc-smp
deleted file mode 100644
index 07e470b..0000000
--- a/meta-source/debian/control.d/powerpc-smp
+++ /dev/null
@@ -1,33 +0,0 @@ 
-#
-# PowerPC-SMP
-#
-Package: linux-powerpc-smp
-Architecture: powerpc
-Section: kernel
-Priority: optional
-Depends: linux-image-powerpc-smp (= ${binary:Version}), linux-headers-powerpc-smp (= ${binary:Version})
-Description: Complete Linux kernel on PowerPC SMP.
- This package will always depend on the latest complete Linux kernel available
- for PowerPC with SMP support.
- SMP (symmetric multi-processing) is needed if you have multiple processors.
-
-Package: linux-image-powerpc-smp
-Architecture: powerpc
-Section: kernel
-Priority: optional
-Depends: linux-image-${kernel-abi-version}-powerpc-smp, linux-firmware
-Description: Linux kernel image on PowerPC SMP.
- This package will always depend on the latest kernel image available
- for PowerPC with SMP support.
- SMP (symmetric multi-processing) is needed if you have multiple processors.
-
-Package: linux-headers-powerpc-smp
-Architecture: powerpc
-Section: kernel
-Priority: optional
-Depends: linux-headers-${kernel-abi-version}-powerpc-smp
-Description: Linux kernel headers on PowerPC SMP
- This package will always depend on the latest kernel headers available
- for PowerPC with SMP support.
- SMP (symmetric multi-processing) is needed if you have multiple processors.
-
diff --git a/meta-source/debian/control.d/powerpc64-smp b/meta-source/debian/control.d/powerpc64-smp
deleted file mode 100644
index ffd85cc..0000000
--- a/meta-source/debian/control.d/powerpc64-smp
+++ /dev/null
@@ -1,33 +0,0 @@ 
-#
-# PowerPC64-SMP
-#
-Package: linux-powerpc64-smp
-Architecture: powerpc
-Section: kernel
-Priority: optional
-Depends: linux-image-powerpc64-smp (= ${binary:Version}), linux-headers-powerpc64-smp (= ${binary:Version})
-Description: Complete Linux kernel on PowerPC64 SMP.
- This package will always depend on the latest complete Linux kernel available
- for PowerPC64 with SMP support.
- SMP (symmetric multi-processing) is needed if you have multiple processors.
-
-Package: linux-image-powerpc64-smp
-Architecture: powerpc
-Section: kernel
-Priority: optional
-Depends: linux-image-${kernel-abi-version}-powerpc64-smp, linux-firmware
-Description: Linux kernel image on PowerPC64 SMP.
- This package will always depend on the latest kernel image available
- for PowerPC64 with SMP support.
- SMP (symmetric multi-processing) is needed if you have multiple processors.
-
-Package: linux-headers-powerpc64-smp
-Architecture: powerpc
-Section: kernel
-Priority: optional
-Depends: linux-headers-${kernel-abi-version}-powerpc64-smp
-Description: Linux kernel headers on PowerPC64 SMP
- This package will always depend on the latest kernel headers available
- for PowerPC64 with SMP support.
- SMP (symmetric multi-processing) is needed if you have multiple processors.
-
diff --git a/meta-source/debian/control.d/server b/meta-source/debian/control.d/server
deleted file mode 100644
index a876d90..0000000
--- a/meta-source/debian/control.d/server
+++ /dev/null
@@ -1,55 +0,0 @@ 
-Package: linux-headers-server
-Architecture: amd64 i386
-Section: kernel
-Priority: optional
-Depends: ${misc:Depends}, linux-headers-${kernel-abi-version}-generic [amd64], linux-headers-generic-pae [i386]
-Description: Linux kernel headers on Server Equipment.
- This package will always depend on the latest kernel headers available
- for Server Equipment.
-
-Package: linux-image-server
-Architecture: amd64 i386
-Section: kernel
-Priority: optional
-Depends: ${misc:Depends}, linux-image-${kernel-abi-version}-generic [amd64], linux-firmware [amd64], linux-image-generic-pae [i386]
-Description: Linux kernel image on Server Equipment.
- This package will always depend on the latest kernel image available
- for Server Equipment.
-
-Package: linux-server
-Architecture: amd64 i386
-Section: kernel
-Priority: optional
-Depends: ${misc:Depends}, linux-image-server (= ${binary:Version}) [amd64], linux-headers-server (= ${binary:Version}) [amd64], linux-generic-pae [i386]
-Description: Complete Linux kernel on Server Equipment.
- This package will always depend on the latest complete Linux kernel available
- for Server Equipment.
-
-Package: linux-backports-modules-net-RELEASE_NAME-server
-Architecture: amd64 i386
-Depends: ${misc:Depends}, linux-backports-modules-net-${kernel-abi-version}-generic [amd64], linux-backports-modules-net-${kernel-abi-version}-generic-pae [i386]
-Description: Backported ethernet drivers for generic kernel image.
- This empty package allows people to keep their backported ethernet modules
- up-to-date when upgrading their Linux kernel.
-
-#Package: linux-backports-modules-headers-RELEASE_NAME-server
-#Architecture: amd64
-#Depends: ${misc:Depends}, linux-headers-lbm-${kernel-abi-version}-generic
-#Description: Backported driver headers for server kernel image
-# This empty package allows people to keep their backported module
-# headers up-to-date when upgrading their Linux kernel.
-
-#Package: linux-backports-modules-cw-3.3-RELEASE_NAME-server
-#Architecture: amd64
-#Depends: ${misc:Depends}, linux-backports-modules-cw-3.3-${kernel-abi-version}-server
-#Description: Backported wireless drivers for server kernel image
-# This empty package allows people to keep their backported wireless modules
-# up-to-date when upgrading their Linux kernel.
-#
-#Package: linux-backports-modules-alsa-RELEASE_NAME-server
-#Architecture: amd64
-#Depends: ${misc:Depends}, linux-backports-modules-alsa-${kernel-abi-version}-generic
-#Description: Backported drivers for alsa-driver snapshot.
-# This empty package allows people to keep their alsa-driver snapshot
-# up-to-date when upgrading their Linux kernel.
-#
diff --git a/meta-source/debian/control.d/virtual b/meta-source/debian/control.d/virtual
deleted file mode 100644
index ede7be1..0000000
--- a/meta-source/debian/control.d/virtual
+++ /dev/null
@@ -1,47 +0,0 @@ 
-Package: linux-headers-virtual
-Architecture: i386 amd64
-Section: kernel
-Priority: optional
-Depends: ${misc:Depends}, linux-headers-${kernel-abi-version}-virtual
-Description: Linux kernel headers for virtual machines
- This package will always depend on the latest kernel headers available
- for virtual machines.
-
-Package: linux-image-virtual
-Architecture: i386 amd64
-Section: kernel
-Priority: optional
-Provides: linux-backports-modules-hv-RELEASE_NAME-virtual
-Conflicts: linux-backports-modules-hv-RELEASE_NAME-virtual
-Replaces: linux-backports-modules-hv-RELEASE_NAME-virtual
-Depends: ${misc:Depends}, linux-image-${kernel-abi-version}-virtual, linux-firmware
-Description: Linux kernel image for virtual machines
- This package will always depend on the latest kernel image available
- for virtual machines. Install linux-image-extra-virtual to get all
- available kernel modules.
-
-Package: linux-virtual
-Architecture: i386 amd64
-Section: kernel
-Priority: optional
-Depends: ${misc:Depends}, linux-image-virtual (= ${binary:Version}), linux-headers-virtual (= ${binary:Version})
-Description: Complete Linux kernel for virtual machines
- This package will always depend on the latest complete Linux kernel available
- for virtual machines. Install linux-image-extra-virtual to get all
- available kernel modules.
-
-Package: linux-image-extra-virtual
-Architecture: i386 amd64
-Section: kernel
-Priority: optional
-Depends: ${misc:Depends}, linux-image-virtual (= ${binary:Version}), linux-image-extra-${kernel-abi-version}-virtual
-Description: Linux kernel extra modules for virtual machines
- This package will always depend on the latest kernel extra modules available
- for virtual machines.
-
-#Package: linux-backports-modules-hv-RELEASE_NAME-virtual
-#Architecture: amd64 i386
-#Depends: ${misc:Depends}, linux-backports-modules-hv-${kernel-abi-version}-virtual
-#Description: Backported Hyper-V hypervisor interfaces
-# This empty package allows people to keep their Hyper-V updated drivers
-# up-to-date when upgrading their Linux kernel.
diff --git a/meta-source/debian/copyright b/meta-source/debian/copyright
deleted file mode 100644
index 95305a2..0000000
--- a/meta-source/debian/copyright
+++ /dev/null
@@ -1,39 +0,0 @@ 
-This is the Debian GNU/Linux prepackaged version of the Linux kernel.
-Linux was written by Linus Torvalds <Linus.Torvalds@cs.Helsinki.FI>
-and others.
-
-This package was put together by Simon Shapiro <Shimon@i-Connect.Net>, from
-sources retrieved from directories under
-ftp.cs.helsinki.fi:/pub/Software/Linux/Kernel/
-The sources may be found at most Linux ftp sites, including 
-ftp://ftp.kernel.org/pub/linux/kernel/
-
-This package was then maintained by Sven Rudolph.
-
-This package was maintained by Herbert Xu <herbert@gondor.apana.org.au>
-from March 1997 to May 2004.
-
-This package was maintained by the
-Debian Kernel Team <debian-kernel@lists.debian.org>
-
-This package was split off by Herbert Xu <herbert@gondor.apana.org.au>
-in September 2004.
-
-Linux is copyrighted by Linus Torvalds and others.
-
-   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
-   the Free Software Foundation; version 2 dated June, 1991.
-
-   This program is distributed in the hope that it will be useful,
-   but WITHOUT ANY WARRANTY; without even the implied warranty of
-   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-   GNU General Public License for more details.
-
-   You should have received a copy of the GNU General Public License
-   along with this program; if not, write to the Free Software
-   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
-   02110-1301, USA.
-
-On Debian GNU/Linux systems, the complete text of the GNU General
-Public License can be found in `/usr/share/common-licenses/GPL'.
diff --git a/meta-source/debian/rules b/meta-source/debian/rules
deleted file mode 100755
index 6e812c8..0000000
--- a/meta-source/debian/rules
+++ /dev/null
@@ -1,92 +0,0 @@ 
-#!/usr/bin/make -f
-#
-# debian/rules for kernel-source.
-#
-# GNU copyright 1997 to 1999 by Joey Hess.
-# Copyright (c) 1999-2004 Herbert Xu <herbert@gondor.apana.org.au>
-# Copyright (c) 2004 Jens Schmalzing <jensen@debian.org>
-#
-
-RELEASE_NAME=precise
-
-# 5 digit versions (2.6.38.<abi>.<upload>, 3 digit kernel base versions (2.6.38)
-KERNEL_VERSION=$(shell dpkg-parsechangelog | grep ^Version | sed -e \
-	's/Version: \([0-9]*\.[0-9]*\.[0-9]*\)\..*/\1/')
-KERNEL_ABI=$(shell head -n1 < debian/changelog | gawk '{n=split($$0,v,"."); print v[4];}')
-
-# 4 digit versions (3.0.<abi>.<upload>), 2 digit kernel base versions (3.0)
-#KERNEL_VERSION=$(shell dpkg-parsechangelog | grep ^Version | sed -e \
-	's/Version: \([0-9]*\.[0-9]*\)\..*/\1/')
-#KERNEL_ABI=$(shell head -n1 < debian/changelog | gawk '{n=split($$0,v,"."); print v[3];}')
-
-KERNEL_ABI_VERSION=$(KERNEL_VERSION)-$(KERNEL_ABI)
-
-GENERIC_i386=generic-pae
-GENERIC_amd64=generic
-
-GENERIC=$(value GENERIC_$(shell dpkg-architecture -qDEB_HOST_ARCH))
-GENERIC_DEP=$(if $(GENERIC),$(GENERIC),)
-
-control_files := debian/control.common $(shell LC_ALL=C ls -d debian/control.d/*)
-
-SHELL := sh -e
-
-build:
-	dh_testdir
-
-clean: debian/control
-	dh_testdir
-	dh_testroot
-	dh_clean
-
-debian/control: $(control_files)
-	rm -f debian/control.tmp
-	for i in $^; do \
-		sed 's/RELEASE_NAME/$(RELEASE_NAME)/g' $$i >> debian/control.tmp; \
-		echo >> debian/control.tmp; \
-	done
-	rm -f $@
-	mv debian/control.tmp $@
-
-install: build
-	dh_testdir
-	dh_testroot
-	dh_clean -k
-
-gencontrol_flags = -Vkernel-version=$(KERNEL_VERSION)
-gencontrol_flags += -Vkernel-abi-version=$(KERNEL_ABI_VERSION)
-gencontrol_flags += -Vgeneric-depends=$(GENERIC_DEP)
-
-# Build architecture-independent files here.
-binary-indep: debian/control install
-	dh_testdir
-	dh_testroot
-
-	dh_installdirs -i
-	dh_installdocs -i
-	dh_installchangelogs -i
-	dh_compress -i
-	dh_fixperms -i
-	dh_installdeb -i
-	dh_gencontrol -i -- $(gencontrol_flags)
-	dh_md5sums -i
-	dh_builddeb -i
-
-# Build architecture-dependent files here.
-binary-arch: debian/control install
-	dh_testdir
-	dh_testroot
-
-	dh_installdirs -s
-	dh_installdocs -s
-	dh_installchangelogs -s
-	dh_compress -s
-	dh_fixperms -s
-	dh_installdeb -s
-	dh_gencontrol -s -- $(gencontrol_flags)
-	dh_md5sums -s
-	dh_builddeb -s
-
-binary: binary-indep binary-arch
-
-.PHONY: build clean binary-indep binary-arch binary install
diff --git a/meta-source/debian/source/options b/meta-source/debian/source/options
deleted file mode 100644
index 8e1f8cf..0000000
--- a/meta-source/debian/source/options
+++ /dev/null
@@ -1,3 +0,0 @@ 
-# force "dpkg-source -I -i" behavior
-diff-ignore
-tar-ignore