From: Salvatore Bonaccorso Date: Thu, 4 Jan 2018 11:57:17 +0000 (+0000) Subject: linux-latest (80+deb9u3) stretch-security; urgency=high X-Git-Tag: archive/raspbian/80+deb9u4+rpi1~1^2^2~1 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=baa27a86b4e7d90ebf06f92e53f5f97b3f044082;p=linux-latest.git linux-latest (80+deb9u3) stretch-security; urgency=high * Update to 4.9.0-5 [dgit import package linux-latest 80+deb9u3] --- baa27a86b4e7d90ebf06f92e53f5f97b3f044082 diff --git a/debian/bin/gencontrol.py b/debian/bin/gencontrol.py new file mode 100755 index 0000000..d2f87b9 --- /dev/null +++ b/debian/bin/gencontrol.py @@ -0,0 +1,187 @@ +#!/usr/bin/env python3 + +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 = open(config, "rb")), 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 = '%s+%s' % (self.version.linux_version, 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( + ['linux-support-%s' % self.abiname, + # We don't need this installed, but it ensures that after an + # ABI bump linux is auto-built before linux-latest on each + # architecture. + 'linux-headers-%s-all' % 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'] = '-%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"]) + templates.extend(self.templates["control.headers.latest"]) + if self.config.get_merge('build', arch, featureset, flavour, + 'debug-info', False): + makeflags['DEBUG'] = True + 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, '')) + + packages_flavour = [] + + packages_flavour.append(self.process_real_image(templates[0], image_fields, vars)) + packages_flavour.extend(self.process_packages(templates[1:], vars)) + + for package in packages_flavour: + name = package['Package'] + if name in packages: + package = packages.get(name) + package['Architecture'].add(arch) + else: + package['Architecture'] = arch + packages.append(package) + + makeflags['GENCONTROL_ARGS'] = '-v%s' % self.package_version + + cmds_binary_arch = [] + for i in packages_flavour: + cmds_binary_arch += self.get_link_commands(i, ['NEWS']) + cmds_binary_arch += ["$(MAKE) -f debian/rules.real install-flavour %s" % + 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_flavour[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 = sorted(extra_arches.keys()) + for arch in archs: + if arch == 'all': + arch_var = '' + target = 'binary-indep' + else: + arch_var = "ARCH='%s'" % arch + target = 'binary-arch_%s' % arch + cmds = [] + for i in extra_arches[arch]: + if 'X-Version-Overwrite-Epoch' in i: + version = '-v1:%s' % self.package_version + else: + version = '-v%s' % self.package_version + cmds += self.get_link_commands(i, ['config', 'postinst', 'templates']) + cmds.append("$(MAKE) -f debian/rules.real install-dummy %s DH_OPTIONS='-p%s' GENCONTROL_ARGS='%s'" % (arch_var, i['Package'], version)) + makefile.add(target, [target + '_extra']) + makefile.add(target + '_extra', cmds = cmds) + + def process_real_image(self, entry, fields, vars): + entry = self.process_package(entry, vars) + for key, value in fields.items(): + 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(r'^(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")() diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..f1d0037 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,620 @@ +linux-latest (80+deb9u3) stretch-security; urgency=high + + * Update to 4.9.0-5 + + -- Salvatore Bonaccorso Thu, 04 Jan 2018 12:57:17 +0100 + +linux-latest (80+deb9u2) stretch; urgency=medium + + * Update to 4.9.0-4 + + -- Ben Hutchings Tue, 19 Sep 2017 14:51:35 +0100 + +linux-latest (80+deb9u1) stretch; urgency=medium + + * Revert changes to debug symbol meta-packages (Closes: #866691) + + -- Ben Hutchings Sat, 01 Jul 2017 01:31:49 +0100 + +linux-latest (80) unstable; urgency=medium + + * Re-introduce xen-linux-system-amd64 *again* as transitional package + (Closes: #857039) + * Update to 4.9.0-3 + + -- Ben Hutchings Thu, 04 May 2017 16:33:51 +0100 + +linux-latest (79) unstable; urgency=medium + + * Update to 4.9.0-2 + + -- Ben Hutchings Sat, 18 Feb 2017 17:03:12 +0000 + +linux-latest (78) unstable; urgency=medium + + * debian/rules: Use dpkg-parsechangelog -S option to select fields + * linux-image: Delete NEWS for version 76 about vsyscall changes, now + reverted + * Update to 4.9.0-1 + + -- Ben Hutchings Fri, 13 Jan 2017 16:16:03 +0000 + +linux-latest (77) unstable; urgency=medium + + * Update to 4.8.0-2 + * Use debhelper compatibility level 9 + * Re-introduce xen-linux-system packages, accidentally dropped in version 75 + + -- Ben Hutchings Sun, 04 Dec 2016 05:29:57 +0000 + +linux-latest (76) unstable; urgency=medium + + * Update to 4.8.0-1 + * linux-image-{686-pae,amd64}: Delete old NEWS + * linux-image: Add back-dated NEWS for conntrack helpers change in Linux 4.7 + (Closes: #839632) + * linux-image: Add NEWS for security hardening config changes for Linux 4.8 + + -- Ben Hutchings Sat, 29 Oct 2016 02:26:39 +0100 + +linux-latest (75) unstable; urgency=medium + + * Update to 4.7.0-1 + * Rename and move debug symbol meta-packages to the debug archive + * debian/control: Set priority of transitional packages to extra + * debian/control: Update Standards-Version to 3.9.8; no changes needed + + -- Ben Hutchings Wed, 31 Aug 2016 02:28:02 +0100 + +linux-latest (74) unstable; urgency=medium + + * Update to 4.6.0-1 + + -- Ben Hutchings Tue, 07 Jun 2016 00:00:58 +0100 + +linux-latest (73) unstable; urgency=medium + + * Update to 4.5.0-2 + + -- Ben Hutchings Fri, 29 Apr 2016 13:16:17 +0200 + +linux-latest (72) unstable; urgency=medium + + * Update to 4.5.0-1 + + -- Ben Hutchings Fri, 15 Apr 2016 16:17:16 +0100 + +linux-latest (71) unstable; urgency=medium + + * Update to 4.4.0-1 + - Change linux-{image,headers}-{kirkwood,orion5x} to transitional packages + + -- Ben Hutchings Thu, 18 Feb 2016 01:36:45 +0000 + +linux-latest (70) unstable; urgency=medium + + * Change linux-{image,headers}-586 to transitional packages + + -- Ben Hutchings Sun, 13 Dec 2015 13:58:48 +0000 + +linux-latest (69) unstable; urgency=medium + + * Update to 4.3.0-1 + + -- Ben Hutchings Sun, 13 Dec 2015 04:03:55 +0000 + +linux-latest (68) unstable; urgency=medium + + * Update to 4.2.0-1 + * debian/bin/gencontrol.py: Use Python 3 + + -- Ben Hutchings Sat, 26 Sep 2015 01:00:30 +0100 + +linux-latest (67) unstable; urgency=medium + + * Adjust for migration to git: + - Add .gitignore file + - debian/control: Update Vcs-* fields + * .gitignore: Ignore linux-perf build directory + * Update to 4.1.0-2 + * Change source format to 3.0 (native) so that .git directory is excluded + by default + + -- Ben Hutchings Sun, 16 Aug 2015 16:43:58 +0200 + +linux-latest (66) unstable; urgency=medium + + * Update to 4.1.0-1 + * Rename linux-tools to linux-perf, providing linux-tools as a + transitional package + + -- Ben Hutchings Tue, 04 Aug 2015 01:34:19 +0100 + +linux-latest (65) unstable; urgency=medium + + * Update to 4.0.0-2 + + -- Ben Hutchings Tue, 26 May 2015 19:05:21 +0100 + +linux-latest (64) unstable; urgency=medium + + * Update to 4.0.0-1 + * Stop generating linux-{headers,image}-486 transitional packages + * debian/control: Build-Depend on linux-headers-*-all, so that after an + ABI bump linux is auto-built before linux-latest on each architecture. + (Closes: #746618) + + -- Ben Hutchings Mon, 11 May 2015 04:34:02 +0100 + +linux-latest (63) unstable; urgency=medium + + * Update to 3.16.0-4 + - Change linux-{image,headers}-486 to transitional packages + + -- Ben Hutchings Thu, 06 Nov 2014 20:46:28 +0000 + +linux-latest (62) unstable; urgency=medium + + * Update to 3.16-3 (Closes: #766078) + + -- Ben Hutchings Mon, 20 Oct 2014 19:12:50 +0100 + +linux-latest (61) unstable; urgency=medium + + * Update to 3.16-2 + + -- Ben Hutchings 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 Mon, 08 Sep 2014 20:23:42 +0100 + +linux-latest (59) unstable; urgency=medium + + * Update to 3.14-2 + + -- Ben Hutchings Mon, 21 Jul 2014 22:06:07 +0100 + +linux-latest (58) unstable; urgency=medium + + * Rebuild to include arm64 and ppc64el architectures + + -- Ben Hutchings 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 Tue, 29 Apr 2014 02:48:57 +0100 + +linux-latest (56) unstable; urgency=medium + + * Update to 3.13-1 + + -- Ben Hutchings Sat, 22 Feb 2014 14:49:52 +0000 + +linux-latest (55) unstable; urgency=low + + * Update to 3.12-1 + + -- Ben Hutchings Fri, 27 Dec 2013 15:30:03 +0100 + +linux-latest (54) unstable; urgency=low + + * Update to 3.11-2 + + -- Ben Hutchings Wed, 13 Nov 2013 03:30:59 +0000 + +linux-latest (53) unstable; urgency=low + + * Add linux-image--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 Sat, 19 Oct 2013 00:44:20 +0100 + +linux-latest (52) unstable; urgency=low + + * Update to 3.10-3 + + -- Ben Hutchings Wed, 18 Sep 2013 02:00:15 +0100 + +linux-latest (51) unstable; urgency=low + + * Update to 3.10-2 + + -- Ben Hutchings Thu, 08 Aug 2013 14:12:41 +0200 + +linux-latest (50) unstable; urgency=low + + * Update to 3.10-1 + + -- Ben Hutchings Thu, 18 Jul 2013 05:04:04 +0100 + +linux-latest (49) unstable; urgency=low + + * Update to 3.9-1 + + -- Ben Hutchings Mon, 03 Jun 2013 14:02:30 +0100 + +linux-latest (48) unstable; urgency=low + + * Update to 3.8-2 (Closes: #708842) + + -- Ben Hutchings 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 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 Sun, 07 Oct 2012 19:51:50 +0100 + +linux-latest (45) unstable; urgency=low + + * Update to 3.2.0-3 + + -- Ben Hutchings 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- transitional + packages for flavours added since Linux 3.0 + + -- Ben Hutchings 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 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 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 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 Thu, 06 Oct 2011 04:36:45 +0100 + +linux-latest-2.6 (39) unstable; urgency=low + + * Update to 3.0.0-1 + + -- Ben Hutchings 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 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- packages + * Remove common description text from linux-image-2.6- packages + + -- Ben Hutchings 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-, linux-source and linux-tools + packages + - Change *-2.6-* to transitional packages + + -- Ben Hutchings 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 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 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 Sun, 08 May 2011 05:07:22 +0100 + +linux-latest-2.6 (33) unstable; urgency=low + + * Update to 2.6.38-2 + + -- Ben Hutchings Tue, 29 Mar 2011 13:15:43 +0100 + +linux-latest-2.6 (32) unstable; urgency=low + + * Update to 2.6.38-1 + + -- Ben Hutchings Wed, 16 Mar 2011 13:29:41 +0000 + +linux-latest-2.6 (31) unstable; urgency=low + + * Update to 2.6.37-2 + + -- Ben Hutchings Mon, 28 Feb 2011 01:45:21 +0000 + +linux-latest-2.6 (30) unstable; urgency=low + + * Update to 2.6.37-1 + + -- Ben Hutchings 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 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 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 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 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 Wed, 10 Mar 2010 00:43:47 +0000 + +linux-latest-2.6 (24) unstable; urgency=low + + * Update to 2.6.32-2. + + -- Ben Hutchings Tue, 16 Feb 2010 21:43:50 +0000 + +linux-latest-2.6 (23) unstable; urgency=low + + * Update to 2.6.32-trunk. + + -- Ben Hutchings Thu, 17 Dec 2009 03:31:19 +0000 + +linux-latest-2.6 (22) unstable; urgency=low + + * Update to 2.6.31-1. + + -- Ben Hutchings 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 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 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 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 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 Wed, 10 Dec 2008 13:25:41 +0100 + +linux-latest-2.6 (16) unstable; urgency=low + + * Rebuild to pick up new images + + -- Bastian Blank 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 Mon, 04 Aug 2008 14:58:33 +0200 + +linux-latest-2.6 (14) unstable; urgency=low + + * Update to 2.6.25-2. + + -- Bastian Blank Tue, 20 May 2008 13:28:45 +0200 + +linux-latest-2.6 (13) unstable; urgency=low + + * Add transitional packages for k7. + + -- Bastian Blank Mon, 04 Feb 2008 10:22:13 +0100 + +linux-latest-2.6 (12) unstable; urgency=low + + * Update to 2.6.24-1. + + -- Bastian Blank Thu, 31 Jan 2008 20:29:28 +0100 + +linux-latest-2.6 (11) unstable; urgency=low + + * Update to 2.6.22-3. + + -- Bastian Blank Tue, 30 Oct 2007 15:50:30 +0100 + +linux-latest-2.6 (10) unstable; urgency=low + + * Update to 2.6.22-2. + + -- Bastian Blank Thu, 06 Sep 2007 15:38:40 +0200 + +linux-latest-2.6 (9) unstable; urgency=low + + * Update to 2.6.22-1. + + -- Bastian Blank 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 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 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 Fri, 2 Feb 2007 17:45:58 +0100 + +linux-latest-2.6 (5) unstable; urgency=low + + * Update to 2.6.18-3. + + -- Bastian Blank Thu, 30 Nov 2006 10:28:53 +0100 + +linux-latest-2.6 (4) unstable; urgency=low + + * Update to 2.6.18-2. + + -- maximilian attems 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 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 Mon, 18 Sep 2006 16:32:51 +0200 + +linux-latest-2.6 (1) unstable; urgency=low + + * Initial release. + + -- Bastian Blank Mon, 14 Aug 2006 20:32:24 +0200 diff --git a/debian/clean b/debian/clean new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/debian/clean @@ -0,0 +1 @@ + diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..6c17499 --- /dev/null +++ b/debian/control @@ -0,0 +1,767 @@ +Source: linux-latest +Section: kernel +Priority: optional +Maintainer: Debian Kernel Team +Uploaders: Bastian Blank , Frederik Schüler , Ben Hutchings +Standards-Version: 3.9.8 +Build-Depends: debhelper (>= 9), linux-support-4.9.0-5, linux-headers-4.9.0-5-all +Vcs-Browser: https://anonscm.debian.org/cgit/kernel/linux-latest.git +Vcs-Git: https://anonscm.debian.org/git/kernel/linux-latest.git + +Package: linux-source +Architecture: all +Depends: linux-source-4.9, ${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-4.9, ${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-perf +Architecture: all +Depends: linux-perf-4.9, ${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-4.9.0-5-alpha-generic +Depends: linux-image-4.9.0-5-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-4.9.0-5-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-generic-dbg +Architecture: alpha +Provides: linux-latest-image-dbg +Depends: linux-image-4.9.0-5-alpha-generic-dbg, ${misc:Depends} +Description: Debugging symbols for Linux alpha-generic configuration (meta-package) + This package depends on the detached debugging symbols for the latest + Linux kernel alpha-generic configuration. + +Package: linux-image-alpha-smp +Architecture: alpha +Provides: linux-latest-modules-4.9.0-5-alpha-smp +Depends: linux-image-4.9.0-5-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-4.9.0-5-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-smp-dbg +Architecture: alpha +Provides: linux-latest-image-dbg +Depends: linux-image-4.9.0-5-alpha-smp-dbg, ${misc:Depends} +Description: Debugging symbols for Linux alpha-smp configuration (meta-package) + This package depends on the detached debugging symbols for the latest + Linux kernel alpha-smp configuration. + +Package: linux-image-amd64 +Architecture: amd64 +Provides: linux-latest-modules-4.9.0-5-amd64 +Depends: linux-image-4.9.0-5-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 +Depends: linux-headers-4.9.0-5-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-4.9.0-5-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: linux-image-rt-amd64 +Architecture: amd64 +Provides: linux-latest-modules-4.9.0-5-rt-amd64 +Depends: linux-image-4.9.0-5-rt-amd64, ${misc:Depends} +Description: Linux for 64-bit PCs (meta-package), PREEMPT_RT + This package depends on the latest Linux kernel and modules for use on PCs + with AMD64, Intel 64 or VIA Nano processors. + . + This kernel includes the PREEMPT_RT realtime patch set. + +Package: linux-headers-rt-amd64 +Architecture: amd64 +Depends: linux-headers-4.9.0-5-rt-amd64, ${misc:Depends} +Description: Header files for Linux rt-amd64 configuration (meta-package) + This package depends on the architecture-specific header files for the + latest Linux kernel rt-amd64 configuration. + +Package: linux-image-rt-amd64-dbg +Architecture: amd64 +Provides: linux-latest-image-dbg +Depends: linux-image-4.9.0-5-rt-amd64-dbg, ${misc:Depends} +Description: Debugging symbols for Linux rt-amd64 configuration (meta-package) + This package depends on the detached debugging symbols for the latest + Linux kernel rt-amd64 configuration. + +Package: linux-image-arm64 +Architecture: arm64 +Provides: linux-latest-modules-4.9.0-5-arm64 +Depends: linux-image-4.9.0-5-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-4.9.0-5-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-4.9.0-5-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-marvell +Architecture: armel +Provides: linux-latest-modules-4.9.0-5-marvell +Depends: linux-image-4.9.0-5-marvell, ${misc:Depends} +Description: Linux for Marvell Kirkwood/Orion (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) and + Orion 5181, 5182 and 5281 based systems (QNAP TS-109/TS-209, etc). + +Package: linux-headers-marvell +Architecture: armel +Depends: linux-headers-4.9.0-5-marvell, ${misc:Depends} +Description: Header files for Linux marvell configuration (meta-package) + This package depends on the architecture-specific header files for the + latest Linux kernel marvell configuration. + +Package: linux-image-marvell-dbg +Architecture: armel +Provides: linux-latest-image-dbg +Depends: linux-image-4.9.0-5-marvell-dbg, ${misc:Depends} +Description: Debugging symbols for Linux marvell configuration (meta-package) + This package depends on the detached debugging symbols for the latest + Linux kernel marvell configuration. + +Package: linux-image-armmp +Architecture: armhf +Provides: linux-latest-modules-4.9.0-5-armmp +Depends: linux-image-4.9.0-5-armmp, ${misc:Depends} +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. See + https://wiki.debian.org/DebianKernel/ARMMP for details of supported + platforms. + +Package: linux-headers-armmp +Architecture: armhf +Depends: linux-headers-4.9.0-5-armmp, ${misc:Depends} +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. + +Package: linux-image-armmp-dbg +Architecture: armhf +Provides: linux-latest-image-dbg +Depends: linux-image-4.9.0-5-armmp-dbg, ${misc:Depends} +Description: Debugging symbols for Linux armmp configuration (meta-package) + This package depends on the detached debugging symbols for the latest + Linux kernel armmp configuration. + +Package: linux-image-armmp-lpae +Architecture: armhf +Provides: linux-latest-modules-4.9.0-5-armmp-lpae +Depends: linux-image-4.9.0-5-armmp-lpae, ${misc:Depends} +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. See + https://wiki.debian.org/DebianKernel/ARMMP for details of supported + platforms.. + +Package: linux-headers-armmp-lpae +Architecture: armhf +Depends: linux-headers-4.9.0-5-armmp-lpae, ${misc:Depends} +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. + +Package: linux-image-armmp-lpae-dbg +Architecture: armhf +Provides: linux-latest-image-dbg +Depends: linux-image-4.9.0-5-armmp-lpae-dbg, ${misc:Depends} +Description: Debugging symbols for Linux armmp-lpae configuration (meta-package) + This package depends on the detached debugging symbols for the latest + Linux kernel armmp-lpae configuration. + +Package: linux-image-parisc +Architecture: hppa +Provides: linux-latest-modules-4.9.0-5-parisc +Depends: linux-image-4.9.0-5-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-4.9.0-5-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-parisc-dbg +Architecture: hppa +Provides: linux-latest-image-dbg +Depends: linux-image-4.9.0-5-parisc-dbg, ${misc:Depends} +Description: Debugging symbols for Linux parisc configuration (meta-package) + This package depends on the detached debugging symbols for the latest + Linux kernel parisc configuration. + +Package: linux-image-parisc64-smp +Architecture: hppa +Provides: linux-latest-modules-4.9.0-5-parisc64-smp +Depends: linux-image-4.9.0-5-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-4.9.0-5-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-parisc64-smp-dbg +Architecture: hppa +Provides: linux-latest-image-dbg +Depends: linux-image-4.9.0-5-parisc64-smp-dbg, ${misc:Depends} +Description: Debugging symbols for Linux parisc64-smp configuration (meta-package) + This package depends on the detached debugging symbols for the latest + Linux kernel parisc64-smp configuration. + +Package: linux-image-686 +Architecture: i386 +Provides: linux-latest-modules-4.9.0-5-686 +Depends: linux-image-4.9.0-5-686, ${misc:Depends} +Description: Linux for older PCs (meta-package) + This package depends on the latest Linux kernel and modules for use on PCs + with one or more processors not supporting PAE. + +Package: linux-headers-686 +Architecture: i386 +Depends: linux-headers-4.9.0-5-686, ${misc:Depends} +Description: Header files for Linux 686 configuration (meta-package) + This package depends on the architecture-specific header files for the + latest Linux kernel 686 configuration. + +Package: linux-image-686-dbg +Architecture: i386 +Provides: linux-latest-image-dbg +Depends: linux-image-4.9.0-5-686-dbg, ${misc:Depends} +Description: Debugging symbols for Linux 686 configuration (meta-package) + This package depends on the detached debugging symbols for the latest + Linux kernel 686 configuration. + +Package: linux-image-686-pae +Architecture: i386 +Provides: linux-latest-modules-4.9.0-5-686-pae +Depends: linux-image-4.9.0-5-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-4.9.0-5-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-4.9.0-5-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-rt-686-pae +Architecture: i386 +Provides: linux-latest-modules-4.9.0-5-rt-686-pae +Depends: linux-image-4.9.0-5-rt-686-pae, ${misc:Depends} +Description: Linux for modern PCs (meta-package), PREEMPT_RT + 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 includes the PREEMPT_RT realtime patch set. + +Package: linux-headers-rt-686-pae +Architecture: i386 +Depends: linux-headers-4.9.0-5-rt-686-pae, ${misc:Depends} +Description: Header files for Linux rt-686-pae configuration (meta-package) + This package depends on the architecture-specific header files for the + latest Linux kernel rt-686-pae configuration. + +Package: linux-image-rt-686-pae-dbg +Architecture: i386 +Provides: linux-latest-image-dbg +Depends: linux-image-4.9.0-5-rt-686-pae-dbg, ${misc:Depends} +Description: Debugging symbols for Linux rt-686-pae configuration (meta-package) + This package depends on the detached debugging symbols for the latest + Linux kernel rt-686-pae configuration. + +Package: linux-image-m68k +Architecture: m68k +Provides: linux-latest-modules-4.9.0-5-m68k +Depends: linux-image-4.9.0-5-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-4.9.0-5-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-m68k-dbg +Architecture: m68k +Provides: linux-latest-image-dbg +Depends: linux-image-4.9.0-5-m68k-dbg, ${misc:Depends} +Description: Debugging symbols for Linux m68k configuration (meta-package) + This package depends on the detached debugging symbols for the latest + Linux kernel m68k configuration. + +Package: linux-image-4kc-malta +Architecture: mips mipsel +Provides: linux-latest-modules-4.9.0-5-4kc-malta +Depends: linux-image-4.9.0-5-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-4.9.0-5-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-4kc-malta-dbg +Architecture: mips mipsel +Provides: linux-latest-image-dbg +Depends: linux-image-4.9.0-5-4kc-malta-dbg, ${misc:Depends} +Description: Debugging symbols for Linux 4kc-malta configuration (meta-package) + This package depends on the detached debugging symbols for the latest + Linux kernel 4kc-malta configuration. + +Package: linux-image-5kc-malta +Architecture: mips mips64 mips64el mipsel +Provides: linux-latest-modules-4.9.0-5-5kc-malta +Depends: linux-image-4.9.0-5-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-4.9.0-5-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-5kc-malta-dbg +Architecture: mips mips64 mips64el mipsel +Provides: linux-latest-image-dbg +Depends: linux-image-4.9.0-5-5kc-malta-dbg, ${misc:Depends} +Description: Debugging symbols for Linux 5kc-malta configuration (meta-package) + This package depends on the detached debugging symbols for the latest + Linux kernel 5kc-malta configuration. + +Package: linux-image-octeon +Architecture: mips mips64 mips64el mipsel +Provides: linux-latest-modules-4.9.0-5-octeon +Depends: linux-image-4.9.0-5-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 mipsel +Depends: linux-headers-4.9.0-5-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-octeon-dbg +Architecture: mips mips64 mips64el mipsel +Provides: linux-latest-image-dbg +Depends: linux-image-4.9.0-5-octeon-dbg, ${misc:Depends} +Description: Debugging symbols for Linux octeon configuration (meta-package) + This package depends on the detached debugging symbols for the latest + Linux kernel octeon configuration. + +Package: linux-image-loongson-3 +Architecture: mips64el mipsel +Provides: linux-latest-modules-4.9.0-5-loongson-3 +Depends: linux-image-4.9.0-5-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-4.9.0-5-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-loongson-3-dbg +Architecture: mips64el mipsel +Provides: linux-latest-image-dbg +Depends: linux-image-4.9.0-5-loongson-3-dbg, ${misc:Depends} +Description: Debugging symbols for Linux loongson-3 configuration (meta-package) + This package depends on the detached debugging symbols for the latest + Linux kernel loongson-3 configuration. + +Package: linux-image-powerpc +Architecture: powerpc +Provides: linux-latest-modules-4.9.0-5-powerpc +Depends: linux-image-4.9.0-5-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-4.9.0-5-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-dbg +Architecture: powerpc +Provides: linux-latest-image-dbg +Depends: linux-image-4.9.0-5-powerpc-dbg, ${misc:Depends} +Description: Debugging symbols for Linux powerpc configuration (meta-package) + This package depends on the detached debugging symbols for the latest + Linux kernel powerpc configuration. + +Package: linux-image-powerpc-smp +Architecture: powerpc +Provides: linux-latest-modules-4.9.0-5-powerpc-smp +Depends: linux-image-4.9.0-5-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-4.9.0-5-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-powerpc-smp-dbg +Architecture: powerpc +Provides: linux-latest-image-dbg +Depends: linux-image-4.9.0-5-powerpc-smp-dbg, ${misc:Depends} +Description: Debugging symbols for Linux powerpc-smp configuration (meta-package) + This package depends on the detached debugging symbols for the latest + Linux kernel powerpc-smp configuration. + +Package: linux-image-powerpc64 +Architecture: powerpc ppc64 +Provides: linux-latest-modules-4.9.0-5-powerpc64 +Depends: linux-image-4.9.0-5-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-4.9.0-5-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-powerpc64-dbg +Architecture: powerpc ppc64 +Provides: linux-latest-image-dbg +Depends: linux-image-4.9.0-5-powerpc64-dbg, ${misc:Depends} +Description: Debugging symbols for Linux powerpc64 configuration (meta-package) + This package depends on the detached debugging symbols for the latest + Linux kernel powerpc64 configuration. + +Package: linux-image-powerpcspe +Architecture: powerpcspe +Provides: linux-latest-modules-4.9.0-5-powerpcspe +Depends: linux-image-4.9.0-5-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-4.9.0-5-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-powerpcspe-dbg +Architecture: powerpcspe +Provides: linux-latest-image-dbg +Depends: linux-image-4.9.0-5-powerpcspe-dbg, ${misc:Depends} +Description: Debugging symbols for Linux powerpcspe configuration (meta-package) + This package depends on the detached debugging symbols for the latest + Linux kernel powerpcspe configuration. + +Package: linux-image-powerpc64le +Architecture: ppc64el +Provides: linux-latest-modules-4.9.0-5-powerpc64le +Depends: linux-image-4.9.0-5-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-4.9.0-5-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-powerpc64le-dbg +Architecture: ppc64el +Provides: linux-latest-image-dbg +Depends: linux-image-4.9.0-5-powerpc64le-dbg, ${misc:Depends} +Description: Debugging symbols for Linux powerpc64le configuration (meta-package) + This package depends on the detached debugging symbols for the latest + Linux kernel powerpc64le configuration. + +Package: linux-image-s390x +Architecture: s390x +Provides: linux-latest-modules-4.9.0-5-s390x +Depends: linux-image-4.9.0-5-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: s390x +Depends: linux-headers-4.9.0-5-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: s390x +Provides: linux-latest-image-dbg +Depends: linux-image-4.9.0-5-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-4.9.0-5-sh7751r +Depends: linux-image-4.9.0-5-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-4.9.0-5-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-sh7751r-dbg +Architecture: sh4 +Provides: linux-latest-image-dbg +Depends: linux-image-4.9.0-5-sh7751r-dbg, ${misc:Depends} +Description: Debugging symbols for Linux sh7751r configuration (meta-package) + This package depends on the detached debugging symbols for the latest + Linux kernel sh7751r configuration. + +Package: linux-image-sh7785lcr +Architecture: sh4 +Provides: linux-latest-modules-4.9.0-5-sh7785lcr +Depends: linux-image-4.9.0-5-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-4.9.0-5-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-sh7785lcr-dbg +Architecture: sh4 +Provides: linux-latest-image-dbg +Depends: linux-image-4.9.0-5-sh7785lcr-dbg, ${misc:Depends} +Description: Debugging symbols for Linux sh7785lcr configuration (meta-package) + This package depends on the detached debugging symbols for the latest + Linux kernel sh7785lcr configuration. + +Package: linux-image-sparc64 +Architecture: sparc64 +Provides: linux-latest-modules-4.9.0-5-sparc64 +Depends: linux-image-4.9.0-5-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: sparc64 +Depends: linux-headers-4.9.0-5-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-dbg +Architecture: sparc64 +Provides: linux-latest-image-dbg +Depends: linux-image-4.9.0-5-sparc64-dbg, ${misc:Depends} +Description: Debugging symbols for Linux sparc64 configuration (meta-package) + This package depends on the detached debugging symbols for the latest + Linux kernel sparc64 configuration. + +Package: linux-image-sparc64-smp +Architecture: sparc64 +Provides: linux-latest-modules-4.9.0-5-sparc64-smp +Depends: linux-image-4.9.0-5-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: sparc64 +Depends: linux-headers-4.9.0-5-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-sparc64-smp-dbg +Architecture: sparc64 +Provides: linux-latest-image-dbg +Depends: linux-image-4.9.0-5-sparc64-smp-dbg, ${misc:Depends} +Description: Debugging symbols for Linux sparc64-smp configuration (meta-package) + This package depends on the detached debugging symbols for the latest + Linux kernel sparc64-smp configuration. + +Package: linux-tools +Architecture: all +Section: oldlibs +Priority: extra +Depends: linux-perf, ${misc:Depends} +Description: Performance analysis tools for Linux (dummy package) + This is a dummy transitional package. It can be safely removed. + +Package: linux-image-586 +Architecture: i386 +Section: oldlibs +Priority: extra +Depends: linux-image-686, ${misc:Depends} +Description: Linux for older PCs (dummy package) + This is a dummy transitional package. It can be safely removed. + +Package: linux-headers-586 +Architecture: i386 +Section: oldlibs +Priority: extra +Depends: linux-headers-686, ${misc:Depends} +Description: Header files for Linux 586 configuration (dummy package) + This is a dummy transitional package. It can be safely removed. + +Package: linux-image-kirkwood +Architecture: armel +Section: oldlibs +Priority: extra +Depends: linux-image-marvell, ${misc:Depends} +Description: Linux for Marvell Kirkwood (dummy package) + This is a dummy transitional package. It can be safely removed. + +Package: linux-headers-kirkwood +Architecture: armel +Section: oldlibs +Priority: extra +Depends: linux-headers-marvell, ${misc:Depends} +Description: Header files for Linux kirkwood configuration (dummy package) + This is a dummy transitional package. It can be safely removed. + +Package: linux-image-orion5x +Architecture: armel +Section: oldlibs +Priority: extra +Depends: linux-image-marvell, ${misc:Depends} +Description: Linux for Marvell Orion (dummy package) + This is a dummy transitional package. It can be safely removed. + +Package: linux-headers-orion5x +Architecture: armel +Section: oldlibs +Priority: extra +Depends: linux-headers-marvell, ${misc:Depends} +Description: Header files for Linux orion5x configuration (dummy package) + This is a dummy transitional package. It can be safely removed. + +Package: xen-linux-system-amd64 +Architecture: amd64 +Section: oldlibs +Priority: extra +Depends: xen-system-amd64, linux-image-amd64, ${misc:Depends} +Description: Xen system with Linux for 64-bit PCs (dummy package) + This is a dummy transitional package. It can be safely removed. + diff --git a/debian/control.md5sum b/debian/control.md5sum new file mode 100644 index 0000000..678405e --- /dev/null +++ b/debian/control.md5sum @@ -0,0 +1,10 @@ +b342a78392cfedcf8ec17a063e48a33c debian/bin/gencontrol.py +0ef887e9bf8e6e6ff1847e542d5709dc debian/changelog +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 +37677932424d2f903e275cc197cfbe1a debian/templates/control.source.in +e7facb6902b89f724343b30d5a11e792 debian/templates/control.tools.latest.in +f31fa37b00eece893cb94b316c8b15f2 debian/templates/control.extra.in diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..20af794 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,22 @@ +Copyright: + + Copyright (C) 2006-2009 Bastian Blank + +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'. diff --git a/debian/linux-image-4kc-malta-dbg.lintian-overrides b/debian/linux-image-4kc-malta-dbg.lintian-overrides new file mode 100644 index 0000000..b68cb7a --- /dev/null +++ b/debian/linux-image-4kc-malta-dbg.lintian-overrides @@ -0,0 +1,2 @@ +linux-image-4kc-malta-dbg: wrong-section-according-to-package-name linux-image-4kc-malta-dbg => debug +linux-image-4kc-malta-dbg: debug-package-should-be-priority-extra linux-image-4kc-malta-dbg diff --git a/debian/linux-image-4kc-malta.bug-presubj b/debian/linux-image-4kc-malta.bug-presubj new file mode 100644 index 0000000..ddbbd10 --- /dev/null +++ b/debian/linux-image-4kc-malta.bug-presubj @@ -0,0 +1,5 @@ +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-4.9.0-5-4kc-malta instead. diff --git a/debian/linux-image-5kc-malta-dbg.lintian-overrides b/debian/linux-image-5kc-malta-dbg.lintian-overrides new file mode 100644 index 0000000..203e11e --- /dev/null +++ b/debian/linux-image-5kc-malta-dbg.lintian-overrides @@ -0,0 +1,2 @@ +linux-image-5kc-malta-dbg: wrong-section-according-to-package-name linux-image-5kc-malta-dbg => debug +linux-image-5kc-malta-dbg: debug-package-should-be-priority-extra linux-image-5kc-malta-dbg diff --git a/debian/linux-image-5kc-malta.bug-presubj b/debian/linux-image-5kc-malta.bug-presubj new file mode 100644 index 0000000..d2834af --- /dev/null +++ b/debian/linux-image-5kc-malta.bug-presubj @@ -0,0 +1,5 @@ +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-4.9.0-5-5kc-malta instead. diff --git a/debian/linux-image-686-dbg.lintian-overrides b/debian/linux-image-686-dbg.lintian-overrides new file mode 100644 index 0000000..0525eeb --- /dev/null +++ b/debian/linux-image-686-dbg.lintian-overrides @@ -0,0 +1,2 @@ +linux-image-686-dbg: wrong-section-according-to-package-name linux-image-686-dbg => debug +linux-image-686-dbg: debug-package-should-be-priority-extra linux-image-686-dbg diff --git a/debian/linux-image-686-pae-dbg.lintian-overrides b/debian/linux-image-686-pae-dbg.lintian-overrides new file mode 100644 index 0000000..af80c82 --- /dev/null +++ b/debian/linux-image-686-pae-dbg.lintian-overrides @@ -0,0 +1,2 @@ +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 diff --git a/debian/linux-image-686-pae.bug-presubj b/debian/linux-image-686-pae.bug-presubj new file mode 100644 index 0000000..bc52d7b --- /dev/null +++ b/debian/linux-image-686-pae.bug-presubj @@ -0,0 +1,5 @@ +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-4.9.0-5-686-pae instead. diff --git a/debian/linux-image-686.bug-presubj b/debian/linux-image-686.bug-presubj new file mode 100644 index 0000000..09645d5 --- /dev/null +++ b/debian/linux-image-686.bug-presubj @@ -0,0 +1,5 @@ +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-4.9.0-5-686 instead. diff --git a/debian/linux-image-alpha-generic-dbg.lintian-overrides b/debian/linux-image-alpha-generic-dbg.lintian-overrides new file mode 100644 index 0000000..378bbd7 --- /dev/null +++ b/debian/linux-image-alpha-generic-dbg.lintian-overrides @@ -0,0 +1,2 @@ +linux-image-alpha-generic-dbg: wrong-section-according-to-package-name linux-image-alpha-generic-dbg => debug +linux-image-alpha-generic-dbg: debug-package-should-be-priority-extra linux-image-alpha-generic-dbg diff --git a/debian/linux-image-alpha-generic.bug-presubj b/debian/linux-image-alpha-generic.bug-presubj new file mode 100644 index 0000000..114a067 --- /dev/null +++ b/debian/linux-image-alpha-generic.bug-presubj @@ -0,0 +1,5 @@ +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-4.9.0-5-alpha-generic instead. diff --git a/debian/linux-image-alpha-smp-dbg.lintian-overrides b/debian/linux-image-alpha-smp-dbg.lintian-overrides new file mode 100644 index 0000000..c4ad3f2 --- /dev/null +++ b/debian/linux-image-alpha-smp-dbg.lintian-overrides @@ -0,0 +1,2 @@ +linux-image-alpha-smp-dbg: wrong-section-according-to-package-name linux-image-alpha-smp-dbg => debug +linux-image-alpha-smp-dbg: debug-package-should-be-priority-extra linux-image-alpha-smp-dbg diff --git a/debian/linux-image-alpha-smp.bug-presubj b/debian/linux-image-alpha-smp.bug-presubj new file mode 100644 index 0000000..ff85c39 --- /dev/null +++ b/debian/linux-image-alpha-smp.bug-presubj @@ -0,0 +1,5 @@ +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-4.9.0-5-alpha-smp instead. diff --git a/debian/linux-image-amd64-dbg.lintian-overrides b/debian/linux-image-amd64-dbg.lintian-overrides new file mode 100644 index 0000000..403c494 --- /dev/null +++ b/debian/linux-image-amd64-dbg.lintian-overrides @@ -0,0 +1,2 @@ +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 diff --git a/debian/linux-image-amd64.bug-presubj b/debian/linux-image-amd64.bug-presubj new file mode 100644 index 0000000..3ddb5ea --- /dev/null +++ b/debian/linux-image-amd64.bug-presubj @@ -0,0 +1,5 @@ +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-4.9.0-5-amd64 instead. diff --git a/debian/linux-image-arm64-dbg.lintian-overrides b/debian/linux-image-arm64-dbg.lintian-overrides new file mode 100644 index 0000000..36fa31e --- /dev/null +++ b/debian/linux-image-arm64-dbg.lintian-overrides @@ -0,0 +1,2 @@ +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 diff --git a/debian/linux-image-arm64.bug-presubj b/debian/linux-image-arm64.bug-presubj new file mode 100644 index 0000000..dbc8876 --- /dev/null +++ b/debian/linux-image-arm64.bug-presubj @@ -0,0 +1,5 @@ +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-4.9.0-5-arm64 instead. diff --git a/debian/linux-image-armmp-dbg.lintian-overrides b/debian/linux-image-armmp-dbg.lintian-overrides new file mode 100644 index 0000000..ebd89d4 --- /dev/null +++ b/debian/linux-image-armmp-dbg.lintian-overrides @@ -0,0 +1,2 @@ +linux-image-armmp-dbg: wrong-section-according-to-package-name linux-image-armmp-dbg => debug +linux-image-armmp-dbg: debug-package-should-be-priority-extra linux-image-armmp-dbg diff --git a/debian/linux-image-armmp-lpae-dbg.lintian-overrides b/debian/linux-image-armmp-lpae-dbg.lintian-overrides new file mode 100644 index 0000000..f973060 --- /dev/null +++ b/debian/linux-image-armmp-lpae-dbg.lintian-overrides @@ -0,0 +1,2 @@ +linux-image-armmp-lpae-dbg: wrong-section-according-to-package-name linux-image-armmp-lpae-dbg => debug +linux-image-armmp-lpae-dbg: debug-package-should-be-priority-extra linux-image-armmp-lpae-dbg diff --git a/debian/linux-image-armmp-lpae.bug-presubj b/debian/linux-image-armmp-lpae.bug-presubj new file mode 100644 index 0000000..e7b8de0 --- /dev/null +++ b/debian/linux-image-armmp-lpae.bug-presubj @@ -0,0 +1,5 @@ +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-4.9.0-5-armmp-lpae instead. diff --git a/debian/linux-image-armmp.bug-presubj b/debian/linux-image-armmp.bug-presubj new file mode 100644 index 0000000..2cbec5c --- /dev/null +++ b/debian/linux-image-armmp.bug-presubj @@ -0,0 +1,5 @@ +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-4.9.0-5-armmp instead. diff --git a/debian/linux-image-loongson-3-dbg.lintian-overrides b/debian/linux-image-loongson-3-dbg.lintian-overrides new file mode 100644 index 0000000..6485258 --- /dev/null +++ b/debian/linux-image-loongson-3-dbg.lintian-overrides @@ -0,0 +1,2 @@ +linux-image-loongson-3-dbg: wrong-section-according-to-package-name linux-image-loongson-3-dbg => debug +linux-image-loongson-3-dbg: debug-package-should-be-priority-extra linux-image-loongson-3-dbg diff --git a/debian/linux-image-loongson-3.bug-presubj b/debian/linux-image-loongson-3.bug-presubj new file mode 100644 index 0000000..56e7036 --- /dev/null +++ b/debian/linux-image-loongson-3.bug-presubj @@ -0,0 +1,5 @@ +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-4.9.0-5-loongson-3 instead. diff --git a/debian/linux-image-m68k-dbg.lintian-overrides b/debian/linux-image-m68k-dbg.lintian-overrides new file mode 100644 index 0000000..13fb1f5 --- /dev/null +++ b/debian/linux-image-m68k-dbg.lintian-overrides @@ -0,0 +1,2 @@ +linux-image-m68k-dbg: wrong-section-according-to-package-name linux-image-m68k-dbg => debug +linux-image-m68k-dbg: debug-package-should-be-priority-extra linux-image-m68k-dbg diff --git a/debian/linux-image-m68k.bug-presubj b/debian/linux-image-m68k.bug-presubj new file mode 100644 index 0000000..596bfae --- /dev/null +++ b/debian/linux-image-m68k.bug-presubj @@ -0,0 +1,5 @@ +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-4.9.0-5-m68k instead. diff --git a/debian/linux-image-marvell-dbg.lintian-overrides b/debian/linux-image-marvell-dbg.lintian-overrides new file mode 100644 index 0000000..e090534 --- /dev/null +++ b/debian/linux-image-marvell-dbg.lintian-overrides @@ -0,0 +1,2 @@ +linux-image-marvell-dbg: wrong-section-according-to-package-name linux-image-marvell-dbg => debug +linux-image-marvell-dbg: debug-package-should-be-priority-extra linux-image-marvell-dbg diff --git a/debian/linux-image-marvell.bug-presubj b/debian/linux-image-marvell.bug-presubj new file mode 100644 index 0000000..f556bc0 --- /dev/null +++ b/debian/linux-image-marvell.bug-presubj @@ -0,0 +1,5 @@ +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-4.9.0-5-marvell instead. diff --git a/debian/linux-image-octeon-dbg.lintian-overrides b/debian/linux-image-octeon-dbg.lintian-overrides new file mode 100644 index 0000000..15a8f65 --- /dev/null +++ b/debian/linux-image-octeon-dbg.lintian-overrides @@ -0,0 +1,2 @@ +linux-image-octeon-dbg: wrong-section-according-to-package-name linux-image-octeon-dbg => debug +linux-image-octeon-dbg: debug-package-should-be-priority-extra linux-image-octeon-dbg diff --git a/debian/linux-image-octeon.bug-presubj b/debian/linux-image-octeon.bug-presubj new file mode 100644 index 0000000..758e220 --- /dev/null +++ b/debian/linux-image-octeon.bug-presubj @@ -0,0 +1,5 @@ +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-4.9.0-5-octeon instead. diff --git a/debian/linux-image-parisc-dbg.lintian-overrides b/debian/linux-image-parisc-dbg.lintian-overrides new file mode 100644 index 0000000..f2b92e1 --- /dev/null +++ b/debian/linux-image-parisc-dbg.lintian-overrides @@ -0,0 +1,2 @@ +linux-image-parisc-dbg: wrong-section-according-to-package-name linux-image-parisc-dbg => debug +linux-image-parisc-dbg: debug-package-should-be-priority-extra linux-image-parisc-dbg diff --git a/debian/linux-image-parisc.bug-presubj b/debian/linux-image-parisc.bug-presubj new file mode 100644 index 0000000..63eac1f --- /dev/null +++ b/debian/linux-image-parisc.bug-presubj @@ -0,0 +1,5 @@ +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-4.9.0-5-parisc instead. diff --git a/debian/linux-image-parisc64-smp-dbg.lintian-overrides b/debian/linux-image-parisc64-smp-dbg.lintian-overrides new file mode 100644 index 0000000..1dcf310 --- /dev/null +++ b/debian/linux-image-parisc64-smp-dbg.lintian-overrides @@ -0,0 +1,2 @@ +linux-image-parisc64-smp-dbg: wrong-section-according-to-package-name linux-image-parisc64-smp-dbg => debug +linux-image-parisc64-smp-dbg: debug-package-should-be-priority-extra linux-image-parisc64-smp-dbg diff --git a/debian/linux-image-parisc64-smp.bug-presubj b/debian/linux-image-parisc64-smp.bug-presubj new file mode 100644 index 0000000..9e1e044 --- /dev/null +++ b/debian/linux-image-parisc64-smp.bug-presubj @@ -0,0 +1,5 @@ +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-4.9.0-5-parisc64-smp instead. diff --git a/debian/linux-image-powerpc-dbg.lintian-overrides b/debian/linux-image-powerpc-dbg.lintian-overrides new file mode 100644 index 0000000..1504541 --- /dev/null +++ b/debian/linux-image-powerpc-dbg.lintian-overrides @@ -0,0 +1,2 @@ +linux-image-powerpc-dbg: wrong-section-according-to-package-name linux-image-powerpc-dbg => debug +linux-image-powerpc-dbg: debug-package-should-be-priority-extra linux-image-powerpc-dbg diff --git a/debian/linux-image-powerpc-smp-dbg.lintian-overrides b/debian/linux-image-powerpc-smp-dbg.lintian-overrides new file mode 100644 index 0000000..28d2ba6 --- /dev/null +++ b/debian/linux-image-powerpc-smp-dbg.lintian-overrides @@ -0,0 +1,2 @@ +linux-image-powerpc-smp-dbg: wrong-section-according-to-package-name linux-image-powerpc-smp-dbg => debug +linux-image-powerpc-smp-dbg: debug-package-should-be-priority-extra linux-image-powerpc-smp-dbg diff --git a/debian/linux-image-powerpc-smp.bug-presubj b/debian/linux-image-powerpc-smp.bug-presubj new file mode 100644 index 0000000..73a5911 --- /dev/null +++ b/debian/linux-image-powerpc-smp.bug-presubj @@ -0,0 +1,5 @@ +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-4.9.0-5-powerpc-smp instead. diff --git a/debian/linux-image-powerpc.bug-presubj b/debian/linux-image-powerpc.bug-presubj new file mode 100644 index 0000000..0872167 --- /dev/null +++ b/debian/linux-image-powerpc.bug-presubj @@ -0,0 +1,5 @@ +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-4.9.0-5-powerpc instead. diff --git a/debian/linux-image-powerpc64-dbg.lintian-overrides b/debian/linux-image-powerpc64-dbg.lintian-overrides new file mode 100644 index 0000000..318cfa8 --- /dev/null +++ b/debian/linux-image-powerpc64-dbg.lintian-overrides @@ -0,0 +1,2 @@ +linux-image-powerpc64-dbg: wrong-section-according-to-package-name linux-image-powerpc64-dbg => debug +linux-image-powerpc64-dbg: debug-package-should-be-priority-extra linux-image-powerpc64-dbg diff --git a/debian/linux-image-powerpc64.bug-presubj b/debian/linux-image-powerpc64.bug-presubj new file mode 100644 index 0000000..ddbbc03 --- /dev/null +++ b/debian/linux-image-powerpc64.bug-presubj @@ -0,0 +1,5 @@ +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-4.9.0-5-powerpc64 instead. diff --git a/debian/linux-image-powerpc64le-dbg.lintian-overrides b/debian/linux-image-powerpc64le-dbg.lintian-overrides new file mode 100644 index 0000000..6a24e16 --- /dev/null +++ b/debian/linux-image-powerpc64le-dbg.lintian-overrides @@ -0,0 +1,2 @@ +linux-image-powerpc64le-dbg: wrong-section-according-to-package-name linux-image-powerpc64le-dbg => debug +linux-image-powerpc64le-dbg: debug-package-should-be-priority-extra linux-image-powerpc64le-dbg diff --git a/debian/linux-image-powerpc64le.bug-presubj b/debian/linux-image-powerpc64le.bug-presubj new file mode 100644 index 0000000..6bb9548 --- /dev/null +++ b/debian/linux-image-powerpc64le.bug-presubj @@ -0,0 +1,5 @@ +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-4.9.0-5-powerpc64le instead. diff --git a/debian/linux-image-powerpcspe-dbg.lintian-overrides b/debian/linux-image-powerpcspe-dbg.lintian-overrides new file mode 100644 index 0000000..89193f2 --- /dev/null +++ b/debian/linux-image-powerpcspe-dbg.lintian-overrides @@ -0,0 +1,2 @@ +linux-image-powerpcspe-dbg: wrong-section-according-to-package-name linux-image-powerpcspe-dbg => debug +linux-image-powerpcspe-dbg: debug-package-should-be-priority-extra linux-image-powerpcspe-dbg diff --git a/debian/linux-image-powerpcspe.bug-presubj b/debian/linux-image-powerpcspe.bug-presubj new file mode 100644 index 0000000..5dd7877 --- /dev/null +++ b/debian/linux-image-powerpcspe.bug-presubj @@ -0,0 +1,5 @@ +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-4.9.0-5-powerpcspe instead. diff --git a/debian/linux-image-rt-686-pae-dbg.lintian-overrides b/debian/linux-image-rt-686-pae-dbg.lintian-overrides new file mode 100644 index 0000000..9f18076 --- /dev/null +++ b/debian/linux-image-rt-686-pae-dbg.lintian-overrides @@ -0,0 +1,2 @@ +linux-image-rt-686-pae-dbg: wrong-section-according-to-package-name linux-image-rt-686-pae-dbg => debug +linux-image-rt-686-pae-dbg: debug-package-should-be-priority-extra linux-image-rt-686-pae-dbg diff --git a/debian/linux-image-rt-686-pae.bug-presubj b/debian/linux-image-rt-686-pae.bug-presubj new file mode 100644 index 0000000..f4fa739 --- /dev/null +++ b/debian/linux-image-rt-686-pae.bug-presubj @@ -0,0 +1,5 @@ +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-4.9.0-5-rt-686-pae instead. diff --git a/debian/linux-image-rt-amd64-dbg.lintian-overrides b/debian/linux-image-rt-amd64-dbg.lintian-overrides new file mode 100644 index 0000000..b059f7f --- /dev/null +++ b/debian/linux-image-rt-amd64-dbg.lintian-overrides @@ -0,0 +1,2 @@ +linux-image-rt-amd64-dbg: wrong-section-according-to-package-name linux-image-rt-amd64-dbg => debug +linux-image-rt-amd64-dbg: debug-package-should-be-priority-extra linux-image-rt-amd64-dbg diff --git a/debian/linux-image-rt-amd64.bug-presubj b/debian/linux-image-rt-amd64.bug-presubj new file mode 100644 index 0000000..ea4c99a --- /dev/null +++ b/debian/linux-image-rt-amd64.bug-presubj @@ -0,0 +1,5 @@ +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-4.9.0-5-rt-amd64 instead. diff --git a/debian/linux-image-s390x-dbg.lintian-overrides b/debian/linux-image-s390x-dbg.lintian-overrides new file mode 100644 index 0000000..f449b5f --- /dev/null +++ b/debian/linux-image-s390x-dbg.lintian-overrides @@ -0,0 +1,2 @@ +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 diff --git a/debian/linux-image-s390x.bug-presubj b/debian/linux-image-s390x.bug-presubj new file mode 100644 index 0000000..93ed0b0 --- /dev/null +++ b/debian/linux-image-s390x.bug-presubj @@ -0,0 +1,5 @@ +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-4.9.0-5-s390x instead. diff --git a/debian/linux-image-sh7751r-dbg.lintian-overrides b/debian/linux-image-sh7751r-dbg.lintian-overrides new file mode 100644 index 0000000..4abe837 --- /dev/null +++ b/debian/linux-image-sh7751r-dbg.lintian-overrides @@ -0,0 +1,2 @@ +linux-image-sh7751r-dbg: wrong-section-according-to-package-name linux-image-sh7751r-dbg => debug +linux-image-sh7751r-dbg: debug-package-should-be-priority-extra linux-image-sh7751r-dbg diff --git a/debian/linux-image-sh7751r.bug-presubj b/debian/linux-image-sh7751r.bug-presubj new file mode 100644 index 0000000..41d9e36 --- /dev/null +++ b/debian/linux-image-sh7751r.bug-presubj @@ -0,0 +1,5 @@ +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-4.9.0-5-sh7751r instead. diff --git a/debian/linux-image-sh7785lcr-dbg.lintian-overrides b/debian/linux-image-sh7785lcr-dbg.lintian-overrides new file mode 100644 index 0000000..c808538 --- /dev/null +++ b/debian/linux-image-sh7785lcr-dbg.lintian-overrides @@ -0,0 +1,2 @@ +linux-image-sh7785lcr-dbg: wrong-section-according-to-package-name linux-image-sh7785lcr-dbg => debug +linux-image-sh7785lcr-dbg: debug-package-should-be-priority-extra linux-image-sh7785lcr-dbg diff --git a/debian/linux-image-sh7785lcr.bug-presubj b/debian/linux-image-sh7785lcr.bug-presubj new file mode 100644 index 0000000..c047f4a --- /dev/null +++ b/debian/linux-image-sh7785lcr.bug-presubj @@ -0,0 +1,5 @@ +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-4.9.0-5-sh7785lcr instead. diff --git a/debian/linux-image-sparc64-dbg.lintian-overrides b/debian/linux-image-sparc64-dbg.lintian-overrides new file mode 100644 index 0000000..d275a71 --- /dev/null +++ b/debian/linux-image-sparc64-dbg.lintian-overrides @@ -0,0 +1,2 @@ +linux-image-sparc64-dbg: wrong-section-according-to-package-name linux-image-sparc64-dbg => debug +linux-image-sparc64-dbg: debug-package-should-be-priority-extra linux-image-sparc64-dbg diff --git a/debian/linux-image-sparc64-smp-dbg.lintian-overrides b/debian/linux-image-sparc64-smp-dbg.lintian-overrides new file mode 100644 index 0000000..a19b910 --- /dev/null +++ b/debian/linux-image-sparc64-smp-dbg.lintian-overrides @@ -0,0 +1,2 @@ +linux-image-sparc64-smp-dbg: wrong-section-according-to-package-name linux-image-sparc64-smp-dbg => debug +linux-image-sparc64-smp-dbg: debug-package-should-be-priority-extra linux-image-sparc64-smp-dbg diff --git a/debian/linux-image-sparc64-smp.bug-presubj b/debian/linux-image-sparc64-smp.bug-presubj new file mode 100644 index 0000000..5b23374 --- /dev/null +++ b/debian/linux-image-sparc64-smp.bug-presubj @@ -0,0 +1,5 @@ +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-4.9.0-5-sparc64-smp instead. diff --git a/debian/linux-image-sparc64.bug-presubj b/debian/linux-image-sparc64.bug-presubj new file mode 100644 index 0000000..585717d --- /dev/null +++ b/debian/linux-image-sparc64.bug-presubj @@ -0,0 +1,5 @@ +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-4.9.0-5-sparc64 instead. diff --git a/debian/linux-image.NEWS b/debian/linux-image.NEWS new file mode 100644 index 0000000..1f77438 --- /dev/null +++ b/debian/linux-image.NEWS @@ -0,0 +1,24 @@ +linux-latest (76) unstable; urgency=medium + + * From Linux 4.8, several changes have been made in the kernel + configuration to 'harden' the system, i.e. to mitigate security bugs. + Some changes may cause legitimate applications to fail, and can be + reverted by run-time configuration: + - On most architectures, the /dev/mem device can no longer be used to + access devices that also have a kernel driver. This breaks dosemu + and some old user-space graphics drivers. To allow this, set the + kernel parameter: iomem=relaxed + - The kernel log is no longer readable by unprivileged users. To + allow this, set the sysctl: kernel.dmesg_restrict=0 + + -- Ben Hutchings Sat, 29 Oct 2016 02:05:32 +0100 + +linux-latest (75) unstable; urgency=medium + + * From Linux 4.7, the iptables connection tracking system will no longer + automatically load helper modules. If your firewall configuration + depends on connection tracking helpers, you should explicitly load the + required modules. For more information, see + . + + -- Ben Hutchings Sat, 29 Oct 2016 01:53:18 +0100 diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..792d23b --- /dev/null +++ b/debian/rules @@ -0,0 +1,73 @@ +#!/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 -SVersion | sed -rne 's,.*\+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 + +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 diff --git a/debian/rules.defs b/debian/rules.defs new file mode 100644 index 0000000..a81197d --- /dev/null +++ b/debian/rules.defs @@ -0,0 +1,4 @@ +BUILD_DIR = debian/build +STAMPS_DIR = debian/stamps +TEMPLATES_DIR = debian/templates +KERNELVERSION := 4.9.0-5 diff --git a/debian/rules.gen b/debian/rules.gen new file mode 100644 index 0000000..1e8aab1 --- /dev/null +++ b/debian/rules.gen @@ -0,0 +1,649 @@ +.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_m68k binary-arch_mips binary-arch_mips64 binary-arch_mips64el binary-arch_mipsel binary-arch_mipsn32 binary-arch_mipsn32el binary-arch_powerpc binary-arch_powerpcspe binary-arch_ppc64 binary-arch_ppc64el binary-arch_s390 binary-arch_s390x binary-arch_sh3 binary-arch_sh4 binary-arch_sparc binary-arch_sparc64 binary-arch_tilegx 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-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:: + ln -sf linux-image.NEWS debian/linux-image-alpha-generic.NEWS + ln -sf linux-image.NEWS debian/linux-image-alpha-generic-dbg.NEWS + $(MAKE) -f debian/rules.real install-flavour ABINAME='4.9.0-5' ARCH='alpha' DEBUG='True' FEATURESET='none' FLAVOUR='alpha-generic' GENCONTROL_ARGS='-v4.9+80+deb9u3' LOCALVERSION='-alpha-generic' +binary-arch_alpha_none_alpha-smp: binary-arch_alpha_none_alpha-smp_real +binary-arch_alpha_none_alpha-smp_real:: + ln -sf linux-image.NEWS debian/linux-image-alpha-smp.NEWS + ln -sf linux-image.NEWS debian/linux-image-alpha-smp-dbg.NEWS + $(MAKE) -f debian/rules.real install-flavour ABINAME='4.9.0-5' ARCH='alpha' DEBUG='True' FEATURESET='none' FLAVOUR='alpha-smp' GENCONTROL_ARGS='-v4.9+80+deb9u3' LOCALVERSION='-alpha-smp' +binary-arch_alpha_none_real: +binary-arch_alpha_real: +binary-arch_amd64: binary-arch_amd64_extra binary-arch_amd64_none binary-arch_amd64_real binary-arch_amd64_rt +binary-arch_amd64_extra:: + $(MAKE) -f debian/rules.real install-dummy ARCH='amd64' DH_OPTIONS='-pxen-linux-system-amd64' GENCONTROL_ARGS='-v4.9+80+deb9u3' +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:: + ln -sf linux-image.NEWS debian/linux-image-amd64.NEWS + ln -sf linux-image.NEWS debian/linux-image-amd64-dbg.NEWS + $(MAKE) -f debian/rules.real install-flavour ABINAME='4.9.0-5' ARCH='amd64' DEBUG='True' FEATURESET='none' FLAVOUR='amd64' GENCONTROL_ARGS='-v4.9+80+deb9u3' LOCALVERSION='-amd64' +binary-arch_amd64_none_real: +binary-arch_amd64_real: +binary-arch_amd64_rt: binary-arch_amd64_rt_amd64 binary-arch_amd64_rt_real +binary-arch_amd64_rt_amd64: binary-arch_amd64_rt_amd64_real +binary-arch_amd64_rt_amd64_real:: + ln -sf linux-image.NEWS debian/linux-image-rt-amd64.NEWS + ln -sf linux-image.NEWS debian/linux-image-rt-amd64-dbg.NEWS + $(MAKE) -f debian/rules.real install-flavour ABINAME='4.9.0-5' ARCH='amd64' DEBUG='True' FEATURESET='rt' FLAVOUR='amd64' GENCONTROL_ARGS='-v4.9+80+deb9u3' LOCALVERSION='-rt-amd64' +binary-arch_amd64_rt_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:: + ln -sf linux-image.NEWS debian/linux-image-arm64.NEWS + ln -sf linux-image.NEWS debian/linux-image-arm64-dbg.NEWS + $(MAKE) -f debian/rules.real install-flavour ABINAME='4.9.0-5' ARCH='arm64' DEBUG='True' FEATURESET='none' FLAVOUR='arm64' GENCONTROL_ARGS='-v4.9+80+deb9u3' LOCALVERSION='-arm64' +binary-arch_arm64_none_real: +binary-arch_arm64_real: +binary-arch_armel: binary-arch_armel_extra binary-arch_armel_none binary-arch_armel_real +binary-arch_armel_extra:: + $(MAKE) -f debian/rules.real install-dummy ARCH='armel' DH_OPTIONS='-plinux-image-kirkwood' GENCONTROL_ARGS='-v4.9+80+deb9u3' + $(MAKE) -f debian/rules.real install-dummy ARCH='armel' DH_OPTIONS='-plinux-headers-kirkwood' GENCONTROL_ARGS='-v4.9+80+deb9u3' + $(MAKE) -f debian/rules.real install-dummy ARCH='armel' DH_OPTIONS='-plinux-image-orion5x' GENCONTROL_ARGS='-v4.9+80+deb9u3' + $(MAKE) -f debian/rules.real install-dummy ARCH='armel' DH_OPTIONS='-plinux-headers-orion5x' GENCONTROL_ARGS='-v4.9+80+deb9u3' +binary-arch_armel_none: binary-arch_armel_none_marvell binary-arch_armel_none_real +binary-arch_armel_none_marvell: binary-arch_armel_none_marvell_real +binary-arch_armel_none_marvell_real:: + ln -sf linux-image.NEWS debian/linux-image-marvell.NEWS + ln -sf linux-image.NEWS debian/linux-image-marvell-dbg.NEWS + $(MAKE) -f debian/rules.real install-flavour ABINAME='4.9.0-5' ARCH='armel' DEBUG='True' FEATURESET='none' FLAVOUR='marvell' GENCONTROL_ARGS='-v4.9+80+deb9u3' LOCALVERSION='-marvell' +binary-arch_armel_none_real: +binary-arch_armel_real: +binary-arch_armhf: binary-arch_armhf_none binary-arch_armhf_real +binary-arch_armhf_none: binary-arch_armhf_none_armmp binary-arch_armhf_none_armmp-lpae binary-arch_armhf_none_real +binary-arch_armhf_none_armmp: binary-arch_armhf_none_armmp_real +binary-arch_armhf_none_armmp-lpae: binary-arch_armhf_none_armmp-lpae_real +binary-arch_armhf_none_armmp-lpae_real:: + ln -sf linux-image.NEWS debian/linux-image-armmp-lpae.NEWS + ln -sf linux-image.NEWS debian/linux-image-armmp-lpae-dbg.NEWS + $(MAKE) -f debian/rules.real install-flavour ABINAME='4.9.0-5' ARCH='armhf' DEBUG='True' FEATURESET='none' FLAVOUR='armmp-lpae' GENCONTROL_ARGS='-v4.9+80+deb9u3' LOCALVERSION='-armmp-lpae' +binary-arch_armhf_none_armmp_real:: + ln -sf linux-image.NEWS debian/linux-image-armmp.NEWS + ln -sf linux-image.NEWS debian/linux-image-armmp-dbg.NEWS + $(MAKE) -f debian/rules.real install-flavour ABINAME='4.9.0-5' ARCH='armhf' DEBUG='True' FEATURESET='none' FLAVOUR='armmp' GENCONTROL_ARGS='-v4.9+80+deb9u3' LOCALVERSION='-armmp' +binary-arch_armhf_none_real: +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:: + ln -sf linux-image.NEWS debian/linux-image-parisc64-smp.NEWS + ln -sf linux-image.NEWS debian/linux-image-parisc64-smp-dbg.NEWS + $(MAKE) -f debian/rules.real install-flavour ABINAME='4.9.0-5' ARCH='hppa' DEBUG='True' FEATURESET='none' FLAVOUR='parisc64-smp' GENCONTROL_ARGS='-v4.9+80+deb9u3' LOCALVERSION='-parisc64-smp' +binary-arch_hppa_none_parisc_real:: + ln -sf linux-image.NEWS debian/linux-image-parisc.NEWS + ln -sf linux-image.NEWS debian/linux-image-parisc-dbg.NEWS + $(MAKE) -f debian/rules.real install-flavour ABINAME='4.9.0-5' ARCH='hppa' DEBUG='True' FEATURESET='none' FLAVOUR='parisc' GENCONTROL_ARGS='-v4.9+80+deb9u3' LOCALVERSION='-parisc' +binary-arch_hppa_none_real: +binary-arch_hppa_real: +binary-arch_i386: binary-arch_i386_extra binary-arch_i386_none binary-arch_i386_real binary-arch_i386_rt +binary-arch_i386_extra:: + $(MAKE) -f debian/rules.real install-dummy ARCH='i386' DH_OPTIONS='-plinux-image-586' GENCONTROL_ARGS='-v4.9+80+deb9u3' + $(MAKE) -f debian/rules.real install-dummy ARCH='i386' DH_OPTIONS='-plinux-headers-586' GENCONTROL_ARGS='-v4.9+80+deb9u3' +binary-arch_i386_none: binary-arch_i386_none_686 binary-arch_i386_none_686-pae binary-arch_i386_none_real +binary-arch_i386_none_686: binary-arch_i386_none_686_real +binary-arch_i386_none_686-pae: binary-arch_i386_none_686-pae_real +binary-arch_i386_none_686-pae_real:: + ln -sf linux-image.NEWS debian/linux-image-686-pae.NEWS + ln -sf linux-image.NEWS debian/linux-image-686-pae-dbg.NEWS + $(MAKE) -f debian/rules.real install-flavour ABINAME='4.9.0-5' ARCH='i386' DEBUG='True' FEATURESET='none' FLAVOUR='686-pae' GENCONTROL_ARGS='-v4.9+80+deb9u3' LOCALVERSION='-686-pae' +binary-arch_i386_none_686_real:: + ln -sf linux-image.NEWS debian/linux-image-686.NEWS + ln -sf linux-image.NEWS debian/linux-image-686-dbg.NEWS + $(MAKE) -f debian/rules.real install-flavour ABINAME='4.9.0-5' ARCH='i386' DEBUG='True' FEATURESET='none' FLAVOUR='686' GENCONTROL_ARGS='-v4.9+80+deb9u3' LOCALVERSION='-686' +binary-arch_i386_none_real: +binary-arch_i386_real: +binary-arch_i386_rt: binary-arch_i386_rt_686-pae binary-arch_i386_rt_real +binary-arch_i386_rt_686-pae: binary-arch_i386_rt_686-pae_real +binary-arch_i386_rt_686-pae_real:: + ln -sf linux-image.NEWS debian/linux-image-rt-686-pae.NEWS + ln -sf linux-image.NEWS debian/linux-image-rt-686-pae-dbg.NEWS + $(MAKE) -f debian/rules.real install-flavour ABINAME='4.9.0-5' ARCH='i386' DEBUG='True' FEATURESET='rt' FLAVOUR='686-pae' GENCONTROL_ARGS='-v4.9+80+deb9u3' LOCALVERSION='-rt-686-pae' +binary-arch_i386_rt_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:: + ln -sf linux-image.NEWS debian/linux-image-m68k.NEWS + ln -sf linux-image.NEWS debian/linux-image-m68k-dbg.NEWS + $(MAKE) -f debian/rules.real install-flavour ABINAME='4.9.0-5' ARCH='m68k' DEBUG='True' FEATURESET='none' FLAVOUR='m68k' GENCONTROL_ARGS='-v4.9+80+deb9u3' 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_5kc-malta: binary-arch_mips64_none_5kc-malta_real +binary-arch_mips64_none_5kc-malta_real:: + ln -sf linux-image.NEWS debian/linux-image-5kc-malta.NEWS + ln -sf linux-image.NEWS debian/linux-image-5kc-malta-dbg.NEWS + $(MAKE) -f debian/rules.real install-flavour ABINAME='4.9.0-5' ARCH='mips64' DEBUG='True' FEATURESET='none' FLAVOUR='5kc-malta' GENCONTROL_ARGS='-v4.9+80+deb9u3' LOCALVERSION='-5kc-malta' +binary-arch_mips64_none_octeon: binary-arch_mips64_none_octeon_real +binary-arch_mips64_none_octeon_real:: + ln -sf linux-image.NEWS debian/linux-image-octeon.NEWS + ln -sf linux-image.NEWS debian/linux-image-octeon-dbg.NEWS + $(MAKE) -f debian/rules.real install-flavour ABINAME='4.9.0-5' ARCH='mips64' DEBUG='True' FEATURESET='none' FLAVOUR='octeon' GENCONTROL_ARGS='-v4.9+80+deb9u3' LOCALVERSION='-octeon' +binary-arch_mips64_none_real: +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_5kc-malta: binary-arch_mips64el_none_5kc-malta_real +binary-arch_mips64el_none_5kc-malta_real:: + ln -sf linux-image.NEWS debian/linux-image-5kc-malta.NEWS + ln -sf linux-image.NEWS debian/linux-image-5kc-malta-dbg.NEWS + $(MAKE) -f debian/rules.real install-flavour ABINAME='4.9.0-5' ARCH='mips64el' DEBUG='True' FEATURESET='none' FLAVOUR='5kc-malta' GENCONTROL_ARGS='-v4.9+80+deb9u3' LOCALVERSION='-5kc-malta' +binary-arch_mips64el_none_loongson-3: binary-arch_mips64el_none_loongson-3_real +binary-arch_mips64el_none_loongson-3_real:: + ln -sf linux-image.NEWS debian/linux-image-loongson-3.NEWS + ln -sf linux-image.NEWS debian/linux-image-loongson-3-dbg.NEWS + $(MAKE) -f debian/rules.real install-flavour ABINAME='4.9.0-5' ARCH='mips64el' DEBUG='True' FEATURESET='none' FLAVOUR='loongson-3' GENCONTROL_ARGS='-v4.9+80+deb9u3' LOCALVERSION='-loongson-3' +binary-arch_mips64el_none_octeon: binary-arch_mips64el_none_octeon_real +binary-arch_mips64el_none_octeon_real:: + ln -sf linux-image.NEWS debian/linux-image-octeon.NEWS + ln -sf linux-image.NEWS debian/linux-image-octeon-dbg.NEWS + $(MAKE) -f debian/rules.real install-flavour ABINAME='4.9.0-5' ARCH='mips64el' DEBUG='True' FEATURESET='none' FLAVOUR='octeon' GENCONTROL_ARGS='-v4.9+80+deb9u3' LOCALVERSION='-octeon' +binary-arch_mips64el_none_real: +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_real +binary-arch_mips_none_4kc-malta: binary-arch_mips_none_4kc-malta_real +binary-arch_mips_none_4kc-malta_real:: + ln -sf linux-image.NEWS debian/linux-image-4kc-malta.NEWS + ln -sf linux-image.NEWS debian/linux-image-4kc-malta-dbg.NEWS + $(MAKE) -f debian/rules.real install-flavour ABINAME='4.9.0-5' ARCH='mips' DEBUG='True' FEATURESET='none' FLAVOUR='4kc-malta' GENCONTROL_ARGS='-v4.9+80+deb9u3' LOCALVERSION='-4kc-malta' +binary-arch_mips_none_5kc-malta: binary-arch_mips_none_5kc-malta_real +binary-arch_mips_none_5kc-malta_real:: + ln -sf linux-image.NEWS debian/linux-image-5kc-malta.NEWS + ln -sf linux-image.NEWS debian/linux-image-5kc-malta-dbg.NEWS + $(MAKE) -f debian/rules.real install-flavour ABINAME='4.9.0-5' ARCH='mips' DEBUG='True' FEATURESET='none' FLAVOUR='5kc-malta' GENCONTROL_ARGS='-v4.9+80+deb9u3' LOCALVERSION='-5kc-malta' +binary-arch_mips_none_octeon: binary-arch_mips_none_octeon_real +binary-arch_mips_none_octeon_real:: + ln -sf linux-image.NEWS debian/linux-image-octeon.NEWS + ln -sf linux-image.NEWS debian/linux-image-octeon-dbg.NEWS + $(MAKE) -f debian/rules.real install-flavour ABINAME='4.9.0-5' ARCH='mips' DEBUG='True' FEATURESET='none' FLAVOUR='octeon' GENCONTROL_ARGS='-v4.9+80+deb9u3' LOCALVERSION='-octeon' +binary-arch_mips_none_real: +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-3 binary-arch_mipsel_none_octeon binary-arch_mipsel_none_real +binary-arch_mipsel_none_4kc-malta: binary-arch_mipsel_none_4kc-malta_real +binary-arch_mipsel_none_4kc-malta_real:: + ln -sf linux-image.NEWS debian/linux-image-4kc-malta.NEWS + ln -sf linux-image.NEWS debian/linux-image-4kc-malta-dbg.NEWS + $(MAKE) -f debian/rules.real install-flavour ABINAME='4.9.0-5' ARCH='mipsel' DEBUG='True' FEATURESET='none' FLAVOUR='4kc-malta' GENCONTROL_ARGS='-v4.9+80+deb9u3' LOCALVERSION='-4kc-malta' +binary-arch_mipsel_none_5kc-malta: binary-arch_mipsel_none_5kc-malta_real +binary-arch_mipsel_none_5kc-malta_real:: + ln -sf linux-image.NEWS debian/linux-image-5kc-malta.NEWS + ln -sf linux-image.NEWS debian/linux-image-5kc-malta-dbg.NEWS + $(MAKE) -f debian/rules.real install-flavour ABINAME='4.9.0-5' ARCH='mipsel' DEBUG='True' FEATURESET='none' FLAVOUR='5kc-malta' GENCONTROL_ARGS='-v4.9+80+deb9u3' LOCALVERSION='-5kc-malta' +binary-arch_mipsel_none_loongson-3: binary-arch_mipsel_none_loongson-3_real +binary-arch_mipsel_none_loongson-3_real:: + ln -sf linux-image.NEWS debian/linux-image-loongson-3.NEWS + ln -sf linux-image.NEWS debian/linux-image-loongson-3-dbg.NEWS + $(MAKE) -f debian/rules.real install-flavour ABINAME='4.9.0-5' ARCH='mipsel' DEBUG='True' FEATURESET='none' FLAVOUR='loongson-3' GENCONTROL_ARGS='-v4.9+80+deb9u3' LOCALVERSION='-loongson-3' +binary-arch_mipsel_none_octeon: binary-arch_mipsel_none_octeon_real +binary-arch_mipsel_none_octeon_real:: + ln -sf linux-image.NEWS debian/linux-image-octeon.NEWS + ln -sf linux-image.NEWS debian/linux-image-octeon-dbg.NEWS + $(MAKE) -f debian/rules.real install-flavour ABINAME='4.9.0-5' ARCH='mipsel' DEBUG='True' FEATURESET='none' FLAVOUR='octeon' GENCONTROL_ARGS='-v4.9+80+deb9u3' LOCALVERSION='-octeon' +binary-arch_mipsel_none_real: +binary-arch_mipsel_real: +binary-arch_mipsn32: binary-arch_mipsn32_real +binary-arch_mipsn32_real: +binary-arch_mipsn32el: binary-arch_mipsn32el_real +binary-arch_mipsn32el_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:: + ln -sf linux-image.NEWS debian/linux-image-powerpc-smp.NEWS + ln -sf linux-image.NEWS debian/linux-image-powerpc-smp-dbg.NEWS + $(MAKE) -f debian/rules.real install-flavour ABINAME='4.9.0-5' ARCH='powerpc' DEBUG='True' FEATURESET='none' FLAVOUR='powerpc-smp' GENCONTROL_ARGS='-v4.9+80+deb9u3' LOCALVERSION='-powerpc-smp' +binary-arch_powerpc_none_powerpc64: binary-arch_powerpc_none_powerpc64_real +binary-arch_powerpc_none_powerpc64_real:: + ln -sf linux-image.NEWS debian/linux-image-powerpc64.NEWS + ln -sf linux-image.NEWS debian/linux-image-powerpc64-dbg.NEWS + $(MAKE) -f debian/rules.real install-flavour ABINAME='4.9.0-5' ARCH='powerpc' DEBUG='True' FEATURESET='none' FLAVOUR='powerpc64' GENCONTROL_ARGS='-v4.9+80+deb9u3' LOCALVERSION='-powerpc64' +binary-arch_powerpc_none_powerpc_real:: + ln -sf linux-image.NEWS debian/linux-image-powerpc.NEWS + ln -sf linux-image.NEWS debian/linux-image-powerpc-dbg.NEWS + $(MAKE) -f debian/rules.real install-flavour ABINAME='4.9.0-5' ARCH='powerpc' DEBUG='True' FEATURESET='none' FLAVOUR='powerpc' GENCONTROL_ARGS='-v4.9+80+deb9u3' 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:: + ln -sf linux-image.NEWS debian/linux-image-powerpcspe.NEWS + ln -sf linux-image.NEWS debian/linux-image-powerpcspe-dbg.NEWS + $(MAKE) -f debian/rules.real install-flavour ABINAME='4.9.0-5' ARCH='powerpcspe' DEBUG='True' FEATURESET='none' FLAVOUR='powerpcspe' GENCONTROL_ARGS='-v4.9+80+deb9u3' 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:: + ln -sf linux-image.NEWS debian/linux-image-powerpc64.NEWS + ln -sf linux-image.NEWS debian/linux-image-powerpc64-dbg.NEWS + $(MAKE) -f debian/rules.real install-flavour ABINAME='4.9.0-5' ARCH='ppc64' DEBUG='True' FEATURESET='none' FLAVOUR='powerpc64' GENCONTROL_ARGS='-v4.9+80+deb9u3' 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:: + ln -sf linux-image.NEWS debian/linux-image-powerpc64le.NEWS + ln -sf linux-image.NEWS debian/linux-image-powerpc64le-dbg.NEWS + $(MAKE) -f debian/rules.real install-flavour ABINAME='4.9.0-5' ARCH='ppc64el' DEBUG='True' FEATURESET='none' FLAVOUR='powerpc64le' GENCONTROL_ARGS='-v4.9+80+deb9u3' LOCALVERSION='-powerpc64le' +binary-arch_ppc64el_none_real: +binary-arch_ppc64el_real: +binary-arch_s390: binary-arch_s390_real +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:: + ln -sf linux-image.NEWS debian/linux-image-s390x.NEWS + ln -sf linux-image.NEWS debian/linux-image-s390x-dbg.NEWS + $(MAKE) -f debian/rules.real install-flavour ABINAME='4.9.0-5' ARCH='s390x' DEBUG='True' FEATURESET='none' FLAVOUR='s390x' GENCONTROL_ARGS='-v4.9+80+deb9u3' LOCALVERSION='-s390x' +binary-arch_s390x_real: +binary-arch_sh3: binary-arch_sh3_real +binary-arch_sh3_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:: + ln -sf linux-image.NEWS debian/linux-image-sh7751r.NEWS + ln -sf linux-image.NEWS debian/linux-image-sh7751r-dbg.NEWS + $(MAKE) -f debian/rules.real install-flavour ABINAME='4.9.0-5' ARCH='sh4' DEBUG='True' FEATURESET='none' FLAVOUR='sh7751r' GENCONTROL_ARGS='-v4.9+80+deb9u3' LOCALVERSION='-sh7751r' +binary-arch_sh4_none_sh7785lcr: binary-arch_sh4_none_sh7785lcr_real +binary-arch_sh4_none_sh7785lcr_real:: + ln -sf linux-image.NEWS debian/linux-image-sh7785lcr.NEWS + ln -sf linux-image.NEWS debian/linux-image-sh7785lcr-dbg.NEWS + $(MAKE) -f debian/rules.real install-flavour ABINAME='4.9.0-5' ARCH='sh4' DEBUG='True' FEATURESET='none' FLAVOUR='sh7785lcr' GENCONTROL_ARGS='-v4.9+80+deb9u3' LOCALVERSION='-sh7785lcr' +binary-arch_sh4_real: +binary-arch_sparc: 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:: + ln -sf linux-image.NEWS debian/linux-image-sparc64-smp.NEWS + ln -sf linux-image.NEWS debian/linux-image-sparc64-smp-dbg.NEWS + $(MAKE) -f debian/rules.real install-flavour ABINAME='4.9.0-5' ARCH='sparc64' DEBUG='True' FEATURESET='none' FLAVOUR='sparc64-smp' GENCONTROL_ARGS='-v4.9+80+deb9u3' LOCALVERSION='-sparc64-smp' +binary-arch_sparc64_none_sparc64_real:: + ln -sf linux-image.NEWS debian/linux-image-sparc64.NEWS + ln -sf linux-image.NEWS debian/linux-image-sparc64-dbg.NEWS + $(MAKE) -f debian/rules.real install-flavour ABINAME='4.9.0-5' ARCH='sparc64' DEBUG='True' FEATURESET='none' FLAVOUR='sparc64' GENCONTROL_ARGS='-v4.9+80+deb9u3' LOCALVERSION='-sparc64' +binary-arch_sparc64_real: +binary-arch_sparc_real: +binary-arch_tilegx: binary-arch_tilegx_real +binary-arch_tilegx_real: +binary-arch_x32: binary-arch_x32_real +binary-arch_x32_real: +binary-indep:: binary-indep_extra binary-indep_none binary-indep_rt +binary-indep:: + $(MAKE) -f debian/rules.real binary-indep GENCONTROL_ARGS='-v4.9+80+deb9u3' +binary-indep_extra:: + $(MAKE) -f debian/rules.real install-dummy DH_OPTIONS='-plinux-tools' GENCONTROL_ARGS='-v4.9+80+deb9u3' +binary-indep_none: binary-indep_none_real +binary-indep_none_real: +binary-indep_rt: binary-indep_rt_real +binary-indep_rt_real: +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_m68k build-arch_mips build-arch_mips64 build-arch_mips64el build-arch_mipsel build-arch_mipsn32 build-arch_mipsn32el build-arch_powerpc build-arch_powerpcspe build-arch_ppc64 build-arch_ppc64el build-arch_s390 build-arch_s390x build-arch_sh3 build-arch_sh4 build-arch_sparc build-arch_sparc64 build-arch_tilegx 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-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-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_rt +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_amd64_rt: build-arch_amd64_rt_amd64 build-arch_amd64_rt_real +build-arch_amd64_rt_amd64: build-arch_amd64_rt_amd64_real +build-arch_amd64_rt_amd64_real: +build-arch_amd64_rt_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_marvell build-arch_armel_none_real +build-arch_armel_none_marvell: build-arch_armel_none_marvell_real +build-arch_armel_none_marvell_real: +build-arch_armel_none_real: +build-arch_armel_real: +build-arch_armhf: build-arch_armhf_none build-arch_armhf_real +build-arch_armhf_none: build-arch_armhf_none_armmp build-arch_armhf_none_armmp-lpae build-arch_armhf_none_real +build-arch_armhf_none_armmp: build-arch_armhf_none_armmp_real +build-arch_armhf_none_armmp-lpae: build-arch_armhf_none_armmp-lpae_real +build-arch_armhf_none_armmp-lpae_real: +build-arch_armhf_none_armmp_real: +build-arch_armhf_none_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_rt +build-arch_i386_none: build-arch_i386_none_686 build-arch_i386_none_686-pae build-arch_i386_none_real +build-arch_i386_none_686: build-arch_i386_none_686_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_686_real: +build-arch_i386_none_real: +build-arch_i386_real: +build-arch_i386_rt: build-arch_i386_rt_686-pae build-arch_i386_rt_real +build-arch_i386_rt_686-pae: build-arch_i386_rt_686-pae_real +build-arch_i386_rt_686-pae_real: +build-arch_i386_rt_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_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_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_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_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_real +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_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-3 build-arch_mipsel_none_octeon build-arch_mipsel_none_real +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-3: build-arch_mipsel_none_loongson-3_real +build-arch_mipsel_none_loongson-3_real: +build-arch_mipsel_none_octeon: build-arch_mipsel_none_octeon_real +build-arch_mipsel_none_octeon_real: +build-arch_mipsel_none_real: +build-arch_mipsel_real: +build-arch_mipsn32: build-arch_mipsn32_real +build-arch_mipsn32_real: +build-arch_mipsn32el: build-arch_mipsn32el_real +build-arch_mipsn32el_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_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_sh3: build-arch_sh3_real +build-arch_sh3_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_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_real: +build-arch_tilegx: build-arch_tilegx_real +build-arch_tilegx_real: +build-arch_x32: build-arch_x32_real +build-arch_x32_real: +build-indep:: build-indep_none build-indep_rt +build-indep:: + $(MAKE) -f debian/rules.real build-indep GENCONTROL_ARGS='-v4.9+80+deb9u3' +build-indep_none: build-indep_none_real +build-indep_none_real: +build-indep_rt: build-indep_rt_real +build-indep_rt_real: +setup: setup_alpha setup_amd64 setup_arm64 setup_armel setup_armhf setup_hppa setup_i386 setup_m68k setup_mips setup_mips64 setup_mips64el setup_mipsel setup_mipsn32 setup_mipsn32el setup_none setup_powerpc setup_powerpcspe setup_ppc64 setup_ppc64el setup_rt setup_s390 setup_s390x setup_sh3 setup_sh4 setup_sparc setup_sparc64 setup_tilegx setup_x32 +setup_alpha: setup_alpha_none setup_alpha_real +setup_alpha_none: setup_alpha_none_alpha-generic 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-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_rt +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_amd64_rt: setup_amd64_rt_amd64 setup_amd64_rt_real +setup_amd64_rt_amd64: setup_amd64_rt_amd64_real +setup_amd64_rt_amd64_real: +setup_amd64_rt_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_marvell setup_armel_none_real +setup_armel_none_marvell: setup_armel_none_marvell_real +setup_armel_none_marvell_real: +setup_armel_none_real: +setup_armel_real: +setup_armhf: setup_armhf_none setup_armhf_real +setup_armhf_none: setup_armhf_none_armmp setup_armhf_none_armmp-lpae setup_armhf_none_real +setup_armhf_none_armmp: setup_armhf_none_armmp_real +setup_armhf_none_armmp-lpae: setup_armhf_none_armmp-lpae_real +setup_armhf_none_armmp-lpae_real: +setup_armhf_none_armmp_real: +setup_armhf_none_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_rt +setup_i386_none: setup_i386_none_686 setup_i386_none_686-pae setup_i386_none_real +setup_i386_none_686: setup_i386_none_686_real +setup_i386_none_686-pae: setup_i386_none_686-pae_real +setup_i386_none_686-pae_real: +setup_i386_none_686_real: +setup_i386_none_real: +setup_i386_real: +setup_i386_rt: setup_i386_rt_686-pae setup_i386_rt_real +setup_i386_rt_686-pae: setup_i386_rt_686-pae_real +setup_i386_rt_686-pae_real: +setup_i386_rt_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_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_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_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_real: +setup_mips_none: setup_mips_none_4kc-malta setup_mips_none_5kc-malta setup_mips_none_octeon setup_mips_none_real +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_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-3 setup_mipsel_none_octeon setup_mipsel_none_real +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-3: setup_mipsel_none_loongson-3_real +setup_mipsel_none_loongson-3_real: +setup_mipsel_none_octeon: setup_mipsel_none_octeon_real +setup_mipsel_none_octeon_real: +setup_mipsel_none_real: +setup_mipsel_real: +setup_mipsn32: setup_mipsn32_real +setup_mipsn32_real: +setup_mipsn32el: setup_mipsn32el_real +setup_mipsn32el_real: +setup_none: setup_none_real +setup_none_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_rt: setup_rt_real +setup_rt_real: +setup_s390: setup_s390_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_sh3: setup_sh3_real +setup_sh3_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_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_real: +setup_tilegx: setup_tilegx_real +setup_tilegx_real: +setup_x32: setup_x32_real +setup_x32_real: diff --git a/debian/rules.real b/debian/rules.real new file mode 100644 index 0000000..5f17a23 --- /dev/null +++ b/debian/rules.real @@ -0,0 +1,60 @@ +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-perf + +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-perf: PACKAGE_NAME = linux-perf +install-perf: DH_OPTIONS = -p$(PACKAGE_NAME) +install-perf: + dh_prep + $(MAKE) -f debian/rules.real install-base + +install-flavour: + dh_testdir + dh_testroot + $(MAKE) -f debian/rules.real install-base DH_OPTIONS='-plinux-image$(LOCALVERSION) -plinux-headers$(LOCALVERSION)' +ifeq ($(DEBUG),True) + $(MAKE) -f debian/rules.real install-base DH_OPTIONS='-plinux-image$(LOCALVERSION)-dbg' +endif diff --git a/debian/source.lintian-overrides b/debian/source.lintian-overrides new file mode 100644 index 0000000..993ac77 --- /dev/null +++ b/debian/source.lintian-overrides @@ -0,0 +1,37 @@ +linux-latest source: dbg-package-missing-depends linux-image-alpha-generic-dbg +linux-latest source: dbg-package-missing-depends linux-image-alpha-smp-dbg +linux-latest source: dbg-package-missing-depends linux-image-amd64-dbg +linux-latest source: dbg-package-missing-depends linux-image-rt-amd64-dbg +linux-latest source: dbg-package-missing-depends linux-image-arm64-dbg +linux-latest source: dbg-package-missing-depends linux-image-marvell-dbg +linux-latest source: dbg-package-missing-depends linux-image-armmp-dbg +linux-latest source: dbg-package-missing-depends linux-image-armmp-lpae-dbg +linux-latest source: dbg-package-missing-depends linux-image-parisc-dbg +linux-latest source: dbg-package-missing-depends linux-image-parisc64-smp-dbg +linux-latest source: dbg-package-missing-depends linux-image-686-dbg +linux-latest source: dbg-package-missing-depends linux-image-686-pae-dbg +linux-latest source: dbg-package-missing-depends linux-image-rt-686-pae-dbg +linux-latest source: dbg-package-missing-depends linux-image-m68k-dbg +linux-latest source: dbg-package-missing-depends linux-image-4kc-malta-dbg +linux-latest source: dbg-package-missing-depends linux-image-5kc-malta-dbg +linux-latest source: dbg-package-missing-depends linux-image-octeon-dbg +linux-latest source: dbg-package-missing-depends linux-image-4kc-malta-dbg +linux-latest source: dbg-package-missing-depends linux-image-5kc-malta-dbg +linux-latest source: dbg-package-missing-depends linux-image-loongson-3-dbg +linux-latest source: dbg-package-missing-depends linux-image-octeon-dbg +linux-latest source: dbg-package-missing-depends linux-image-5kc-malta-dbg +linux-latest source: dbg-package-missing-depends linux-image-octeon-dbg +linux-latest source: dbg-package-missing-depends linux-image-5kc-malta-dbg +linux-latest source: dbg-package-missing-depends linux-image-loongson-3-dbg +linux-latest source: dbg-package-missing-depends linux-image-octeon-dbg +linux-latest source: dbg-package-missing-depends linux-image-powerpc-dbg +linux-latest source: dbg-package-missing-depends linux-image-powerpc-smp-dbg +linux-latest source: dbg-package-missing-depends linux-image-powerpc64-dbg +linux-latest source: dbg-package-missing-depends linux-image-powerpcspe-dbg +linux-latest source: dbg-package-missing-depends linux-image-powerpc64-dbg +linux-latest source: dbg-package-missing-depends linux-image-powerpc64le-dbg +linux-latest source: dbg-package-missing-depends linux-image-s390x-dbg +linux-latest source: dbg-package-missing-depends linux-image-sh7751r-dbg +linux-latest source: dbg-package-missing-depends linux-image-sh7785lcr-dbg +linux-latest source: dbg-package-missing-depends linux-image-sparc64-dbg +linux-latest source: dbg-package-missing-depends linux-image-sparc64-smp-dbg diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..89ae9db --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/debian/templates/bug-presubj.image.latest.in b/debian/templates/bug-presubj.image.latest.in new file mode 100644 index 0000000..1f2c5e9 --- /dev/null +++ b/debian/templates/bug-presubj.image.latest.in @@ -0,0 +1,5 @@ +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. diff --git a/debian/templates/control.doc.latest.in b/debian/templates/control.doc.latest.in new file mode 100644 index 0000000..a2af72c --- /dev/null +++ b/debian/templates/control.doc.latest.in @@ -0,0 +1,7 @@ +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. diff --git a/debian/templates/control.extra.in b/debian/templates/control.extra.in new file mode 100644 index 0000000..3c7ba5a --- /dev/null +++ b/debian/templates/control.extra.in @@ -0,0 +1,63 @@ +Package: linux-tools +Section: oldlibs +Priority: extra +Architecture: all +Depends: linux-perf, ${misc:Depends} +Description: Performance analysis tools for Linux (dummy package) + This is a dummy transitional package. It can be safely removed. + +Package: linux-image-586 +Section: oldlibs +Priority: extra +Architecture: i386 +Depends: linux-image-686, ${misc:Depends} +Description: Linux for older PCs (dummy package) + This is a dummy transitional package. It can be safely removed. + +Package: linux-headers-586 +Section: oldlibs +Priority: extra +Architecture: i386 +Depends: linux-headers-686, ${misc:Depends} +Description: Header files for Linux 586 configuration (dummy package) + This is a dummy transitional package. It can be safely removed. + +Package: linux-image-kirkwood +Section: oldlibs +Priority: extra +Architecture: armel +Depends: linux-image-marvell, ${misc:Depends} +Description: Linux for Marvell Kirkwood (dummy package) + This is a dummy transitional package. It can be safely removed. + +Package: linux-headers-kirkwood +Section: oldlibs +Priority: extra +Architecture: armel +Depends: linux-headers-marvell, ${misc:Depends} +Description: Header files for Linux kirkwood configuration (dummy package) + This is a dummy transitional package. It can be safely removed. + +Package: linux-image-orion5x +Section: oldlibs +Priority: extra +Architecture: armel +Depends: linux-image-marvell, ${misc:Depends} +Description: Linux for Marvell Orion (dummy package) + This is a dummy transitional package. It can be safely removed. + +Package: linux-headers-orion5x +Section: oldlibs +Priority: extra +Architecture: armel +Depends: linux-headers-marvell, ${misc:Depends} +Description: Header files for Linux orion5x configuration (dummy package) + This is a dummy transitional package. It can be safely removed. + +Package: xen-linux-system-amd64 +Section: oldlibs +Priority: extra +Architecture: amd64 +Depends: xen-system-amd64, linux-image-amd64, ${misc:Depends} +Description: Xen system with Linux for 64-bit PCs (dummy package) + This is a dummy transitional package. It can be safely removed. diff --git a/debian/templates/control.headers.latest.in b/debian/templates/control.headers.latest.in new file mode 100644 index 0000000..de53de6 --- /dev/null +++ b/debian/templates/control.headers.latest.in @@ -0,0 +1,5 @@ +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. diff --git a/debian/templates/control.image-dbg.latest.in b/debian/templates/control.image-dbg.latest.in new file mode 100644 index 0000000..98f1bfb --- /dev/null +++ b/debian/templates/control.image-dbg.latest.in @@ -0,0 +1,6 @@ +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. diff --git a/debian/templates/control.image.latest.type-standalone.in b/debian/templates/control.image.latest.type-standalone.in new file mode 100644 index 0000000..b27d574 --- /dev/null +++ b/debian/templates/control.image.latest.type-standalone.in @@ -0,0 +1,6 @@ +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@. diff --git a/debian/templates/control.source.in b/debian/templates/control.source.in new file mode 100644 index 0000000..f23ae11 --- /dev/null +++ b/debian/templates/control.source.in @@ -0,0 +1,9 @@ +Source: linux-latest +Section: kernel +Priority: optional +Maintainer: Debian Kernel Team +Uploaders: Bastian Blank , Frederik Schüler , Ben Hutchings +Standards-Version: 3.9.8 +Build-Depends: debhelper (>= 9) +Vcs-Git: https://anonscm.debian.org/git/kernel/linux-latest.git +Vcs-Browser: https://anonscm.debian.org/cgit/kernel/linux-latest.git diff --git a/debian/templates/control.source.latest.in b/debian/templates/control.source.latest.in new file mode 100644 index 0000000..0074a1d --- /dev/null +++ b/debian/templates/control.source.latest.in @@ -0,0 +1,6 @@ +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. diff --git a/debian/templates/control.tools.latest.in b/debian/templates/control.tools.latest.in new file mode 100644 index 0000000..091fa8a --- /dev/null +++ b/debian/templates/control.tools.latest.in @@ -0,0 +1,6 @@ +Package: linux-perf +Architecture: all +Depends: linux-perf-@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. diff --git a/debian/templates/lintian-overrides.image-dbg.in b/debian/templates/lintian-overrides.image-dbg.in new file mode 100644 index 0000000..efebf21 --- /dev/null +++ b/debian/templates/lintian-overrides.image-dbg.in @@ -0,0 +1,2 @@ +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 diff --git a/debian/templates/lintian-overrides.source.in b/debian/templates/lintian-overrides.source.in new file mode 100644 index 0000000..15b53f4 --- /dev/null +++ b/debian/templates/lintian-overrides.source.in @@ -0,0 +1 @@ +linux-latest source: dbg-package-missing-depends linux-image-@flavour@-dbg