* Switch rpfv packages to 3.18 and add rpi2-rpfv packages.
* Clean up more stuff in clean target.
[dgit import package linux-latest 63+rpi2]
--- /dev/null
+#!/usr/bin/python
+
+import sys
+sys.path.append(sys.argv[1] + "/lib/python")
+
+from debian_linux.config import ConfigCoreDump
+from debian_linux.debian import Changelog, PackageDescription, VersionLinux
+from debian_linux.gencontrol import Gencontrol as Base
+from debian_linux.utils import Templates
+
+import os.path, re, codecs
+
+class Gencontrol(Base):
+ def __init__(self, config):
+ super(Gencontrol, self).__init__(ConfigCoreDump(fp = file(config)), Templates(["debian/templates"]))
+
+ config_entry = self.config['version',]
+ self.version = VersionLinux(config_entry['source'])
+ self.abiname = config_entry['abiname']
+ self.vars = {
+ 'upstreamversion': self.version.linux_upstream,
+ 'version': self.version.linux_version,
+ 'source_upstream': self.version.upstream,
+ 'abiname': self.abiname,
+ }
+
+ changelog_version = Changelog()[0].version
+ self.package_version = u'%s+%s' % (self.version.linux_version, changelog_version.complete)
+ self.rpf_version = u'%s+%s' % ('3.18', changelog_version.complete)
+
+ def do_main_setup(self, vars, makeflags, extra):
+ makeflags['GENCONTROL_ARGS'] = '-v%s' % self.package_version
+
+ # A line will be appended to this for each image-dbg package.
+ # Start with an empty file.
+ open('debian/source.lintian-overrides', 'w').close()
+
+ def do_main_packages(self, packages, vars, makeflags, extra):
+ packages['source']['Build-Depends'].extend(
+ [u'linux-support-%s' % self.abiname]
+ )
+
+ latest_source = self.templates["control.source.latest"]
+ packages.extend(self.process_packages(latest_source, vars))
+
+ latest_doc = self.templates["control.doc.latest"]
+ packages.extend(self.process_packages(latest_doc, vars))
+
+ latest_tools = self.templates["control.tools.latest"]
+ packages.extend(self.process_packages(latest_tools, vars))
+
+ def do_flavour_packages(self, packages, makefile, arch, featureset, flavour, vars, makeflags, extra):
+ if self.version.linux_modifier is None:
+ try:
+ vars['abiname'] = u'-%s' % self.config['abi', arch]['abiname']
+ except KeyError:
+ vars['abiname'] = self.abiname
+ makeflags['ABINAME'] = vars['abiname']
+
+ config_base = self.config.merge('base', arch, featureset, flavour)
+ config_description = self.config.merge('description', arch, featureset, flavour)
+ config_image = self.config.merge('image', arch, featureset, flavour)
+
+ vars['flavour'] = vars['localversion'][1:]
+ vars['class'] = config_description['hardware']
+ vars['longclass'] = config_description.get('hardware-long') or vars['class']
+
+ templates = []
+
+ def substitute_file(template, target, append=False):
+ with codecs.open(target, 'a' if append else 'w',
+ 'utf-8') as f:
+ f.write(self.substitute(self.templates[template], vars))
+ templates.extend(self.templates["control.image.latest.type-standalone"])
+ if self.config.get_merge('build', arch, featureset, flavour,
+ 'modules', True):
+ templates.extend(self.templates["control.headers.latest"])
+ if self.config.get_merge('build', arch, featureset, flavour,
+ 'debug-info', False):
+ templates.extend(self.templates["control.image-dbg.latest"])
+ substitute_file('lintian-overrides.image-dbg',
+ 'debian/linux-image-%s-dbg.lintian-overrides' %
+ vars['flavour'])
+ substitute_file('lintian-overrides.source',
+ 'debian/source.lintian-overrides',
+ append=True)
+
+ image_fields = {'Description': PackageDescription()}
+
+ desc_parts = self.config.get_merge('description', arch, featureset, flavour, 'parts')
+ if desc_parts:
+ # XXX: Workaround, we need to support multiple entries of the same name
+ parts = list(set(desc_parts))
+ parts.sort()
+ desc = image_fields['Description']
+ for part in parts:
+ desc.append(config_description['part-long-' + part])
+ desc.append_short(config_description.get('part-short-' + part, ''))
+
+ if self.config.merge('xen', arch, featureset, flavour):
+ templates.extend(self.templates["control.xen-linux-system.latest"])
+
+ packages_dummy = []
+
+ packages_dummy.append(self.process_real_image(templates[0], image_fields, vars))
+ packages_dummy.extend(self.process_packages(templates[1:], vars))
+
+ for package in packages_dummy:
+ name = package['Package']
+ if packages.has_key(name):
+ package = packages.get(name)
+ package['Architecture'].add(unicode(arch))
+ else:
+ package['Architecture'] = unicode(arch)
+ packages.append(package)
+
+ makeflags['GENCONTROL_ARGS'] = '-v%s' % self.package_version
+
+ cmds_binary_arch = []
+ for i in packages_dummy:
+ cmds_binary_arch += self.get_link_commands(i, ['NEWS'])
+ cmds_binary_arch += ["$(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='%s' %s" % (u' '.join([u"-p%s" % i['Package'] for i in packages_dummy]), makeflags)]
+ makefile.add('binary-arch_%s_%s_%s_real' % (arch, featureset, flavour), cmds = cmds_binary_arch)
+
+ # linux-image meta-packages include a bug presubj message
+ # directing reporters to the real image package.
+ bug_presubj = self.substitute(
+ self.templates["bug-presubj.image.latest"], vars)
+ codecs.open("debian/%s.bug-presubj" % packages_dummy[0]['Package'], 'w', 'utf-8').write(bug_presubj)
+
+ def do_extra(self, packages, makefile):
+ templates_extra = self.templates["control.extra"]
+
+ packages.extend(self.process_packages(templates_extra, {}))
+ extra_arches = {}
+ for package in templates_extra:
+ arches = package['Architecture']
+ for arch in arches:
+ i = extra_arches.get(arch, [])
+ i.append(package)
+ extra_arches[arch] = i
+ archs = extra_arches.keys()
+ archs.sort()
+ for arch in archs:
+ cmds = []
+ for i in extra_arches[arch]:
+ if i.has_key(u'X-Version-Overwrite-Epoch'):
+ version = u'-v1:%s' % self.package_version
+ else:
+ version = u'-v%s' % self.rpf_version
+ cmds += self.get_link_commands(i, ['config', 'postinst', 'templates'])
+ cmds.append("$(MAKE) -f debian/rules.real install-dummy ARCH='%s' DH_OPTIONS='-p%s' GENCONTROL_ARGS='%s'" % (arch, i['Package'], version))
+ makefile.add('binary-arch_%s' % arch, [u'binary-arch_%s_extra' % arch])
+ makefile.add("binary-arch_%s_extra" % arch, cmds = cmds)
+
+ def process_real_image(self, entry, fields, vars):
+ entry = self.process_package(entry, vars)
+ for key, value in fields.iteritems():
+ if key in entry:
+ real = entry[key]
+ real.extend(value)
+ elif value:
+ entry[key] = value
+ return entry
+
+ @staticmethod
+ def get_link_commands(package, names):
+ cmds = []
+ for name in names:
+ match = re.match(ur'^(linux-\w+)(-.*)$', package['Package'])
+ if not match:
+ continue
+ source = 'debian/%s.%s' % (match.group(1), name)
+ dest = 'debian/%s.%s' % (package['Package'], name)
+ if (os.path.isfile(source) and
+ (not os.path.isfile(dest) or os.path.islink(dest))):
+ cmds.append('ln -sf %s %s' %
+ (os.path.relpath(source, 'debian'), dest))
+ return cmds
+
+if __name__ == '__main__':
+ Gencontrol(sys.argv[1] + "/config.defines.dump")()
--- /dev/null
+linux-latest (63+rpi2) jessie-staging; urgency=low
+
+ * Switch rpfv packages to 3.18 and add rpi2-rpfv packages.
+ * Clean up more stuff in clean target.
+
+ -- Peter Michael Green <plugwash@raspbian.org> Sat, 14 Feb 2015 15:22:57 +0000
+
+linux-latest (63+rpi1) jessie-staging; urgency=low
+
+ * Regenerate control files to build for rpi flavour rather than
+ armmp and armmp-lpae flavours
+ * add -rpi-rpfv packages for kernel packages based on the raspberry pi
+ foundations reccomended kernel version (currently 3.12).
+ * Hack the control generation script so the above packages are versioned
+ appropriately (note: this will break versioning for other "extra packages",
+ there are no other "extra packages" in the current version but it's
+ something to be aware of in future)
+
+ -- Peter Micheal Green <plugwash@raspbian.org> Mon, 01 Dec 2014 01:01:17 +0000
+
+linux-latest (63) unstable; urgency=medium
+
+ * Update to 3.16.0-4
+ - Change linux-{image,headers}-486 to transitional packages
+
+ -- Ben Hutchings <ben@decadent.org.uk> Thu, 06 Nov 2014 20:46:28 +0000
+
+linux-latest (62) unstable; urgency=medium
+
+ * Update to 3.16-3 (Closes: #766078)
+
+ -- Ben Hutchings <ben@decadent.org.uk> Mon, 20 Oct 2014 19:12:50 +0100
+
+linux-latest (61) unstable; urgency=medium
+
+ * Update to 3.16-2
+
+ -- Ben Hutchings <ben@decadent.org.uk> Fri, 19 Sep 2014 02:08:37 +0100
+
+linux-latest (60) unstable; urgency=medium
+
+ * linux-image-{686-pae,amd64}: Add backdated NEWS for introduction of
+ xz compression affecting Xen (Closes: #727736)
+ * Update to 3.16-1
+
+ -- Ben Hutchings <ben@decadent.org.uk> Mon, 08 Sep 2014 20:23:42 +0100
+
+linux-latest (59) unstable; urgency=medium
+
+ * Update to 3.14-2
+
+ -- Ben Hutchings <ben@decadent.org.uk> Mon, 21 Jul 2014 22:06:07 +0100
+
+linux-latest (58) unstable; urgency=medium
+
+ * Rebuild to include arm64 and ppc64el architectures
+
+ -- Ben Hutchings <ben@decadent.org.uk> Mon, 07 Jul 2014 18:38:21 +0100
+
+linux-latest (57) unstable; urgency=medium
+
+ * Suppress lintian warnings about linux-image-dbg metapackages not
+ looking like debug info packages
+ * debian/control: Update Standards-Version to 3.9.5; no changes needed
+ * Update to 3.14-1
+
+ -- Ben Hutchings <ben@decadent.org.uk> Tue, 29 Apr 2014 02:48:57 +0100
+
+linux-latest (56) unstable; urgency=medium
+
+ * Update to 3.13-1
+
+ -- Ben Hutchings <ben@decadent.org.uk> Sat, 22 Feb 2014 14:49:52 +0000
+
+linux-latest (55) unstable; urgency=low
+
+ * Update to 3.12-1
+
+ -- Ben Hutchings <ben@decadent.org.uk> Fri, 27 Dec 2013 15:30:03 +0100
+
+linux-latest (54) unstable; urgency=low
+
+ * Update to 3.11-2
+
+ -- Ben Hutchings <ben@decadent.org.uk> Wed, 13 Nov 2013 03:30:59 +0000
+
+linux-latest (53) unstable; urgency=low
+
+ * Add linux-image-<flavour>-dbg metapackages, providing the virtual
+ package linux-latest-image-dbg
+ * Update standards-version to 3.9.4; no changes required
+ * Change section and priority fields to match archive overrides
+ * Update to 3.11-1
+ * Stop providing virtual package linux-headers
+
+ -- Ben Hutchings <ben@decadent.org.uk> Sat, 19 Oct 2013 00:44:20 +0100
+
+linux-latest (52) unstable; urgency=low
+
+ * Update to 3.10-3
+
+ -- Ben Hutchings <ben@decadent.org.uk> Wed, 18 Sep 2013 02:00:15 +0100
+
+linux-latest (51) unstable; urgency=low
+
+ * Update to 3.10-2
+
+ -- Ben Hutchings <ben@decadent.org.uk> Thu, 08 Aug 2013 14:12:41 +0200
+
+linux-latest (50) unstable; urgency=low
+
+ * Update to 3.10-1
+
+ -- Ben Hutchings <ben@decadent.org.uk> Thu, 18 Jul 2013 05:04:04 +0100
+
+linux-latest (49) unstable; urgency=low
+
+ * Update to 3.9-1
+
+ -- Ben Hutchings <ben@decadent.org.uk> Mon, 03 Jun 2013 14:02:30 +0100
+
+linux-latest (48) unstable; urgency=low
+
+ * Update to 3.8-2 (Closes: #708842)
+
+ -- Ben Hutchings <ben@decadent.org.uk> Sun, 19 May 2013 00:07:27 +0100
+
+linux-latest (47) unstable; urgency=low
+
+ * Update to 3.8-1
+ * Remove transitional packages provided in wheezy
+
+ -- Ben Hutchings <ben@decadent.org.uk> Mon, 06 May 2013 03:12:26 +0100
+
+linux-latest (46) unstable; urgency=low
+
+ * Set Priority: extra, as currently overridden in the archive
+ (Closes: #689846)
+ * Add Czech debconf template translation (Michal Šimůnek) (Closes: #685501)
+ * Update to 3.2.0-4 (Closes: #688222, #689864)
+
+ -- Ben Hutchings <ben@decadent.org.uk> Sun, 07 Oct 2012 19:51:50 +0100
+
+linux-latest (45) unstable; urgency=low
+
+ * Update to 3.2.0-3
+
+ -- Ben Hutchings <ben@decadent.org.uk> Tue, 26 Jun 2012 16:36:37 +0100
+
+linux-latest (44) unstable; urgency=high
+
+ [ Ben Hutchings ]
+ * Update debconf template translations:
+ - Add Polish (Michał Kułach) (Closes: #659571)
+ - Add Turkish (Mert Dirik) (Closes: #660119)
+ * Update standards-version to 3.9.3:
+ - Do not move packages to the 'metapackages' section, as that will
+ cause APT not to auto-remove their dependencies
+ * Move transitional packages to the section 'oldlibs', so that APT
+ will treat the replacement packages as manually installed
+ * Update to 3.2.0-2
+ * Stop generating linux-{headers,image}-2.6-<flavour> transitional
+ packages for flavours added since Linux 3.0
+
+ -- Ben Hutchings <ben@decadent.org.uk> Mon, 05 Mar 2012 00:01:57 +0000
+
+linux-latest (43) unstable; urgency=low
+
+ * Add Vcs-{Svn,Browser} fields
+ * Add debconf template translations:
+ - Danish (Joe Hansen) (Closes: #656642)
+ - Spanish (Slime Siabef) (Closes: #654681)
+ - Italian (Stefano Canepa) (Closes: #657386)
+ * [s390] Update the check for flavours without modules, removing the
+ useless linux-headers{,-2.6}-s390x-tape packages
+
+ -- Ben Hutchings <ben@decadent.org.uk> Tue, 31 Jan 2012 03:10:26 +0000
+
+linux-latest (42) unstable; urgency=low
+
+ * Rename source package to linux-latest
+ * Add debconf template translations:
+ - Portugese (Miguel Figueiredo) (Closes: #651123)
+ - Serbian latin (Zlatan Todoric) (Closes: #635895)
+ - Russian (Yuri Kozlov) (Closes: #652431)
+ - Japanese (Nobuhiro Iwamatsu) (Closes: #655687)
+ * Update to 3.2.0-1
+
+ -- Ben Hutchings <ben@decadent.org.uk> Thu, 19 Jan 2012 04:02:32 +0000
+
+linux-latest-2.6 (41) unstable; urgency=low
+
+ * Remove dependency on module makefiles in linux-support package
+ * Update to 3.1.0-1
+
+ -- Ben Hutchings <ben@decadent.org.uk> Mon, 14 Nov 2011 07:10:35 +0000
+
+linux-latest-2.6 (40) unstable; urgency=low
+
+ * Add debconf template translations:
+ - Serbian cyrillic (Zlatan Todoric) (Closes: #635893)
+ - German (Holger Wansing) (Closes: #637764)
+ - French (Debian French l10n team) (Closes: #636624)
+ - Swedish (Martin Bagge) (Closes: #640058)
+ - Dutch (Jeroen Schot) (Closes: #640115)
+ - Catalan (Innocent De Marchi) (Closes: #642109)
+ * Update to 3.0.0-2
+
+ -- Ben Hutchings <ben@decadent.org.uk> Thu, 06 Oct 2011 04:36:45 +0100
+
+linux-latest-2.6 (39) unstable; urgency=low
+
+ * Update to 3.0.0-1
+
+ -- Ben Hutchings <ben@decadent.org.uk> Sun, 24 Jul 2011 16:06:56 +0200
+
+linux-latest-2.6 (38) experimental; urgency=low
+
+ * Correct xen-linux-system transitional package names
+
+ -- Ben Hutchings <ben@decadent.org.uk> Wed, 29 Jun 2011 03:52:35 +0100
+
+linux-latest-2.6 (37) experimental; urgency=low
+
+ * Update to 3.0.0-rc5
+ * Restore xen-linux-system-<flavour> packages
+ * Remove common description text from linux-image-2.6-<flavour> packages
+
+ -- Ben Hutchings <ben@decadent.org.uk> Wed, 29 Jun 2011 03:24:50 +0100
+
+linux-latest-2.6 (36) experimental; urgency=low
+
+ * Update to 3.0.0-rc1
+ - Add linux-doc, linux-headers-<flavour>, linux-source and linux-tools
+ packages
+ - Change *-2.6-* to transitional packages
+
+ -- Ben Hutchings <ben@decadent.org.uk> Thu, 02 Jun 2011 04:37:28 +0100
+
+linux-latest-2.6 (35.1) unstable; urgency=low
+
+ [ Bastian Blank ]
+ * Update to 2.6.39-2.
+
+ -- Ben Hutchings <ben@decadent.org.uk> Wed, 08 Jun 2011 23:57:09 +0100
+
+linux-latest-2.6 (35) unstable; urgency=low
+
+ * Update to 2.6.39-1
+ - Change linux-image{,-2.6}-686{,-bigmem} to transitional packages
+
+ -- Ben Hutchings <ben@decadent.org.uk> Sat, 21 May 2011 03:52:15 +0100
+
+linux-latest-2.6 (34) unstable; urgency=low
+
+ * [hppa] Update to 2.6.38-2a
+
+ -- Ben Hutchings <ben@decadent.org.uk> Sun, 08 May 2011 05:07:22 +0100
+
+linux-latest-2.6 (33) unstable; urgency=low
+
+ * Update to 2.6.38-2
+
+ -- Ben Hutchings <ben@decadent.org.uk> Tue, 29 Mar 2011 13:15:43 +0100
+
+linux-latest-2.6 (32) unstable; urgency=low
+
+ * Update to 2.6.38-1
+
+ -- Ben Hutchings <ben@decadent.org.uk> Wed, 16 Mar 2011 13:29:41 +0000
+
+linux-latest-2.6 (31) unstable; urgency=low
+
+ * Update to 2.6.37-2
+
+ -- Ben Hutchings <ben@decadent.org.uk> Mon, 28 Feb 2011 01:45:21 +0000
+
+linux-latest-2.6 (30) unstable; urgency=low
+
+ * Update to 2.6.37-1
+
+ -- Ben Hutchings <ben@decadent.org.uk> Tue, 15 Feb 2011 14:58:49 +0000
+
+linux-latest-2.6 (29) unstable; urgency=low
+
+ * Add xen-linux-system-2.6-* meta-packages (Closes: #402414)
+ * Add bug presubj message for image meta packages directing users to the
+ real image packages (Closes: #549591)
+ * Fix repetition in description of linux-image-2.6-xen-amd64
+ (Closes: #598648)
+ * [x86] Correct lists of suitable processors
+
+ -- Ben Hutchings <ben@decadent.org.uk> Wed, 12 Jan 2011 01:57:08 +0000
+
+linux-latest-2.6 (28) unstable; urgency=low
+
+ * Move NEWS from linux-2.6, since apt-listchanges only shows it for
+ upgraded packages
+ * Add linux-tools-2.6 meta package
+ * Change versions for linux-doc-2.6 and linux-source-2.6 to match those
+ of the other meta packages
+
+ -- Ben Hutchings <ben@decadent.org.uk> Tue, 06 Jul 2010 14:39:54 +0100
+
+linux-latest-2.6 (27) unstable; urgency=low
+
+ * Really build linux-doc-2.6 and linux-source-2.6 meta packages
+
+ -- Ben Hutchings <ben@decadent.org.uk> Tue, 04 May 2010 02:23:44 +0100
+
+linux-latest-2.6 (26) unstable; urgency=low
+
+ [ Joachim Breitner ]
+ * Create linux-doc-2.6 and linux-source-2.6 meta packages (Closes: 347284)
+
+ [ Ben Hutchings ]
+ * Update to 2.6.32-5.
+ * Update standards-version to 3.8.4; no changes required.
+ * Explicitly describe all packages as meta-packages.
+
+ -- Ben Hutchings <ben@decadent.org.uk> Tue, 04 May 2010 02:10:04 +0100
+
+linux-latest-2.6 (25) unstable; urgency=high
+
+ * Update package description templates in line with linux-2.6.
+ * Update to 2.6.32-3.
+ * Set urgency to 'high' since this must transition with linux-2.6.
+
+ -- Ben Hutchings <ben@decadent.org.uk> Wed, 10 Mar 2010 00:43:47 +0000
+
+linux-latest-2.6 (24) unstable; urgency=low
+
+ * Update to 2.6.32-2.
+
+ -- Ben Hutchings <ben@decadent.org.uk> Tue, 16 Feb 2010 21:43:50 +0000
+
+linux-latest-2.6 (23) unstable; urgency=low
+
+ * Update to 2.6.32-trunk.
+
+ -- Ben Hutchings <ben@decadent.org.uk> Thu, 17 Dec 2009 03:31:19 +0000
+
+linux-latest-2.6 (22) unstable; urgency=low
+
+ * Update to 2.6.31-1.
+
+ -- Ben Hutchings <ben@decadent.org.uk> Sun, 25 Oct 2009 18:33:06 +0000
+
+linux-latest-2.6 (21) unstable; urgency=low
+
+ [ Bastian Blank ]
+ * Update to 2.6.30-2.
+
+ [ Ben Hutchings ]
+ * Add myself to uploaders.
+
+ -- Ben Hutchings <ben@decadent.org.uk> Sat, 03 Oct 2009 17:43:55 +0100
+
+linux-latest-2.6 (20) unstable; urgency=low
+
+ * Move into kernel section.
+ * Update to 2.6.30-1.
+
+ -- Bastian Blank <waldi@debian.org> Mon, 29 Jun 2009 19:13:54 +0200
+
+linux-latest-2.6 (19) unstable; urgency=low
+
+ * Update to 2.6.29-2.
+ * Use debhelper compat level 7.
+ * Update copyright file.
+
+ -- Bastian Blank <waldi@debian.org> Sun, 10 May 2009 14:10:07 +0200
+
+linux-latest-2.6 (18) unstable; urgency=low
+
+ * Update to 2.6.29-1.
+ * Use dh_prep.
+ * Remove lenny transition packages.
+
+ -- Bastian Blank <waldi@debian.org> Sun, 26 Apr 2009 15:47:42 +0200
+
+linux-latest-2.6 (17) unstable; urgency=low
+
+ * Use correct part of the config for image type.
+ * Add description parts to all image packages.
+
+ -- Bastian Blank <waldi@debian.org> Wed, 10 Dec 2008 13:25:41 +0100
+
+linux-latest-2.6 (16) unstable; urgency=low
+
+ * Rebuild to pick up new images
+
+ -- Bastian Blank <waldi@debian.org> Sun, 31 Aug 2008 18:42:36 +0200
+
+linux-latest-2.6 (15) unstable; urgency=low
+
+ * Update to 2.6.26-1.
+ * Make linux-image-* complete meta packages.
+
+ -- Bastian Blank <waldi@debian.org> Mon, 04 Aug 2008 14:58:33 +0200
+
+linux-latest-2.6 (14) unstable; urgency=low
+
+ * Update to 2.6.25-2.
+
+ -- Bastian Blank <waldi@debian.org> Tue, 20 May 2008 13:28:45 +0200
+
+linux-latest-2.6 (13) unstable; urgency=low
+
+ * Add transitional packages for k7.
+
+ -- Bastian Blank <waldi@debian.org> Mon, 04 Feb 2008 10:22:13 +0100
+
+linux-latest-2.6 (12) unstable; urgency=low
+
+ * Update to 2.6.24-1.
+
+ -- Bastian Blank <waldi@debian.org> Thu, 31 Jan 2008 20:29:28 +0100
+
+linux-latest-2.6 (11) unstable; urgency=low
+
+ * Update to 2.6.22-3.
+
+ -- Bastian Blank <waldi@debian.org> Tue, 30 Oct 2007 15:50:30 +0100
+
+linux-latest-2.6 (10) unstable; urgency=low
+
+ * Update to 2.6.22-2.
+
+ -- Bastian Blank <waldi@debian.org> Thu, 06 Sep 2007 15:38:40 +0200
+
+linux-latest-2.6 (9) unstable; urgency=low
+
+ * Update to 2.6.22-1.
+
+ -- Bastian Blank <waldi@debian.org> Mon, 23 Jul 2007 14:13:49 +0200
+
+linux-latest-2.6 (8) unstable; urgency=low
+
+ * Update to 2.6.21-2.
+ * Add modules meta packages.
+ * Provide linux-latest-modules-*. (closes: #428783)
+
+ -- Bastian Blank <waldi@debian.org> Mon, 02 Jul 2007 14:22:21 +0200
+
+linux-latest-2.6 (7) unstable; urgency=low
+
+ * Update to 2.6.21-1.
+ * Remove etch transition packages.
+
+ -- Bastian Blank <waldi@debian.org> Tue, 29 May 2007 14:26:20 +0200
+
+linux-latest-2.6 (6) unstable; urgency=low
+
+ * Update to 2.6.18-4.
+ * i386: Add amd64 transition packages.
+
+ -- Bastian Blank <waldi@debian.org> Fri, 2 Feb 2007 17:45:58 +0100
+
+linux-latest-2.6 (5) unstable; urgency=low
+
+ * Update to 2.6.18-3.
+
+ -- Bastian Blank <waldi@debian.org> Thu, 30 Nov 2006 10:28:53 +0100
+
+linux-latest-2.6 (4) unstable; urgency=low
+
+ * Update to 2.6.18-2.
+
+ -- maximilian attems <maks@sternwelten.at> Tue, 7 Nov 2006 16:38:14 +0100
+
+linux-latest-2.6 (3) unstable; urgency=low
+
+ * Update linux-latest to 2.6.18.
+
+ -- Frederik Schüler <fs@debian.org> Mon, 2 Oct 2006 13:16:57 +0200
+
+linux-latest-2.6 (2) unstable; urgency=high
+
+ [ Bastian Blank ]
+ * Don't generate headers packages for module-less kernels.
+
+ [ Frederik Schüler ]
+ * [amd64] Add kernel-image-2.6-* transition packages. Closes: #377228
+
+ -- Frederik Schüler <fs@debian.org> Mon, 18 Sep 2006 16:32:51 +0200
+
+linux-latest-2.6 (1) unstable; urgency=low
+
+ * Initial release.
+
+ -- Bastian Blank <waldi@debian.org> Mon, 14 Aug 2006 20:32:24 +0200
--- /dev/null
+Source: linux-latest
+Section: kernel
+Priority: optional
+Maintainer: Debian Kernel Team <debian-kernel@lists.debian.org>
+Uploaders: Bastian Blank <waldi@debian.org>, Frederik Schüler <fs@debian.org>, Ben Hutchings <ben@decadent.org.uk>
+Standards-Version: 3.9.5
+Build-Depends: debhelper (>> 7), linux-support-3.16.0-4
+Vcs-Svn: svn://svn.debian.org/svn/kernel/dists/sid/linux-latest/
+Vcs-Browser: http://anonscm.debian.org/viewvc/kernel/dists/sid/linux-latest/
+
+Package: linux-source
+Architecture: all
+Depends: linux-source-3.16, ${misc:Depends}
+Description: Linux kernel source (meta-package)
+ This package depends on packages containing the sources of the latest
+ Linux kernel.
+
+Package: linux-doc
+Architecture: all
+Section: doc
+Depends: linux-doc-3.16, ${misc:Depends}
+Description: Linux kernel specific documentation (meta-package)
+ This package depends on the package containing the documentation for the
+ latest Linux kernel.
+
+Package: linux-tools
+Architecture: all
+Depends: linux-tools-3.16, ${misc:Depends}
+Description: Performance analysis tools for Linux (meta-package)
+ This package depends on the package containing the 'perf' performance
+ analysis tools for the latest Linux kernel.
+
+Package: linux-image-alpha-generic
+Architecture: alpha
+Provides: linux-latest-modules-3.16.0-4-alpha-generic
+Depends: linux-image-3.16.0-4-alpha-generic, ${misc:Depends}
+Description: Linux for Alpha (meta-package)
+ This package depends on the latest Linux kernel and modules for use on DEC
+ Alpha systems with extended kernel start address (Wildfire, Titan,
+ Marvel).
+
+Package: linux-headers-alpha-generic
+Architecture: alpha
+Depends: linux-headers-3.16.0-4-alpha-generic, ${misc:Depends}
+Description: Header files for Linux alpha-generic configuration (meta-package)
+ This package depends on the architecture-specific header files for the
+ latest Linux kernel alpha-generic configuration.
+
+Package: linux-image-alpha-smp
+Architecture: alpha
+Provides: linux-latest-modules-3.16.0-4-alpha-smp
+Depends: linux-image-3.16.0-4-alpha-smp, ${misc:Depends}
+Description: Linux for Alpha SMP (meta-package)
+ This package depends on the latest Linux kernel and modules for use on DEC
+ Alpha SMP systems with extended kernel start address (Wildfire, Titan,
+ Marvel).
+
+Package: linux-headers-alpha-smp
+Architecture: alpha
+Depends: linux-headers-3.16.0-4-alpha-smp, ${misc:Depends}
+Description: Header files for Linux alpha-smp configuration (meta-package)
+ This package depends on the architecture-specific header files for the
+ latest Linux kernel alpha-smp configuration.
+
+Package: linux-image-alpha-legacy
+Architecture: alpha
+Provides: linux-latest-modules-3.16.0-4-alpha-legacy
+Depends: linux-image-3.16.0-4-alpha-legacy, ${misc:Depends}
+Description: Linux for Alpha Legacy (meta-package)
+ This package depends on the latest Linux kernel and modules for use on DEC
+ Alpha systems with legacy kernel start address.
+
+Package: linux-headers-alpha-legacy
+Architecture: alpha
+Depends: linux-headers-3.16.0-4-alpha-legacy, ${misc:Depends}
+Description: Header files for Linux alpha-legacy configuration (meta-package)
+ This package depends on the architecture-specific header files for the
+ latest Linux kernel alpha-legacy configuration.
+
+Package: linux-image-amd64
+Architecture: amd64 i386
+Provides: linux-latest-modules-3.16.0-4-amd64
+Depends: linux-image-3.16.0-4-amd64, ${misc:Depends}
+Description: Linux for 64-bit PCs (meta-package)
+ This package depends on the latest Linux kernel and modules for use on PCs
+ with AMD64, Intel 64 or VIA Nano processors.
+ .
+ This kernel also runs on a Xen hypervisor. It supports both privileged
+ (dom0) and unprivileged (domU) operation.
+
+Package: linux-headers-amd64
+Architecture: amd64 i386
+Depends: linux-headers-3.16.0-4-amd64, ${misc:Depends}
+Description: Header files for Linux amd64 configuration (meta-package)
+ This package depends on the architecture-specific header files for the
+ latest Linux kernel amd64 configuration.
+
+Package: linux-image-amd64-dbg
+Architecture: amd64
+Provides: linux-latest-image-dbg
+Depends: linux-image-3.16.0-4-amd64-dbg, ${misc:Depends}
+Description: Debugging symbols for Linux amd64 configuration (meta-package)
+ This package depends on the detached debugging symbols for the latest
+ Linux kernel amd64 configuration.
+
+Package: xen-linux-system-amd64
+Architecture: amd64
+Provides: xen-linux-system
+Depends: xen-linux-system-3.16.0-4-amd64, ${misc:Depends}
+Description: Xen system with Linux for 64-bit PCs (meta-package)
+ This package depends on the Xen hypervisor and the latest Linux kernel
+ amd64 configuration.
+
+Package: linux-image-arm64
+Architecture: arm64
+Provides: linux-latest-modules-3.16.0-4-arm64
+Depends: linux-image-3.16.0-4-arm64, ${misc:Depends}
+Description: Linux for 64-bit ARMv8 machines (meta-package)
+ This package depends on the latest Linux kernel and modules for use on
+ 64-bit ARMv8 machines.
+
+Package: linux-headers-arm64
+Architecture: arm64
+Depends: linux-headers-3.16.0-4-arm64, ${misc:Depends}
+Description: Header files for Linux arm64 configuration (meta-package)
+ This package depends on the architecture-specific header files for the
+ latest Linux kernel arm64 configuration.
+
+Package: linux-image-arm64-dbg
+Architecture: arm64
+Provides: linux-latest-image-dbg
+Depends: linux-image-3.16.0-4-arm64-dbg, ${misc:Depends}
+Description: Debugging symbols for Linux arm64 configuration (meta-package)
+ This package depends on the detached debugging symbols for the latest
+ Linux kernel arm64 configuration.
+
+Package: linux-image-ixp4xx
+Architecture: armel
+Provides: linux-latest-modules-3.16.0-4-ixp4xx
+Depends: linux-image-3.16.0-4-ixp4xx, ${misc:Depends}
+Description: Linux for IXP4xx (meta-package)
+ This package depends on the latest Linux kernel and modules for use on
+ IXP4xx based systems (Linksys NSLU2, etc).
+
+Package: linux-headers-ixp4xx
+Architecture: armel
+Depends: linux-headers-3.16.0-4-ixp4xx, ${misc:Depends}
+Description: Header files for Linux ixp4xx configuration (meta-package)
+ This package depends on the architecture-specific header files for the
+ latest Linux kernel ixp4xx configuration.
+
+Package: linux-image-kirkwood
+Architecture: armel
+Provides: linux-latest-modules-3.16.0-4-kirkwood
+Depends: linux-image-3.16.0-4-kirkwood, ${misc:Depends}
+Description: Linux for Marvell Kirkwood (meta-package)
+ This package depends on the latest Linux kernel and modules for use on
+ Marvell Kirkwood based systems (SheevaPlug, QNAP TS-119/TS-219, etc).
+
+Package: linux-headers-kirkwood
+Architecture: armel
+Depends: linux-headers-3.16.0-4-kirkwood, ${misc:Depends}
+Description: Header files for Linux kirkwood configuration (meta-package)
+ This package depends on the architecture-specific header files for the
+ latest Linux kernel kirkwood configuration.
+
+Package: linux-image-orion5x
+Architecture: armel
+Provides: linux-latest-modules-3.16.0-4-orion5x
+Depends: linux-image-3.16.0-4-orion5x, ${misc:Depends}
+Description: Linux for Marvell Orion (meta-package)
+ This package depends on the latest Linux kernel and modules for use on
+ Marvell Orion 5181, 5182 and 5281 based systems (QNAP TS-109/TS-209, etc).
+
+Package: linux-headers-orion5x
+Architecture: armel
+Depends: linux-headers-3.16.0-4-orion5x, ${misc:Depends}
+Description: Header files for Linux orion5x configuration (meta-package)
+ This package depends on the architecture-specific header files for the
+ latest Linux kernel orion5x configuration.
+
+Package: linux-image-versatile
+Architecture: armel
+Provides: linux-latest-modules-3.16.0-4-versatile
+Depends: linux-image-3.16.0-4-versatile, ${misc:Depends}
+Description: Linux for Versatile (meta-package)
+ This package depends on the latest Linux kernel and modules for use on
+ Versatile systems (PB, AB, Qemu).
+
+Package: linux-headers-versatile
+Architecture: armel
+Depends: linux-headers-3.16.0-4-versatile, ${misc:Depends}
+Description: Header files for Linux versatile configuration (meta-package)
+ This package depends on the architecture-specific header files for the
+ latest Linux kernel versatile configuration.
+
+Package: linux-image-rpi
+Architecture: armhf
+Provides: linux-latest-modules-3.16.0-4-rpi
+Depends: linux-image-3.16.0-4-rpi, ${misc:Depends}
+Description: Linux for RaspberryPI (meta-package)
+ This package depends on the latest Linux kernel and modules for use on
+ Raspberry PI.
+
+Package: linux-headers-rpi
+Architecture: armhf
+Depends: linux-headers-3.16.0-4-rpi, ${misc:Depends}
+Description: Header files for Linux rpi configuration (meta-package)
+ This package depends on the architecture-specific header files for the
+ latest Linux kernel rpi configuration.
+
+Package: linux-image-parisc
+Architecture: hppa
+Provides: linux-latest-modules-3.16.0-4-parisc
+Depends: linux-image-3.16.0-4-parisc, ${misc:Depends}
+Description: Linux for 32-bit PA-RISC (meta-package)
+ This package depends on the latest Linux kernel and modules for use on HP
+ PA-RISC 32-bit systems with max 4 GB RAM.
+
+Package: linux-headers-parisc
+Architecture: hppa
+Depends: linux-headers-3.16.0-4-parisc, ${misc:Depends}
+Description: Header files for Linux parisc configuration (meta-package)
+ This package depends on the architecture-specific header files for the
+ latest Linux kernel parisc configuration.
+
+Package: linux-image-parisc64-smp
+Architecture: hppa
+Provides: linux-latest-modules-3.16.0-4-parisc64-smp
+Depends: linux-image-3.16.0-4-parisc64-smp, ${misc:Depends}
+Description: Linux for multiprocessor 64-bit PA-RISC (meta-package)
+ This package depends on the latest Linux kernel and modules for use on HP
+ PA-RISC 64-bit SMP systems with support for more than 4 GB RAM.
+
+Package: linux-headers-parisc64-smp
+Architecture: hppa
+Depends: linux-headers-3.16.0-4-parisc64-smp, ${misc:Depends}
+Description: Header files for Linux parisc64-smp configuration (meta-package)
+ This package depends on the architecture-specific header files for the
+ latest Linux kernel parisc64-smp configuration.
+
+Package: linux-image-586
+Architecture: i386
+Provides: linux-latest-modules-3.16.0-4-586
+Depends: linux-image-3.16.0-4-586, ${misc:Depends}
+Description: Linux for older PCs (meta-package)
+ This package depends on the latest Linux kernel and modules for use on PCs
+ with a single processor not supporting PAE.
+ .
+ This kernel is not suitable for SMP (multi-processor, multi-core or
+ hyper-threaded) systems.
+
+Package: linux-headers-586
+Architecture: i386
+Depends: linux-headers-3.16.0-4-586, ${misc:Depends}
+Description: Header files for Linux 586 configuration (meta-package)
+ This package depends on the architecture-specific header files for the
+ latest Linux kernel 586 configuration.
+
+Package: linux-image-686-pae
+Architecture: i386
+Provides: linux-latest-modules-3.16.0-4-686-pae
+Depends: linux-image-3.16.0-4-686-pae, ${misc:Depends}
+Description: Linux for modern PCs (meta-package)
+ This package depends on the latest Linux kernel and modules for use on PCs
+ with one or more processors supporting PAE.
+ .
+ This kernel requires PAE (Physical Address Extension). This feature is
+ supported by the Intel Pentium Pro/II/III/4/4M/D, Xeon, Core and Atom; AMD
+ Geode NX, Athlon (K7), Duron, Opteron, Sempron, Turion or Phenom;
+ Transmeta Efficeon; VIA C7; and some other processors.
+ .
+ This kernel also runs on a Xen hypervisor. It supports both privileged
+ (dom0) and unprivileged (domU) operation.
+
+Package: linux-headers-686-pae
+Architecture: i386
+Depends: linux-headers-3.16.0-4-686-pae, ${misc:Depends}
+Description: Header files for Linux 686-pae configuration (meta-package)
+ This package depends on the architecture-specific header files for the
+ latest Linux kernel 686-pae configuration.
+
+Package: linux-image-686-pae-dbg
+Architecture: i386
+Provides: linux-latest-image-dbg
+Depends: linux-image-3.16.0-4-686-pae-dbg, ${misc:Depends}
+Description: Debugging symbols for Linux 686-pae configuration (meta-package)
+ This package depends on the detached debugging symbols for the latest
+ Linux kernel 686-pae configuration.
+
+Package: linux-image-itanium
+Architecture: ia64
+Provides: linux-latest-modules-3.16.0-4-itanium
+Depends: linux-image-3.16.0-4-itanium, ${misc:Depends}
+Description: Linux for Itanium (meta-package)
+ This package depends on the latest Linux kernel and modules for use on
+ Itanium.
+
+Package: linux-headers-itanium
+Architecture: ia64
+Depends: linux-headers-3.16.0-4-itanium, ${misc:Depends}
+Description: Header files for Linux itanium configuration (meta-package)
+ This package depends on the architecture-specific header files for the
+ latest Linux kernel itanium configuration.
+
+Package: linux-image-mckinley
+Architecture: ia64
+Provides: linux-latest-modules-3.16.0-4-mckinley
+Depends: linux-image-3.16.0-4-mckinley, ${misc:Depends}
+Description: Linux for Itanium II (meta-package)
+ This package depends on the latest Linux kernel and modules for use on
+ Itanium II.
+
+Package: linux-headers-mckinley
+Architecture: ia64
+Depends: linux-headers-3.16.0-4-mckinley, ${misc:Depends}
+Description: Header files for Linux mckinley configuration (meta-package)
+ This package depends on the architecture-specific header files for the
+ latest Linux kernel mckinley configuration.
+
+Package: linux-image-m68k
+Architecture: m68k
+Provides: linux-latest-modules-3.16.0-4-m68k
+Depends: linux-image-3.16.0-4-m68k, ${misc:Depends}
+Description: Linux for Motorola MC68020+ family (meta-package)
+ This package depends on the latest Linux kernel and modules for use on
+ Motorola MC68020+ family.
+
+Package: linux-headers-m68k
+Architecture: m68k
+Depends: linux-headers-3.16.0-4-m68k, ${misc:Depends}
+Description: Header files for Linux m68k configuration (meta-package)
+ This package depends on the architecture-specific header files for the
+ latest Linux kernel m68k configuration.
+
+Package: linux-image-r4k-ip22
+Architecture: mips
+Provides: linux-latest-modules-3.16.0-4-r4k-ip22
+Depends: linux-image-3.16.0-4-r4k-ip22, ${misc:Depends}
+Description: Linux for SGI IP22 (meta-package)
+ This package depends on the latest Linux kernel and modules for use on SGI
+ IP22 systems (Indy, Indigo2).
+
+Package: linux-headers-r4k-ip22
+Architecture: mips
+Depends: linux-headers-3.16.0-4-r4k-ip22, ${misc:Depends}
+Description: Header files for Linux r4k-ip22 configuration (meta-package)
+ This package depends on the architecture-specific header files for the
+ latest Linux kernel r4k-ip22 configuration.
+
+Package: linux-image-r5k-ip32
+Architecture: mips
+Provides: linux-latest-modules-3.16.0-4-r5k-ip32
+Depends: linux-image-3.16.0-4-r5k-ip32, ${misc:Depends}
+Description: Linux for SGI IP32 (meta-package)
+ This package depends on the latest Linux kernel and modules for use on SGI
+ IP32 systems (O2).
+
+Package: linux-headers-r5k-ip32
+Architecture: mips
+Depends: linux-headers-3.16.0-4-r5k-ip32, ${misc:Depends}
+Description: Header files for Linux r5k-ip32 configuration (meta-package)
+ This package depends on the architecture-specific header files for the
+ latest Linux kernel r5k-ip32 configuration.
+
+Package: linux-image-sb1-bcm91250a
+Architecture: mips mips64 mips64el mipsel
+Provides: linux-latest-modules-3.16.0-4-sb1-bcm91250a
+Depends: linux-image-3.16.0-4-sb1-bcm91250a, ${misc:Depends}
+Description: Linux for BCM91250A (meta-package)
+ This package depends on the latest Linux kernel and modules for use on
+ Broadcom BCM91250A systems (aka SWARM).
+
+Package: linux-headers-sb1-bcm91250a
+Architecture: mips mips64 mips64el mipsel
+Depends: linux-headers-3.16.0-4-sb1-bcm91250a, ${misc:Depends}
+Description: Header files for Linux sb1-bcm91250a configuration (meta-package)
+ This package depends on the architecture-specific header files for the
+ latest Linux kernel sb1-bcm91250a configuration.
+
+Package: linux-image-4kc-malta
+Architecture: mips mipsel
+Provides: linux-latest-modules-3.16.0-4-4kc-malta
+Depends: linux-image-3.16.0-4-4kc-malta, ${misc:Depends}
+Description: Linux for MIPS Malta (meta-package)
+ This package depends on the latest Linux kernel and modules for use on
+ MIPS Malta boards.
+
+Package: linux-headers-4kc-malta
+Architecture: mips mipsel
+Depends: linux-headers-3.16.0-4-4kc-malta, ${misc:Depends}
+Description: Header files for Linux 4kc-malta configuration (meta-package)
+ This package depends on the architecture-specific header files for the
+ latest Linux kernel 4kc-malta configuration.
+
+Package: linux-image-5kc-malta
+Architecture: mips mips64 mips64el mipsel
+Provides: linux-latest-modules-3.16.0-4-5kc-malta
+Depends: linux-image-3.16.0-4-5kc-malta, ${misc:Depends}
+Description: Linux for MIPS Malta (64-bit) (meta-package)
+ This package depends on the latest Linux kernel and modules for use on
+ MIPS Malta boards (64-bit).
+
+Package: linux-headers-5kc-malta
+Architecture: mips mips64 mips64el mipsel
+Depends: linux-headers-3.16.0-4-5kc-malta, ${misc:Depends}
+Description: Header files for Linux 5kc-malta configuration (meta-package)
+ This package depends on the architecture-specific header files for the
+ latest Linux kernel 5kc-malta configuration.
+
+Package: linux-image-octeon
+Architecture: mips mips64 mips64el
+Provides: linux-latest-modules-3.16.0-4-octeon
+Depends: linux-image-3.16.0-4-octeon, ${misc:Depends}
+Description: Linux for Octeon (meta-package)
+ This package depends on the latest Linux kernel and modules for use on
+ Cavium Networks Octeon.
+
+Package: linux-headers-octeon
+Architecture: mips mips64 mips64el
+Depends: linux-headers-3.16.0-4-octeon, ${misc:Depends}
+Description: Header files for Linux octeon configuration (meta-package)
+ This package depends on the architecture-specific header files for the
+ latest Linux kernel octeon configuration.
+
+Package: linux-image-loongson-2e
+Architecture: mipsel
+Provides: linux-latest-modules-3.16.0-4-loongson-2e
+Depends: linux-image-3.16.0-4-loongson-2e, ${misc:Depends}
+Description: Linux for Loongson 2E (meta-package)
+ This package depends on the latest Linux kernel and modules for use on
+ Lemote Loongson 2E systems.
+
+Package: linux-headers-loongson-2e
+Architecture: mipsel
+Depends: linux-headers-3.16.0-4-loongson-2e, ${misc:Depends}
+Description: Header files for Linux loongson-2e configuration (meta-package)
+ This package depends on the architecture-specific header files for the
+ latest Linux kernel loongson-2e configuration.
+
+Package: linux-image-loongson-2f
+Architecture: mipsel
+Provides: linux-latest-modules-3.16.0-4-loongson-2f
+Depends: linux-image-3.16.0-4-loongson-2f, ${misc:Depends}
+Description: Linux for Loongson 2F (meta-package)
+ This package depends on the latest Linux kernel and modules for use on
+ Lemote Loongson 2F systems.
+
+Package: linux-headers-loongson-2f
+Architecture: mipsel
+Depends: linux-headers-3.16.0-4-loongson-2f, ${misc:Depends}
+Description: Header files for Linux loongson-2f configuration (meta-package)
+ This package depends on the architecture-specific header files for the
+ latest Linux kernel loongson-2f configuration.
+
+Package: linux-image-loongson-3
+Architecture: mips64el mipsel
+Provides: linux-latest-modules-3.16.0-4-loongson-3
+Depends: linux-image-3.16.0-4-loongson-3, ${misc:Depends}
+Description: Linux for Loongson 3A/3B (meta-package)
+ This package depends on the latest Linux kernel and modules for use on
+ Loongson 3A or 3B based systems (e.g. from Loongson or Lemote).
+
+Package: linux-headers-loongson-3
+Architecture: mips64el mipsel
+Depends: linux-headers-3.16.0-4-loongson-3, ${misc:Depends}
+Description: Header files for Linux loongson-3 configuration (meta-package)
+ This package depends on the architecture-specific header files for the
+ latest Linux kernel loongson-3 configuration.
+
+Package: linux-image-powerpc
+Architecture: powerpc
+Provides: linux-latest-modules-3.16.0-4-powerpc
+Depends: linux-image-3.16.0-4-powerpc, ${misc:Depends}
+Description: Linux for uniprocessor 32-bit PowerPC (meta-package)
+ This package depends on the latest Linux kernel and modules for use on
+ uniprocessor 32-bit PowerPC.
+
+Package: linux-headers-powerpc
+Architecture: powerpc
+Depends: linux-headers-3.16.0-4-powerpc, ${misc:Depends}
+Description: Header files for Linux powerpc configuration (meta-package)
+ This package depends on the architecture-specific header files for the
+ latest Linux kernel powerpc configuration.
+
+Package: linux-image-powerpc-smp
+Architecture: powerpc
+Provides: linux-latest-modules-3.16.0-4-powerpc-smp
+Depends: linux-image-3.16.0-4-powerpc-smp, ${misc:Depends}
+Description: Linux for multiprocessor 32-bit PowerPC (meta-package)
+ This package depends on the latest Linux kernel and modules for use on
+ multiprocessor 32-bit PowerPC.
+
+Package: linux-headers-powerpc-smp
+Architecture: powerpc
+Depends: linux-headers-3.16.0-4-powerpc-smp, ${misc:Depends}
+Description: Header files for Linux powerpc-smp configuration (meta-package)
+ This package depends on the architecture-specific header files for the
+ latest Linux kernel powerpc-smp configuration.
+
+Package: linux-image-powerpc64
+Architecture: powerpc ppc64
+Provides: linux-latest-modules-3.16.0-4-powerpc64
+Depends: linux-image-3.16.0-4-powerpc64, ${misc:Depends}
+Description: Linux for 64-bit PowerPC (meta-package)
+ This package depends on the latest Linux kernel and modules for use on
+ 64-bit PowerPC.
+
+Package: linux-headers-powerpc64
+Architecture: powerpc ppc64
+Depends: linux-headers-3.16.0-4-powerpc64, ${misc:Depends}
+Description: Header files for Linux powerpc64 configuration (meta-package)
+ This package depends on the architecture-specific header files for the
+ latest Linux kernel powerpc64 configuration.
+
+Package: linux-image-powerpcspe
+Architecture: powerpcspe
+Provides: linux-latest-modules-3.16.0-4-powerpcspe
+Depends: linux-image-3.16.0-4-powerpcspe, ${misc:Depends}
+Description: Linux for 32-bit PowerPC with SPE (instead of AltiVec) with SMP support (meta-package)
+ This package depends on the latest Linux kernel and modules for use on
+ 32-bit PowerPC with SPE (instead of AltiVec) with SMP support.
+
+Package: linux-headers-powerpcspe
+Architecture: powerpcspe
+Depends: linux-headers-3.16.0-4-powerpcspe, ${misc:Depends}
+Description: Header files for Linux powerpcspe configuration (meta-package)
+ This package depends on the architecture-specific header files for the
+ latest Linux kernel powerpcspe configuration.
+
+Package: linux-image-powerpc64le
+Architecture: ppc64el
+Provides: linux-latest-modules-3.16.0-4-powerpc64le
+Depends: linux-image-3.16.0-4-powerpc64le, ${misc:Depends}
+Description: Linux for Little-endian 64-bit PowerPC (meta-package)
+ This package depends on the latest Linux kernel and modules for use on
+ Little-endian 64-bit PowerPC.
+
+Package: linux-headers-powerpc64le
+Architecture: ppc64el
+Depends: linux-headers-3.16.0-4-powerpc64le, ${misc:Depends}
+Description: Header files for Linux powerpc64le configuration (meta-package)
+ This package depends on the architecture-specific header files for the
+ latest Linux kernel powerpc64le configuration.
+
+Package: linux-image-s390x
+Architecture: s390 s390x
+Provides: linux-latest-modules-3.16.0-4-s390x
+Depends: linux-image-3.16.0-4-s390x, ${misc:Depends}
+Description: Linux for IBM zSeries (meta-package)
+ This package depends on the latest Linux kernel and modules for use on IBM
+ zSeries.
+
+Package: linux-headers-s390x
+Architecture: s390 s390x
+Depends: linux-headers-3.16.0-4-s390x, ${misc:Depends}
+Description: Header files for Linux s390x configuration (meta-package)
+ This package depends on the architecture-specific header files for the
+ latest Linux kernel s390x configuration.
+
+Package: linux-image-s390x-dbg
+Architecture: s390 s390x
+Provides: linux-latest-image-dbg
+Depends: linux-image-3.16.0-4-s390x-dbg, ${misc:Depends}
+Description: Debugging symbols for Linux s390x configuration (meta-package)
+ This package depends on the detached debugging symbols for the latest
+ Linux kernel s390x configuration.
+
+Package: linux-image-sh7751r
+Architecture: sh4
+Provides: linux-latest-modules-3.16.0-4-sh7751r
+Depends: linux-image-3.16.0-4-sh7751r, ${misc:Depends}
+Description: Linux for sh7751r (meta-package)
+ This package depends on the latest Linux kernel and modules for use on
+ Renesas SH7751R R2D plus board.
+
+Package: linux-headers-sh7751r
+Architecture: sh4
+Depends: linux-headers-3.16.0-4-sh7751r, ${misc:Depends}
+Description: Header files for Linux sh7751r configuration (meta-package)
+ This package depends on the architecture-specific header files for the
+ latest Linux kernel sh7751r configuration.
+
+Package: linux-image-sh7785lcr
+Architecture: sh4
+Provides: linux-latest-modules-3.16.0-4-sh7785lcr
+Depends: linux-image-3.16.0-4-sh7785lcr, ${misc:Depends}
+Description: Linux for sh7785lcr (meta-package)
+ This package depends on the latest Linux kernel and modules for use on
+ Renesas SH7785 reference board.
+
+Package: linux-headers-sh7785lcr
+Architecture: sh4
+Depends: linux-headers-3.16.0-4-sh7785lcr, ${misc:Depends}
+Description: Header files for Linux sh7785lcr configuration (meta-package)
+ This package depends on the architecture-specific header files for the
+ latest Linux kernel sh7785lcr configuration.
+
+Package: linux-image-sparc64
+Architecture: sparc sparc64
+Provides: linux-latest-modules-3.16.0-4-sparc64
+Depends: linux-image-3.16.0-4-sparc64, ${misc:Depends}
+Description: Linux for uniprocessor 64-bit UltraSPARC (meta-package)
+ This package depends on the latest Linux kernel and modules for use on
+ uniprocessor 64-bit UltraSPARC.
+
+Package: linux-headers-sparc64
+Architecture: sparc sparc64
+Depends: linux-headers-3.16.0-4-sparc64, ${misc:Depends}
+Description: Header files for Linux sparc64 configuration (meta-package)
+ This package depends on the architecture-specific header files for the
+ latest Linux kernel sparc64 configuration.
+
+Package: linux-image-sparc64-smp
+Architecture: sparc sparc64
+Provides: linux-latest-modules-3.16.0-4-sparc64-smp
+Depends: linux-image-3.16.0-4-sparc64-smp, ${misc:Depends}
+Description: Linux for multiprocessor 64-bit UltraSPARC (meta-package)
+ This package depends on the latest Linux kernel and modules for use on
+ multiprocessor 64-bit UltraSPARC.
+
+Package: linux-headers-sparc64-smp
+Architecture: sparc sparc64
+Depends: linux-headers-3.16.0-4-sparc64-smp, ${misc:Depends}
+Description: Header files for Linux sparc64-smp configuration (meta-package)
+ This package depends on the architecture-specific header files for the
+ latest Linux kernel sparc64-smp configuration.
+
+Package: linux-image-rpi-rpfv
+Architecture: armhf
+Section: oldlibs
+Depends: linux-image-586, ${misc:Depends}
+Description: Linux for older PCs (dummy package)
+ This is a dummy transitional package. It can be safely removed.
+
+Package: linux-headers-rpi-rpfv
+Architecture: armhf
+Depends: linux-headers-3.18.0-trunk-rpi
+Description:
+ This metapackage will pull in the headers for the raspbian kernel for the
+ raspberry pi 1 based on the version currently reccomended by the raspberry
+ pi foundation (currently 3.18).
+
+Package: linux-image-rpi2-rpfv
+Architecture: armhf
+Depends: linux-image-3.18.0-trunk-rpi2
+Description:
+ This metapackage will pull in the raspbian kernel for the raspberry pi 2
+ based on the version currently reccomended by the raspberry pi foundation
+ (currently 3.18).
+
+Package: linux-headers-rpi2-rpfv
+Architecture: armhf
+Depends: linux-headers-3.18.0-trunk-rpi2
+Description:
+ This metapackage will pull in the headers for the raspbian kernel for the
+ raspberry pi 2 based on the version currently reccomended by the raspberry
+ pi foundation (currently 3.18).
+
--- /dev/null
+c0a261cf838ef50d7763219e621fe680 debian/bin/gencontrol.py
+bef20638adb2f7741c78a227a70f419d debian/changelog
+112d822bf08fd275ab6b5ee310865736 debian/templates/control.xen-linux-system.latest.in
+e0d0ba88825ee8272918ca115601e1e3 debian/templates/control.image-dbg.latest.in
+8cf2ba1553c0ad410aeaf0c90a47a328 debian/templates/control.source.latest.in
+2bec21a63cd49ba2ee927d000d64c42d debian/templates/control.headers.latest.in
+c78545990739b7f1546987497342b75d debian/templates/control.image.latest.type-standalone.in
+214b6b89c361dd489803d9f344ad9b69 debian/templates/control.doc.latest.in
+9d95492e7a620b3d0f0bc0d034cb40df debian/templates/control.source.in
+c1a89732fcad92a2596cf428d6c7c60d debian/templates/control.tools.latest.in
+2259c77e579a48ae99b180e64c8efd50 debian/templates/control.extra.in
--- /dev/null
+Copyright:
+
+ Copyright (C) 2006-2009 Bastian Blank <waldi@debian.org>
+
+License:
+
+ This package 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; either version 2 of the License, or
+ (at your option) any later version.
+
+ This package 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 package; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
+On Debian systems, the complete text of the GNU General
+Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.
--- /dev/null
+misc:Depends=
--- /dev/null
+misc:Depends=
--- /dev/null
+Package: linux-headers-armmp-lpae
+Source: linux-latest (56+rpi1)
+Version: 3.13+56
+Architecture: armhf
+Maintainer: Debian Kernel Team <debian-kernel@lists.debian.org>
+Installed-Size: 29
+Depends: linux-headers-3.13-1-armmp-lpae
+Section: kernel
+Priority: optional
+Description: Header files for Linux armmp-lpae configuration (meta-package)
+ This package depends on the architecture-specific header files for the
+ latest Linux kernel armmp-lpae configuration.
--- /dev/null
+1b49e10b2f3d4324865431986be6b0b2 usr/share/doc/linux-headers-armmp-lpae/changelog.gz
+5e5300a90625dbe51d8f6d2d1179a92c usr/share/doc/linux-headers-armmp-lpae/copyright
--- /dev/null
+Copyright:
+
+ Copyright (C) 2006-2009 Bastian Blank <waldi@debian.org>
+
+License:
+
+ This package 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; either version 2 of the License, or
+ (at your option) any later version.
+
+ This package 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 package; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
+On Debian systems, the complete text of the GNU General
+Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.
--- /dev/null
+misc:Depends=
--- /dev/null
+Package: linux-headers-armmp
+Source: linux-latest (56+rpi1)
+Version: 3.13+56
+Architecture: armhf
+Maintainer: Debian Kernel Team <debian-kernel@lists.debian.org>
+Installed-Size: 29
+Depends: linux-headers-3.13-1-armmp
+Section: kernel
+Priority: optional
+Description: Header files for Linux armmp configuration (meta-package)
+ This package depends on the architecture-specific header files for the
+ latest Linux kernel armmp configuration.
--- /dev/null
+1b49e10b2f3d4324865431986be6b0b2 usr/share/doc/linux-headers-armmp/changelog.gz
+5e5300a90625dbe51d8f6d2d1179a92c usr/share/doc/linux-headers-armmp/copyright
--- /dev/null
+Copyright:
+
+ Copyright (C) 2006-2009 Bastian Blank <waldi@debian.org>
+
+License:
+
+ This package 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; either version 2 of the License, or
+ (at your option) any later version.
+
+ This package 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 package; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
+On Debian systems, the complete text of the GNU General
+Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.
--- /dev/null
+misc:Depends=
--- /dev/null
+misc:Depends=
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-3.16.0-4-4kc-malta instead.
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-3.16.0-4-586 instead.
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-3.16.0-4-5kc-malta instead.
--- /dev/null
+linux-image-686-pae-dbg: wrong-section-according-to-package-name linux-image-686-pae-dbg => debug
+linux-image-686-pae-dbg: debug-package-should-be-priority-extra linux-image-686-pae-dbg
--- /dev/null
+linux-latest (47) unstable; urgency=medium
+
+ * The kernel image is now compressed using xz compression. If you are
+ running it under a virtualisation system such as Xen, that will
+ decompress the kernel itself, then you will need to ensure that the
+ system is up to date and includes support for such kernels.
+
+ The Xen system included in Debian 7 'wheezy' does support this.
+
+ See https://wiki.debian.org/Xen#Error_.22unknown_compression_format.22
+ for more information.
+
+ -- Ben Hutchings <ben@decadent.org.uk> Thu, 14 Aug 2014 02:20:57 +0100
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-3.16.0-4-686-pae instead.
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-3.16.0-4-alpha-generic instead.
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-3.16.0-4-alpha-legacy instead.
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-3.16.0-4-alpha-smp instead.
--- /dev/null
+linux-image-amd64-dbg: wrong-section-according-to-package-name linux-image-amd64-dbg => debug
+linux-image-amd64-dbg: debug-package-should-be-priority-extra linux-image-amd64-dbg
--- /dev/null
+linux-latest (47) unstable; urgency=medium
+
+ * The kernel image is now compressed using xz compression. If you are
+ running it under a virtualisation system such as Xen, that will
+ decompress the kernel itself, then you will need to ensure that the
+ system is up to date and includes support for such kernels.
+
+ The Xen system included in Debian 7 'wheezy' does support this.
+
+ See https://wiki.debian.org/Xen#Error_.22unknown_compression_format.22
+ for more information.
+
+ -- Ben Hutchings <ben@decadent.org.uk> Thu, 14 Aug 2014 02:20:57 +0100
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-3.16.0-4-amd64 instead.
--- /dev/null
+linux-image-arm64-dbg: wrong-section-according-to-package-name linux-image-arm64-dbg => debug
+linux-image-arm64-dbg: debug-package-should-be-priority-extra linux-image-arm64-dbg
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-3.16.0-4-arm64 instead.
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-3.16.0-4-armmp-lpae instead.
--- /dev/null
+misc:Depends=
--- /dev/null
+Package: linux-image-armmp-lpae
+Source: linux-latest (56+rpi1)
+Version: 3.13+56
+Architecture: armhf
+Maintainer: Debian Kernel Team <debian-kernel@lists.debian.org>
+Installed-Size: 38
+Depends: linux-image-3.13-1-armmp-lpae
+Provides: linux-latest-modules-3.13-1-armmp-lpae
+Section: kernel
+Priority: optional
+Description: Linux for ARMv7 multiplatform compatible SoCs supporting LPAE (meta-package)
+ This package depends on the latest Linux kernel and modules for use on
+ ARMv7 multiplatform kernel supporting LPAE.
--- /dev/null
+903c99e2c43cb3e83f8a63a4b784acf5 usr/share/bug/linux-image-armmp-lpae/presubj
+6d53927fd4437352599f954e2dca7741 usr/share/doc/linux-image-armmp-lpae/NEWS.Debian.gz
+1b49e10b2f3d4324865431986be6b0b2 usr/share/doc/linux-image-armmp-lpae/changelog.gz
+5e5300a90625dbe51d8f6d2d1179a92c usr/share/doc/linux-image-armmp-lpae/copyright
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-3.13-1-armmp-lpae instead.
--- /dev/null
+Copyright:
+
+ Copyright (C) 2006-2009 Bastian Blank <waldi@debian.org>
+
+License:
+
+ This package 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; either version 2 of the License, or
+ (at your option) any later version.
+
+ This package 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 package; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
+On Debian systems, the complete text of the GNU General
+Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-3.16.0-4-armmp instead.
--- /dev/null
+misc:Depends=
--- /dev/null
+Package: linux-image-armmp
+Source: linux-latest (56+rpi1)
+Version: 3.13+56
+Architecture: armhf
+Maintainer: Debian Kernel Team <debian-kernel@lists.debian.org>
+Installed-Size: 38
+Depends: linux-image-3.13-1-armmp
+Provides: linux-latest-modules-3.13-1-armmp
+Section: kernel
+Priority: optional
+Description: Linux for ARMv7 multiplatform compatible SoCs (meta-package)
+ This package depends on the latest Linux kernel and modules for use on
+ ARMv7 multiplatform kernel for Marvell Armada 370/xp, Freescale
+ iMX5x/iMX6.
--- /dev/null
+6454cfbed7037a69250fb3caebb873e1 usr/share/bug/linux-image-armmp/presubj
+6d53927fd4437352599f954e2dca7741 usr/share/doc/linux-image-armmp/NEWS.Debian.gz
+1b49e10b2f3d4324865431986be6b0b2 usr/share/doc/linux-image-armmp/changelog.gz
+5e5300a90625dbe51d8f6d2d1179a92c usr/share/doc/linux-image-armmp/copyright
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-3.13-1-armmp instead.
--- /dev/null
+Copyright:
+
+ Copyright (C) 2006-2009 Bastian Blank <waldi@debian.org>
+
+License:
+
+ This package 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; either version 2 of the License, or
+ (at your option) any later version.
+
+ This package 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 package; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
+On Debian systems, the complete text of the GNU General
+Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-3.16.0-4-itanium instead.
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-3.16.0-4-ixp4xx instead.
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-3.16.0-4-kirkwood instead.
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-3.16.0-4-loongson-2e instead.
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-3.16.0-4-loongson-2f instead.
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-3.16.0-4-loongson-3 instead.
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-3.16.0-4-m68k instead.
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-3.16.0-4-mckinley instead.
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-3.16.0-4-octeon instead.
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-3.16.0-4-orion5x instead.
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-3.16.0-4-parisc instead.
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-3.16.0-4-parisc64-smp instead.
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-3.16.0-4-powerpc-smp instead.
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-3.16.0-4-powerpc instead.
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-3.16.0-4-powerpc64 instead.
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-3.16.0-4-powerpc64le instead.
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-3.16.0-4-powerpcspe instead.
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-3.16.0-4-r4k-ip22 instead.
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-3.16.0-4-r5k-ip32 instead.
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-3.16.0-4-rpi instead.
--- /dev/null
+linux-image-s390x-dbg: wrong-section-according-to-package-name linux-image-s390x-dbg => debug
+linux-image-s390x-dbg: debug-package-should-be-priority-extra linux-image-s390x-dbg
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-3.16.0-4-s390x instead.
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-3.16.0-4-sb1-bcm91250a instead.
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-3.16.0-4-sh7751r instead.
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-3.16.0-4-sh7785lcr instead.
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-3.16.0-4-sparc64-smp instead.
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-3.16.0-4-sparc64 instead.
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-3.16.0-4-versatile instead.
--- /dev/null
+#!/usr/bin/make -f
+SHELL := sh -e
+
+include debian/rules.defs
+
+GENCONTROL = debian/bin/gencontrol.py
+
+DEB_HOST_ARCH := $(shell dpkg-architecture -qDEB_HOST_ARCH)
+DEB_BUILD_ARCH := $(shell dpkg-architecture -qDEB_BUILD_ARCH)
+
+__BINNMU := $(shell dpkg-parsechangelog | sed -rne 's,^Version: .*\+b([0-9]+)$$,\1,p')
+
+build: build-arch build-indep
+build-arch:
+build-indep:
+
+$(BUILD_DIR):
+ @[ -d $@ ] || mkdir $@
+
+clean: debian/control
+ dh_testdir
+ rm -rf $(BUILD_DIR)
+ dh_clean
+ find debian -maxdepth 1 -type l -delete
+ rm -rf debian/files
+ rm -rf debian/linux-*rpi*-rpfv
+
+binary-indep: debian/control $(BUILD_DIR)
+ dh_testdir
+ $(MAKE) -f debian/rules.gen binary-indep
+
+binary-arch: debian/control $(BUILD_DIR)
+ dh_testdir
+ $(MAKE) -f debian/rules.gen binary-arch_$(DEB_HOST_ARCH)
+
+binary: binary-indep binary-arch
+
+CONTROL_FILES += debian/changelog $(wildcard debian/templates/control.*)
+debian/control debian/rules.gen: $(GENCONTROL) $(CONTROL_FILES)
+ifeq ($(wildcard debian/control.md5sum),)
+ $(MAKE) -f debian/rules debian/control-real
+else ifeq ($(__BINNMU),)
+ md5sum --check debian/control.md5sum --status || \
+ $(MAKE) -f debian/rules debian/control-real
+else
+ grep -v debian/changelog debian/control.md5sum | md5sum --check - --status || \
+ $(MAKE) -f debian/rules debian/control-real
+endif
+
+debian/control-real: $(GENCONTROL) $(CONTROL_FILES)
+ $(GENCONTROL) /usr/src/linux-support-$(KERNELVERSION)
+ md5sum $^ > debian/control.md5sum
+ @echo
+ @echo This target is made to fail intentionally, to make sure
+ @echo that it is NEVER run during the automated build. Please
+ @echo ignore the following error, the debian/control file has
+ @echo been generated SUCCESSFULLY.
+ @echo
+ exit 1
+
+ifdef DEBIAN_KERNEL_BUILD_ANY
+binary-arch: binary-arch-all
+endif
+
+binary-arch-all: debian/control $(BUILD_DIR)
+ dh_testdir
+ $(MAKE) -f debian/rules.gen binary-arch
+
+maintainerclean: clean
+ rm -f debian/control debian/control.md5sum debian/rules.gen debian/*.bug-presubj debian/*.lintian-overrides
+# dh_clean won't deal with binary packages that no longer exist after
+# removal of a flavour.
+ rm -rf $(filter-out %.config %.postinst %.templates %.NEWS, $(wildcard debian/linux-*))
+
+.PHONY: clean build binary-indep binary-arch binary
--- /dev/null
+BUILD_DIR = debian/build
+STAMPS_DIR = debian/stamps
+TEMPLATES_DIR = debian/templates
+KERNELVERSION := 3.16.0-4
--- /dev/null
+.NOTPARALLEL:
+binary-arch: binary-arch_alpha binary-arch_amd64 binary-arch_arm64 binary-arch_armel binary-arch_armhf binary-arch_hppa binary-arch_i386 binary-arch_ia64 binary-arch_m68k binary-arch_mips binary-arch_mips64 binary-arch_mips64el binary-arch_mipsel binary-arch_or1k binary-arch_powerpc binary-arch_powerpcspe binary-arch_ppc64 binary-arch_ppc64el binary-arch_s390 binary-arch_s390x binary-arch_sh4 binary-arch_sparc binary-arch_sparc64 binary-arch_x32
+binary-arch_alpha: binary-arch_alpha_none binary-arch_alpha_real
+binary-arch_alpha_none: binary-arch_alpha_none_alpha-generic binary-arch_alpha_none_alpha-legacy binary-arch_alpha_none_alpha-smp binary-arch_alpha_none_real
+binary-arch_alpha_none_alpha-generic: binary-arch_alpha_none_alpha-generic_real
+binary-arch_alpha_none_alpha-generic_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-alpha-generic -plinux-headers-alpha-generic' ABINAME='3.16.0-4' ARCH='alpha' FEATURESET='none' FLAVOUR='alpha-generic' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-alpha-generic'
+binary-arch_alpha_none_alpha-legacy: binary-arch_alpha_none_alpha-legacy_real
+binary-arch_alpha_none_alpha-legacy_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-alpha-legacy -plinux-headers-alpha-legacy' ABINAME='3.16.0-4' ARCH='alpha' FEATURESET='none' FLAVOUR='alpha-legacy' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-alpha-legacy'
+binary-arch_alpha_none_alpha-smp: binary-arch_alpha_none_alpha-smp_real
+binary-arch_alpha_none_alpha-smp_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-alpha-smp -plinux-headers-alpha-smp' ABINAME='3.16.0-4' ARCH='alpha' FEATURESET='none' FLAVOUR='alpha-smp' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-alpha-smp'
+binary-arch_alpha_none_real:
+binary-arch_alpha_real:
+binary-arch_amd64: binary-arch_amd64_none binary-arch_amd64_real
+binary-arch_amd64_none: binary-arch_amd64_none_amd64 binary-arch_amd64_none_real
+binary-arch_amd64_none_amd64: binary-arch_amd64_none_amd64_real
+binary-arch_amd64_none_amd64_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-amd64 -plinux-headers-amd64 -plinux-image-amd64-dbg -pxen-linux-system-amd64' ABINAME='3.16.0-4' ARCH='amd64' FEATURESET='none' FLAVOUR='amd64' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-amd64'
+binary-arch_amd64_none_real:
+binary-arch_amd64_real:
+binary-arch_arm64: binary-arch_arm64_none binary-arch_arm64_real
+binary-arch_arm64_none: binary-arch_arm64_none_arm64 binary-arch_arm64_none_real
+binary-arch_arm64_none_arm64: binary-arch_arm64_none_arm64_real
+binary-arch_arm64_none_arm64_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-arm64 -plinux-headers-arm64 -plinux-image-arm64-dbg' ABINAME='3.16.0-4' ARCH='arm64' FEATURESET='none' FLAVOUR='arm64' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-arm64'
+binary-arch_arm64_none_real:
+binary-arch_arm64_real:
+binary-arch_armel: binary-arch_armel_none binary-arch_armel_real
+binary-arch_armel_none: binary-arch_armel_none_ixp4xx binary-arch_armel_none_kirkwood binary-arch_armel_none_orion5x binary-arch_armel_none_real binary-arch_armel_none_versatile
+binary-arch_armel_none_ixp4xx: binary-arch_armel_none_ixp4xx_real
+binary-arch_armel_none_ixp4xx_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-ixp4xx -plinux-headers-ixp4xx' ABINAME='3.16.0-4' ARCH='armel' FEATURESET='none' FLAVOUR='ixp4xx' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-ixp4xx'
+binary-arch_armel_none_kirkwood: binary-arch_armel_none_kirkwood_real
+binary-arch_armel_none_kirkwood_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-kirkwood -plinux-headers-kirkwood' ABINAME='3.16.0-4' ARCH='armel' FEATURESET='none' FLAVOUR='kirkwood' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-kirkwood'
+binary-arch_armel_none_orion5x: binary-arch_armel_none_orion5x_real
+binary-arch_armel_none_orion5x_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-orion5x -plinux-headers-orion5x' ABINAME='3.16.0-4' ARCH='armel' FEATURESET='none' FLAVOUR='orion5x' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-orion5x'
+binary-arch_armel_none_real:
+binary-arch_armel_none_versatile: binary-arch_armel_none_versatile_real
+binary-arch_armel_none_versatile_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-versatile -plinux-headers-versatile' ABINAME='3.16.0-4' ARCH='armel' FEATURESET='none' FLAVOUR='versatile' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-versatile'
+binary-arch_armel_real:
+binary-arch_armhf: binary-arch_armhf_extra binary-arch_armhf_none binary-arch_armhf_real
+binary-arch_armhf_extra::
+ $(MAKE) -f debian/rules.real install-dummy ARCH='armhf' DH_OPTIONS='-plinux-image-rpi-rpfv' GENCONTROL_ARGS='-v3.18+63+rpi2'
+ $(MAKE) -f debian/rules.real install-dummy ARCH='armhf' DH_OPTIONS='-plinux-headers-rpi-rpfv' GENCONTROL_ARGS='-v3.18+63+rpi2'
+ $(MAKE) -f debian/rules.real install-dummy ARCH='armhf' DH_OPTIONS='-plinux-image-rpi2-rpfv' GENCONTROL_ARGS='-v3.18+63+rpi2'
+ $(MAKE) -f debian/rules.real install-dummy ARCH='armhf' DH_OPTIONS='-plinux-headers-rpi2-rpfv' GENCONTROL_ARGS='-v3.18+63+rpi2'
+binary-arch_armhf_none: binary-arch_armhf_none_real binary-arch_armhf_none_rpi
+binary-arch_armhf_none_real:
+binary-arch_armhf_none_rpi: binary-arch_armhf_none_rpi_real
+binary-arch_armhf_none_rpi_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-rpi -plinux-headers-rpi' ABINAME='3.16.0-4' ARCH='armhf' FEATURESET='none' FLAVOUR='rpi' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-rpi'
+binary-arch_armhf_real:
+binary-arch_hppa: binary-arch_hppa_none binary-arch_hppa_real
+binary-arch_hppa_none: binary-arch_hppa_none_parisc binary-arch_hppa_none_parisc64-smp binary-arch_hppa_none_real
+binary-arch_hppa_none_parisc: binary-arch_hppa_none_parisc_real
+binary-arch_hppa_none_parisc64-smp: binary-arch_hppa_none_parisc64-smp_real
+binary-arch_hppa_none_parisc64-smp_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-parisc64-smp -plinux-headers-parisc64-smp' ABINAME='3.16.0-4' ARCH='hppa' FEATURESET='none' FLAVOUR='parisc64-smp' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-parisc64-smp'
+binary-arch_hppa_none_parisc_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-parisc -plinux-headers-parisc' ABINAME='3.16.0-4' ARCH='hppa' FEATURESET='none' FLAVOUR='parisc' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-parisc'
+binary-arch_hppa_none_real:
+binary-arch_hppa_real:
+binary-arch_i386: binary-arch_i386_none binary-arch_i386_real
+binary-arch_i386_none: binary-arch_i386_none_586 binary-arch_i386_none_686-pae binary-arch_i386_none_amd64 binary-arch_i386_none_real
+binary-arch_i386_none_586: binary-arch_i386_none_586_real
+binary-arch_i386_none_586_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-586 -plinux-headers-586' ABINAME='3.16.0-4' ARCH='i386' FEATURESET='none' FLAVOUR='586' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-586'
+binary-arch_i386_none_686-pae: binary-arch_i386_none_686-pae_real
+binary-arch_i386_none_686-pae_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-686-pae -plinux-headers-686-pae -plinux-image-686-pae-dbg' ABINAME='3.16.0-4' ARCH='i386' FEATURESET='none' FLAVOUR='686-pae' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-686-pae'
+binary-arch_i386_none_amd64: binary-arch_i386_none_amd64_real
+binary-arch_i386_none_amd64_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-amd64 -plinux-headers-amd64' ABINAME='3.16.0-4' ARCH='i386' FEATURESET='none' FLAVOUR='amd64' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-amd64'
+binary-arch_i386_none_real:
+binary-arch_i386_real:
+binary-arch_ia64: binary-arch_ia64_none binary-arch_ia64_real
+binary-arch_ia64_none: binary-arch_ia64_none_itanium binary-arch_ia64_none_mckinley binary-arch_ia64_none_real
+binary-arch_ia64_none_itanium: binary-arch_ia64_none_itanium_real
+binary-arch_ia64_none_itanium_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-itanium -plinux-headers-itanium' ABINAME='3.16.0-4' ARCH='ia64' FEATURESET='none' FLAVOUR='itanium' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-itanium'
+binary-arch_ia64_none_mckinley: binary-arch_ia64_none_mckinley_real
+binary-arch_ia64_none_mckinley_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-mckinley -plinux-headers-mckinley' ABINAME='3.16.0-4' ARCH='ia64' FEATURESET='none' FLAVOUR='mckinley' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-mckinley'
+binary-arch_ia64_none_real:
+binary-arch_ia64_real:
+binary-arch_m68k: binary-arch_m68k_none binary-arch_m68k_real
+binary-arch_m68k_none: binary-arch_m68k_none_m68k binary-arch_m68k_none_real
+binary-arch_m68k_none_m68k: binary-arch_m68k_none_m68k_real
+binary-arch_m68k_none_m68k_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-m68k -plinux-headers-m68k' ABINAME='3.16.0-4' ARCH='m68k' FEATURESET='none' FLAVOUR='m68k' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-m68k'
+binary-arch_m68k_none_real:
+binary-arch_m68k_real:
+binary-arch_mips: binary-arch_mips_none binary-arch_mips_real
+binary-arch_mips64: binary-arch_mips64_none binary-arch_mips64_real
+binary-arch_mips64_none: binary-arch_mips64_none_5kc-malta binary-arch_mips64_none_octeon binary-arch_mips64_none_real binary-arch_mips64_none_sb1-bcm91250a
+binary-arch_mips64_none_5kc-malta: binary-arch_mips64_none_5kc-malta_real
+binary-arch_mips64_none_5kc-malta_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-5kc-malta -plinux-headers-5kc-malta' ABINAME='3.16.0-4' ARCH='mips64' FEATURESET='none' FLAVOUR='5kc-malta' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-5kc-malta'
+binary-arch_mips64_none_octeon: binary-arch_mips64_none_octeon_real
+binary-arch_mips64_none_octeon_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-octeon -plinux-headers-octeon' ABINAME='3.16.0-4' ARCH='mips64' FEATURESET='none' FLAVOUR='octeon' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-octeon'
+binary-arch_mips64_none_real:
+binary-arch_mips64_none_sb1-bcm91250a: binary-arch_mips64_none_sb1-bcm91250a_real
+binary-arch_mips64_none_sb1-bcm91250a_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-sb1-bcm91250a -plinux-headers-sb1-bcm91250a' ABINAME='3.16.0-4' ARCH='mips64' FEATURESET='none' FLAVOUR='sb1-bcm91250a' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-sb1-bcm91250a'
+binary-arch_mips64_real:
+binary-arch_mips64el: binary-arch_mips64el_none binary-arch_mips64el_real
+binary-arch_mips64el_none: binary-arch_mips64el_none_5kc-malta binary-arch_mips64el_none_loongson-3 binary-arch_mips64el_none_octeon binary-arch_mips64el_none_real binary-arch_mips64el_none_sb1-bcm91250a
+binary-arch_mips64el_none_5kc-malta: binary-arch_mips64el_none_5kc-malta_real
+binary-arch_mips64el_none_5kc-malta_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-5kc-malta -plinux-headers-5kc-malta' ABINAME='3.16.0-4' ARCH='mips64el' FEATURESET='none' FLAVOUR='5kc-malta' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-5kc-malta'
+binary-arch_mips64el_none_loongson-3: binary-arch_mips64el_none_loongson-3_real
+binary-arch_mips64el_none_loongson-3_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-loongson-3 -plinux-headers-loongson-3' ABINAME='3.16.0-4' ARCH='mips64el' FEATURESET='none' FLAVOUR='loongson-3' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-loongson-3'
+binary-arch_mips64el_none_octeon: binary-arch_mips64el_none_octeon_real
+binary-arch_mips64el_none_octeon_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-octeon -plinux-headers-octeon' ABINAME='3.16.0-4' ARCH='mips64el' FEATURESET='none' FLAVOUR='octeon' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-octeon'
+binary-arch_mips64el_none_real:
+binary-arch_mips64el_none_sb1-bcm91250a: binary-arch_mips64el_none_sb1-bcm91250a_real
+binary-arch_mips64el_none_sb1-bcm91250a_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-sb1-bcm91250a -plinux-headers-sb1-bcm91250a' ABINAME='3.16.0-4' ARCH='mips64el' FEATURESET='none' FLAVOUR='sb1-bcm91250a' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-sb1-bcm91250a'
+binary-arch_mips64el_real:
+binary-arch_mips_none: binary-arch_mips_none_4kc-malta binary-arch_mips_none_5kc-malta binary-arch_mips_none_octeon binary-arch_mips_none_r4k-ip22 binary-arch_mips_none_r5k-ip32 binary-arch_mips_none_real binary-arch_mips_none_sb1-bcm91250a
+binary-arch_mips_none_4kc-malta: binary-arch_mips_none_4kc-malta_real
+binary-arch_mips_none_4kc-malta_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-4kc-malta -plinux-headers-4kc-malta' ABINAME='3.16.0-4' ARCH='mips' FEATURESET='none' FLAVOUR='4kc-malta' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-4kc-malta'
+binary-arch_mips_none_5kc-malta: binary-arch_mips_none_5kc-malta_real
+binary-arch_mips_none_5kc-malta_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-5kc-malta -plinux-headers-5kc-malta' ABINAME='3.16.0-4' ARCH='mips' FEATURESET='none' FLAVOUR='5kc-malta' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-5kc-malta'
+binary-arch_mips_none_octeon: binary-arch_mips_none_octeon_real
+binary-arch_mips_none_octeon_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-octeon -plinux-headers-octeon' ABINAME='3.16.0-4' ARCH='mips' FEATURESET='none' FLAVOUR='octeon' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-octeon'
+binary-arch_mips_none_r4k-ip22: binary-arch_mips_none_r4k-ip22_real
+binary-arch_mips_none_r4k-ip22_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-r4k-ip22 -plinux-headers-r4k-ip22' ABINAME='3.16.0-4' ARCH='mips' FEATURESET='none' FLAVOUR='r4k-ip22' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-r4k-ip22'
+binary-arch_mips_none_r5k-ip32: binary-arch_mips_none_r5k-ip32_real
+binary-arch_mips_none_r5k-ip32_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-r5k-ip32 -plinux-headers-r5k-ip32' ABINAME='3.16.0-4' ARCH='mips' FEATURESET='none' FLAVOUR='r5k-ip32' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-r5k-ip32'
+binary-arch_mips_none_real:
+binary-arch_mips_none_sb1-bcm91250a: binary-arch_mips_none_sb1-bcm91250a_real
+binary-arch_mips_none_sb1-bcm91250a_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-sb1-bcm91250a -plinux-headers-sb1-bcm91250a' ABINAME='3.16.0-4' ARCH='mips' FEATURESET='none' FLAVOUR='sb1-bcm91250a' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-sb1-bcm91250a'
+binary-arch_mips_real:
+binary-arch_mipsel: binary-arch_mipsel_none binary-arch_mipsel_real
+binary-arch_mipsel_none: binary-arch_mipsel_none_4kc-malta binary-arch_mipsel_none_5kc-malta binary-arch_mipsel_none_loongson-2e binary-arch_mipsel_none_loongson-2f binary-arch_mipsel_none_loongson-3 binary-arch_mipsel_none_real binary-arch_mipsel_none_sb1-bcm91250a
+binary-arch_mipsel_none_4kc-malta: binary-arch_mipsel_none_4kc-malta_real
+binary-arch_mipsel_none_4kc-malta_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-4kc-malta -plinux-headers-4kc-malta' ABINAME='3.16.0-4' ARCH='mipsel' FEATURESET='none' FLAVOUR='4kc-malta' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-4kc-malta'
+binary-arch_mipsel_none_5kc-malta: binary-arch_mipsel_none_5kc-malta_real
+binary-arch_mipsel_none_5kc-malta_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-5kc-malta -plinux-headers-5kc-malta' ABINAME='3.16.0-4' ARCH='mipsel' FEATURESET='none' FLAVOUR='5kc-malta' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-5kc-malta'
+binary-arch_mipsel_none_loongson-2e: binary-arch_mipsel_none_loongson-2e_real
+binary-arch_mipsel_none_loongson-2e_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-loongson-2e -plinux-headers-loongson-2e' ABINAME='3.16.0-4' ARCH='mipsel' FEATURESET='none' FLAVOUR='loongson-2e' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-loongson-2e'
+binary-arch_mipsel_none_loongson-2f: binary-arch_mipsel_none_loongson-2f_real
+binary-arch_mipsel_none_loongson-2f_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-loongson-2f -plinux-headers-loongson-2f' ABINAME='3.16.0-4' ARCH='mipsel' FEATURESET='none' FLAVOUR='loongson-2f' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-loongson-2f'
+binary-arch_mipsel_none_loongson-3: binary-arch_mipsel_none_loongson-3_real
+binary-arch_mipsel_none_loongson-3_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-loongson-3 -plinux-headers-loongson-3' ABINAME='3.16.0-4' ARCH='mipsel' FEATURESET='none' FLAVOUR='loongson-3' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-loongson-3'
+binary-arch_mipsel_none_real:
+binary-arch_mipsel_none_sb1-bcm91250a: binary-arch_mipsel_none_sb1-bcm91250a_real
+binary-arch_mipsel_none_sb1-bcm91250a_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-sb1-bcm91250a -plinux-headers-sb1-bcm91250a' ABINAME='3.16.0-4' ARCH='mipsel' FEATURESET='none' FLAVOUR='sb1-bcm91250a' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-sb1-bcm91250a'
+binary-arch_mipsel_real:
+binary-arch_or1k: binary-arch_or1k_real
+binary-arch_or1k_real:
+binary-arch_powerpc: binary-arch_powerpc_none binary-arch_powerpc_real
+binary-arch_powerpc_none: binary-arch_powerpc_none_powerpc binary-arch_powerpc_none_powerpc-smp binary-arch_powerpc_none_powerpc64 binary-arch_powerpc_none_real
+binary-arch_powerpc_none_powerpc: binary-arch_powerpc_none_powerpc_real
+binary-arch_powerpc_none_powerpc-smp: binary-arch_powerpc_none_powerpc-smp_real
+binary-arch_powerpc_none_powerpc-smp_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-powerpc-smp -plinux-headers-powerpc-smp' ABINAME='3.16.0-4' ARCH='powerpc' FEATURESET='none' FLAVOUR='powerpc-smp' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-powerpc-smp'
+binary-arch_powerpc_none_powerpc64: binary-arch_powerpc_none_powerpc64_real
+binary-arch_powerpc_none_powerpc64_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-powerpc64 -plinux-headers-powerpc64' ABINAME='3.16.0-4' ARCH='powerpc' FEATURESET='none' FLAVOUR='powerpc64' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-powerpc64'
+binary-arch_powerpc_none_powerpc_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-powerpc -plinux-headers-powerpc' ABINAME='3.16.0-4' ARCH='powerpc' FEATURESET='none' FLAVOUR='powerpc' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-powerpc'
+binary-arch_powerpc_none_real:
+binary-arch_powerpc_real:
+binary-arch_powerpcspe: binary-arch_powerpcspe_none binary-arch_powerpcspe_real
+binary-arch_powerpcspe_none: binary-arch_powerpcspe_none_powerpcspe binary-arch_powerpcspe_none_real
+binary-arch_powerpcspe_none_powerpcspe: binary-arch_powerpcspe_none_powerpcspe_real
+binary-arch_powerpcspe_none_powerpcspe_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-powerpcspe -plinux-headers-powerpcspe' ABINAME='3.16.0-4' ARCH='powerpcspe' FEATURESET='none' FLAVOUR='powerpcspe' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-powerpcspe'
+binary-arch_powerpcspe_none_real:
+binary-arch_powerpcspe_real:
+binary-arch_ppc64: binary-arch_ppc64_none binary-arch_ppc64_real
+binary-arch_ppc64_none: binary-arch_ppc64_none_powerpc64 binary-arch_ppc64_none_real
+binary-arch_ppc64_none_powerpc64: binary-arch_ppc64_none_powerpc64_real
+binary-arch_ppc64_none_powerpc64_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-powerpc64 -plinux-headers-powerpc64' ABINAME='3.16.0-4' ARCH='ppc64' FEATURESET='none' FLAVOUR='powerpc64' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-powerpc64'
+binary-arch_ppc64_none_real:
+binary-arch_ppc64_real:
+binary-arch_ppc64el: binary-arch_ppc64el_none binary-arch_ppc64el_real
+binary-arch_ppc64el_none: binary-arch_ppc64el_none_powerpc64le binary-arch_ppc64el_none_real
+binary-arch_ppc64el_none_powerpc64le: binary-arch_ppc64el_none_powerpc64le_real
+binary-arch_ppc64el_none_powerpc64le_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-powerpc64le -plinux-headers-powerpc64le' ABINAME='3.16.0-4' ARCH='ppc64el' FEATURESET='none' FLAVOUR='powerpc64le' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-powerpc64le'
+binary-arch_ppc64el_none_real:
+binary-arch_ppc64el_real:
+binary-arch_s390: binary-arch_s390_none binary-arch_s390_real
+binary-arch_s390_none: binary-arch_s390_none_real binary-arch_s390_none_s390x
+binary-arch_s390_none_real:
+binary-arch_s390_none_s390x: binary-arch_s390_none_s390x_real
+binary-arch_s390_none_s390x_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-s390x -plinux-headers-s390x -plinux-image-s390x-dbg' ABINAME='3.16.0-4' ARCH='s390' FEATURESET='none' FLAVOUR='s390x' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-s390x'
+binary-arch_s390_real:
+binary-arch_s390x: binary-arch_s390x_none binary-arch_s390x_real
+binary-arch_s390x_none: binary-arch_s390x_none_real binary-arch_s390x_none_s390x
+binary-arch_s390x_none_real:
+binary-arch_s390x_none_s390x: binary-arch_s390x_none_s390x_real
+binary-arch_s390x_none_s390x_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-s390x -plinux-headers-s390x -plinux-image-s390x-dbg' ABINAME='3.16.0-4' ARCH='s390x' FEATURESET='none' FLAVOUR='s390x' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-s390x'
+binary-arch_s390x_real:
+binary-arch_sh4: binary-arch_sh4_none binary-arch_sh4_real
+binary-arch_sh4_none: binary-arch_sh4_none_real binary-arch_sh4_none_sh7751r binary-arch_sh4_none_sh7785lcr
+binary-arch_sh4_none_real:
+binary-arch_sh4_none_sh7751r: binary-arch_sh4_none_sh7751r_real
+binary-arch_sh4_none_sh7751r_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-sh7751r -plinux-headers-sh7751r' ABINAME='3.16.0-4' ARCH='sh4' FEATURESET='none' FLAVOUR='sh7751r' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-sh7751r'
+binary-arch_sh4_none_sh7785lcr: binary-arch_sh4_none_sh7785lcr_real
+binary-arch_sh4_none_sh7785lcr_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-sh7785lcr -plinux-headers-sh7785lcr' ABINAME='3.16.0-4' ARCH='sh4' FEATURESET='none' FLAVOUR='sh7785lcr' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-sh7785lcr'
+binary-arch_sh4_real:
+binary-arch_sparc: binary-arch_sparc_none binary-arch_sparc_real
+binary-arch_sparc64: binary-arch_sparc64_none binary-arch_sparc64_real
+binary-arch_sparc64_none: binary-arch_sparc64_none_real binary-arch_sparc64_none_sparc64 binary-arch_sparc64_none_sparc64-smp
+binary-arch_sparc64_none_real:
+binary-arch_sparc64_none_sparc64: binary-arch_sparc64_none_sparc64_real
+binary-arch_sparc64_none_sparc64-smp: binary-arch_sparc64_none_sparc64-smp_real
+binary-arch_sparc64_none_sparc64-smp_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-sparc64-smp -plinux-headers-sparc64-smp' ABINAME='3.16.0-4' ARCH='sparc64' FEATURESET='none' FLAVOUR='sparc64-smp' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-sparc64-smp'
+binary-arch_sparc64_none_sparc64_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-sparc64 -plinux-headers-sparc64' ABINAME='3.16.0-4' ARCH='sparc64' FEATURESET='none' FLAVOUR='sparc64' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-sparc64'
+binary-arch_sparc64_real:
+binary-arch_sparc_none: binary-arch_sparc_none_real binary-arch_sparc_none_sparc64 binary-arch_sparc_none_sparc64-smp
+binary-arch_sparc_none_real:
+binary-arch_sparc_none_sparc64: binary-arch_sparc_none_sparc64_real
+binary-arch_sparc_none_sparc64-smp: binary-arch_sparc_none_sparc64-smp_real
+binary-arch_sparc_none_sparc64-smp_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-sparc64-smp -plinux-headers-sparc64-smp' ABINAME='3.16.0-4' ARCH='sparc' FEATURESET='none' FLAVOUR='sparc64-smp' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-sparc64-smp'
+binary-arch_sparc_none_sparc64_real::
+ $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-image-sparc64 -plinux-headers-sparc64' ABINAME='3.16.0-4' ARCH='sparc' FEATURESET='none' FLAVOUR='sparc64' GENCONTROL_ARGS='-v3.16+63+rpi2' LOCALVERSION='-sparc64'
+binary-arch_sparc_real:
+binary-arch_x32: binary-arch_x32_real
+binary-arch_x32_real:
+binary-indep::
+ $(MAKE) -f debian/rules.real binary-indep GENCONTROL_ARGS='-v3.16+63+rpi2'
+build-arch: build-arch_alpha build-arch_amd64 build-arch_arm64 build-arch_armel build-arch_armhf build-arch_hppa build-arch_i386 build-arch_ia64 build-arch_m68k build-arch_mips build-arch_mips64 build-arch_mips64el build-arch_mipsel build-arch_or1k build-arch_powerpc build-arch_powerpcspe build-arch_ppc64 build-arch_ppc64el build-arch_s390 build-arch_s390x build-arch_sh4 build-arch_sparc build-arch_sparc64 build-arch_x32
+build-arch_alpha: build-arch_alpha_none build-arch_alpha_real
+build-arch_alpha_none: build-arch_alpha_none_alpha-generic build-arch_alpha_none_alpha-legacy build-arch_alpha_none_alpha-smp build-arch_alpha_none_real
+build-arch_alpha_none_alpha-generic: build-arch_alpha_none_alpha-generic_real
+build-arch_alpha_none_alpha-generic_real:
+build-arch_alpha_none_alpha-legacy: build-arch_alpha_none_alpha-legacy_real
+build-arch_alpha_none_alpha-legacy_real:
+build-arch_alpha_none_alpha-smp: build-arch_alpha_none_alpha-smp_real
+build-arch_alpha_none_alpha-smp_real:
+build-arch_alpha_none_real:
+build-arch_alpha_real:
+build-arch_amd64: build-arch_amd64_none build-arch_amd64_real
+build-arch_amd64_none: build-arch_amd64_none_amd64 build-arch_amd64_none_real
+build-arch_amd64_none_amd64: build-arch_amd64_none_amd64_real
+build-arch_amd64_none_amd64_real:
+build-arch_amd64_none_real:
+build-arch_amd64_real:
+build-arch_arm64: build-arch_arm64_none build-arch_arm64_real
+build-arch_arm64_none: build-arch_arm64_none_arm64 build-arch_arm64_none_real
+build-arch_arm64_none_arm64: build-arch_arm64_none_arm64_real
+build-arch_arm64_none_arm64_real:
+build-arch_arm64_none_real:
+build-arch_arm64_real:
+build-arch_armel: build-arch_armel_none build-arch_armel_real
+build-arch_armel_none: build-arch_armel_none_ixp4xx build-arch_armel_none_kirkwood build-arch_armel_none_orion5x build-arch_armel_none_real build-arch_armel_none_versatile
+build-arch_armel_none_ixp4xx: build-arch_armel_none_ixp4xx_real
+build-arch_armel_none_ixp4xx_real:
+build-arch_armel_none_kirkwood: build-arch_armel_none_kirkwood_real
+build-arch_armel_none_kirkwood_real:
+build-arch_armel_none_orion5x: build-arch_armel_none_orion5x_real
+build-arch_armel_none_orion5x_real:
+build-arch_armel_none_real:
+build-arch_armel_none_versatile: build-arch_armel_none_versatile_real
+build-arch_armel_none_versatile_real:
+build-arch_armel_real:
+build-arch_armhf: build-arch_armhf_none build-arch_armhf_real
+build-arch_armhf_none: build-arch_armhf_none_real build-arch_armhf_none_rpi
+build-arch_armhf_none_real:
+build-arch_armhf_none_rpi: build-arch_armhf_none_rpi_real
+build-arch_armhf_none_rpi_real:
+build-arch_armhf_real:
+build-arch_hppa: build-arch_hppa_none build-arch_hppa_real
+build-arch_hppa_none: build-arch_hppa_none_parisc build-arch_hppa_none_parisc64-smp build-arch_hppa_none_real
+build-arch_hppa_none_parisc: build-arch_hppa_none_parisc_real
+build-arch_hppa_none_parisc64-smp: build-arch_hppa_none_parisc64-smp_real
+build-arch_hppa_none_parisc64-smp_real:
+build-arch_hppa_none_parisc_real:
+build-arch_hppa_none_real:
+build-arch_hppa_real:
+build-arch_i386: build-arch_i386_none build-arch_i386_real
+build-arch_i386_none: build-arch_i386_none_586 build-arch_i386_none_686-pae build-arch_i386_none_amd64 build-arch_i386_none_real
+build-arch_i386_none_586: build-arch_i386_none_586_real
+build-arch_i386_none_586_real:
+build-arch_i386_none_686-pae: build-arch_i386_none_686-pae_real
+build-arch_i386_none_686-pae_real:
+build-arch_i386_none_amd64: build-arch_i386_none_amd64_real
+build-arch_i386_none_amd64_real:
+build-arch_i386_none_real:
+build-arch_i386_real:
+build-arch_ia64: build-arch_ia64_none build-arch_ia64_real
+build-arch_ia64_none: build-arch_ia64_none_itanium build-arch_ia64_none_mckinley build-arch_ia64_none_real
+build-arch_ia64_none_itanium: build-arch_ia64_none_itanium_real
+build-arch_ia64_none_itanium_real:
+build-arch_ia64_none_mckinley: build-arch_ia64_none_mckinley_real
+build-arch_ia64_none_mckinley_real:
+build-arch_ia64_none_real:
+build-arch_ia64_real:
+build-arch_m68k: build-arch_m68k_none build-arch_m68k_real
+build-arch_m68k_none: build-arch_m68k_none_m68k build-arch_m68k_none_real
+build-arch_m68k_none_m68k: build-arch_m68k_none_m68k_real
+build-arch_m68k_none_m68k_real:
+build-arch_m68k_none_real:
+build-arch_m68k_real:
+build-arch_mips: build-arch_mips_none build-arch_mips_real
+build-arch_mips64: build-arch_mips64_none build-arch_mips64_real
+build-arch_mips64_none: build-arch_mips64_none_5kc-malta build-arch_mips64_none_octeon build-arch_mips64_none_real build-arch_mips64_none_sb1-bcm91250a
+build-arch_mips64_none_5kc-malta: build-arch_mips64_none_5kc-malta_real
+build-arch_mips64_none_5kc-malta_real:
+build-arch_mips64_none_octeon: build-arch_mips64_none_octeon_real
+build-arch_mips64_none_octeon_real:
+build-arch_mips64_none_real:
+build-arch_mips64_none_sb1-bcm91250a: build-arch_mips64_none_sb1-bcm91250a_real
+build-arch_mips64_none_sb1-bcm91250a_real:
+build-arch_mips64_real:
+build-arch_mips64el: build-arch_mips64el_none build-arch_mips64el_real
+build-arch_mips64el_none: build-arch_mips64el_none_5kc-malta build-arch_mips64el_none_loongson-3 build-arch_mips64el_none_octeon build-arch_mips64el_none_real build-arch_mips64el_none_sb1-bcm91250a
+build-arch_mips64el_none_5kc-malta: build-arch_mips64el_none_5kc-malta_real
+build-arch_mips64el_none_5kc-malta_real:
+build-arch_mips64el_none_loongson-3: build-arch_mips64el_none_loongson-3_real
+build-arch_mips64el_none_loongson-3_real:
+build-arch_mips64el_none_octeon: build-arch_mips64el_none_octeon_real
+build-arch_mips64el_none_octeon_real:
+build-arch_mips64el_none_real:
+build-arch_mips64el_none_sb1-bcm91250a: build-arch_mips64el_none_sb1-bcm91250a_real
+build-arch_mips64el_none_sb1-bcm91250a_real:
+build-arch_mips64el_real:
+build-arch_mips_none: build-arch_mips_none_4kc-malta build-arch_mips_none_5kc-malta build-arch_mips_none_octeon build-arch_mips_none_r4k-ip22 build-arch_mips_none_r5k-ip32 build-arch_mips_none_real build-arch_mips_none_sb1-bcm91250a
+build-arch_mips_none_4kc-malta: build-arch_mips_none_4kc-malta_real
+build-arch_mips_none_4kc-malta_real:
+build-arch_mips_none_5kc-malta: build-arch_mips_none_5kc-malta_real
+build-arch_mips_none_5kc-malta_real:
+build-arch_mips_none_octeon: build-arch_mips_none_octeon_real
+build-arch_mips_none_octeon_real:
+build-arch_mips_none_r4k-ip22: build-arch_mips_none_r4k-ip22_real
+build-arch_mips_none_r4k-ip22_real:
+build-arch_mips_none_r5k-ip32: build-arch_mips_none_r5k-ip32_real
+build-arch_mips_none_r5k-ip32_real:
+build-arch_mips_none_real:
+build-arch_mips_none_sb1-bcm91250a: build-arch_mips_none_sb1-bcm91250a_real
+build-arch_mips_none_sb1-bcm91250a_real:
+build-arch_mips_real:
+build-arch_mipsel: build-arch_mipsel_none build-arch_mipsel_real
+build-arch_mipsel_none: build-arch_mipsel_none_4kc-malta build-arch_mipsel_none_5kc-malta build-arch_mipsel_none_loongson-2e build-arch_mipsel_none_loongson-2f build-arch_mipsel_none_loongson-3 build-arch_mipsel_none_real build-arch_mipsel_none_sb1-bcm91250a
+build-arch_mipsel_none_4kc-malta: build-arch_mipsel_none_4kc-malta_real
+build-arch_mipsel_none_4kc-malta_real:
+build-arch_mipsel_none_5kc-malta: build-arch_mipsel_none_5kc-malta_real
+build-arch_mipsel_none_5kc-malta_real:
+build-arch_mipsel_none_loongson-2e: build-arch_mipsel_none_loongson-2e_real
+build-arch_mipsel_none_loongson-2e_real:
+build-arch_mipsel_none_loongson-2f: build-arch_mipsel_none_loongson-2f_real
+build-arch_mipsel_none_loongson-2f_real:
+build-arch_mipsel_none_loongson-3: build-arch_mipsel_none_loongson-3_real
+build-arch_mipsel_none_loongson-3_real:
+build-arch_mipsel_none_real:
+build-arch_mipsel_none_sb1-bcm91250a: build-arch_mipsel_none_sb1-bcm91250a_real
+build-arch_mipsel_none_sb1-bcm91250a_real:
+build-arch_mipsel_real:
+build-arch_or1k: build-arch_or1k_real
+build-arch_or1k_real:
+build-arch_powerpc: build-arch_powerpc_none build-arch_powerpc_real
+build-arch_powerpc_none: build-arch_powerpc_none_powerpc build-arch_powerpc_none_powerpc-smp build-arch_powerpc_none_powerpc64 build-arch_powerpc_none_real
+build-arch_powerpc_none_powerpc: build-arch_powerpc_none_powerpc_real
+build-arch_powerpc_none_powerpc-smp: build-arch_powerpc_none_powerpc-smp_real
+build-arch_powerpc_none_powerpc-smp_real:
+build-arch_powerpc_none_powerpc64: build-arch_powerpc_none_powerpc64_real
+build-arch_powerpc_none_powerpc64_real:
+build-arch_powerpc_none_powerpc_real:
+build-arch_powerpc_none_real:
+build-arch_powerpc_real:
+build-arch_powerpcspe: build-arch_powerpcspe_none build-arch_powerpcspe_real
+build-arch_powerpcspe_none: build-arch_powerpcspe_none_powerpcspe build-arch_powerpcspe_none_real
+build-arch_powerpcspe_none_powerpcspe: build-arch_powerpcspe_none_powerpcspe_real
+build-arch_powerpcspe_none_powerpcspe_real:
+build-arch_powerpcspe_none_real:
+build-arch_powerpcspe_real:
+build-arch_ppc64: build-arch_ppc64_none build-arch_ppc64_real
+build-arch_ppc64_none: build-arch_ppc64_none_powerpc64 build-arch_ppc64_none_real
+build-arch_ppc64_none_powerpc64: build-arch_ppc64_none_powerpc64_real
+build-arch_ppc64_none_powerpc64_real:
+build-arch_ppc64_none_real:
+build-arch_ppc64_real:
+build-arch_ppc64el: build-arch_ppc64el_none build-arch_ppc64el_real
+build-arch_ppc64el_none: build-arch_ppc64el_none_powerpc64le build-arch_ppc64el_none_real
+build-arch_ppc64el_none_powerpc64le: build-arch_ppc64el_none_powerpc64le_real
+build-arch_ppc64el_none_powerpc64le_real:
+build-arch_ppc64el_none_real:
+build-arch_ppc64el_real:
+build-arch_s390: build-arch_s390_none build-arch_s390_real
+build-arch_s390_none: build-arch_s390_none_real build-arch_s390_none_s390x
+build-arch_s390_none_real:
+build-arch_s390_none_s390x: build-arch_s390_none_s390x_real
+build-arch_s390_none_s390x_real:
+build-arch_s390_real:
+build-arch_s390x: build-arch_s390x_none build-arch_s390x_real
+build-arch_s390x_none: build-arch_s390x_none_real build-arch_s390x_none_s390x
+build-arch_s390x_none_real:
+build-arch_s390x_none_s390x: build-arch_s390x_none_s390x_real
+build-arch_s390x_none_s390x_real:
+build-arch_s390x_real:
+build-arch_sh4: build-arch_sh4_none build-arch_sh4_real
+build-arch_sh4_none: build-arch_sh4_none_real build-arch_sh4_none_sh7751r build-arch_sh4_none_sh7785lcr
+build-arch_sh4_none_real:
+build-arch_sh4_none_sh7751r: build-arch_sh4_none_sh7751r_real
+build-arch_sh4_none_sh7751r_real:
+build-arch_sh4_none_sh7785lcr: build-arch_sh4_none_sh7785lcr_real
+build-arch_sh4_none_sh7785lcr_real:
+build-arch_sh4_real:
+build-arch_sparc: build-arch_sparc_none build-arch_sparc_real
+build-arch_sparc64: build-arch_sparc64_none build-arch_sparc64_real
+build-arch_sparc64_none: build-arch_sparc64_none_real build-arch_sparc64_none_sparc64 build-arch_sparc64_none_sparc64-smp
+build-arch_sparc64_none_real:
+build-arch_sparc64_none_sparc64: build-arch_sparc64_none_sparc64_real
+build-arch_sparc64_none_sparc64-smp: build-arch_sparc64_none_sparc64-smp_real
+build-arch_sparc64_none_sparc64-smp_real:
+build-arch_sparc64_none_sparc64_real:
+build-arch_sparc64_real:
+build-arch_sparc_none: build-arch_sparc_none_real build-arch_sparc_none_sparc64 build-arch_sparc_none_sparc64-smp
+build-arch_sparc_none_real:
+build-arch_sparc_none_sparc64: build-arch_sparc_none_sparc64_real
+build-arch_sparc_none_sparc64-smp: build-arch_sparc_none_sparc64-smp_real
+build-arch_sparc_none_sparc64-smp_real:
+build-arch_sparc_none_sparc64_real:
+build-arch_sparc_real:
+build-arch_x32: build-arch_x32_real
+build-arch_x32_real:
+build-indep::
+ $(MAKE) -f debian/rules.real build-indep GENCONTROL_ARGS='-v3.16+63+rpi2'
+setup: setup_alpha setup_amd64 setup_arm64 setup_armel setup_armhf setup_hppa setup_i386 setup_ia64 setup_m68k setup_mips setup_mips64 setup_mips64el setup_mipsel setup_or1k setup_powerpc setup_powerpcspe setup_ppc64 setup_ppc64el setup_s390 setup_s390x setup_sh4 setup_sparc setup_sparc64 setup_x32
+setup_alpha: setup_alpha_none setup_alpha_real
+setup_alpha_none: setup_alpha_none_alpha-generic setup_alpha_none_alpha-legacy setup_alpha_none_alpha-smp setup_alpha_none_real
+setup_alpha_none_alpha-generic: setup_alpha_none_alpha-generic_real
+setup_alpha_none_alpha-generic_real:
+setup_alpha_none_alpha-legacy: setup_alpha_none_alpha-legacy_real
+setup_alpha_none_alpha-legacy_real:
+setup_alpha_none_alpha-smp: setup_alpha_none_alpha-smp_real
+setup_alpha_none_alpha-smp_real:
+setup_alpha_none_real:
+setup_alpha_real:
+setup_amd64: setup_amd64_none setup_amd64_real
+setup_amd64_none: setup_amd64_none_amd64 setup_amd64_none_real
+setup_amd64_none_amd64: setup_amd64_none_amd64_real
+setup_amd64_none_amd64_real:
+setup_amd64_none_real:
+setup_amd64_real:
+setup_arm64: setup_arm64_none setup_arm64_real
+setup_arm64_none: setup_arm64_none_arm64 setup_arm64_none_real
+setup_arm64_none_arm64: setup_arm64_none_arm64_real
+setup_arm64_none_arm64_real:
+setup_arm64_none_real:
+setup_arm64_real:
+setup_armel: setup_armel_none setup_armel_real
+setup_armel_none: setup_armel_none_ixp4xx setup_armel_none_kirkwood setup_armel_none_orion5x setup_armel_none_real setup_armel_none_versatile
+setup_armel_none_ixp4xx: setup_armel_none_ixp4xx_real
+setup_armel_none_ixp4xx_real:
+setup_armel_none_kirkwood: setup_armel_none_kirkwood_real
+setup_armel_none_kirkwood_real:
+setup_armel_none_orion5x: setup_armel_none_orion5x_real
+setup_armel_none_orion5x_real:
+setup_armel_none_real:
+setup_armel_none_versatile: setup_armel_none_versatile_real
+setup_armel_none_versatile_real:
+setup_armel_real:
+setup_armhf: setup_armhf_none setup_armhf_real
+setup_armhf_none: setup_armhf_none_real setup_armhf_none_rpi
+setup_armhf_none_real:
+setup_armhf_none_rpi: setup_armhf_none_rpi_real
+setup_armhf_none_rpi_real:
+setup_armhf_real:
+setup_hppa: setup_hppa_none setup_hppa_real
+setup_hppa_none: setup_hppa_none_parisc setup_hppa_none_parisc64-smp setup_hppa_none_real
+setup_hppa_none_parisc: setup_hppa_none_parisc_real
+setup_hppa_none_parisc64-smp: setup_hppa_none_parisc64-smp_real
+setup_hppa_none_parisc64-smp_real:
+setup_hppa_none_parisc_real:
+setup_hppa_none_real:
+setup_hppa_real:
+setup_i386: setup_i386_none setup_i386_real
+setup_i386_none: setup_i386_none_586 setup_i386_none_686-pae setup_i386_none_amd64 setup_i386_none_real
+setup_i386_none_586: setup_i386_none_586_real
+setup_i386_none_586_real:
+setup_i386_none_686-pae: setup_i386_none_686-pae_real
+setup_i386_none_686-pae_real:
+setup_i386_none_amd64: setup_i386_none_amd64_real
+setup_i386_none_amd64_real:
+setup_i386_none_real:
+setup_i386_real:
+setup_ia64: setup_ia64_none setup_ia64_real
+setup_ia64_none: setup_ia64_none_itanium setup_ia64_none_mckinley setup_ia64_none_real
+setup_ia64_none_itanium: setup_ia64_none_itanium_real
+setup_ia64_none_itanium_real:
+setup_ia64_none_mckinley: setup_ia64_none_mckinley_real
+setup_ia64_none_mckinley_real:
+setup_ia64_none_real:
+setup_ia64_real:
+setup_m68k: setup_m68k_none setup_m68k_real
+setup_m68k_none: setup_m68k_none_m68k setup_m68k_none_real
+setup_m68k_none_m68k: setup_m68k_none_m68k_real
+setup_m68k_none_m68k_real:
+setup_m68k_none_real:
+setup_m68k_real:
+setup_mips: setup_mips_none setup_mips_real
+setup_mips64: setup_mips64_none setup_mips64_real
+setup_mips64_none: setup_mips64_none_5kc-malta setup_mips64_none_octeon setup_mips64_none_real setup_mips64_none_sb1-bcm91250a
+setup_mips64_none_5kc-malta: setup_mips64_none_5kc-malta_real
+setup_mips64_none_5kc-malta_real:
+setup_mips64_none_octeon: setup_mips64_none_octeon_real
+setup_mips64_none_octeon_real:
+setup_mips64_none_real:
+setup_mips64_none_sb1-bcm91250a: setup_mips64_none_sb1-bcm91250a_real
+setup_mips64_none_sb1-bcm91250a_real:
+setup_mips64_real:
+setup_mips64el: setup_mips64el_none setup_mips64el_real
+setup_mips64el_none: setup_mips64el_none_5kc-malta setup_mips64el_none_loongson-3 setup_mips64el_none_octeon setup_mips64el_none_real setup_mips64el_none_sb1-bcm91250a
+setup_mips64el_none_5kc-malta: setup_mips64el_none_5kc-malta_real
+setup_mips64el_none_5kc-malta_real:
+setup_mips64el_none_loongson-3: setup_mips64el_none_loongson-3_real
+setup_mips64el_none_loongson-3_real:
+setup_mips64el_none_octeon: setup_mips64el_none_octeon_real
+setup_mips64el_none_octeon_real:
+setup_mips64el_none_real:
+setup_mips64el_none_sb1-bcm91250a: setup_mips64el_none_sb1-bcm91250a_real
+setup_mips64el_none_sb1-bcm91250a_real:
+setup_mips64el_real:
+setup_mips_none: setup_mips_none_4kc-malta setup_mips_none_5kc-malta setup_mips_none_octeon setup_mips_none_r4k-ip22 setup_mips_none_r5k-ip32 setup_mips_none_real setup_mips_none_sb1-bcm91250a
+setup_mips_none_4kc-malta: setup_mips_none_4kc-malta_real
+setup_mips_none_4kc-malta_real:
+setup_mips_none_5kc-malta: setup_mips_none_5kc-malta_real
+setup_mips_none_5kc-malta_real:
+setup_mips_none_octeon: setup_mips_none_octeon_real
+setup_mips_none_octeon_real:
+setup_mips_none_r4k-ip22: setup_mips_none_r4k-ip22_real
+setup_mips_none_r4k-ip22_real:
+setup_mips_none_r5k-ip32: setup_mips_none_r5k-ip32_real
+setup_mips_none_r5k-ip32_real:
+setup_mips_none_real:
+setup_mips_none_sb1-bcm91250a: setup_mips_none_sb1-bcm91250a_real
+setup_mips_none_sb1-bcm91250a_real:
+setup_mips_real:
+setup_mipsel: setup_mipsel_none setup_mipsel_real
+setup_mipsel_none: setup_mipsel_none_4kc-malta setup_mipsel_none_5kc-malta setup_mipsel_none_loongson-2e setup_mipsel_none_loongson-2f setup_mipsel_none_loongson-3 setup_mipsel_none_real setup_mipsel_none_sb1-bcm91250a
+setup_mipsel_none_4kc-malta: setup_mipsel_none_4kc-malta_real
+setup_mipsel_none_4kc-malta_real:
+setup_mipsel_none_5kc-malta: setup_mipsel_none_5kc-malta_real
+setup_mipsel_none_5kc-malta_real:
+setup_mipsel_none_loongson-2e: setup_mipsel_none_loongson-2e_real
+setup_mipsel_none_loongson-2e_real:
+setup_mipsel_none_loongson-2f: setup_mipsel_none_loongson-2f_real
+setup_mipsel_none_loongson-2f_real:
+setup_mipsel_none_loongson-3: setup_mipsel_none_loongson-3_real
+setup_mipsel_none_loongson-3_real:
+setup_mipsel_none_real:
+setup_mipsel_none_sb1-bcm91250a: setup_mipsel_none_sb1-bcm91250a_real
+setup_mipsel_none_sb1-bcm91250a_real:
+setup_mipsel_real:
+setup_or1k: setup_or1k_real
+setup_or1k_real:
+setup_powerpc: setup_powerpc_none setup_powerpc_real
+setup_powerpc_none: setup_powerpc_none_powerpc setup_powerpc_none_powerpc-smp setup_powerpc_none_powerpc64 setup_powerpc_none_real
+setup_powerpc_none_powerpc: setup_powerpc_none_powerpc_real
+setup_powerpc_none_powerpc-smp: setup_powerpc_none_powerpc-smp_real
+setup_powerpc_none_powerpc-smp_real:
+setup_powerpc_none_powerpc64: setup_powerpc_none_powerpc64_real
+setup_powerpc_none_powerpc64_real:
+setup_powerpc_none_powerpc_real:
+setup_powerpc_none_real:
+setup_powerpc_real:
+setup_powerpcspe: setup_powerpcspe_none setup_powerpcspe_real
+setup_powerpcspe_none: setup_powerpcspe_none_powerpcspe setup_powerpcspe_none_real
+setup_powerpcspe_none_powerpcspe: setup_powerpcspe_none_powerpcspe_real
+setup_powerpcspe_none_powerpcspe_real:
+setup_powerpcspe_none_real:
+setup_powerpcspe_real:
+setup_ppc64: setup_ppc64_none setup_ppc64_real
+setup_ppc64_none: setup_ppc64_none_powerpc64 setup_ppc64_none_real
+setup_ppc64_none_powerpc64: setup_ppc64_none_powerpc64_real
+setup_ppc64_none_powerpc64_real:
+setup_ppc64_none_real:
+setup_ppc64_real:
+setup_ppc64el: setup_ppc64el_none setup_ppc64el_real
+setup_ppc64el_none: setup_ppc64el_none_powerpc64le setup_ppc64el_none_real
+setup_ppc64el_none_powerpc64le: setup_ppc64el_none_powerpc64le_real
+setup_ppc64el_none_powerpc64le_real:
+setup_ppc64el_none_real:
+setup_ppc64el_real:
+setup_s390: setup_s390_none setup_s390_real
+setup_s390_none: setup_s390_none_real setup_s390_none_s390x
+setup_s390_none_real:
+setup_s390_none_s390x: setup_s390_none_s390x_real
+setup_s390_none_s390x_real:
+setup_s390_real:
+setup_s390x: setup_s390x_none setup_s390x_real
+setup_s390x_none: setup_s390x_none_real setup_s390x_none_s390x
+setup_s390x_none_real:
+setup_s390x_none_s390x: setup_s390x_none_s390x_real
+setup_s390x_none_s390x_real:
+setup_s390x_real:
+setup_sh4: setup_sh4_none setup_sh4_real
+setup_sh4_none: setup_sh4_none_real setup_sh4_none_sh7751r setup_sh4_none_sh7785lcr
+setup_sh4_none_real:
+setup_sh4_none_sh7751r: setup_sh4_none_sh7751r_real
+setup_sh4_none_sh7751r_real:
+setup_sh4_none_sh7785lcr: setup_sh4_none_sh7785lcr_real
+setup_sh4_none_sh7785lcr_real:
+setup_sh4_real:
+setup_sparc: setup_sparc_none setup_sparc_real
+setup_sparc64: setup_sparc64_none setup_sparc64_real
+setup_sparc64_none: setup_sparc64_none_real setup_sparc64_none_sparc64 setup_sparc64_none_sparc64-smp
+setup_sparc64_none_real:
+setup_sparc64_none_sparc64: setup_sparc64_none_sparc64_real
+setup_sparc64_none_sparc64-smp: setup_sparc64_none_sparc64-smp_real
+setup_sparc64_none_sparc64-smp_real:
+setup_sparc64_none_sparc64_real:
+setup_sparc64_real:
+setup_sparc_none: setup_sparc_none_real setup_sparc_none_sparc64 setup_sparc_none_sparc64-smp
+setup_sparc_none_real:
+setup_sparc_none_sparc64: setup_sparc_none_sparc64_real
+setup_sparc_none_sparc64-smp: setup_sparc_none_sparc64-smp_real
+setup_sparc_none_sparc64-smp_real:
+setup_sparc_none_sparc64_real:
+setup_sparc_real:
+setup_x32: setup_x32_real
+setup_x32_real:
--- /dev/null
+SHELL := bash -e
+ifdef ARCH
+override DEB_HOST_ARCH := $(shell dpkg-architecture -a'$(ARCH)' -f -qDEB_HOST_ARCH)
+override DEB_HOST_GNU_TYPE := $(shell dpkg-architecture -a'$(ARCH)' -f -qDEB_HOST_GNU_TYPE)
+DEB_BUILD_ARCH := $(shell dpkg-architecture -a'$(ARCH)' -qDEB_BUILD_ARCH)
+endif
+
+export DH_OPTIONS
+export DEB_HOST_ARCH
+
+include debian/rules.defs
+
+binary-indep: install-doc
+binary-indep: install-source
+binary-indep: install-tools
+
+install-base:
+ dh_bugfiles
+ dh_installdebconf
+ dh_installchangelogs
+ dh_installdocs
+ dh_lintian
+ dh_compress
+ dh_fixperms
+ dh_installdeb
+ dh_gencontrol -- $(GENCONTROL_ARGS)
+ dh_md5sums
+ dh_builddeb
+
+install-dummy:
+ dh_testdir
+ dh_testroot
+ dh_prep
+ $(MAKE) -f debian/rules.real install-base
+
+install-doc: PACKAGE_NAME = linux-doc
+install-doc: DH_OPTIONS = -p$(PACKAGE_NAME)
+install-doc:
+ dh_prep
+ $(MAKE) -f debian/rules.real install-base
+
+install-source: PACKAGE_NAME = linux-source
+install-source: DH_OPTIONS = -p$(PACKAGE_NAME)
+install-source:
+ dh_prep
+ $(MAKE) -f debian/rules.real install-base
+
+install-tools: PACKAGE_NAME = linux-tools
+install-tools: DH_OPTIONS = -p$(PACKAGE_NAME)
+install-tools:
+ dh_prep
+ $(MAKE) -f debian/rules.real install-base
--- /dev/null
+linux-latest source: dbg-package-missing-depends linux-image-amd64-dbg
+linux-latest source: dbg-package-missing-depends linux-image-arm64-dbg
+linux-latest source: dbg-package-missing-depends linux-image-686-pae-dbg
+linux-latest source: dbg-package-missing-depends linux-image-s390x-dbg
+linux-latest source: dbg-package-missing-depends linux-image-s390x-dbg
--- /dev/null
+You are about to report a bug in a Linux kernel meta package.
+This is probably not what you intended to do.
+
+If you want to report a bug in the Linux kernel or modules, you should use
+the package name linux-image-@abiname@@localversion@ instead.
--- /dev/null
+Package: linux-doc
+Section: doc
+Architecture: all
+Depends: linux-doc-@upstreamversion@, ${misc:Depends}
+Description: Linux kernel specific documentation (meta-package)
+ This package depends on the package containing the documentation for the
+ latest Linux kernel.
--- /dev/null
+Package: linux-image-486
+Section: oldlibs
+Architecture: i386
+Depends: linux-image-586, ${misc:Depends}
+Description: Linux for older PCs (dummy package)
+ This is a dummy transitional package. It can be safely removed.
+Package: linux-image-rpi-rpfv
+Architecture: armhf
+
+Package: linux-image-rpi-rpfv
+Architecture: armhf
+Depends: linux-image-3.18.0-trunk-rpi
+Description:
+ This metapackage will pull in the raspbian kernel for the raspberry pi 1
+ based on the version currently reccomended by the raspberry pi foundation
+ (currently 3.18).
+
+Package: linux-headers-rpi-rpfv
+Architecture: armhf
+Depends: linux-headers-3.18.0-trunk-rpi
+Description:
+ This metapackage will pull in the headers for the raspbian kernel for the
+ raspberry pi 1 based on the version currently reccomended by the raspberry
+ pi foundation (currently 3.18).
+
+Package: linux-image-rpi2-rpfv
+Architecture: armhf
+Depends: linux-image-3.18.0-trunk-rpi2
+Description:
+ This metapackage will pull in the raspbian kernel for the raspberry pi 2
+ based on the version currently reccomended by the raspberry pi foundation
+ (currently 3.18).
+
+Package: linux-headers-rpi2-rpfv
+Architecture: armhf
+Depends: linux-headers-3.18.0-trunk-rpi2
+Description:
+ This metapackage will pull in the headers for the raspbian kernel for the
+ raspberry pi 2 based on the version currently reccomended by the raspberry
+ pi foundation (currently 3.18).
--- /dev/null
+Package: linux-headers@localversion@
+Depends: linux-headers-@abiname@@localversion@, ${misc:Depends}
+Description: Header files for Linux @flavour@ configuration (meta-package)
+ This package depends on the architecture-specific header files for the latest
+ Linux kernel @flavour@ configuration.
--- /dev/null
+Package: linux-image@localversion@-dbg
+Depends: linux-image-@abiname@@localversion@-dbg, ${misc:Depends}
+Provides: linux-latest-image-dbg
+Description: Debugging symbols for Linux @flavour@ configuration (meta-package)
+ This package depends on the detached debugging symbols for the latest
+ Linux kernel @flavour@ configuration.
--- /dev/null
+Package: linux-image@localversion@
+Depends: linux-image-@abiname@@localversion@, ${misc:Depends}
+Provides: linux-latest-modules-@abiname@@localversion@
+Description: Linux for @class@ (meta-package)
+ This package depends on the latest Linux kernel and modules for use on
+ @longclass@.
--- /dev/null
+Source: linux-latest
+Section: kernel
+Priority: optional
+Maintainer: Debian Kernel Team <debian-kernel@lists.debian.org>
+Uploaders: Bastian Blank <waldi@debian.org>, Frederik Schüler <fs@debian.org>, Ben Hutchings <ben@decadent.org.uk>
+Standards-Version: 3.9.5
+Build-Depends: debhelper (>> 7)
+Vcs-Svn: svn://svn.debian.org/svn/kernel/dists/sid/linux-latest/
+Vcs-Browser: http://anonscm.debian.org/viewvc/kernel/dists/sid/linux-latest/
--- /dev/null
+Package: linux-source
+Architecture: all
+Depends: linux-source-@upstreamversion@, ${misc:Depends}
+Description: Linux kernel source (meta-package)
+ This package depends on packages containing the sources of the latest Linux
+ kernel.
--- /dev/null
+Package: linux-tools
+Architecture: all
+Depends: linux-tools-@upstreamversion@, ${misc:Depends}
+Description: Performance analysis tools for Linux (meta-package)
+ This package depends on the package containing the 'perf' performance
+ analysis tools for the latest Linux kernel.
--- /dev/null
+Package: xen-linux-system@localversion@
+Depends: xen-linux-system-@abiname@@localversion@, ${misc:Depends}
+Provides: xen-linux-system
+Description: Xen system with Linux for @class@ (meta-package)
+ This package depends on the Xen hypervisor and the latest Linux kernel
+ @flavour@ configuration.
--- /dev/null
+linux-image-@flavour@-dbg: wrong-section-according-to-package-name linux-image-@flavour@-dbg => debug
+linux-image-@flavour@-dbg: debug-package-should-be-priority-extra linux-image-@flavour@-dbg
--- /dev/null
+linux-latest source: dbg-package-missing-depends linux-image-@flavour@-dbg