diff mbox

[1/3] UBUNTU: simplify meta package packaging

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

Commit Message

Tim Gardner Jan. 19, 2017, 9:18 p.m. UTC
From: Andy Whitcroft <apw@canonical.com>

    git rm Makefile README
    git mv meta-source/debian .
    rmdir meta-source

BugLink: http://bugs.launchpad.net/bugs/1601954
Signed-off-by: Andy Whitcroft <apw@canonical.com>
Signed-off-by: Tim Gardner <tim.gardner@canonical.com>
---
 Makefile                                       |   30 -
 README                                         |   18 -
 debian/changelog                               |  812 +++++++++++++++
 debian/compat                                  |    1 +
 debian/control.common                          |   34 +
 debian/control.d/generic                       |   48 +
 debian/control.d/generic-lpae                  |   38 +
 debian/control.d/lowlatency                    |   48 +
 debian/control.d/powerpc-e500mc                |   37 +
 debian/control.d/powerpc-smp                   |   40 +
 debian/control.d/powerpc64-emb                 |   37 +
 debian/control.d/powerpc64-smp                 |   40 +
 debian/control.d/signed-generic                |   19 +
 debian/control.d/signed-lowlatency             |   19 +
 debian/control.d/transitionals                 |   31 +
 debian/control.d/virtual                       |   53 +
 debian/copyright                               |   39 +
 debian/rules                                   |  105 ++
 debian/source/options                          |    3 +
 meta-source/debian/changelog                   |  812 ---------------
 meta-source/debian/compat                      |    1 -
 meta-source/debian/control.common              |   34 -
 meta-source/debian/control.d/generic           |   48 -
 meta-source/debian/control.d/generic-lpae      |   38 -
 meta-source/debian/control.d/lowlatency        |   48 -
 meta-source/debian/control.d/powerpc-e500mc    |   37 -
 meta-source/debian/control.d/powerpc-smp       |   40 -
 meta-source/debian/control.d/powerpc64-emb     |   37 -
 meta-source/debian/control.d/powerpc64-smp     |   40 -
 meta-source/debian/control.d/signed-generic    |   19 -
 meta-source/debian/control.d/signed-lowlatency |   19 -
 meta-source/debian/control.d/transitionals     |   31 -
 meta-source/debian/control.d/transitionals-lts | 1255 ------------------------
 meta-source/debian/control.d/virtual           |   53 -
 meta-source/debian/copyright                   |   39 -
 meta-source/debian/rules                       |  105 --
 meta-source/debian/source/options              |    3 -
 37 files changed, 1404 insertions(+), 2707 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-lpae
 create mode 100644 debian/control.d/lowlatency
 create mode 100644 debian/control.d/powerpc-e500mc
 create mode 100644 debian/control.d/powerpc-smp
 create mode 100644 debian/control.d/powerpc64-emb
 create mode 100644 debian/control.d/powerpc64-smp
 create mode 100644 debian/control.d/signed-generic
 create mode 100644 debian/control.d/signed-lowlatency
 create mode 100644 debian/control.d/transitionals
 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-lpae
 delete mode 100644 meta-source/debian/control.d/lowlatency
 delete mode 100644 meta-source/debian/control.d/powerpc-e500mc
 delete mode 100644 meta-source/debian/control.d/powerpc-smp
 delete mode 100644 meta-source/debian/control.d/powerpc64-emb
 delete mode 100644 meta-source/debian/control.d/powerpc64-smp
 delete mode 100644 meta-source/debian/control.d/signed-generic
 delete mode 100644 meta-source/debian/control.d/signed-lowlatency
 delete mode 100644 meta-source/debian/control.d/transitionals
 delete mode 100644 meta-source/debian/control.d/transitionals-lts
 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 5c3f0ef..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 -d -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..fd00c6a
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,812 @@ 
+linux-meta (4.4.0.62.65) xenial; urgency=medium
+
+  * linux ABI 4.4.0-62
+
+ -- Thadeu Lima de Souza Cascardo <cascardo@canonical.com>  Wed, 18 Jan 2017 10:41:13 -0200
+
+linux-meta (4.4.0.61.64) xenial; urgency=medium
+
+  * linux ABI 4.4.0-61
+
+ -- Thadeu Lima de Souza Cascardo <cascardo@canonical.com>  Mon, 16 Jan 2017 14:42:21 -0200
+
+linux-meta (4.4.0.60.63) xenial; urgency=medium
+
+  * linux ABI 4.4.0-60
+
+ -- John Donnelly <john.donnelly@canonical.com>  Thu, 12 Jan 2017 17:48:35 +0000
+
+linux-meta (4.4.0.59.62) xenial; urgency=medium
+
+  * linux ABI 4.4.0-59
+
+ -- John Donnelly <john.donnelly@canonical.com>  Thu, 05 Jan 2017 13:38:35 +0000
+
+linux-meta (4.4.0.58.61) xenial; urgency=medium
+
+  * linux ABI 4.4.0-58
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Tue, 20 Dec 2016 11:18:35 +0000
+
+linux-meta (4.4.0.57.60) xenial; urgency=medium
+
+  * linux ABI 4.4.0-57
+
+ -- Brad Figg <brad.figg@canonical.com>  Thu, 08 Dec 2016 12:58:36 -0800
+
+linux-meta (4.4.0.65.59) xenial; urgency=medium
+
+  * linux ABI 4.4.0-56
+
+ -- Brad Figg <brad.figg@canonical.com>  Thu, 08 Dec 2016 12:58:36 -0800
+
+linux-meta (4.4.0.55.58) xenial; urgency=medium
+
+  * linux ABI 4.4.0-55
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Thu, 08 Dec 2016 14:41:28 +0000
+
+linux-meta (4.4.0.54.57) xenial; urgency=medium
+
+  * linux ABI 4.4.0-54
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Wed, 07 Dec 2016 10:19:03 +0000
+
+linux-meta (4.4.0.53.56) xenial; urgency=medium
+
+  * linux ABI 4.4.0-53
+
+ -- Brad Figg <brad.figg@canonical.com>  Thu, 01 Dec 2016 11:20:26 -0800
+
+linux-meta (4.4.0.52.55) xenial; urgency=medium
+
+  * linux ABI 4.4.0-52
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Wed, 30 Nov 2016 16:02:03 +0000
+
+linux-meta (4.4.0.51.54) xenial; urgency=medium
+
+  * linux ABI 4.4.0-51
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Thu, 24 Nov 2016 17:59:43 +0000
+
+linux-meta (4.4.0.50.53) xenial; urgency=medium
+
+  * linux ABI 4.4.0-50
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Wed, 23 Nov 2016 10:37:32 +0000
+
+linux-meta (4.4.0.49.52) xenial; urgency=medium
+
+  * linux ABI 4.4.0-49
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Fri, 11 Nov 2016 16:08:22 +0000
+
+linux-meta (4.4.0.48.51) xenial; urgency=medium
+
+  * linux ABI 4.4.0-48
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Thu, 10 Nov 2016 11:14:56 +0000
+
+linux-meta (4.4.0.47.50) xenial; urgency=medium
+
+  * linux ABI 4.4.0-47
+
+ -- Kamal Mostafa <kamal@canonical.com>  Wed, 26 Oct 2016 11:58:25 -0700
+
+linux-meta (4.4.0.46.49) xenial; urgency=medium
+
+  * linux ABI 4.4.0-45
+
+ -- Seth Forshee <seth.forshee@canonical.com>  Thu, 20 Oct 2016 09:24:56 -0500
+
+linux-meta (4.4.0.45.48) xenial; urgency=medium
+
+  * linux ABI 4.4.0-45
+
+ -- Stefan Bader <stefan.bader@canonical.com>  Tue, 18 Oct 2016 17:06:43 +0200
+
+linux-meta (4.4.0.44.47) xenial; urgency=medium
+
+  * linux ABI 4.4.0-44
+
+ -- Stefan Bader <stefan.bader@canonical.com>  Mon, 17 Oct 2016 10:22:22 +0200
+
+linux-meta (4.4.0.43.45) xenial; urgency=medium
+
+  * linux ABI 4.4.0-43
+
+ -- Seth Forshee <seth.forshee@canonical.com>  Tue, 11 Oct 2016 12:03:28 -0500
+
+linux-meta (4.4.0.42.44) xenial; urgency=medium
+
+  * linux ABI 4.4.0-42
+
+ -- Seth Forshee <seth.forshee@canonical.com>  Fri, 07 Oct 2016 16:33:02 -0500
+
+linux-meta (4.4.0.41.43) xenial; urgency=medium
+
+  * linux ABI 4.4.0-41
+
+ -- Kamal Mostafa <kamal@canonical.com>  Tue, 27 Sep 2016 10:28:46 -0700
+
+linux-meta (4.4.0.40.42) xenial; urgency=medium
+
+  * linux ABI 4.4.0-40
+
+ -- Kamal Mostafa <kamal@canonical.com>  Fri, 23 Sep 2016 08:57:08 -0700
+
+linux-meta (4.4.0.39.41) xenial; urgency=medium
+
+  * linux ABI 4.4.0-39
+
+ -- Joseph Salisbury <joseph.salisbury@canonical.com>  Tue, 20 Sep 2016 15:02:04 -0400
+
+linux-meta (4.4.0.38.40) xenial; urgency=medium
+
+  * linux ABI 4.4.0-38
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Tue, 06 Sep 2016 09:21:39 -0600
+
+linux-meta (4.4.0.37.39) xenial; urgency=medium
+
+  * linux ABI 4.4.0-37
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Mon, 29 Aug 2016 10:33:20 -0600
+
+linux-meta (4.4.0.36.38) xenial; urgency=medium
+
+  * linux ABI 4.4.0-36
+
+ -- Stefan Bader <stefan.bader@canonical.com>  Thu, 11 Aug 2016 19:37:43 +0200
+
+linux-meta (4.4.0.35.37) xenial; urgency=medium
+
+  * linux ABI 4.4.0-35
+
+ -- Stefan Bader <stefan.bader@canonical.com>  Tue, 09 Aug 2016 17:00:36 +0200
+
+linux-meta (4.4.0.34.36) xenial; urgency=medium
+
+  * linux ABI 4.4.0-34
+
+ -- Seth Forshee <seth.forshee@canonical.com>  Wed, 27 Jul 2016 10:48:31 -0500
+
+linux-meta (4.4.0.33.35) xenial; urgency=medium
+
+  * linux ABI 4.4.0-33
+
+ -- Seth Forshee <seth.forshee@canonical.com>  Fri, 22 Jul 2016 13:49:24 -0500
+
+linux-meta (4.4.0.32.34) xenial; urgency=medium
+
+  * linux ABI 4.4.0-32
+
+ -- Seth Forshee <seth.forshee@canonical.com>  Tue, 19 Jul 2016 11:24:58 -0500
+
+linux-meta (4.4.0.31.33) xenial; urgency=low
+
+  * linux ABI 4.4.0-31
+
+ -- Kamal Mostafa <kamal@canonical.com>  Tue, 12 Jul 2016 16:57:06 -0700
+
+linux-meta (4.4.0.30.32) xenial; urgency=low
+
+  * linux ABI 4.4.0-30
+
+ -- Kamal Mostafa <kamal@canonical.com>  Thu, 30 Jun 2016 13:01:22 -0700
+
+linux-meta (4.4.0.29.31) xenial; urgency=low
+
+  * linux ABI 4.4.0-29
+
+ -- Kamal Mostafa <kamal@canonical.com>  Tue, 28 Jun 2016 11:26:40 -0700
+
+linux-meta (4.4.0.28.30) xenial; urgency=low
+
+  * No change rebuild, previous upload was missing ABI number in
+    debian/control.
+
+ -- Andy Whitcroft <apw@canonical.com>  Sat, 25 Jun 2016 11:30:32 +0100
+
+linux-meta (4.4.0.28.29) xenial; urgency=medium
+
+  * linux ABI 4.4.0-28
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Fri, 24 Jun 2016 10:06:31 +0100
+
+linux-meta (4.4.0.27.28) xenial; urgency=medium
+
+  * linux ABI 4.4.0-27
+
+ -- Kamal Mostafa <kamal@canonical.com>  Tue, 21 Jun 2016 10:24:43 -0700
+
+linux-meta (4.4.0.26.27) xenial; urgency=medium
+
+  * linux ABI 4.4.0-26
+
+ -- Kamal Mostafa <kamal@canonical.com>  Mon, 20 Jun 2016 09:52:43 -0700
+
+linux-meta (4.4.0.25.26) xenial; urgency=medium
+
+  * linux ABI 4.4.0-25
+
+ -- Kamal Mostafa <kamal@canonical.com>  Fri, 10 Jun 2016 10:48:34 -0700
+
+linux-meta (4.4.0.24.25) xenial; urgency=medium
+
+  * linux ABI 4.4.0-24
+
+ -- Kamal Mostafa <kamal@canonical.com>  Fri, 03 Jun 2016 12:41:47 -0700
+
+linux-meta (4.4.0.23.24) xenial; urgency=medium
+
+  * linux ABI 4.4.0-23
+
+ -- Kamal Mostafa <kamal@canonical.com>  Mon, 16 May 2016 15:45:03 -0700
+
+linux-meta (4.4.0.22.23) xenial; urgency=medium
+
+  * linux ABI 4.4.0-22
+
+ -- Kamal Mostafa <kamal@canonical.com>  Sun, 24 Apr 2016 13:59:46 -0700
+
+linux-meta (4.4.0.21.22) xenial; urgency=medium
+
+  * linux ABI 4.4.0-21
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Mon, 18 Apr 2016 12:22:58 -0600
+
+linux-meta (4.4.0.20.21) xenial; urgency=medium
+
+  * linux ABI 4.4.0-20
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Fri, 15 Apr 2016 14:37:15 -0600
+
+linux-meta (4.4.0.19.20) xenial; urgency=medium
+
+  * linux ABI 4.4.0-19
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Thu, 14 Apr 2016 06:23:57 -0600
+
+linux-meta (4.4.0.18.19) xenial; urgency=medium
+
+  * linux ABI 4.4.0-18
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Wed, 06 Apr 2016 14:52:21 +0100
+
+linux-meta (4.4.0.17.18) xenial; urgency=medium
+
+  * linux ABI 4.4.0-17
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Tue, 29 Mar 2016 10:50:18 -0600
+
+linux-meta (4.4.0.16.17) xenial; urgency=low
+
+  * add linux-crashdump to s390x and armhf.  (LP: #1560015)
+  * linux ABI 4.4.0-16
+
+ -- Andy Whitcroft <apw@canonical.com>  Mon, 21 Mar 2016 12:39:08 +0000
+
+linux-meta (4.4.0.15.16) xenial; urgency=medium
+
+  * linux ABI 4.4.0-15
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Fri, 18 Mar 2016 12:57:33 -0600
+
+linux-meta (4.4.0.14.15) xenial; urgency=medium
+
+  * linux ABI 4.4.0-14
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Tue, 15 Mar 2016 06:50:36 -0600
+
+linux-meta (4.4.0.13.14) xenial; urgency=medium
+
+  * linux ABI 4.4.0-13
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Fri, 11 Mar 2016 12:19:16 -0700
+
+linux-meta (4.4.0.12.13) xenial; urgency=medium
+
+  * linux ABI 4.4.0-12
+  * Build-Depends: on the common headers to ensure we wait for _all to build
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Tue, 08 Mar 2016 13:16:50 -0700
+
+linux-meta (4.4.0.11.12) xenial; urgency=medium
+
+  * linux ABI 4.4.0-11
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Sat, 05 Mar 2016 07:04:51 -0700
+
+linux-meta (4.4.0.10.11) xenial; urgency=medium
+
+  * linux ABI 4.4.0-10
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Wed, 02 Mar 2016 07:44:40 -0700
+
+linux-meta (4.4.0.9.10) xenial; urgency=medium
+
+  * linux ABI 4.4.0-9
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Mon, 29 Feb 2016 12:20:17 -0700
+
+linux-meta (4.4.0.8.9) xenial; urgency=low
+
+  * linux ABI 4.4.0-8
+
+ -- Andy Whitcroft <apw@canonical.com>  Wed, 24 Feb 2016 23:14:16 +0000
+
+linux-meta (4.4.0.7.8) xenial; urgency=medium
+
+  * linux ABI 4.4.0-7
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Thu, 18 Feb 2016 13:38:25 -0700
+
+linux-meta (4.4.0.6.7) xenial; urgency=low
+
+  * Drop linux-cloud-tools-virtual for ppc64el and s390x as we actually
+    do not generate those currently.
+
+ -- Andy Whitcroft <apw@canonical.com>  Wed, 17 Feb 2016 15:57:15 +0000
+
+linux-meta (4.4.0.6.6) xenial; urgency=low
+
+  * virtual: add linux-tools-virtual, linux-cloud-tools-virtual, and
+    linux-image-extra-virtual linkage for ppc64el and s390x.
+  * transitional packages: drop updates for transitional which were
+    uninstallable in Trusty and have no candidates in Xenial.
+
+ -- Andy Whitcroft <apw@canonical.com>  Wed, 17 Feb 2016 13:45:59 +0000
+
+linux-meta (4.4.0.6.5) xenial; urgency=low
+
+  [ Andy Whitcroft ]
+  * Add 14.04 to 16.04 transitional packages (LP: #1526931):
+   - add packages for the HWE auto upgrade packages.
+   - add packages for all of the lts backport packages.
+
+  [ Tim Gardner ]
+  * linux ABI 4.4.0-6 
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Tue, 16 Feb 2016 13:20:37 -0700
+
+linux-meta (4.4.0.5.4) xenial; urgency=medium
+
+  * * linux ABI 4.4.0-5
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Thu, 11 Feb 2016 12:15:14 -0700
+
+linux-meta (4.4.0.4.3) xenial; urgency=low
+
+  * linux ABI 4.4.0-4
+  * ensure we rebuild debian/control on clean
+
+ -- Andy Whitcroft <apw@canonical.com>  Fri, 05 Feb 2016 18:04:46 +0000
+
+linux-meta (4.4.0.3.2) xenial; urgency=medium
+
+  * linux ABI 4.4.0-3
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Tue, 02 Feb 2016 12:50:33 -0700
+
+linux-meta (4.4.0.2.1) xenial; urgency=low
+
+  * linux ABI 4.4.0-2
+
+ -- Andy Whitcroft <apw@canonical.com>  Thu, 28 Jan 2016 16:20:15 +0000
+
+linux-meta (4.4.0.1.0) xenial; urgency=medium
+
+  * linux ABI 4.4.0-1
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Thu, 21 Jan 2016 15:06:42 -0700
+
+linux-meta (4.4.0.0.2) xenial; urgency=low
+
+  * s390x: add s390x to -generic and -virtual.
+  * s390x: add s390x to build dependancies to hold off testing.
+
+ -- Andy Whitcroft <apw@canonical.com>  Fri, 18 Dec 2015 11:21:14 +0000
+
+linux-meta (4.4.0.0.1) xenial; urgency=medium
+
+  * linux ABI 4.4.0-0
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Thu, 03 Dec 2015 09:30:37 -0700
+
+linux-meta (4.3.0.0.0) xenial; urgency=medium
+
+  * linux ABI 4.3.0-0
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Wed, 04 Nov 2015 09:00:53 -0600
+
+linux-meta (4.2.0.17.19) wily; urgency=low
+
+  * linux ABI 4.2.0-17
+
+  * Revert temporary addition of virtualbox-guest-modules [i386 amd64
+    x32] provides.  (LP: #1507588)
+
+ -- Brad Figg <brad.figg@canonical.com>  Thu, 22 Oct 2015 08:52:02 -0700
+
+linux-meta (4.2.0.16.18) wily; urgency=low
+
+  * temporarily add virtualbox-guest-modules [i386 amd64 x32] provides
+    to fix vbox installs.  (See LP: 1507588)
+
+ -- Andy Whitcroft <apw@canonical.com>  Mon, 19 Oct 2015 15:10:01 +0100
+
+linux-meta (4.2.0.16.17) wily; urgency=medium
+
+  * linux ABI 4.2.0-16
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Thu, 08 Oct 2015 07:53:09 -0600
+
+linux-meta (4.2.0.15.16) wily; urgency=medium
+
+  * linux ABI 4.2.0-15
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Tue, 06 Oct 2015 06:08:21 -0600
+
+linux-meta (4.2.0.14.15) wily; urgency=medium
+
+  * linux ABI 4.2.0-14
+  * Makefile: ignore dependencies when building the package
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Thu, 01 Oct 2015 12:07:00 -0600
+
+linux-meta (4.2.0.13.14) wily; urgency=low
+
+  * move linux-signed linux-image-extra-* dependencies over to linux-meta.
+    (LP: #1501235)
+
+ -- Andy Whitcroft <apw@canonical.com>  Wed, 30 Sep 2015 09:58:31 +0100
+
+linux-meta (4.2.0.13.13) wily; urgency=low
+
+  * linux ABI 4.2.0-13
+  * add linux-signed-lowlatency packages.  (LP: #1500910)
+
+ -- Andy Whitcroft <apw@canonical.com>  Tue, 29 Sep 2015 15:58:35 +0100
+
+linux-meta (4.2.0.12.12) wily; urgency=medium
+
+  * linux ABI 4.2.0-12
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Fri, 25 Sep 2015 07:08:38 -0600
+
+linux-meta (4.2.0.11.11) wily; urgency=medium
+
+  * linux ABI 4.2.0-11
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Mon, 21 Sep 2015 15:20:37 -0600
+
+linux-meta (4.2.0.10.10) wily; urgency=medium
+
+  * linux ABI 4.2.0-10
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Thu, 10 Sep 2015 12:22:56 -0600
+
+linux-meta (4.2.0.9.9) wily; urgency=medium
+
+  * linux ABI 4.2.0-9
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Wed, 09 Sep 2015 13:04:28 -0600
+
+linux-meta (4.2.0.8.8) wily; urgency=medium
+
+  * linux ABI 4.2.0-8
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Tue, 08 Sep 2015 13:07:21 -0600
+
+linux-meta (4.2.0.7.7) wily; urgency=medium
+
+  * linux ABI 4.2.0-7
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Mon, 31 Aug 2015 09:08:07 -0600
+
+linux-meta (4.2.0.6.6) wily; urgency=medium
+
+  * linux ABI 4.2.0-6
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Mon, 24 Aug 2015 09:38:31 -0600
+
+linux-meta (4.2.0.5.5) wily; urgency=medium
+
+  * linux ABI 4.2.0-5
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Thu, 20 Aug 2015 14:25:23 -0600
+
+linux-meta (4.2.0.4.4) wily; urgency=medium
+
+  *   * linux ABI 4.2.0-4
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Tue, 11 Aug 2015 06:17:51 -0600
+
+linux-meta (4.2.0.3.3) wily; urgency=medium
+
+  * linux ABI 4.2.0-3
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Wed, 05 Aug 2015 08:35:48 -0600
+
+linux-meta (4.1.0.3.3) wily; urgency=low
+
+  * linux ABI 4.1.0-3
+
+ -- Andy Whitcroft <apw@canonical.com>  Tue, 28 Jul 2015 13:36:45 +0100
+
+linux-meta (4.1.0.2.2) wily; urgency=medium
+
+  * linux ABI 4.1.0-2
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Wed, 22 Jul 2015 12:23:21 -0600
+
+linux-meta (4.1.0.1.1) wily; urgency=low
+
+  * linux ABI 4.1.0-1
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Mon, 20 Jul 2015 10:21:22 -0700
+
+linux-meta (4.0.0.4.6) wily; urgency=low
+
+  * fix up Vcs-Git: to point to launchpad
+  * linux ABI 4.0.0-4
+
+ -- Andy Whitcroft <apw@canonical.com>  Fri, 03 Jul 2015 16:23:39 +0100
+
+linux-meta (4.0.0.3.5) wily; urgency=low
+
+  * linux ABI 4.0.0-3
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Tue, 23 Jun 2015 13:34:31 -0700
+
+linux-meta (4.0.0.2.3) wily; urgency=low
+
+  * linux ABI 4.0.0-2
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Mon, 15 Jun 2015 15:08:17 -0700
+
+linux-meta (4.0.0.1.2) wily; urgency=medium
+
+  * Fixes ppc64el build failure, add OverlayFS V1 support.
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Fri, 12 Jun 2015 09:28:31 -0600
+
+linux-meta (4.0.0.1.1) wily; urgency=low
+
+  * linux ABI 4.0.0-1
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Tue, 09 Jun 2015 05:33:29 -0700
+
+linux-meta (3.19.0.22.21) vivid; urgency=medium
+
+  * linux ABI 3.19.0-22
+
+ -- Brad Figg <brad.figg@canonical.com>  Tue, 16 Jun 2015 10:10:30 -0700
+
+linux-meta (3.19.0.21.20) vivid; urgency=medium
+
+  * linux ABI 3.19.0-21
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Thu, 11 Jun 2015 11:59:03 +0100
+
+linux-meta (3.19.0.20.19) vivid; urgency=medium
+
+  * linux ABI 3.19.0-20
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Fri, 29 May 2015 10:51:07 +0100
+
+linux-meta (3.19.0.19.18) vivid; urgency=medium
+
+  * linux ABI 3.19.0-19
+
+ -- Brad Figg <brad.figg@canonical.com>  Tue, 26 May 2015 14:32:38 -0700
+
+linux-meta (3.19.0.18.17) vivid; urgency=medium
+
+  * linux ABI 3.19.0-18
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Tue, 19 May 2015 19:08:55 +0100
+
+linux-meta (3.19.0.17.16) vivid; urgency=medium
+
+  * linux ABI 3.29.0-17
+
+ -- Brad Figg <brad.figg@canonical.com>  Wed, 06 May 2015 09:35:36 -0700
+
+linux-meta (3.19.0.16.15) vivid; urgency=medium
+
+  * linux ABI 3.29.0-16
+
+ -- Luis Henriques <luis.henriques@canonical.com>  Thu, 30 Apr 2015 12:45:15 +0100
+
+linux-meta (3.19.0.15.14) vivid; urgency=low
+
+  * linux ABI 3.29.0-15
+
+ -- Andy Whitcroft <apw@canonical.com>  Fri, 17 Apr 2015 00:45:00 +0100
+
+linux-meta (3.19.0.14.13) vivid; urgency=low
+
+  [ Andy Whitcroft ]
+
+  * future proof VCS links
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 10 Apr 2015 10:40:45 -0700
+
+linux-meta (3.19.0.13.12) vivid; urgency=low
+
+  [ Andy Whitcroft ]
+
+  * rejig so we correctly link to our own packages
+  * make the meta-source trivially backportable
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Thu, 09 Apr 2015 07:46:50 -0700
+
+linux-meta (3.19.0.12.11) vivid; urgency=low
+
+  * linux ABI 3.29.0-12
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Thu, 02 Apr 2015 11:13:49 -0700
+
+linux-meta (3.19.0.11.10) vivid; urgency=low
+
+  * linux ABI 3.19.0-11
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Tue, 31 Mar 2015 09:42:07 -0700
+
+linux-meta (3.19.0.10.9) vivid; urgency=low
+
+  * linux ABI 3.19.0-10
+
+ -- Andy Whitcroft <apw@canonical.com>  Mon, 23 Mar 2015 16:23:21 +0000
+
+linux-meta (3.19.0.9.8) vivid; urgency=low
+
+  * linux ABI 3.19.0-9
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Tue, 10 Mar 2015 21:05:10 -0700
+
+linux-meta (3.19.0.8.7) vivid; urgency=low
+
+  * linux ABI 3.19.0-8
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Mon, 09 Mar 2015 10:33:04 -0700
+
+linux-meta (3.19.0.7.6) vivid; urgency=low
+
+  * linux ABI 3.19.0-7
+
+ -- Andy Whitcroft <apw@canonical.com>  Thu, 26 Feb 2015 20:42:56 +0000
+
+linux-meta (3.19.0.6.5) vivid; urgency=low
+
+  * linux ABI 3.19.0-6
+
+ -- Andy Whitcroft <apw@canonical.com>  Tue, 24 Feb 2015 09:45:57 +0000
+
+linux-meta (3.19.0.5.4) vivid; urgency=low
+
+  * linux ABI 3.19.0-5
+
+ -- Andy Whitcroft <apw@canonical.com>  Tue, 10 Feb 2015 17:14:58 +0000
+
+linux-meta (3.19.0.4.3) vivid; urgency=low
+
+  * linux ABI 3.19.0-4
+
+ -- Andy Whitcroft <apw@canonical.com>  Tue, 03 Feb 2015 07:41:15 +0200
+
+linux-meta (3.19.0.3.2) vivid; urgency=low
+
+  [ Kamal Mostafa ]
+
+  * [Packaging] force "dpkg-source -I -i" behavior
+
+  [ Andy Whitcroft]
+
+  * linux ABI 3.19.0-3
+
+ -- Andy Whitcroft <apw@canonical.com>  Mon, 26 Jan 2015 12:02:06 +0000
+
+linux-meta (3.19.0.2.1) vivid; urgency=low
+
+  * linux ABI 3.19.0-2
+
+ -- Andy Whitcroft <apw@canonical.com>  Tue, 13 Jan 2015 13:14:55 +0000
+
+linux-meta (3.18.0.14.14) vivid; urgency=low
+
+  * linux ABI 3.18.0-14
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Tue, 17 Feb 2015 19:43:48 -0800
+
+linux-meta (3.18.0.13.13) vivid; urgency=low
+
+  * linux ABI 3.18.0-13
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 06 Feb 2015 10:48:29 +0200
+
+linux-meta (3.18.0.12.12) vivid; urgency=low
+
+  * linux ABI 3.18.0-12
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Wed, 28 Jan 2015 13:28:03 -0800
+
+linux-meta (3.18.0.11.11) vivid; urgency=low
+
+  [ Kamal Mostafa ]
+
+  * [Packaging] force "dpkg-source -I -i" behavior
+
+  [ Leann Ogasawara ]
+
+  * linux ABI 3.18.0-11
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 23 Jan 2015 13:13:46 -0800
+
+linux-meta (3.18.0.10.10) vivid; urgency=low
+
+  * linux ABI 3.18.0-10
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Thu, 22 Jan 2015 12:41:33 -0800
+
+linux-meta (3.18.0.9.9) vivid; urgency=low
+
+  * linux ABI 3.18.0-9
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Mon, 12 Jan 2015 11:33:16 -0800
+
+linux-meta (3.18.0.8.8) vivid; urgency=low
+
+  * linux ABI 3.18.0-8
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Mon, 05 Jan 2015 06:35:52 -0800
+
+linux-meta (3.18.0.7.7) vivid; urgency=low
+
+  * linux ABI 3.18.0-7
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Thu, 11 Dec 2014 08:51:00 -0800
+
+linux-meta (3.18.0.6.6) vivid; urgency=low
+
+  * linux ABI 3.18.0-6
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Mon, 08 Dec 2014 09:27:38 -0800
+
+linux-meta (3.18.0.5.5) vivid; urgency=low
+
+  * linux ABI 3.18.0-5
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Mon, 01 Dec 2014 10:26:41 -0800
+
+linux-meta (3.18.0.4.4) vivid; urgency=low
+
+  * linux ABI 3.18.0-4
+
+ -- Leann Ogasawara <leann.ogasawara@canonical.com>  Mon, 24 Nov 2014 13:53:33 -0800
+
+linux-meta (3.18.0.3.3) vivid; urgency=low
+
+  * linux ABI 3.18.0-3
+
+ -- Andy Whitcroft <apw@canonical.com>  Tue, 11 Nov 2014 18:11:08 +0000
+
+linux-meta (3.18.0.2.2) vivid; urgency=low
+
+  * linux ABI 3.18.0-2
+
+  [ Andy Whitcroft ]
+
+  * downgrade thermald to a Recommends: so that it can be removed when
+    it is not needed.  (LP: #1387144)
+
+ -- Andy Whitcroft <apw@canonical.com>  Thu, 30 Oct 2014 11:37:25 +0000
+
+linux-meta (3.18.0.1.1) vivid; urgency=medium
+
+  * linux ABI 3.18.0-1
+
+ -- Tim Gardner <tim.gardner@canonical.com>  Wed, 29 Oct 2014 09:10:53 -0600
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..5ce3867
--- /dev/null
+++ b/debian/control.common
@@ -0,0 +1,34 @@ 
+Source: linux-meta@SUFFIX@
+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,
+ linux-headers-@kernel-abi-version@,
+ linux-headers-@kernel-abi-version@-generic [i386 amd64 armhf arm64 ppc64el s390x],
+ linux-headers-@kernel-abi-version@-powerpc-smp [powerpc],
+Vcs-Git: git://git.launchpad.net/~ubuntu-kernel/ubuntu/+source/linux-meta/+git/@SERIES@
+
+Package: linux-source@SUFFIX@
+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-crashdump@SUFFIX@
+Architecture: i386 amd64 armhf ppc64el s390x
+Section: devel
+Depends: ${misc:Depends}, kdump-tools, grub-pc (>= 1.96+20090611-1ubuntu2) [i386 amd64] | grub-efi-ia32 [i386 amd64] | grub-efi-amd64 [i386 amd64] | grub (>= 0.97-29ubuntu24) [i386 amd64]
+Recommends: apport
+Suggests: crash
+Description: Linux kernel crashdump setup for the latest generic kernel
+ This package installs all the needed infrastructure 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.
+
diff --git a/debian/control.d/generic b/debian/control.d/generic
new file mode 100644
index 0000000..cd1e457
--- /dev/null
+++ b/debian/control.d/generic
@@ -0,0 +1,48 @@ 
+Package: linux-headers-generic@SUFFIX@
+Architecture: i386 amd64 armhf arm64 ppc64el s390x
+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@SUFFIX@
+Architecture: i386 amd64 armhf arm64 ppc64el s390x
+Section: kernel
+Priority: optional
+Depends: ${misc:Depends}, linux-image-${kernel-abi-version}-generic, linux-image-extra-${kernel-abi-version}-generic [i386 amd64 ppc64el s390x], linux-firmware
+Recommends: thermald [i386 amd64]
+Description: Generic Linux kernel image
+ This package will always depend on the latest generic kernel image
+ available.
+
+Package: linux-tools-generic@SUFFIX@
+Architecture: i386 amd64 armhf arm64 ppc64el s390x
+Section: kernel
+Priority: optional
+Provides: linux-tools
+Depends: ${misc:Depends}, linux-tools-${kernel-abi-version}-generic
+Description: Generic Linux kernel tools
+ This package will always depend on the latest generic kernel tools
+ available.
+
+Package: linux-cloud-tools-generic@SUFFIX@
+Architecture: i386 amd64
+Section: kernel
+Priority: optional
+Provides: linux-cloud-tools
+Depends: ${misc:Depends}, linux-cloud-tools-${kernel-abi-version}-generic
+Description: Generic Linux kernel cloud tools
+ This package will always depend on the latest generic kernel cloud tools
+ available.
+
+Package: linux-generic@SUFFIX@
+Architecture: i386 amd64 armhf arm64 ppc64el s390x
+Section: kernel
+Priority: optional
+Depends: ${misc:Depends}, linux-image-generic@SUFFIX@ (= ${binary:Version}), linux-headers-generic@SUFFIX@ (= ${binary:Version})
+Description: Complete Generic Linux kernel and headers
+ This package will always depend on the latest complete generic Linux kernel
+ and headers.
+
diff --git a/debian/control.d/generic-lpae b/debian/control.d/generic-lpae
new file mode 100644
index 0000000..61b42a3
--- /dev/null
+++ b/debian/control.d/generic-lpae
@@ -0,0 +1,38 @@ 
+Package: linux-headers-generic-lpae@SUFFIX@
+Architecture: armhf
+Section: kernel
+Priority: optional
+Depends: ${misc:Depends}, linux-headers-${kernel-abi-version}-generic-lpae
+Description: Generic Linux kernel headers
+ This package will always depend on the latest generic-lpae kernel headers
+ available.
+
+Package: linux-image-generic-lpae@SUFFIX@
+Architecture: armhf
+Section: kernel
+Priority: optional
+Depends: ${misc:Depends}, linux-image-${kernel-abi-version}-generic-lpae, linux-firmware
+Recommends: thermald [i386 amd64]
+Description: Generic Linux kernel image
+ This package will always depend on the latest generic-lpae kernel image
+ available.
+
+Package: linux-tools-generic-lpae@SUFFIX@
+Architecture: armhf
+Section: kernel
+Priority: optional
+Provides: linux-tools
+Depends: ${misc:Depends}, linux-tools-${kernel-abi-version}-generic-lpae
+Description: Generic Linux kernel tools
+ This package will always depend on the latest generic-lpae kernel tools
+ available.
+
+Package: linux-generic-lpae@SUFFIX@
+Architecture: armhf
+Section: kernel
+Priority: optional
+Depends: ${misc:Depends}, linux-image-generic-lpae@SUFFIX@ (= ${binary:Version}), linux-headers-generic-lpae@SUFFIX@ (= ${binary:Version})
+Description: Complete Generic Linux kernel and headers
+ This package will always depend on the latest complete generic-lpae Linux kernel
+ and headers.
+
diff --git a/debian/control.d/lowlatency b/debian/control.d/lowlatency
new file mode 100644
index 0000000..7f4fb42
--- /dev/null
+++ b/debian/control.d/lowlatency
@@ -0,0 +1,48 @@ 
+Package: linux-headers-lowlatency@SUFFIX@
+Architecture: i386 amd64
+Section: devel
+Priority: optional
+Depends: ${misc:Depends}, linux-headers-${kernel-abi-version}-lowlatency
+Description: lowlatency Linux kernel headers
+ This package will always depend on the latest lowlatency kernel headers
+ available.
+
+Package: linux-image-lowlatency@SUFFIX@
+Architecture: i386 amd64
+Section: kernel
+Priority: optional
+Depends: ${misc:Depends}, linux-image-${kernel-abi-version}-lowlatency, linux-firmware
+Recommends: thermald [i386 amd64]
+Description: lowlatency Linux kernel image
+ This package will always depend on the latest lowlatency kernel image
+ available.
+
+Package: linux-tools-lowlatency@SUFFIX@
+Architecture: i386 amd64
+Section: kernel
+Priority: optional
+Provides: linux-tools
+Depends: ${misc:Depends}, linux-tools-${kernel-abi-version}-lowlatency
+Description: lowlatency Linux kernel tools
+ This package will always depend on the latest lowlatency kernel tools
+ available.
+
+Package: linux-cloud-tools-lowlatency@SUFFIX@
+Architecture: i386 amd64
+Section: kernel
+Priority: optional
+Provides: linux-cloud-tools
+Depends: ${misc:Depends}, linux-cloud-tools-${kernel-abi-version}-lowlatency
+Description: lowlatency Linux kernel cloud tools
+ This package will always depend on the latest lowlatency kernel cloud tools
+ available.
+
+Package: linux-lowlatency@SUFFIX@
+Architecture: i386 amd64
+Section: kernel
+Priority: optional
+Depends: ${misc:Depends}, linux-image-lowlatency@SUFFIX@ (= ${binary:Version}), linux-headers-lowlatency@SUFFIX@ (= ${binary:Version})
+Description: Complete lowlatency Linux kernel
+ This package will always depend on the latest complete lowlatency Linux kernel
+ available.
+
diff --git a/debian/control.d/powerpc-e500mc b/debian/control.d/powerpc-e500mc
new file mode 100644
index 0000000..87bcbf4
--- /dev/null
+++ b/debian/control.d/powerpc-e500mc
@@ -0,0 +1,37 @@ 
+Package: linux-headers-powerpc-e500mc@SUFFIX@
+Architecture: powerpc
+Section: kernel
+Priority: optional
+Depends: linux-headers-${kernel-abi-version}-powerpc-e500mc
+Description: Linux kernel headers on Freescale Power e500mc.
+ This package will always depend on the latest kernel headers available
+ for Freescale Power e500mc support.
+
+Package: linux-image-powerpc-e500mc@SUFFIX@
+Architecture: powerpc
+Section: kernel
+Priority: optional
+Depends: linux-image-${kernel-abi-version}-powerpc-e500mc, linux-firmware
+Description: Linux kernel image on Freescale Power e500mc.
+ This package will always depend on the latest kernel image available
+ for Freescale Power e500mc support.
+
+Package: linux-tools-powerpc-e500mc@SUFFIX@
+Architecture: powerpc
+Section: kernel
+Priority: optional
+Provides: linux-tools
+Depends: ${misc:Depends}, linux-tools-${kernel-abi-version}-powerpc-e500mc
+Description: Linux kernel tools for Freescale Power e500mc.
+ This package will always depend on the latest e500mc kernel tools
+ available.
+
+Package: linux-powerpc-e500mc@SUFFIX@
+Architecture: powerpc
+Section: kernel
+Priority: optional
+Depends: linux-image-powerpc-e500mc@SUFFIX@, linux-headers-powerpc-e500mc@SUFFIX@
+Description: Complete Linux kernel on Freescale Power e500mc.
+ This package will always depend on the latest complete Linux kernel and headers
+ for Freescale Power e500mc support.
+
diff --git a/debian/control.d/powerpc-smp b/debian/control.d/powerpc-smp
new file mode 100644
index 0000000..b377e6f
--- /dev/null
+++ b/debian/control.d/powerpc-smp
@@ -0,0 +1,40 @@ 
+Package: linux-headers-powerpc-smp@SUFFIX@
+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.
+
+Package: linux-image-powerpc-smp@SUFFIX@
+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-tools-powerpc-smp@SUFFIX@
+Architecture: powerpc
+Section: kernel
+Priority: optional
+Provides: linux-tools
+Depends: ${misc:Depends}, linux-tools-${kernel-abi-version}-powerpc-smp
+Description: Linux kernel tools for PowerPC SMP.
+ This package will always depend on the latest PowerPC SMP kernel tools
+ available.
+
+Package: linux-powerpc-smp@SUFFIX@
+Architecture: powerpc
+Section: kernel
+Priority: optional
+Depends: linux-image-powerpc-smp@SUFFIX@, linux-headers-powerpc-smp@SUFFIX@
+Description: Complete Linux kernel on PowerPC SMP.
+ This package will always depend on the latest complete Linux kernel and headers
+ for PowerPC with SMP support.
+ SMP (symmetric multi-processing) is needed if you have multiple processors.
+
diff --git a/debian/control.d/powerpc64-emb b/debian/control.d/powerpc64-emb
new file mode 100644
index 0000000..6b0eaaa
--- /dev/null
+++ b/debian/control.d/powerpc64-emb
@@ -0,0 +1,37 @@ 
+Package: linux-headers-powerpc64-emb@SUFFIX@
+Architecture: powerpc
+Section: kernel
+Priority: optional
+Depends: linux-headers-${kernel-abi-version}-powerpc64-emb
+Description: Linux kernel headers on PowerPC64 Embedded CPUs.
+ This package will always depend on the latest kernel headers available
+ for PowerPC64 Embedded CPUs support.
+
+Package: linux-image-powerpc64-emb@SUFFIX@
+Architecture: powerpc
+Section: kernel
+Priority: optional
+Depends: linux-image-${kernel-abi-version}-powerpc64-emb, linux-firmware
+Description: Linux kernel image on PowerPC64 Embedded CPUs.
+ This package will always depend on the latest kernel image available
+ for PowerPC64 Embedded CPUs support.
+
+Package: linux-tools-powerpc64-emb@SUFFIX@
+Architecture: powerpc
+Section: kernel
+Priority: optional
+Provides: linux-tools
+Depends: ${misc:Depends}, linux-tools-${kernel-abi-version}-powerpc64-emb
+Description: Linux kernel tools for PowerPC64 Embedded CPUs.
+ This package will always depend on the PowerPC64 Embedded kernel tools
+ available.
+
+Package: linux-powerpc64-emb@SUFFIX@
+Architecture: powerpc
+Section: kernel
+Priority: optional
+Depends: linux-image-powerpc64-emb@SUFFIX@, linux-headers-powerpc64-emb@SUFFIX@
+Description: Complete Linux kernel on PowerPC64 Embedded CPUs.
+ This package will always depend on the latest complete Linux kernel and headers
+ for PowerPC64 Embedded CPUs support.
+
diff --git a/debian/control.d/powerpc64-smp b/debian/control.d/powerpc64-smp
new file mode 100644
index 0000000..58ffa7d
--- /dev/null
+++ b/debian/control.d/powerpc64-smp
@@ -0,0 +1,40 @@ 
+Package: linux-headers-powerpc64-smp@SUFFIX@
+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.
+
+Package: linux-image-powerpc64-smp@SUFFIX@
+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-tools-powerpc64-smp@SUFFIX@
+Architecture: powerpc
+Section: kernel
+Priority: optional
+Provides: linux-tools
+Depends: ${misc:Depends}, linux-tools-${kernel-abi-version}-powerpc64-smp
+Description: Linux kernel tools for PowerPC64 SMP
+ This package will always depend on the latest PowerPC64 SMP kernel tools
+ available.
+
+Package: linux-powerpc64-smp@SUFFIX@
+Architecture: powerpc
+Section: kernel
+Priority: optional
+Depends: linux-image-powerpc64-smp@SUFFIX@, linux-headers-powerpc64-smp@SUFFIX@
+Description: Complete Linux kernel on PowerPC64 SMP.
+ This package will always depend on the latest complete Linux kernel and headers
+ for PowerPC64 with SMP support.
+ SMP (symmetric multi-processing) is needed if you have multiple processors.
+
diff --git a/debian/control.d/signed-generic b/debian/control.d/signed-generic
new file mode 100644
index 0000000..402dc41
--- /dev/null
+++ b/debian/control.d/signed-generic
@@ -0,0 +1,19 @@ 
+Package: linux-signed-image-generic@SUFFIX@
+Architecture: amd64
+Section: kernel
+Priority: optional
+Depends: ${misc:Depends}, linux-signed-image-${kernel-abi-version}-generic, linux-image-extra-${kernel-abi-version}-generic, linux-firmware
+Recommends: thermald [i386 amd64]
+Description: Signed Generic Linux kernel image
+ This package will always depend on the latest generic kernel image
+ available.  Signed with the Ubuntu EFI key.
+
+Package: linux-signed-generic@SUFFIX@
+Architecture: amd64
+Section: kernel
+Priority: optional
+Depends: ${misc:Depends}, linux-signed-image-generic@SUFFIX@ (= ${binary:Version}), linux-headers-generic@SUFFIX@ (= ${binary:Version})
+Description: Complete Signed Generic Linux kernel and headers
+ This package will always depend on the latest complete generic Linux kernel
+ and headers.  Signed with the Ubuntu EFI key.
+
diff --git a/debian/control.d/signed-lowlatency b/debian/control.d/signed-lowlatency
new file mode 100644
index 0000000..9a1c99a
--- /dev/null
+++ b/debian/control.d/signed-lowlatency
@@ -0,0 +1,19 @@ 
+Package: linux-signed-image-lowlatency@SUFFIX@
+Architecture: amd64
+Section: kernel
+Priority: optional
+Depends: ${misc:Depends}, linux-signed-image-${kernel-abi-version}-lowlatency, linux-firmware
+Recommends: thermald [i386 amd64]
+Description: Signed Generic Linux kernel image
+ This package will always depend on the latest lowlatency kernel image
+ available.  Signed with the Ubuntu EFI key.
+
+Package: linux-signed-lowlatency@SUFFIX@
+Architecture: amd64
+Section: kernel
+Priority: optional
+Depends: ${misc:Depends}, linux-signed-image-lowlatency@SUFFIX@ (= ${binary:Version}), linux-headers-lowlatency@SUFFIX@ (= ${binary:Version})
+Description: Complete Signed Generic Linux kernel and headers
+ This package will always depend on the latest complete lowlatency Linux kernel
+ and headers.  Signed with the Ubuntu EFI key.
+
diff --git a/debian/control.d/transitionals b/debian/control.d/transitionals
new file mode 100644
index 0000000..7a04f75
--- /dev/null
+++ b/debian/control.d/transitionals
@@ -0,0 +1,31 @@ 
+Package: linux-image-hwe-generic-trusty
+Architecture: i386 amd64 armhf arm64 ppc64el
+Section: oldlibs
+Priority: optional
+Depends: linux-image-generic
+Description: Depends on the generic hardware enablement kernel image (dummy transitional package)
+ Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
+
+Package: linux-hwe-generic-trusty
+Architecture: i386 amd64 armhf arm64 ppc64el
+Section: oldlibs
+Priority: optional
+Depends: linux-generic
+Description: Depends on the generic hardware enablement kernel image and headers (dummy transitional packages)
+ Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
+
+Package: linux-image-hwe-virtual-trusty
+Architecture: i386 amd64 ppc64el
+Section: oldlibs
+Priority: optional
+Depends: linux-image-virtual
+Description: Depends on the virtual hardware enablement kernel image (dummy transitional package)
+ Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
+
+Package: linux-hwe-virtual-trusty
+Architecture: i386 amd64 ppc64el
+Section: oldlibs
+Priority: optional
+Depends: linux-virtual
+Description: Depends on the virtual hardware enablement kernel image and headers (dummy transitional package)
+ Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
diff --git a/debian/control.d/virtual b/debian/control.d/virtual
new file mode 100644
index 0000000..c89d534
--- /dev/null
+++ b/debian/control.d/virtual
@@ -0,0 +1,53 @@ 
+Package: linux-headers-virtual@SUFFIX@
+Architecture: i386 amd64 ppc64el s390x
+Section: kernel
+Priority: optional
+Depends: ${misc:Depends}, linux-headers-generic@SUFFIX@ (= ${binary:Version})
+Description: Transitional package.
+ This package will always depend on linux-headers-generic.
+
+Package: linux-image-virtual@SUFFIX@
+Architecture: i386 amd64 ppc64el s390x
+Section: kernel
+Priority: optional
+Depends: ${misc:Depends}, linux-image-${kernel-abi-version}-generic
+Description: This package will always depend on the latest minimal generic kernel image.
+ This package will always depend on the latest minimal generic kernel image
+ used for virtual instances.
+
+Package: linux-tools-virtual@SUFFIX@
+Architecture: i386 amd64 ppc64el s390x
+Section: kernel
+Priority: optional
+Provides: linux-tools
+Depends: ${misc:Depends}, linux-tools-${kernel-abi-version}-generic
+Description: This package will always depend on the latest minimal generic kernel tools.
+ This package will always depend on the latest minimal generic kernel tools
+ used for virtual instances.
+
+Package: linux-cloud-tools-virtual@SUFFIX@
+Architecture: i386 amd64
+Section: kernel
+Priority: optional
+Provides: linux-cloud-tools
+Depends: ${misc:Depends}, linux-cloud-tools-${kernel-abi-version}-generic
+Description: This package will always depend on the latest minimal generic kernel cloud tools.
+ This package will always depend on the latest minimal generic kernel cloud tools
+ used for virtual instances.
+
+Package: linux-virtual@SUFFIX@
+Architecture: i386 amd64 ppc64el s390x
+Section: kernel
+Priority: optional
+Depends: ${misc:Depends}, linux-image-virtual@SUFFIX@ (= ${binary:Version}), linux-headers-virtual@SUFFIX@ (= ${binary:Version})
+Description: Minimal Generic Linux kernel and headers
+ This package will always depend on linux-image-virtual and
+ linux-headers-virtual.
+
+Package: linux-image-extra-virtual@SUFFIX@
+Architecture: i386 amd64 ppc64el s390x
+Section: kernel
+Priority: optional
+Depends: ${misc:Depends}, linux-image-generic@SUFFIX@ (= ${binary:Version})
+Description: Transitional package.
+ This package will always depend on linux-image-generic.
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..a07360c
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,105 @@ 
+#!/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>
+#
+
+# Pull out the source suffix, we intend to maintain an -lts-<series> suffix
+# but otherwise assume this main packages are not intended to have a suffix
+# so that linux-meta and linux-meta-ti-omap4 will behave normally, but
+# linux-meta-lts-vivid will add the series suffix.
+SERIES=$(shell dpkg-parsechangelog | sed -ne 's/^Distribution: *//p' | sed -e 's/-\(security\|updates\|proposed\)$$//')
+SOURCE=$(shell dpkg-parsechangelog | sed -ne 's/^Source: *//p')
+SUFFIX=$(shell dpkg-parsechangelog | sed -ne 's/^Source: *linux-meta-lts/-lts/p')
+
+# 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
+GENERIC_amd64=generic
+GENERIC_armhf=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 \
+			-e 's/@SERIES@/$(SERIES)/g' \
+			-e 's/@SUFFIX@/$(SUFFIX)/g' \
+			-e 's/@kernel-abi-version@/$(KERNEL_ABI_VERSION)/g' \
+			$$i >> debian/control.tmp; \
+		echo >> debian/control.tmp; \
+	done
+	rm -f $@
+	mv debian/control.tmp $@
+
+.PHONY: debian/control
+
+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 fd00c6a..0000000
--- a/meta-source/debian/changelog
+++ /dev/null
@@ -1,812 +0,0 @@ 
-linux-meta (4.4.0.62.65) xenial; urgency=medium
-
-  * linux ABI 4.4.0-62
-
- -- Thadeu Lima de Souza Cascardo <cascardo@canonical.com>  Wed, 18 Jan 2017 10:41:13 -0200
-
-linux-meta (4.4.0.61.64) xenial; urgency=medium
-
-  * linux ABI 4.4.0-61
-
- -- Thadeu Lima de Souza Cascardo <cascardo@canonical.com>  Mon, 16 Jan 2017 14:42:21 -0200
-
-linux-meta (4.4.0.60.63) xenial; urgency=medium
-
-  * linux ABI 4.4.0-60
-
- -- John Donnelly <john.donnelly@canonical.com>  Thu, 12 Jan 2017 17:48:35 +0000
-
-linux-meta (4.4.0.59.62) xenial; urgency=medium
-
-  * linux ABI 4.4.0-59
-
- -- John Donnelly <john.donnelly@canonical.com>  Thu, 05 Jan 2017 13:38:35 +0000
-
-linux-meta (4.4.0.58.61) xenial; urgency=medium
-
-  * linux ABI 4.4.0-58
-
- -- Luis Henriques <luis.henriques@canonical.com>  Tue, 20 Dec 2016 11:18:35 +0000
-
-linux-meta (4.4.0.57.60) xenial; urgency=medium
-
-  * linux ABI 4.4.0-57
-
- -- Brad Figg <brad.figg@canonical.com>  Thu, 08 Dec 2016 12:58:36 -0800
-
-linux-meta (4.4.0.65.59) xenial; urgency=medium
-
-  * linux ABI 4.4.0-56
-
- -- Brad Figg <brad.figg@canonical.com>  Thu, 08 Dec 2016 12:58:36 -0800
-
-linux-meta (4.4.0.55.58) xenial; urgency=medium
-
-  * linux ABI 4.4.0-55
-
- -- Luis Henriques <luis.henriques@canonical.com>  Thu, 08 Dec 2016 14:41:28 +0000
-
-linux-meta (4.4.0.54.57) xenial; urgency=medium
-
-  * linux ABI 4.4.0-54
-
- -- Luis Henriques <luis.henriques@canonical.com>  Wed, 07 Dec 2016 10:19:03 +0000
-
-linux-meta (4.4.0.53.56) xenial; urgency=medium
-
-  * linux ABI 4.4.0-53
-
- -- Brad Figg <brad.figg@canonical.com>  Thu, 01 Dec 2016 11:20:26 -0800
-
-linux-meta (4.4.0.52.55) xenial; urgency=medium
-
-  * linux ABI 4.4.0-52
-
- -- Luis Henriques <luis.henriques@canonical.com>  Wed, 30 Nov 2016 16:02:03 +0000
-
-linux-meta (4.4.0.51.54) xenial; urgency=medium
-
-  * linux ABI 4.4.0-51
-
- -- Luis Henriques <luis.henriques@canonical.com>  Thu, 24 Nov 2016 17:59:43 +0000
-
-linux-meta (4.4.0.50.53) xenial; urgency=medium
-
-  * linux ABI 4.4.0-50
-
- -- Luis Henriques <luis.henriques@canonical.com>  Wed, 23 Nov 2016 10:37:32 +0000
-
-linux-meta (4.4.0.49.52) xenial; urgency=medium
-
-  * linux ABI 4.4.0-49
-
- -- Luis Henriques <luis.henriques@canonical.com>  Fri, 11 Nov 2016 16:08:22 +0000
-
-linux-meta (4.4.0.48.51) xenial; urgency=medium
-
-  * linux ABI 4.4.0-48
-
- -- Luis Henriques <luis.henriques@canonical.com>  Thu, 10 Nov 2016 11:14:56 +0000
-
-linux-meta (4.4.0.47.50) xenial; urgency=medium
-
-  * linux ABI 4.4.0-47
-
- -- Kamal Mostafa <kamal@canonical.com>  Wed, 26 Oct 2016 11:58:25 -0700
-
-linux-meta (4.4.0.46.49) xenial; urgency=medium
-
-  * linux ABI 4.4.0-45
-
- -- Seth Forshee <seth.forshee@canonical.com>  Thu, 20 Oct 2016 09:24:56 -0500
-
-linux-meta (4.4.0.45.48) xenial; urgency=medium
-
-  * linux ABI 4.4.0-45
-
- -- Stefan Bader <stefan.bader@canonical.com>  Tue, 18 Oct 2016 17:06:43 +0200
-
-linux-meta (4.4.0.44.47) xenial; urgency=medium
-
-  * linux ABI 4.4.0-44
-
- -- Stefan Bader <stefan.bader@canonical.com>  Mon, 17 Oct 2016 10:22:22 +0200
-
-linux-meta (4.4.0.43.45) xenial; urgency=medium
-
-  * linux ABI 4.4.0-43
-
- -- Seth Forshee <seth.forshee@canonical.com>  Tue, 11 Oct 2016 12:03:28 -0500
-
-linux-meta (4.4.0.42.44) xenial; urgency=medium
-
-  * linux ABI 4.4.0-42
-
- -- Seth Forshee <seth.forshee@canonical.com>  Fri, 07 Oct 2016 16:33:02 -0500
-
-linux-meta (4.4.0.41.43) xenial; urgency=medium
-
-  * linux ABI 4.4.0-41
-
- -- Kamal Mostafa <kamal@canonical.com>  Tue, 27 Sep 2016 10:28:46 -0700
-
-linux-meta (4.4.0.40.42) xenial; urgency=medium
-
-  * linux ABI 4.4.0-40
-
- -- Kamal Mostafa <kamal@canonical.com>  Fri, 23 Sep 2016 08:57:08 -0700
-
-linux-meta (4.4.0.39.41) xenial; urgency=medium
-
-  * linux ABI 4.4.0-39
-
- -- Joseph Salisbury <joseph.salisbury@canonical.com>  Tue, 20 Sep 2016 15:02:04 -0400
-
-linux-meta (4.4.0.38.40) xenial; urgency=medium
-
-  * linux ABI 4.4.0-38
-
- -- Tim Gardner <tim.gardner@canonical.com>  Tue, 06 Sep 2016 09:21:39 -0600
-
-linux-meta (4.4.0.37.39) xenial; urgency=medium
-
-  * linux ABI 4.4.0-37
-
- -- Tim Gardner <tim.gardner@canonical.com>  Mon, 29 Aug 2016 10:33:20 -0600
-
-linux-meta (4.4.0.36.38) xenial; urgency=medium
-
-  * linux ABI 4.4.0-36
-
- -- Stefan Bader <stefan.bader@canonical.com>  Thu, 11 Aug 2016 19:37:43 +0200
-
-linux-meta (4.4.0.35.37) xenial; urgency=medium
-
-  * linux ABI 4.4.0-35
-
- -- Stefan Bader <stefan.bader@canonical.com>  Tue, 09 Aug 2016 17:00:36 +0200
-
-linux-meta (4.4.0.34.36) xenial; urgency=medium
-
-  * linux ABI 4.4.0-34
-
- -- Seth Forshee <seth.forshee@canonical.com>  Wed, 27 Jul 2016 10:48:31 -0500
-
-linux-meta (4.4.0.33.35) xenial; urgency=medium
-
-  * linux ABI 4.4.0-33
-
- -- Seth Forshee <seth.forshee@canonical.com>  Fri, 22 Jul 2016 13:49:24 -0500
-
-linux-meta (4.4.0.32.34) xenial; urgency=medium
-
-  * linux ABI 4.4.0-32
-
- -- Seth Forshee <seth.forshee@canonical.com>  Tue, 19 Jul 2016 11:24:58 -0500
-
-linux-meta (4.4.0.31.33) xenial; urgency=low
-
-  * linux ABI 4.4.0-31
-
- -- Kamal Mostafa <kamal@canonical.com>  Tue, 12 Jul 2016 16:57:06 -0700
-
-linux-meta (4.4.0.30.32) xenial; urgency=low
-
-  * linux ABI 4.4.0-30
-
- -- Kamal Mostafa <kamal@canonical.com>  Thu, 30 Jun 2016 13:01:22 -0700
-
-linux-meta (4.4.0.29.31) xenial; urgency=low
-
-  * linux ABI 4.4.0-29
-
- -- Kamal Mostafa <kamal@canonical.com>  Tue, 28 Jun 2016 11:26:40 -0700
-
-linux-meta (4.4.0.28.30) xenial; urgency=low
-
-  * No change rebuild, previous upload was missing ABI number in
-    debian/control.
-
- -- Andy Whitcroft <apw@canonical.com>  Sat, 25 Jun 2016 11:30:32 +0100
-
-linux-meta (4.4.0.28.29) xenial; urgency=medium
-
-  * linux ABI 4.4.0-28
-
- -- Luis Henriques <luis.henriques@canonical.com>  Fri, 24 Jun 2016 10:06:31 +0100
-
-linux-meta (4.4.0.27.28) xenial; urgency=medium
-
-  * linux ABI 4.4.0-27
-
- -- Kamal Mostafa <kamal@canonical.com>  Tue, 21 Jun 2016 10:24:43 -0700
-
-linux-meta (4.4.0.26.27) xenial; urgency=medium
-
-  * linux ABI 4.4.0-26
-
- -- Kamal Mostafa <kamal@canonical.com>  Mon, 20 Jun 2016 09:52:43 -0700
-
-linux-meta (4.4.0.25.26) xenial; urgency=medium
-
-  * linux ABI 4.4.0-25
-
- -- Kamal Mostafa <kamal@canonical.com>  Fri, 10 Jun 2016 10:48:34 -0700
-
-linux-meta (4.4.0.24.25) xenial; urgency=medium
-
-  * linux ABI 4.4.0-24
-
- -- Kamal Mostafa <kamal@canonical.com>  Fri, 03 Jun 2016 12:41:47 -0700
-
-linux-meta (4.4.0.23.24) xenial; urgency=medium
-
-  * linux ABI 4.4.0-23
-
- -- Kamal Mostafa <kamal@canonical.com>  Mon, 16 May 2016 15:45:03 -0700
-
-linux-meta (4.4.0.22.23) xenial; urgency=medium
-
-  * linux ABI 4.4.0-22
-
- -- Kamal Mostafa <kamal@canonical.com>  Sun, 24 Apr 2016 13:59:46 -0700
-
-linux-meta (4.4.0.21.22) xenial; urgency=medium
-
-  * linux ABI 4.4.0-21
-
- -- Tim Gardner <tim.gardner@canonical.com>  Mon, 18 Apr 2016 12:22:58 -0600
-
-linux-meta (4.4.0.20.21) xenial; urgency=medium
-
-  * linux ABI 4.4.0-20
-
- -- Tim Gardner <tim.gardner@canonical.com>  Fri, 15 Apr 2016 14:37:15 -0600
-
-linux-meta (4.4.0.19.20) xenial; urgency=medium
-
-  * linux ABI 4.4.0-19
-
- -- Tim Gardner <tim.gardner@canonical.com>  Thu, 14 Apr 2016 06:23:57 -0600
-
-linux-meta (4.4.0.18.19) xenial; urgency=medium
-
-  * linux ABI 4.4.0-18
-
- -- Tim Gardner <tim.gardner@canonical.com>  Wed, 06 Apr 2016 14:52:21 +0100
-
-linux-meta (4.4.0.17.18) xenial; urgency=medium
-
-  * linux ABI 4.4.0-17
-
- -- Tim Gardner <tim.gardner@canonical.com>  Tue, 29 Mar 2016 10:50:18 -0600
-
-linux-meta (4.4.0.16.17) xenial; urgency=low
-
-  * add linux-crashdump to s390x and armhf.  (LP: #1560015)
-  * linux ABI 4.4.0-16
-
- -- Andy Whitcroft <apw@canonical.com>  Mon, 21 Mar 2016 12:39:08 +0000
-
-linux-meta (4.4.0.15.16) xenial; urgency=medium
-
-  * linux ABI 4.4.0-15
-
- -- Tim Gardner <tim.gardner@canonical.com>  Fri, 18 Mar 2016 12:57:33 -0600
-
-linux-meta (4.4.0.14.15) xenial; urgency=medium
-
-  * linux ABI 4.4.0-14
-
- -- Tim Gardner <tim.gardner@canonical.com>  Tue, 15 Mar 2016 06:50:36 -0600
-
-linux-meta (4.4.0.13.14) xenial; urgency=medium
-
-  * linux ABI 4.4.0-13
-
- -- Tim Gardner <tim.gardner@canonical.com>  Fri, 11 Mar 2016 12:19:16 -0700
-
-linux-meta (4.4.0.12.13) xenial; urgency=medium
-
-  * linux ABI 4.4.0-12
-  * Build-Depends: on the common headers to ensure we wait for _all to build
-
- -- Tim Gardner <tim.gardner@canonical.com>  Tue, 08 Mar 2016 13:16:50 -0700
-
-linux-meta (4.4.0.11.12) xenial; urgency=medium
-
-  * linux ABI 4.4.0-11
-
- -- Tim Gardner <tim.gardner@canonical.com>  Sat, 05 Mar 2016 07:04:51 -0700
-
-linux-meta (4.4.0.10.11) xenial; urgency=medium
-
-  * linux ABI 4.4.0-10
-
- -- Tim Gardner <tim.gardner@canonical.com>  Wed, 02 Mar 2016 07:44:40 -0700
-
-linux-meta (4.4.0.9.10) xenial; urgency=medium
-
-  * linux ABI 4.4.0-9
-
- -- Tim Gardner <tim.gardner@canonical.com>  Mon, 29 Feb 2016 12:20:17 -0700
-
-linux-meta (4.4.0.8.9) xenial; urgency=low
-
-  * linux ABI 4.4.0-8
-
- -- Andy Whitcroft <apw@canonical.com>  Wed, 24 Feb 2016 23:14:16 +0000
-
-linux-meta (4.4.0.7.8) xenial; urgency=medium
-
-  * linux ABI 4.4.0-7
-
- -- Tim Gardner <tim.gardner@canonical.com>  Thu, 18 Feb 2016 13:38:25 -0700
-
-linux-meta (4.4.0.6.7) xenial; urgency=low
-
-  * Drop linux-cloud-tools-virtual for ppc64el and s390x as we actually
-    do not generate those currently.
-
- -- Andy Whitcroft <apw@canonical.com>  Wed, 17 Feb 2016 15:57:15 +0000
-
-linux-meta (4.4.0.6.6) xenial; urgency=low
-
-  * virtual: add linux-tools-virtual, linux-cloud-tools-virtual, and
-    linux-image-extra-virtual linkage for ppc64el and s390x.
-  * transitional packages: drop updates for transitional which were
-    uninstallable in Trusty and have no candidates in Xenial.
-
- -- Andy Whitcroft <apw@canonical.com>  Wed, 17 Feb 2016 13:45:59 +0000
-
-linux-meta (4.4.0.6.5) xenial; urgency=low
-
-  [ Andy Whitcroft ]
-  * Add 14.04 to 16.04 transitional packages (LP: #1526931):
-   - add packages for the HWE auto upgrade packages.
-   - add packages for all of the lts backport packages.
-
-  [ Tim Gardner ]
-  * linux ABI 4.4.0-6 
-
- -- Tim Gardner <tim.gardner@canonical.com>  Tue, 16 Feb 2016 13:20:37 -0700
-
-linux-meta (4.4.0.5.4) xenial; urgency=medium
-
-  * * linux ABI 4.4.0-5
-
- -- Tim Gardner <tim.gardner@canonical.com>  Thu, 11 Feb 2016 12:15:14 -0700
-
-linux-meta (4.4.0.4.3) xenial; urgency=low
-
-  * linux ABI 4.4.0-4
-  * ensure we rebuild debian/control on clean
-
- -- Andy Whitcroft <apw@canonical.com>  Fri, 05 Feb 2016 18:04:46 +0000
-
-linux-meta (4.4.0.3.2) xenial; urgency=medium
-
-  * linux ABI 4.4.0-3
-
- -- Tim Gardner <tim.gardner@canonical.com>  Tue, 02 Feb 2016 12:50:33 -0700
-
-linux-meta (4.4.0.2.1) xenial; urgency=low
-
-  * linux ABI 4.4.0-2
-
- -- Andy Whitcroft <apw@canonical.com>  Thu, 28 Jan 2016 16:20:15 +0000
-
-linux-meta (4.4.0.1.0) xenial; urgency=medium
-
-  * linux ABI 4.4.0-1
-
- -- Tim Gardner <tim.gardner@canonical.com>  Thu, 21 Jan 2016 15:06:42 -0700
-
-linux-meta (4.4.0.0.2) xenial; urgency=low
-
-  * s390x: add s390x to -generic and -virtual.
-  * s390x: add s390x to build dependancies to hold off testing.
-
- -- Andy Whitcroft <apw@canonical.com>  Fri, 18 Dec 2015 11:21:14 +0000
-
-linux-meta (4.4.0.0.1) xenial; urgency=medium
-
-  * linux ABI 4.4.0-0
-
- -- Tim Gardner <tim.gardner@canonical.com>  Thu, 03 Dec 2015 09:30:37 -0700
-
-linux-meta (4.3.0.0.0) xenial; urgency=medium
-
-  * linux ABI 4.3.0-0
-
- -- Tim Gardner <tim.gardner@canonical.com>  Wed, 04 Nov 2015 09:00:53 -0600
-
-linux-meta (4.2.0.17.19) wily; urgency=low
-
-  * linux ABI 4.2.0-17
-
-  * Revert temporary addition of virtualbox-guest-modules [i386 amd64
-    x32] provides.  (LP: #1507588)
-
- -- Brad Figg <brad.figg@canonical.com>  Thu, 22 Oct 2015 08:52:02 -0700
-
-linux-meta (4.2.0.16.18) wily; urgency=low
-
-  * temporarily add virtualbox-guest-modules [i386 amd64 x32] provides
-    to fix vbox installs.  (See LP: 1507588)
-
- -- Andy Whitcroft <apw@canonical.com>  Mon, 19 Oct 2015 15:10:01 +0100
-
-linux-meta (4.2.0.16.17) wily; urgency=medium
-
-  * linux ABI 4.2.0-16
-
- -- Tim Gardner <tim.gardner@canonical.com>  Thu, 08 Oct 2015 07:53:09 -0600
-
-linux-meta (4.2.0.15.16) wily; urgency=medium
-
-  * linux ABI 4.2.0-15
-
- -- Tim Gardner <tim.gardner@canonical.com>  Tue, 06 Oct 2015 06:08:21 -0600
-
-linux-meta (4.2.0.14.15) wily; urgency=medium
-
-  * linux ABI 4.2.0-14
-  * Makefile: ignore dependencies when building the package
-
- -- Tim Gardner <tim.gardner@canonical.com>  Thu, 01 Oct 2015 12:07:00 -0600
-
-linux-meta (4.2.0.13.14) wily; urgency=low
-
-  * move linux-signed linux-image-extra-* dependencies over to linux-meta.
-    (LP: #1501235)
-
- -- Andy Whitcroft <apw@canonical.com>  Wed, 30 Sep 2015 09:58:31 +0100
-
-linux-meta (4.2.0.13.13) wily; urgency=low
-
-  * linux ABI 4.2.0-13
-  * add linux-signed-lowlatency packages.  (LP: #1500910)
-
- -- Andy Whitcroft <apw@canonical.com>  Tue, 29 Sep 2015 15:58:35 +0100
-
-linux-meta (4.2.0.12.12) wily; urgency=medium
-
-  * linux ABI 4.2.0-12
-
- -- Tim Gardner <tim.gardner@canonical.com>  Fri, 25 Sep 2015 07:08:38 -0600
-
-linux-meta (4.2.0.11.11) wily; urgency=medium
-
-  * linux ABI 4.2.0-11
-
- -- Tim Gardner <tim.gardner@canonical.com>  Mon, 21 Sep 2015 15:20:37 -0600
-
-linux-meta (4.2.0.10.10) wily; urgency=medium
-
-  * linux ABI 4.2.0-10
-
- -- Tim Gardner <tim.gardner@canonical.com>  Thu, 10 Sep 2015 12:22:56 -0600
-
-linux-meta (4.2.0.9.9) wily; urgency=medium
-
-  * linux ABI 4.2.0-9
-
- -- Tim Gardner <tim.gardner@canonical.com>  Wed, 09 Sep 2015 13:04:28 -0600
-
-linux-meta (4.2.0.8.8) wily; urgency=medium
-
-  * linux ABI 4.2.0-8
-
- -- Tim Gardner <tim.gardner@canonical.com>  Tue, 08 Sep 2015 13:07:21 -0600
-
-linux-meta (4.2.0.7.7) wily; urgency=medium
-
-  * linux ABI 4.2.0-7
-
- -- Tim Gardner <tim.gardner@canonical.com>  Mon, 31 Aug 2015 09:08:07 -0600
-
-linux-meta (4.2.0.6.6) wily; urgency=medium
-
-  * linux ABI 4.2.0-6
-
- -- Tim Gardner <tim.gardner@canonical.com>  Mon, 24 Aug 2015 09:38:31 -0600
-
-linux-meta (4.2.0.5.5) wily; urgency=medium
-
-  * linux ABI 4.2.0-5
-
- -- Tim Gardner <tim.gardner@canonical.com>  Thu, 20 Aug 2015 14:25:23 -0600
-
-linux-meta (4.2.0.4.4) wily; urgency=medium
-
-  *   * linux ABI 4.2.0-4
-
- -- Tim Gardner <tim.gardner@canonical.com>  Tue, 11 Aug 2015 06:17:51 -0600
-
-linux-meta (4.2.0.3.3) wily; urgency=medium
-
-  * linux ABI 4.2.0-3
-
- -- Tim Gardner <tim.gardner@canonical.com>  Wed, 05 Aug 2015 08:35:48 -0600
-
-linux-meta (4.1.0.3.3) wily; urgency=low
-
-  * linux ABI 4.1.0-3
-
- -- Andy Whitcroft <apw@canonical.com>  Tue, 28 Jul 2015 13:36:45 +0100
-
-linux-meta (4.1.0.2.2) wily; urgency=medium
-
-  * linux ABI 4.1.0-2
-
- -- Tim Gardner <tim.gardner@canonical.com>  Wed, 22 Jul 2015 12:23:21 -0600
-
-linux-meta (4.1.0.1.1) wily; urgency=low
-
-  * linux ABI 4.1.0-1
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Mon, 20 Jul 2015 10:21:22 -0700
-
-linux-meta (4.0.0.4.6) wily; urgency=low
-
-  * fix up Vcs-Git: to point to launchpad
-  * linux ABI 4.0.0-4
-
- -- Andy Whitcroft <apw@canonical.com>  Fri, 03 Jul 2015 16:23:39 +0100
-
-linux-meta (4.0.0.3.5) wily; urgency=low
-
-  * linux ABI 4.0.0-3
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Tue, 23 Jun 2015 13:34:31 -0700
-
-linux-meta (4.0.0.2.3) wily; urgency=low
-
-  * linux ABI 4.0.0-2
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Mon, 15 Jun 2015 15:08:17 -0700
-
-linux-meta (4.0.0.1.2) wily; urgency=medium
-
-  * Fixes ppc64el build failure, add OverlayFS V1 support.
-
- -- Tim Gardner <tim.gardner@canonical.com>  Fri, 12 Jun 2015 09:28:31 -0600
-
-linux-meta (4.0.0.1.1) wily; urgency=low
-
-  * linux ABI 4.0.0-1
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Tue, 09 Jun 2015 05:33:29 -0700
-
-linux-meta (3.19.0.22.21) vivid; urgency=medium
-
-  * linux ABI 3.19.0-22
-
- -- Brad Figg <brad.figg@canonical.com>  Tue, 16 Jun 2015 10:10:30 -0700
-
-linux-meta (3.19.0.21.20) vivid; urgency=medium
-
-  * linux ABI 3.19.0-21
-
- -- Luis Henriques <luis.henriques@canonical.com>  Thu, 11 Jun 2015 11:59:03 +0100
-
-linux-meta (3.19.0.20.19) vivid; urgency=medium
-
-  * linux ABI 3.19.0-20
-
- -- Luis Henriques <luis.henriques@canonical.com>  Fri, 29 May 2015 10:51:07 +0100
-
-linux-meta (3.19.0.19.18) vivid; urgency=medium
-
-  * linux ABI 3.19.0-19
-
- -- Brad Figg <brad.figg@canonical.com>  Tue, 26 May 2015 14:32:38 -0700
-
-linux-meta (3.19.0.18.17) vivid; urgency=medium
-
-  * linux ABI 3.19.0-18
-
- -- Luis Henriques <luis.henriques@canonical.com>  Tue, 19 May 2015 19:08:55 +0100
-
-linux-meta (3.19.0.17.16) vivid; urgency=medium
-
-  * linux ABI 3.29.0-17
-
- -- Brad Figg <brad.figg@canonical.com>  Wed, 06 May 2015 09:35:36 -0700
-
-linux-meta (3.19.0.16.15) vivid; urgency=medium
-
-  * linux ABI 3.29.0-16
-
- -- Luis Henriques <luis.henriques@canonical.com>  Thu, 30 Apr 2015 12:45:15 +0100
-
-linux-meta (3.19.0.15.14) vivid; urgency=low
-
-  * linux ABI 3.29.0-15
-
- -- Andy Whitcroft <apw@canonical.com>  Fri, 17 Apr 2015 00:45:00 +0100
-
-linux-meta (3.19.0.14.13) vivid; urgency=low
-
-  [ Andy Whitcroft ]
-
-  * future proof VCS links
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 10 Apr 2015 10:40:45 -0700
-
-linux-meta (3.19.0.13.12) vivid; urgency=low
-
-  [ Andy Whitcroft ]
-
-  * rejig so we correctly link to our own packages
-  * make the meta-source trivially backportable
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Thu, 09 Apr 2015 07:46:50 -0700
-
-linux-meta (3.19.0.12.11) vivid; urgency=low
-
-  * linux ABI 3.29.0-12
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Thu, 02 Apr 2015 11:13:49 -0700
-
-linux-meta (3.19.0.11.10) vivid; urgency=low
-
-  * linux ABI 3.19.0-11
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Tue, 31 Mar 2015 09:42:07 -0700
-
-linux-meta (3.19.0.10.9) vivid; urgency=low
-
-  * linux ABI 3.19.0-10
-
- -- Andy Whitcroft <apw@canonical.com>  Mon, 23 Mar 2015 16:23:21 +0000
-
-linux-meta (3.19.0.9.8) vivid; urgency=low
-
-  * linux ABI 3.19.0-9
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Tue, 10 Mar 2015 21:05:10 -0700
-
-linux-meta (3.19.0.8.7) vivid; urgency=low
-
-  * linux ABI 3.19.0-8
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Mon, 09 Mar 2015 10:33:04 -0700
-
-linux-meta (3.19.0.7.6) vivid; urgency=low
-
-  * linux ABI 3.19.0-7
-
- -- Andy Whitcroft <apw@canonical.com>  Thu, 26 Feb 2015 20:42:56 +0000
-
-linux-meta (3.19.0.6.5) vivid; urgency=low
-
-  * linux ABI 3.19.0-6
-
- -- Andy Whitcroft <apw@canonical.com>  Tue, 24 Feb 2015 09:45:57 +0000
-
-linux-meta (3.19.0.5.4) vivid; urgency=low
-
-  * linux ABI 3.19.0-5
-
- -- Andy Whitcroft <apw@canonical.com>  Tue, 10 Feb 2015 17:14:58 +0000
-
-linux-meta (3.19.0.4.3) vivid; urgency=low
-
-  * linux ABI 3.19.0-4
-
- -- Andy Whitcroft <apw@canonical.com>  Tue, 03 Feb 2015 07:41:15 +0200
-
-linux-meta (3.19.0.3.2) vivid; urgency=low
-
-  [ Kamal Mostafa ]
-
-  * [Packaging] force "dpkg-source -I -i" behavior
-
-  [ Andy Whitcroft]
-
-  * linux ABI 3.19.0-3
-
- -- Andy Whitcroft <apw@canonical.com>  Mon, 26 Jan 2015 12:02:06 +0000
-
-linux-meta (3.19.0.2.1) vivid; urgency=low
-
-  * linux ABI 3.19.0-2
-
- -- Andy Whitcroft <apw@canonical.com>  Tue, 13 Jan 2015 13:14:55 +0000
-
-linux-meta (3.18.0.14.14) vivid; urgency=low
-
-  * linux ABI 3.18.0-14
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Tue, 17 Feb 2015 19:43:48 -0800
-
-linux-meta (3.18.0.13.13) vivid; urgency=low
-
-  * linux ABI 3.18.0-13
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 06 Feb 2015 10:48:29 +0200
-
-linux-meta (3.18.0.12.12) vivid; urgency=low
-
-  * linux ABI 3.18.0-12
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Wed, 28 Jan 2015 13:28:03 -0800
-
-linux-meta (3.18.0.11.11) vivid; urgency=low
-
-  [ Kamal Mostafa ]
-
-  * [Packaging] force "dpkg-source -I -i" behavior
-
-  [ Leann Ogasawara ]
-
-  * linux ABI 3.18.0-11
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Fri, 23 Jan 2015 13:13:46 -0800
-
-linux-meta (3.18.0.10.10) vivid; urgency=low
-
-  * linux ABI 3.18.0-10
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Thu, 22 Jan 2015 12:41:33 -0800
-
-linux-meta (3.18.0.9.9) vivid; urgency=low
-
-  * linux ABI 3.18.0-9
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Mon, 12 Jan 2015 11:33:16 -0800
-
-linux-meta (3.18.0.8.8) vivid; urgency=low
-
-  * linux ABI 3.18.0-8
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Mon, 05 Jan 2015 06:35:52 -0800
-
-linux-meta (3.18.0.7.7) vivid; urgency=low
-
-  * linux ABI 3.18.0-7
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Thu, 11 Dec 2014 08:51:00 -0800
-
-linux-meta (3.18.0.6.6) vivid; urgency=low
-
-  * linux ABI 3.18.0-6
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Mon, 08 Dec 2014 09:27:38 -0800
-
-linux-meta (3.18.0.5.5) vivid; urgency=low
-
-  * linux ABI 3.18.0-5
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Mon, 01 Dec 2014 10:26:41 -0800
-
-linux-meta (3.18.0.4.4) vivid; urgency=low
-
-  * linux ABI 3.18.0-4
-
- -- Leann Ogasawara <leann.ogasawara@canonical.com>  Mon, 24 Nov 2014 13:53:33 -0800
-
-linux-meta (3.18.0.3.3) vivid; urgency=low
-
-  * linux ABI 3.18.0-3
-
- -- Andy Whitcroft <apw@canonical.com>  Tue, 11 Nov 2014 18:11:08 +0000
-
-linux-meta (3.18.0.2.2) vivid; urgency=low
-
-  * linux ABI 3.18.0-2
-
-  [ Andy Whitcroft ]
-
-  * downgrade thermald to a Recommends: so that it can be removed when
-    it is not needed.  (LP: #1387144)
-
- -- Andy Whitcroft <apw@canonical.com>  Thu, 30 Oct 2014 11:37:25 +0000
-
-linux-meta (3.18.0.1.1) vivid; urgency=medium
-
-  * linux ABI 3.18.0-1
-
- -- Tim Gardner <tim.gardner@canonical.com>  Wed, 29 Oct 2014 09:10:53 -0600
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 5ce3867..0000000
--- a/meta-source/debian/control.common
+++ /dev/null
@@ -1,34 +0,0 @@ 
-Source: linux-meta@SUFFIX@
-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,
- linux-headers-@kernel-abi-version@,
- linux-headers-@kernel-abi-version@-generic [i386 amd64 armhf arm64 ppc64el s390x],
- linux-headers-@kernel-abi-version@-powerpc-smp [powerpc],
-Vcs-Git: git://git.launchpad.net/~ubuntu-kernel/ubuntu/+source/linux-meta/+git/@SERIES@
-
-Package: linux-source@SUFFIX@
-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-crashdump@SUFFIX@
-Architecture: i386 amd64 armhf ppc64el s390x
-Section: devel
-Depends: ${misc:Depends}, kdump-tools, grub-pc (>= 1.96+20090611-1ubuntu2) [i386 amd64] | grub-efi-ia32 [i386 amd64] | grub-efi-amd64 [i386 amd64] | grub (>= 0.97-29ubuntu24) [i386 amd64]
-Recommends: apport
-Suggests: crash
-Description: Linux kernel crashdump setup for the latest generic kernel
- This package installs all the needed infrastructure 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.
-
diff --git a/meta-source/debian/control.d/generic b/meta-source/debian/control.d/generic
deleted file mode 100644
index cd1e457..0000000
--- a/meta-source/debian/control.d/generic
+++ /dev/null
@@ -1,48 +0,0 @@ 
-Package: linux-headers-generic@SUFFIX@
-Architecture: i386 amd64 armhf arm64 ppc64el s390x
-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@SUFFIX@
-Architecture: i386 amd64 armhf arm64 ppc64el s390x
-Section: kernel
-Priority: optional
-Depends: ${misc:Depends}, linux-image-${kernel-abi-version}-generic, linux-image-extra-${kernel-abi-version}-generic [i386 amd64 ppc64el s390x], linux-firmware
-Recommends: thermald [i386 amd64]
-Description: Generic Linux kernel image
- This package will always depend on the latest generic kernel image
- available.
-
-Package: linux-tools-generic@SUFFIX@
-Architecture: i386 amd64 armhf arm64 ppc64el s390x
-Section: kernel
-Priority: optional
-Provides: linux-tools
-Depends: ${misc:Depends}, linux-tools-${kernel-abi-version}-generic
-Description: Generic Linux kernel tools
- This package will always depend on the latest generic kernel tools
- available.
-
-Package: linux-cloud-tools-generic@SUFFIX@
-Architecture: i386 amd64
-Section: kernel
-Priority: optional
-Provides: linux-cloud-tools
-Depends: ${misc:Depends}, linux-cloud-tools-${kernel-abi-version}-generic
-Description: Generic Linux kernel cloud tools
- This package will always depend on the latest generic kernel cloud tools
- available.
-
-Package: linux-generic@SUFFIX@
-Architecture: i386 amd64 armhf arm64 ppc64el s390x
-Section: kernel
-Priority: optional
-Depends: ${misc:Depends}, linux-image-generic@SUFFIX@ (= ${binary:Version}), linux-headers-generic@SUFFIX@ (= ${binary:Version})
-Description: Complete Generic Linux kernel and headers
- This package will always depend on the latest complete generic Linux kernel
- and headers.
-
diff --git a/meta-source/debian/control.d/generic-lpae b/meta-source/debian/control.d/generic-lpae
deleted file mode 100644
index 61b42a3..0000000
--- a/meta-source/debian/control.d/generic-lpae
+++ /dev/null
@@ -1,38 +0,0 @@ 
-Package: linux-headers-generic-lpae@SUFFIX@
-Architecture: armhf
-Section: kernel
-Priority: optional
-Depends: ${misc:Depends}, linux-headers-${kernel-abi-version}-generic-lpae
-Description: Generic Linux kernel headers
- This package will always depend on the latest generic-lpae kernel headers
- available.
-
-Package: linux-image-generic-lpae@SUFFIX@
-Architecture: armhf
-Section: kernel
-Priority: optional
-Depends: ${misc:Depends}, linux-image-${kernel-abi-version}-generic-lpae, linux-firmware
-Recommends: thermald [i386 amd64]
-Description: Generic Linux kernel image
- This package will always depend on the latest generic-lpae kernel image
- available.
-
-Package: linux-tools-generic-lpae@SUFFIX@
-Architecture: armhf
-Section: kernel
-Priority: optional
-Provides: linux-tools
-Depends: ${misc:Depends}, linux-tools-${kernel-abi-version}-generic-lpae
-Description: Generic Linux kernel tools
- This package will always depend on the latest generic-lpae kernel tools
- available.
-
-Package: linux-generic-lpae@SUFFIX@
-Architecture: armhf
-Section: kernel
-Priority: optional
-Depends: ${misc:Depends}, linux-image-generic-lpae@SUFFIX@ (= ${binary:Version}), linux-headers-generic-lpae@SUFFIX@ (= ${binary:Version})
-Description: Complete Generic Linux kernel and headers
- This package will always depend on the latest complete generic-lpae Linux kernel
- and headers.
-
diff --git a/meta-source/debian/control.d/lowlatency b/meta-source/debian/control.d/lowlatency
deleted file mode 100644
index 7f4fb42..0000000
--- a/meta-source/debian/control.d/lowlatency
+++ /dev/null
@@ -1,48 +0,0 @@ 
-Package: linux-headers-lowlatency@SUFFIX@
-Architecture: i386 amd64
-Section: devel
-Priority: optional
-Depends: ${misc:Depends}, linux-headers-${kernel-abi-version}-lowlatency
-Description: lowlatency Linux kernel headers
- This package will always depend on the latest lowlatency kernel headers
- available.
-
-Package: linux-image-lowlatency@SUFFIX@
-Architecture: i386 amd64
-Section: kernel
-Priority: optional
-Depends: ${misc:Depends}, linux-image-${kernel-abi-version}-lowlatency, linux-firmware
-Recommends: thermald [i386 amd64]
-Description: lowlatency Linux kernel image
- This package will always depend on the latest lowlatency kernel image
- available.
-
-Package: linux-tools-lowlatency@SUFFIX@
-Architecture: i386 amd64
-Section: kernel
-Priority: optional
-Provides: linux-tools
-Depends: ${misc:Depends}, linux-tools-${kernel-abi-version}-lowlatency
-Description: lowlatency Linux kernel tools
- This package will always depend on the latest lowlatency kernel tools
- available.
-
-Package: linux-cloud-tools-lowlatency@SUFFIX@
-Architecture: i386 amd64
-Section: kernel
-Priority: optional
-Provides: linux-cloud-tools
-Depends: ${misc:Depends}, linux-cloud-tools-${kernel-abi-version}-lowlatency
-Description: lowlatency Linux kernel cloud tools
- This package will always depend on the latest lowlatency kernel cloud tools
- available.
-
-Package: linux-lowlatency@SUFFIX@
-Architecture: i386 amd64
-Section: kernel
-Priority: optional
-Depends: ${misc:Depends}, linux-image-lowlatency@SUFFIX@ (= ${binary:Version}), linux-headers-lowlatency@SUFFIX@ (= ${binary:Version})
-Description: Complete lowlatency Linux kernel
- This package will always depend on the latest complete lowlatency Linux kernel
- available.
-
diff --git a/meta-source/debian/control.d/powerpc-e500mc b/meta-source/debian/control.d/powerpc-e500mc
deleted file mode 100644
index 87bcbf4..0000000
--- a/meta-source/debian/control.d/powerpc-e500mc
+++ /dev/null
@@ -1,37 +0,0 @@ 
-Package: linux-headers-powerpc-e500mc@SUFFIX@
-Architecture: powerpc
-Section: kernel
-Priority: optional
-Depends: linux-headers-${kernel-abi-version}-powerpc-e500mc
-Description: Linux kernel headers on Freescale Power e500mc.
- This package will always depend on the latest kernel headers available
- for Freescale Power e500mc support.
-
-Package: linux-image-powerpc-e500mc@SUFFIX@
-Architecture: powerpc
-Section: kernel
-Priority: optional
-Depends: linux-image-${kernel-abi-version}-powerpc-e500mc, linux-firmware
-Description: Linux kernel image on Freescale Power e500mc.
- This package will always depend on the latest kernel image available
- for Freescale Power e500mc support.
-
-Package: linux-tools-powerpc-e500mc@SUFFIX@
-Architecture: powerpc
-Section: kernel
-Priority: optional
-Provides: linux-tools
-Depends: ${misc:Depends}, linux-tools-${kernel-abi-version}-powerpc-e500mc
-Description: Linux kernel tools for Freescale Power e500mc.
- This package will always depend on the latest e500mc kernel tools
- available.
-
-Package: linux-powerpc-e500mc@SUFFIX@
-Architecture: powerpc
-Section: kernel
-Priority: optional
-Depends: linux-image-powerpc-e500mc@SUFFIX@, linux-headers-powerpc-e500mc@SUFFIX@
-Description: Complete Linux kernel on Freescale Power e500mc.
- This package will always depend on the latest complete Linux kernel and headers
- for Freescale Power e500mc support.
-
diff --git a/meta-source/debian/control.d/powerpc-smp b/meta-source/debian/control.d/powerpc-smp
deleted file mode 100644
index b377e6f..0000000
--- a/meta-source/debian/control.d/powerpc-smp
+++ /dev/null
@@ -1,40 +0,0 @@ 
-Package: linux-headers-powerpc-smp@SUFFIX@
-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.
-
-Package: linux-image-powerpc-smp@SUFFIX@
-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-tools-powerpc-smp@SUFFIX@
-Architecture: powerpc
-Section: kernel
-Priority: optional
-Provides: linux-tools
-Depends: ${misc:Depends}, linux-tools-${kernel-abi-version}-powerpc-smp
-Description: Linux kernel tools for PowerPC SMP.
- This package will always depend on the latest PowerPC SMP kernel tools
- available.
-
-Package: linux-powerpc-smp@SUFFIX@
-Architecture: powerpc
-Section: kernel
-Priority: optional
-Depends: linux-image-powerpc-smp@SUFFIX@, linux-headers-powerpc-smp@SUFFIX@
-Description: Complete Linux kernel on PowerPC SMP.
- This package will always depend on the latest complete Linux kernel and headers
- 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-emb b/meta-source/debian/control.d/powerpc64-emb
deleted file mode 100644
index 6b0eaaa..0000000
--- a/meta-source/debian/control.d/powerpc64-emb
+++ /dev/null
@@ -1,37 +0,0 @@ 
-Package: linux-headers-powerpc64-emb@SUFFIX@
-Architecture: powerpc
-Section: kernel
-Priority: optional
-Depends: linux-headers-${kernel-abi-version}-powerpc64-emb
-Description: Linux kernel headers on PowerPC64 Embedded CPUs.
- This package will always depend on the latest kernel headers available
- for PowerPC64 Embedded CPUs support.
-
-Package: linux-image-powerpc64-emb@SUFFIX@
-Architecture: powerpc
-Section: kernel
-Priority: optional
-Depends: linux-image-${kernel-abi-version}-powerpc64-emb, linux-firmware
-Description: Linux kernel image on PowerPC64 Embedded CPUs.
- This package will always depend on the latest kernel image available
- for PowerPC64 Embedded CPUs support.
-
-Package: linux-tools-powerpc64-emb@SUFFIX@
-Architecture: powerpc
-Section: kernel
-Priority: optional
-Provides: linux-tools
-Depends: ${misc:Depends}, linux-tools-${kernel-abi-version}-powerpc64-emb
-Description: Linux kernel tools for PowerPC64 Embedded CPUs.
- This package will always depend on the PowerPC64 Embedded kernel tools
- available.
-
-Package: linux-powerpc64-emb@SUFFIX@
-Architecture: powerpc
-Section: kernel
-Priority: optional
-Depends: linux-image-powerpc64-emb@SUFFIX@, linux-headers-powerpc64-emb@SUFFIX@
-Description: Complete Linux kernel on PowerPC64 Embedded CPUs.
- This package will always depend on the latest complete Linux kernel and headers
- for PowerPC64 Embedded CPUs support.
-
diff --git a/meta-source/debian/control.d/powerpc64-smp b/meta-source/debian/control.d/powerpc64-smp
deleted file mode 100644
index 58ffa7d..0000000
--- a/meta-source/debian/control.d/powerpc64-smp
+++ /dev/null
@@ -1,40 +0,0 @@ 
-Package: linux-headers-powerpc64-smp@SUFFIX@
-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.
-
-Package: linux-image-powerpc64-smp@SUFFIX@
-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-tools-powerpc64-smp@SUFFIX@
-Architecture: powerpc
-Section: kernel
-Priority: optional
-Provides: linux-tools
-Depends: ${misc:Depends}, linux-tools-${kernel-abi-version}-powerpc64-smp
-Description: Linux kernel tools for PowerPC64 SMP
- This package will always depend on the latest PowerPC64 SMP kernel tools
- available.
-
-Package: linux-powerpc64-smp@SUFFIX@
-Architecture: powerpc
-Section: kernel
-Priority: optional
-Depends: linux-image-powerpc64-smp@SUFFIX@, linux-headers-powerpc64-smp@SUFFIX@
-Description: Complete Linux kernel on PowerPC64 SMP.
- This package will always depend on the latest complete Linux kernel and headers
- for PowerPC64 with SMP support.
- SMP (symmetric multi-processing) is needed if you have multiple processors.
-
diff --git a/meta-source/debian/control.d/signed-generic b/meta-source/debian/control.d/signed-generic
deleted file mode 100644
index 402dc41..0000000
--- a/meta-source/debian/control.d/signed-generic
+++ /dev/null
@@ -1,19 +0,0 @@ 
-Package: linux-signed-image-generic@SUFFIX@
-Architecture: amd64
-Section: kernel
-Priority: optional
-Depends: ${misc:Depends}, linux-signed-image-${kernel-abi-version}-generic, linux-image-extra-${kernel-abi-version}-generic, linux-firmware
-Recommends: thermald [i386 amd64]
-Description: Signed Generic Linux kernel image
- This package will always depend on the latest generic kernel image
- available.  Signed with the Ubuntu EFI key.
-
-Package: linux-signed-generic@SUFFIX@
-Architecture: amd64
-Section: kernel
-Priority: optional
-Depends: ${misc:Depends}, linux-signed-image-generic@SUFFIX@ (= ${binary:Version}), linux-headers-generic@SUFFIX@ (= ${binary:Version})
-Description: Complete Signed Generic Linux kernel and headers
- This package will always depend on the latest complete generic Linux kernel
- and headers.  Signed with the Ubuntu EFI key.
-
diff --git a/meta-source/debian/control.d/signed-lowlatency b/meta-source/debian/control.d/signed-lowlatency
deleted file mode 100644
index 9a1c99a..0000000
--- a/meta-source/debian/control.d/signed-lowlatency
+++ /dev/null
@@ -1,19 +0,0 @@ 
-Package: linux-signed-image-lowlatency@SUFFIX@
-Architecture: amd64
-Section: kernel
-Priority: optional
-Depends: ${misc:Depends}, linux-signed-image-${kernel-abi-version}-lowlatency, linux-firmware
-Recommends: thermald [i386 amd64]
-Description: Signed Generic Linux kernel image
- This package will always depend on the latest lowlatency kernel image
- available.  Signed with the Ubuntu EFI key.
-
-Package: linux-signed-lowlatency@SUFFIX@
-Architecture: amd64
-Section: kernel
-Priority: optional
-Depends: ${misc:Depends}, linux-signed-image-lowlatency@SUFFIX@ (= ${binary:Version}), linux-headers-lowlatency@SUFFIX@ (= ${binary:Version})
-Description: Complete Signed Generic Linux kernel and headers
- This package will always depend on the latest complete lowlatency Linux kernel
- and headers.  Signed with the Ubuntu EFI key.
-
diff --git a/meta-source/debian/control.d/transitionals b/meta-source/debian/control.d/transitionals
deleted file mode 100644
index 7a04f75..0000000
--- a/meta-source/debian/control.d/transitionals
+++ /dev/null
@@ -1,31 +0,0 @@ 
-Package: linux-image-hwe-generic-trusty
-Architecture: i386 amd64 armhf arm64 ppc64el
-Section: oldlibs
-Priority: optional
-Depends: linux-image-generic
-Description: Depends on the generic hardware enablement kernel image (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-hwe-generic-trusty
-Architecture: i386 amd64 armhf arm64 ppc64el
-Section: oldlibs
-Priority: optional
-Depends: linux-generic
-Description: Depends on the generic hardware enablement kernel image and headers (dummy transitional packages)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-image-hwe-virtual-trusty
-Architecture: i386 amd64 ppc64el
-Section: oldlibs
-Priority: optional
-Depends: linux-image-virtual
-Description: Depends on the virtual hardware enablement kernel image (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-hwe-virtual-trusty
-Architecture: i386 amd64 ppc64el
-Section: oldlibs
-Priority: optional
-Depends: linux-virtual
-Description: Depends on the virtual hardware enablement kernel image and headers (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
diff --git a/meta-source/debian/control.d/transitionals-lts b/meta-source/debian/control.d/transitionals-lts
deleted file mode 100644
index 22ea6c4..0000000
--- a/meta-source/debian/control.d/transitionals-lts
+++ /dev/null
@@ -1,1255 +0,0 @@ 
-Package: linux-tools-lts-utopic
-Architecture: i386 amd64 armhf arm64 ppc64el powerpc
-Section: oldlibs
-Depends: linux-tools-generic [i386 amd64 armhf arm64 ppc64el], linux-tools-powerpc-smp [powerpc]
-Description: Linux kernel versioned Tools (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-headers-generic-lts-utopic
-Architecture: i386 amd64 armhf arm64 ppc64el
-Section: oldlibs
-Priority: optional
-Depends: linux-headers-generic
-Description: Generic Linux kernel headers (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-image-generic-lts-utopic
-Architecture: i386 amd64 armhf arm64 ppc64el
-Section: oldlibs
-Priority: optional
-Depends: linux-image-generic
-Description: Generic Linux kernel image (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-tools-generic-lts-utopic
-Architecture: i386 amd64 armhf arm64 ppc64el
-Section: oldlibs
-Priority: optional
-Depends: linux-tools-generic
-Description: Generic Linux kernel tools (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-cloud-tools-generic-lts-utopic
-Architecture: amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-cloud-tools-generic
-Description: Generic Linux kernel cloud tools (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-generic-lts-utopic
-Architecture: i386 amd64 armhf arm64 ppc64el
-Section: oldlibs
-Priority: optional
-Depends: linux-generic
-Description: Complete Generic Linux kernel and headers (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-headers-generic-lpae-lts-utopic
-Architecture: armhf
-Section: oldlibs
-Priority: optional
-Depends: linux-headers-generic-lpae
-Description: Generic Linux kernel headers (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-image-generic-lpae-lts-utopic
-Architecture: armhf
-Section: oldlibs
-Priority: optional
-Depends: linux-image-generic-lpae
-Description: Generic Linux kernel image (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-tools-generic-lpae-lts-utopic
-Architecture: armhf
-Section: oldlibs
-Priority: optional
-Depends: linux-tools-generic-lpae
-Description: Generic Linux kernel tools (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-generic-lpae-lts-utopic
-Architecture: armhf
-Section: oldlibs
-Priority: optional
-Depends: linux-generic-lpae
-Description: Complete Generic Linux kernel and headers (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-headers-lowlatency-lts-utopic
-Architecture: i386 amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-headers-lowlatency
-Description: lowlatency Linux kernel headers (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-image-lowlatency-lts-utopic
-Architecture: i386 amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-image-lowlatency
-Description: lowlatency Linux kernel image (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-tools-lowlatency-lts-utopic
-Architecture: i386 amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-tools-lowlatency
-Description: lowlatency Linux kernel tools (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-cloud-tools-lowlatency-lts-utopic
-Architecture: amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-cloud-tools-lowlatency
-Description: lowlatency Linux kernel cloud tools (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-lowlatency-lts-utopic
-Architecture: i386 amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-lowlatency
-Description: Complete lowlatency Linux kernel (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-headers-powerpc-e500mc-lts-utopic
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-headers-powerpc-e500mc
-Description: Linux kernel headers on Freescale Power e500mc. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-image-powerpc-e500mc-lts-utopic
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-image-powerpc-e500mc
-Description: Linux kernel image on Freescale Power e500mc. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-tools-powerpc-e500mc-lts-utopic
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-tools-powerpc-e500mc
-Description: Linux kernel tools for Freescale Power e500mc. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-powerpc-e500mc-lts-utopic
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-powerpc-e500mc
-Description: Complete Linux kernel on Freescale Power e500mc. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-headers-powerpc-smp-lts-utopic
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-headers-powerpc-smp
-Description: Linux kernel headers on PowerPC SMP (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-image-powerpc-smp-lts-utopic
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-image-powerpc-smp
-Description: Linux kernel image on PowerPC SMP. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-tools-powerpc-smp-lts-utopic
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-tools-powerpc-smp
-Description: Linux kernel tools for PowerPC SMP. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-powerpc-smp-lts-utopic
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-powerpc-smp
-Description: Complete Linux kernel on PowerPC SMP. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-headers-powerpc64-emb-lts-utopic
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-headers-powerpc64-emb
-Description: Linux kernel headers on PowerPC64 Embedded CPUs. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-image-powerpc64-emb-lts-utopic
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-image-powerpc64-emb
-Description: Linux kernel image on PowerPC64 Embedded CPUs. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-tools-powerpc64-emb-lts-utopic
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-tools-powerpc64-emb
-Description: Linux kernel tools for PowerPC64 Embedded CPUs. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-powerpc64-emb-lts-utopic
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-powerpc64-emb
-Description: Complete Linux kernel on PowerPC64 Embedded CPUs. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-headers-powerpc64-smp-lts-utopic
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-headers-powerpc64-smp
-Description: Linux kernel headers on PowerPC64 SMP (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-image-powerpc64-smp-lts-utopic
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-image-powerpc64-smp
-Description: Linux kernel image on PowerPC64 SMP. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-tools-powerpc64-smp-lts-utopic
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-tools-powerpc64-smp
-Description: Linux kernel tools for PowerPC64 SMP (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-powerpc64-smp-lts-utopic
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-powerpc64-smp
-Description: Complete Linux kernel on PowerPC64 SMP. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-signed-image-generic-lts-utopic
-Architecture: amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-signed-image-generic
-Description: Signed Generic Linux kernel image (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-signed-generic-lts-utopic
-Architecture: amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-signed-generic
-Description: Complete Signed Generic Linux kernel and headers (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-headers-virtual-lts-utopic
-Architecture: i386 amd64 ppc64el
-Section: oldlibs
-Priority: optional
-Depends: linux-headers-virtual
-Description: Transitional package. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-image-virtual-lts-utopic
-Architecture: i386 amd64 ppc64el
-Section: oldlibs
-Priority: optional
-Depends: linux-image-virtual
-Description: This package will always depend on the latest minimal generic kernel image. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-tools-virtual-lts-utopic
-Architecture: i386 amd64 ppc64el
-Section: oldlibs
-Priority: optional
-Depends: linux-tools-virtual
-Description: This package will always depend on the latest minimal generic kernel tools. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-cloud-tools-virtual-lts-utopic
-Architecture: amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-cloud-tools-virtual
-Description: This package will always depend on the latest minimal generic kernel cloud tools. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-virtual-lts-utopic
-Architecture: i386 amd64 ppc64el
-Section: oldlibs
-Priority: optional
-Depends: linux-virtual
-Description: Minimal Generic Linux kernel and headers (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-image-extra-virtual-lts-utopic
-Architecture: i386 amd64 ppc64el
-Section: oldlibs
-Priority: optional
-Depends: linux-image-extra-virtual
-Description: Transitional package. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-headers-generic-lts-vivid
-Architecture: i386 amd64 armhf arm64 ppc64el
-Section: oldlibs
-Priority: optional
-Depends: linux-headers-generic
-Description: Generic Linux kernel headers (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-image-generic-lts-vivid
-Architecture: i386 amd64 armhf arm64 ppc64el
-Section: oldlibs
-Priority: optional
-Depends: linux-image-generic
-Description: Generic Linux kernel image (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-tools-generic-lts-vivid
-Architecture: i386 amd64 armhf arm64 ppc64el
-Section: oldlibs
-Priority: optional
-Depends: linux-tools-generic
-Description: Generic Linux kernel tools (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-cloud-tools-generic-lts-vivid
-Architecture: i386 amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-cloud-tools-generic
-Description: Generic Linux kernel cloud tools (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-generic-lts-vivid
-Architecture: i386 amd64 armhf arm64 ppc64el
-Section: oldlibs
-Priority: optional
-Depends: linux-generic
-Description: Complete Generic Linux kernel and headers (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-headers-generic-lpae-lts-vivid
-Architecture: armhf
-Section: oldlibs
-Priority: optional
-Depends: linux-headers-generic-lpae
-Description: Generic Linux kernel headers (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-image-generic-lpae-lts-vivid
-Architecture: armhf
-Section: oldlibs
-Priority: optional
-Depends: linux-image-generic-lpae
-Description: Generic Linux kernel image (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-tools-generic-lpae-lts-vivid
-Architecture: armhf
-Section: oldlibs
-Priority: optional
-Depends: linux-tools-generic-lpae
-Description: Generic Linux kernel tools (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-generic-lpae-lts-vivid
-Architecture: armhf
-Section: oldlibs
-Priority: optional
-Depends: linux-generic-lpae
-Description: Complete Generic Linux kernel and headers (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-headers-lowlatency-lts-vivid
-Architecture: i386 amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-headers-lowlatency
-Description: lowlatency Linux kernel headers (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-image-lowlatency-lts-vivid
-Architecture: i386 amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-image-lowlatency
-Description: lowlatency Linux kernel image (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-tools-lowlatency-lts-vivid
-Architecture: i386 amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-tools-lowlatency
-Description: lowlatency Linux kernel tools (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-cloud-tools-lowlatency-lts-vivid
-Architecture: i386 amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-cloud-tools-lowlatency
-Description: lowlatency Linux kernel cloud tools (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-lowlatency-lts-vivid
-Architecture: i386 amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-lowlatency
-Description: Complete lowlatency Linux kernel (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-headers-powerpc-e500mc-lts-vivid
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-headers-powerpc-e500mc
-Description: Linux kernel headers on Freescale Power e500mc. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-image-powerpc-e500mc-lts-vivid
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-image-powerpc-e500mc
-Description: Linux kernel image on Freescale Power e500mc. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-tools-powerpc-e500mc-lts-vivid
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-tools-powerpc-e500mc
-Description: Linux kernel tools for Freescale Power e500mc. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-powerpc-e500mc-lts-vivid
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-powerpc-e500mc
-Description: Complete Linux kernel on Freescale Power e500mc. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-headers-powerpc-smp-lts-vivid
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-headers-powerpc-smp
-Description: Linux kernel headers on PowerPC SMP (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-image-powerpc-smp-lts-vivid
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-image-powerpc-smp
-Description: Linux kernel image on PowerPC SMP. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-tools-powerpc-smp-lts-vivid
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-tools-powerpc-smp
-Description: Linux kernel tools for PowerPC SMP. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-powerpc-smp-lts-vivid
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-powerpc-smp
-Description: Complete Linux kernel on PowerPC SMP. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-headers-powerpc64-emb-lts-vivid
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-headers-powerpc64-emb
-Description: Linux kernel headers on PowerPC64 Embedded CPUs. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-image-powerpc64-emb-lts-vivid
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-image-powerpc64-emb
-Description: Linux kernel image on PowerPC64 Embedded CPUs. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-tools-powerpc64-emb-lts-vivid
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-tools-powerpc64-emb
-Description: Linux kernel tools for PowerPC64 Embedded CPUs. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-powerpc64-emb-lts-vivid
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-powerpc64-emb
-Description: Complete Linux kernel on PowerPC64 Embedded CPUs. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-headers-powerpc64-smp-lts-vivid
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-headers-powerpc64-smp
-Description: Linux kernel headers on PowerPC64 SMP (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-image-powerpc64-smp-lts-vivid
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-image-powerpc64-smp
-Description: Linux kernel image on PowerPC64 SMP. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-tools-powerpc64-smp-lts-vivid
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-tools-powerpc64-smp
-Description: Linux kernel tools for PowerPC64 SMP (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-powerpc64-smp-lts-vivid
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-powerpc64-smp
-Description: Complete Linux kernel on PowerPC64 SMP. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-signed-image-generic-lts-vivid
-Architecture: amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-signed-image-generic
-Description: Signed Generic Linux kernel image (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-signed-generic-lts-vivid
-Architecture: amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-signed-generic
-Description: Complete Signed Generic Linux kernel and headers (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-headers-virtual-lts-vivid
-Architecture: i386 amd64 ppc64el
-Section: oldlibs
-Priority: optional
-Depends: linux-headers-virtual
-Description: Transitional package. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-image-virtual-lts-vivid
-Architecture: i386 amd64 ppc64el
-Section: oldlibs
-Priority: optional
-Depends: linux-image-virtual
-Description: This package will always depend on the latest minimal generic kernel image. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-tools-virtual-lts-vivid
-Architecture: i386 amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-tools-virtual
-Description: This package will always depend on the latest minimal generic kernel tools. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-cloud-tools-virtual-lts-vivid
-Architecture: i386 amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-cloud-tools-virtual
-Description: This package will always depend on the latest minimal generic kernel cloud tools. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-virtual-lts-vivid
-Architecture: i386 amd64 ppc64el
-Section: oldlibs
-Priority: optional
-Depends: linux-virtual
-Description: Minimal Generic Linux kernel and headers (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-image-extra-virtual-lts-vivid
-Architecture: i386 amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-image-extra-virtual
-Description: Transitional package. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-headers-generic-lts-wily
-Architecture: i386 amd64 armhf arm64 ppc64el
-Section: oldlibs
-Priority: optional
-Depends: linux-headers-generic
-Description: Generic Linux kernel headers (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-image-generic-lts-wily
-Architecture: i386 amd64 armhf arm64 ppc64el
-Section: oldlibs
-Priority: optional
-Depends: linux-image-generic
-Description: Generic Linux kernel image (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-tools-generic-lts-wily
-Architecture: i386 amd64 armhf arm64 ppc64el
-Section: oldlibs
-Priority: optional
-Depends: linux-tools-generic
-Description: Generic Linux kernel tools (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-cloud-tools-generic-lts-wily
-Architecture: i386 amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-cloud-tools-generic
-Description: Generic Linux kernel cloud tools (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-generic-lts-wily
-Architecture: i386 amd64 armhf arm64 ppc64el
-Section: oldlibs
-Priority: optional
-Depends: linux-generic
-Description: Complete Generic Linux kernel and headers (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-headers-generic-lpae-lts-wily
-Architecture: armhf
-Section: oldlibs
-Priority: optional
-Depends: linux-headers-generic-lpae
-Description: Generic Linux kernel headers (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-image-generic-lpae-lts-wily
-Architecture: armhf
-Section: oldlibs
-Priority: optional
-Depends: linux-image-generic-lpae
-Description: Generic Linux kernel image (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-tools-generic-lpae-lts-wily
-Architecture: armhf
-Section: oldlibs
-Priority: optional
-Depends: linux-tools-generic-lpae
-Description: Generic Linux kernel tools (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-generic-lpae-lts-wily
-Architecture: armhf
-Section: oldlibs
-Priority: optional
-Depends: linux-generic-lpae
-Description: Complete Generic Linux kernel and headers (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-headers-lowlatency-lts-wily
-Architecture: i386 amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-headers-lowlatency
-Description: lowlatency Linux kernel headers (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-image-lowlatency-lts-wily
-Architecture: i386 amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-image-lowlatency
-Description: lowlatency Linux kernel image (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-tools-lowlatency-lts-wily
-Architecture: i386 amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-tools-lowlatency
-Description: lowlatency Linux kernel tools (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-cloud-tools-lowlatency-lts-wily
-Architecture: i386 amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-cloud-tools-lowlatency
-Description: lowlatency Linux kernel cloud tools (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-lowlatency-lts-wily
-Architecture: i386 amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-lowlatency
-Description: Complete lowlatency Linux kernel (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-headers-powerpc-e500mc-lts-wily
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-headers-powerpc-e500mc
-Description: Linux kernel headers on Freescale Power e500mc. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-image-powerpc-e500mc-lts-wily
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-image-powerpc-e500mc
-Description: Linux kernel image on Freescale Power e500mc. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-tools-powerpc-e500mc-lts-wily
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-tools-powerpc-e500mc
-Description: Linux kernel tools for Freescale Power e500mc. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-powerpc-e500mc-lts-wily
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-powerpc-e500mc
-Description: Complete Linux kernel on Freescale Power e500mc. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-headers-powerpc-smp-lts-wily
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-headers-powerpc-smp
-Description: Linux kernel headers on PowerPC SMP (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-image-powerpc-smp-lts-wily
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-image-powerpc-smp
-Description: Linux kernel image on PowerPC SMP. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-tools-powerpc-smp-lts-wily
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-tools-powerpc-smp
-Description: Linux kernel tools for PowerPC SMP. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-powerpc-smp-lts-wily
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-powerpc-smp
-Description: Complete Linux kernel on PowerPC SMP. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-headers-powerpc64-emb-lts-wily
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-headers-powerpc64-emb
-Description: Linux kernel headers on PowerPC64 Embedded CPUs. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-image-powerpc64-emb-lts-wily
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-image-powerpc64-emb
-Description: Linux kernel image on PowerPC64 Embedded CPUs. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-tools-powerpc64-emb-lts-wily
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-tools-powerpc64-emb
-Description: Linux kernel tools for PowerPC64 Embedded CPUs. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-powerpc64-emb-lts-wily
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-powerpc64-emb
-Description: Complete Linux kernel on PowerPC64 Embedded CPUs. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-headers-powerpc64-smp-lts-wily
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-headers-powerpc64-smp
-Description: Linux kernel headers on PowerPC64 SMP (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-image-powerpc64-smp-lts-wily
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-image-powerpc64-smp
-Description: Linux kernel image on PowerPC64 SMP. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-tools-powerpc64-smp-lts-wily
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-tools-powerpc64-smp
-Description: Linux kernel tools for PowerPC64 SMP (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-powerpc64-smp-lts-wily
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-powerpc64-smp
-Description: Complete Linux kernel on PowerPC64 SMP. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-signed-image-generic-lts-wily
-Architecture: amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-signed-image-generic
-Description: Signed Generic Linux kernel image (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-signed-generic-lts-wily
-Architecture: amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-signed-generic
-Description: Complete Signed Generic Linux kernel and headers (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-signed-image-lowlatency-lts-wily
-Architecture: amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-signed-image-lowlatency
-Description: Signed Generic Linux kernel image (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-signed-lowlatency-lts-wily
-Architecture: amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-signed-lowlatency
-Description: Complete Signed Generic Linux kernel and headers (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-headers-virtual-lts-wily
-Architecture: i386 amd64 ppc64el
-Section: oldlibs
-Priority: optional
-Depends: linux-headers-virtual
-Description: Transitional package. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-image-virtual-lts-wily
-Architecture: i386 amd64 ppc64el
-Section: oldlibs
-Priority: optional
-Depends: linux-image-virtual
-Description: This package will always depend on the latest minimal generic kernel image. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-tools-virtual-lts-wily
-Architecture: i386 amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-tools-virtual
-Description: This package will always depend on the latest minimal generic kernel tools. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-cloud-tools-virtual-lts-wily
-Architecture: i386 amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-cloud-tools-virtual
-Description: This package will always depend on the latest minimal generic kernel cloud tools. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-virtual-lts-wily
-Architecture: i386 amd64 ppc64el
-Section: oldlibs
-Priority: optional
-Depends: linux-virtual
-Description: Minimal Generic Linux kernel and headers (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-image-extra-virtual-lts-wily
-Architecture: i386 amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-image-extra-virtual
-Description: Transitional package. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-headers-generic-lts-xenial
-Architecture: i386 amd64 armhf arm64 ppc64el
-Section: oldlibs
-Priority: optional
-Depends: linux-headers-generic
-Description: Generic Linux kernel headers (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-image-generic-lts-xenial
-Architecture: i386 amd64 armhf arm64 ppc64el
-Section: oldlibs
-Priority: optional
-Depends: linux-image-generic
-Description: Generic Linux kernel image (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-tools-generic-lts-xenial
-Architecture: i386 amd64 armhf arm64 ppc64el
-Section: oldlibs
-Priority: optional
-Depends: linux-tools-generic
-Description: Generic Linux kernel tools (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-cloud-tools-generic-lts-xenial
-Architecture: i386 amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-cloud-tools-generic
-Description: Generic Linux kernel cloud tools (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-generic-lts-xenial
-Architecture: i386 amd64 armhf arm64 ppc64el
-Section: oldlibs
-Priority: optional
-Depends: linux-generic
-Description: Complete Generic Linux kernel and headers (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-headers-generic-lpae-lts-xenial
-Architecture: armhf
-Section: oldlibs
-Priority: optional
-Depends: linux-headers-generic-lpae
-Description: Generic Linux kernel headers (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-image-generic-lpae-lts-xenial
-Architecture: armhf
-Section: oldlibs
-Priority: optional
-Depends: linux-image-generic-lpae
-Description: Generic Linux kernel image (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-tools-generic-lpae-lts-xenial
-Architecture: armhf
-Section: oldlibs
-Priority: optional
-Depends: linux-tools-generic-lpae
-Description: Generic Linux kernel tools (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-generic-lpae-lts-xenial
-Architecture: armhf
-Section: oldlibs
-Priority: optional
-Depends: linux-generic-lpae
-Description: Complete Generic Linux kernel and headers (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-headers-lowlatency-lts-xenial
-Architecture: i386 amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-headers-lowlatency
-Description: lowlatency Linux kernel headers (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-image-lowlatency-lts-xenial
-Architecture: i386 amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-image-lowlatency
-Description: lowlatency Linux kernel image (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-tools-lowlatency-lts-xenial
-Architecture: i386 amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-tools-lowlatency
-Description: lowlatency Linux kernel tools (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-cloud-tools-lowlatency-lts-xenial
-Architecture: i386 amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-cloud-tools-lowlatency
-Description: lowlatency Linux kernel cloud tools (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-lowlatency-lts-xenial
-Architecture: i386 amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-lowlatency
-Description: Complete lowlatency Linux kernel (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-headers-powerpc-e500mc-lts-xenial
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-headers-powerpc-e500mc
-Description: Linux kernel headers on Freescale Power e500mc. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-image-powerpc-e500mc-lts-xenial
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-image-powerpc-e500mc
-Description: Linux kernel image on Freescale Power e500mc. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-tools-powerpc-e500mc-lts-xenial
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-tools-powerpc-e500mc
-Description: Linux kernel tools for Freescale Power e500mc. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-powerpc-e500mc-lts-xenial
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-powerpc-e500mc
-Description: Complete Linux kernel on Freescale Power e500mc. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-headers-powerpc-smp-lts-xenial
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-headers-powerpc-smp
-Description: Linux kernel headers on PowerPC SMP (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-image-powerpc-smp-lts-xenial
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-image-powerpc-smp
-Description: Linux kernel image on PowerPC SMP. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-tools-powerpc-smp-lts-xenial
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-tools-powerpc-smp
-Description: Linux kernel tools for PowerPC SMP. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-powerpc-smp-lts-xenial
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-powerpc-smp
-Description: Complete Linux kernel on PowerPC SMP. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-headers-powerpc64-emb-lts-xenial
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-headers-powerpc64-emb
-Description: Linux kernel headers on PowerPC64 Embedded CPUs. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-image-powerpc64-emb-lts-xenial
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-image-powerpc64-emb
-Description: Linux kernel image on PowerPC64 Embedded CPUs. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-tools-powerpc64-emb-lts-xenial
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-tools-powerpc64-emb
-Description: Linux kernel tools for PowerPC64 Embedded CPUs. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-powerpc64-emb-lts-xenial
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-powerpc64-emb
-Description: Complete Linux kernel on PowerPC64 Embedded CPUs. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-headers-powerpc64-smp-lts-xenial
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-headers-powerpc64-smp
-Description: Linux kernel headers on PowerPC64 SMP (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-image-powerpc64-smp-lts-xenial
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-image-powerpc64-smp
-Description: Linux kernel image on PowerPC64 SMP. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-tools-powerpc64-smp-lts-xenial
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-tools-powerpc64-smp
-Description: Linux kernel tools for PowerPC64 SMP (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-powerpc64-smp-lts-xenial
-Architecture: powerpc
-Section: oldlibs
-Priority: optional
-Depends: linux-powerpc64-smp
-Description: Complete Linux kernel on PowerPC64 SMP. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-signed-image-generic-lts-xenial
-Architecture: amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-signed-image-generic
-Description: Signed Generic Linux kernel image (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-signed-generic-lts-xenial
-Architecture: amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-signed-generic
-Description: Complete Signed Generic Linux kernel and headers (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-signed-image-lowlatency-lts-xenial
-Architecture: amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-signed-image-lowlatency
-Description: Signed Generic Linux kernel image (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-signed-lowlatency-lts-xenial
-Architecture: amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-signed-lowlatency
-Description: Complete Signed Generic Linux kernel and headers (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-headers-virtual-lts-xenial
-Architecture: i386 amd64 ppc64el
-Section: oldlibs
-Priority: optional
-Depends: linux-headers-virtual
-Description: Transitional package. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-image-virtual-lts-xenial
-Architecture: i386 amd64 ppc64el
-Section: oldlibs
-Priority: optional
-Depends: linux-image-virtual
-Description: This package will always depend on the latest minimal generic kernel image. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-tools-virtual-lts-xenial
-Architecture: i386 amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-tools-virtual
-Description: This package will always depend on the latest minimal generic kernel tools. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-cloud-tools-virtual-lts-xenial
-Architecture: i386 amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-cloud-tools-virtual
-Description: This package will always depend on the latest minimal generic kernel cloud tools. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-virtual-lts-xenial
-Architecture: i386 amd64 ppc64el
-Section: oldlibs
-Priority: optional
-Depends: linux-virtual
-Description: Minimal Generic Linux kernel and headers (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
-Package: linux-image-extra-virtual-lts-xenial
-Architecture: i386 amd64
-Section: oldlibs
-Priority: optional
-Depends: linux-image-extra-virtual
-Description: Transitional package. (dummy transitional package)
- Transitional package for upgrades from 14.04 to 16.04 (Trusty to Xenial)
-
diff --git a/meta-source/debian/control.d/virtual b/meta-source/debian/control.d/virtual
deleted file mode 100644
index c89d534..0000000
--- a/meta-source/debian/control.d/virtual
+++ /dev/null
@@ -1,53 +0,0 @@ 
-Package: linux-headers-virtual@SUFFIX@
-Architecture: i386 amd64 ppc64el s390x
-Section: kernel
-Priority: optional
-Depends: ${misc:Depends}, linux-headers-generic@SUFFIX@ (= ${binary:Version})
-Description: Transitional package.
- This package will always depend on linux-headers-generic.
-
-Package: linux-image-virtual@SUFFIX@
-Architecture: i386 amd64 ppc64el s390x
-Section: kernel
-Priority: optional
-Depends: ${misc:Depends}, linux-image-${kernel-abi-version}-generic
-Description: This package will always depend on the latest minimal generic kernel image.
- This package will always depend on the latest minimal generic kernel image
- used for virtual instances.
-
-Package: linux-tools-virtual@SUFFIX@
-Architecture: i386 amd64 ppc64el s390x
-Section: kernel
-Priority: optional
-Provides: linux-tools
-Depends: ${misc:Depends}, linux-tools-${kernel-abi-version}-generic
-Description: This package will always depend on the latest minimal generic kernel tools.
- This package will always depend on the latest minimal generic kernel tools
- used for virtual instances.
-
-Package: linux-cloud-tools-virtual@SUFFIX@
-Architecture: i386 amd64
-Section: kernel
-Priority: optional
-Provides: linux-cloud-tools
-Depends: ${misc:Depends}, linux-cloud-tools-${kernel-abi-version}-generic
-Description: This package will always depend on the latest minimal generic kernel cloud tools.
- This package will always depend on the latest minimal generic kernel cloud tools
- used for virtual instances.
-
-Package: linux-virtual@SUFFIX@
-Architecture: i386 amd64 ppc64el s390x
-Section: kernel
-Priority: optional
-Depends: ${misc:Depends}, linux-image-virtual@SUFFIX@ (= ${binary:Version}), linux-headers-virtual@SUFFIX@ (= ${binary:Version})
-Description: Minimal Generic Linux kernel and headers
- This package will always depend on linux-image-virtual and
- linux-headers-virtual.
-
-Package: linux-image-extra-virtual@SUFFIX@
-Architecture: i386 amd64 ppc64el s390x
-Section: kernel
-Priority: optional
-Depends: ${misc:Depends}, linux-image-generic@SUFFIX@ (= ${binary:Version})
-Description: Transitional package.
- This package will always depend on linux-image-generic.
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 a07360c..0000000
--- a/meta-source/debian/rules
+++ /dev/null
@@ -1,105 +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>
-#
-
-# Pull out the source suffix, we intend to maintain an -lts-<series> suffix
-# but otherwise assume this main packages are not intended to have a suffix
-# so that linux-meta and linux-meta-ti-omap4 will behave normally, but
-# linux-meta-lts-vivid will add the series suffix.
-SERIES=$(shell dpkg-parsechangelog | sed -ne 's/^Distribution: *//p' | sed -e 's/-\(security\|updates\|proposed\)$$//')
-SOURCE=$(shell dpkg-parsechangelog | sed -ne 's/^Source: *//p')
-SUFFIX=$(shell dpkg-parsechangelog | sed -ne 's/^Source: *linux-meta-lts/-lts/p')
-
-# 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
-GENERIC_amd64=generic
-GENERIC_armhf=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 \
-			-e 's/@SERIES@/$(SERIES)/g' \
-			-e 's/@SUFFIX@/$(SUFFIX)/g' \
-			-e 's/@kernel-abi-version@/$(KERNEL_ABI_VERSION)/g' \
-			$$i >> debian/control.tmp; \
-		echo >> debian/control.tmp; \
-	done
-	rm -f $@
-	mv debian/control.tmp $@
-
-.PHONY: debian/control
-
-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