diff options
Diffstat (limited to 'debian')
1049 files changed, 13408 insertions, 30775 deletions
diff --git a/debian/README.source b/debian/README.source index f6c57bf5b7..3dd01d12c0 100644 --- a/debian/README.source +++ b/debian/README.source @@ -114,30 +114,30 @@ number of files under debian/config and (if it exists) debian/config.local. They are read in the following order, such that files later on the list can override settings from earlier files. Files in debian/config.local can also override settings from the -corresponding file in debian/config. Most of the files are optional -and the filenames can generally be overridden by explicit lists -(possibly empty) specified in the 'defines' files. +corresponding file in debian/config. 1. Common: - Default filename: config - - Filename list: [image]configs in defines + - Filename list: [build.config] 2. Per kernel architecture: - - Filename: kernelarch-<karch>/config (optional) -3. Per architecture: + - Default filename: kernelarch-<karch>/config + - Filename list: [kernelarch.build.config] +3. Per Debian architecture: - Default filename: <arch>/config - - Filename list: [image]configs in <arch>/defines -4. Per architecture and flavour: - - Default filename: <arch>/config.<flavour> (optional) - - Filename list: [<flavour>_image]configs in <arch>/defines + - Filename list: [kernelarch.debianarch.build.config] +4. Per Debian architecture and flavour: + - Default filename: <arch>/config.<flavour> + - Filename list: [kernelarch.debianarch.flavour.build.config] 5. Per featureset: - - Default filename: featureset-<fset>/config (optional) - - Filename list: [image]configs in featureset-<fset>/defines -6. Per architecture and featureset: - - Default filename: <arch>/<fset>/config (optional) - - Filename list: [image]configs in <arch>/<fset>/defines -7. Per architecture, featureset, and flavour: - - Default filename: <arch>/<fset>/config.<flavour> (optional) - - Filename list: [<flavour>_image]configs in <arch>/<fset>/defines + - Default filename: featureset-<fset>/config + - Filename list: [featureset.build.config] +6. Per Debian architecture and featureset: + - Default filename: <arch>/<fset>/config + - Filename list: [kernelarch.debianarch.featureset.build.config] +7. Per Debian architecture, featureset, and flavour: + - Default filename: <arch>/<fset>/config.<flavour> + - Filename list: + [kernelarch.debianarch.featureset.flavour.build.config] You can check the final list of configuration files by reading debian/rules.gen. Each binary-arch_<arch>_<fset>_<flavour>_image @@ -159,7 +159,7 @@ The master control file debian/control must be generated before the package is uploaded. debian/rules contains the debian/control target, which generates the control file by invoking the debian/bin/gencontrol.py script, which combines the templates from -the templates directory and architecture-specific defines file to +the templates directory and architecture-specific defines.toml file to produce the debian/control file. Note that this target is intentionally made to fail with a non-zero exit code to make sure that it is never run during an automatic build. The following variables are substituted @@ -179,7 +179,7 @@ into the templates: -image descriptions. Normally, the arch-specific contents should be controlled by -adjusting the corresponding defines file. +adjusting the corresponding defines.toml file. Build-dependencies that relate to specific binary packages can be specified in a Build-Depends field in the template for that binary diff --git a/debian/bin/buildcheck.py b/debian/bin/buildcheck.py index 92dba9347c..ecf265f6c1 100755 --- a/debian/bin/buildcheck.py +++ b/debian/bin/buildcheck.py @@ -4,7 +4,6 @@ import sys import glob import os -from debian_linux.config import ConfigCoreDump from debian_linux.debian import Changelog, VersionLinux @@ -96,12 +95,13 @@ class Main(object): def __init__(self, dir, arch, featureset, flavour): self.args = dir, arch, featureset, flavour - self.config = ConfigCoreDump(open("debian/config.defines.dump", "rb")) + # TODO + # self.config = ConfigCoreDump(open("debian/config.defines.dump", "rb")) def __call__(self): fail = 0 - for c in (CheckImage, ): + for c in (): fail |= c(self.config, *self.args)(sys.stdout) return fail diff --git a/debian/bin/diff-gencontrol b/debian/bin/diff-gencontrol new file mode 100755 index 0000000000..b84823e031 --- /dev/null +++ b/debian/bin/diff-gencontrol @@ -0,0 +1,30 @@ +#!/bin/bash +set -euE + +REF_BASE=${1:-master} + +REPO=$(git rev-parse --show-toplevel) +COMMIT_BASE=$(git merge-base --fork-point "$REF_BASE") + +TMP=$(mktemp -d) +trap "rm -rf '$TMP'" EXIT + +function git { + command git -c advice.detachedHead=false -c init.defaultBranch=main -C "$TMP" "$@" +} + +git init -q +git remote add origin "$REPO" +git fetch -q --depth 1 origin "$COMMIT_BASE" +git checkout -q FETCH_HEAD + +for i in "$TMP" "$REPO"; do + pushd "$i" > /dev/null + echo "Running gencontrol in '$i'" + ./debian/bin/gencontrol.py + popd > /dev/null +done + +for i in control rules.gen generated.signed-amd64 generated.signed-arm64; do + diff -ruN "$TMP"/debian/$i "$REPO"/debian/$i | wdiff -dn | colordiff +done diff --git a/debian/bin/gencontrol.py b/debian/bin/gencontrol.py index f7485df372..a992221bb0 100755 --- a/debian/bin/gencontrol.py +++ b/debian/bin/gencontrol.py @@ -1,6 +1,7 @@ #!/usr/bin/python3 -import sys +from __future__ import annotations + import json import locale import os @@ -9,14 +10,20 @@ import pathlib import subprocess import re import tempfile -from typing import Any - -from debian_linux import config +from typing import cast + +from debian_linux.config_v2 import ( + Config, + ConfigMerged, + ConfigMergedDebianarch, + ConfigMergedFeatureset, + ConfigMergedFlavour, +) from debian_linux.debian import \ PackageRelationEntry, PackageRelationGroup, \ - VersionLinux, BinaryPackage, TestsControl + VersionLinux, BinaryPackage from debian_linux.gencontrol import Gencontrol as Base, PackagesBundle, \ - iter_featuresets, iter_flavours + MakeFlags from debian_linux.utils import Templates locale.setlocale(locale.LC_CTYPE, "C.UTF-8") @@ -26,52 +33,25 @@ class Gencontrol(Base): disable_installer: bool disable_signed: bool - tests_control_headers: TestsControl | None - - config_schema = { - 'build': { - 'signed-code': config.SchemaItemBoolean(), - 'vdso': config.SchemaItemBoolean(), - }, - 'description': { - 'parts': config.SchemaItemList(), - }, - 'image': { - 'configs': config.SchemaItemList(), - 'check-size': config.SchemaItemInteger(), - 'check-size-with-dtb': config.SchemaItemBoolean(), - 'check-uncompressed-size': config.SchemaItemInteger(), - 'depends': config.SchemaItemList(','), - 'provides': config.SchemaItemList(','), - 'suggests': config.SchemaItemList(','), - 'recommends': config.SchemaItemList(','), - 'conflicts': config.SchemaItemList(','), - 'breaks': config.SchemaItemList(','), - }, - 'packages': { - 'docs': config.SchemaItemBoolean(), - 'installer': config.SchemaItemBoolean(), - 'libc-dev': config.SchemaItemBoolean(), - 'meta': config.SchemaItemBoolean(), - 'tools-unversioned': config.SchemaItemBoolean(), - 'tools-versioned': config.SchemaItemBoolean(), - 'source': config.SchemaItemBoolean(), - } - } - env_flags = [ ('DEBIAN_KERNEL_DISABLE_INSTALLER', 'disable_installer', 'installer modules'), ('DEBIAN_KERNEL_DISABLE_SIGNED', 'disable_signed', 'signed code'), ] - def __init__(self, config_dirs=["debian/config", "debian/config.local"], - template_dirs=["debian/templates"]) -> None: - super(Gencontrol, self).__init__( - config.ConfigCoreHierarchy(self.config_schema, config_dirs), + def __init__( + self, + config_dirs=[ + pathlib.Path('debian/config'), + pathlib.Path('debian/config.local'), + ], + template_dirs=["debian/templates"], + ) -> None: + super().__init__( + Config.read_orig(config_dirs).merged, Templates(template_dirs), VersionLinux) - self.process_changelog() self.config_dirs = config_dirs + self.process_changelog() for env, attr, desc in self.env_flags: setattr(self, attr, False) @@ -89,8 +69,13 @@ class Gencontrol(Base): if src in data or not optional: makeflags[dst] = data[src] - def do_main_setup(self, vars, makeflags) -> None: - super(Gencontrol, self).do_main_setup(vars, makeflags) + def do_main_setup( + self, + config: ConfigMerged, + vars: dict[str, str], + makeflags: MakeFlags, + ) -> None: + super().do_main_setup(config, vars, makeflags) makeflags.update({ 'VERSION': self.version.linux_version, 'UPSTREAMVERSION': self.version.linux_upstream, @@ -102,102 +87,118 @@ class Gencontrol(Base): # Prepare to generate debian/tests/control self.tests_control = self.templates.get_tests_control('main.tests-control', vars) - self.tests_control_image = None - self.tests_control_headers = None - def do_main_makefile(self, makeflags) -> None: - for featureset in iter_featuresets(self.config): + def do_main_makefile( + self, + config: ConfigMerged, + vars: dict[str, str], + makeflags: MakeFlags, + ) -> None: + for featureset in self.config.root_featuresets: makeflags_featureset = makeflags.copy() - makeflags_featureset['FEATURESET'] = featureset + makeflags_featureset['FEATURESET'] = featureset.name - self.bundle.makefile.add_rules(f'source_{featureset}', + self.bundle.makefile.add_rules(f'source_{featureset.name}', 'source', makeflags_featureset) - self.bundle.makefile.add_deps('source', [f'source_{featureset}']) + self.bundle.makefile.add_deps('source', [f'source_{featureset.name}']) makeflags = makeflags.copy() - makeflags['ALL_FEATURESETS'] = ' '.join(iter_featuresets(self.config)) - super().do_main_makefile(makeflags) - - def do_main_packages(self, vars, makeflags) -> None: + makeflags['ALL_FEATURESETS'] = ' '.join(i.name for i in self.config.root_featuresets) + super().do_main_makefile(config, vars, makeflags) + + def do_main_packages( + self, + config: ConfigMerged, + vars: dict[str, str], + makeflags: MakeFlags, + ) -> None: self.bundle.add('main', (), makeflags, vars) # Only build the metapackages if their names won't exactly match # the packages they depend on - do_meta = self.config.merge('packages').get('meta', True) \ + do_meta = config.packages.meta \ and vars['source_suffix'] != '-' + vars['version'] - if self.config.merge('packages').get('docs', True): + if config.packages.docs: self.bundle.add('docs', (), makeflags, vars) if do_meta: self.bundle.add('docs.meta', (), makeflags, vars) - if self.config.merge('packages').get('source', True): + if config.packages.source: self.bundle.add('sourcebin', (), makeflags, vars) if do_meta: self.bundle.add('sourcebin.meta', (), makeflags, vars) - if self.config.merge('packages').get('libc-dev', True): + if config.packages.libc_dev: + libcdev_debianarches = set() libcdev_kernelarches = set() libcdev_multiarches = set() - for arch in iter(self.config['base', ]['arches']): - libcdev_kernelarch = self.config['base', arch]['kernel-arch'] - libcdev_multiarch = subprocess.check_output( - ['dpkg-architecture', '-f', '-a', arch, - '-q', 'DEB_HOST_MULTIARCH'], - stderr=subprocess.DEVNULL, - encoding='utf-8').strip() - libcdev_kernelarches.add(libcdev_kernelarch) - libcdev_multiarches.add(f'{libcdev_multiarch}:{libcdev_kernelarch}') + for kernelarch in self.config.kernelarchs: + libcdev_kernelarches.add(kernelarch.name) + for debianarch in kernelarch.debianarchs: + libcdev_debianarches.add(debianarch.name) + libcdev_multiarches.add( + f'{debianarch.defs_debianarch.multiarch}:{kernelarch.name}' + ) libcdev_makeflags = makeflags.copy() libcdev_makeflags['ALL_LIBCDEV_KERNELARCHES'] = ' '.join(sorted(libcdev_kernelarches)) libcdev_makeflags['ALL_LIBCDEV_MULTIARCHES'] = ' '.join(sorted(libcdev_multiarches)) - self.bundle.add('libc-dev', (), libcdev_makeflags, vars) - - def do_indep_featureset_setup(self, vars, makeflags, featureset) -> None: + for package in self.bundle.add('libc-dev', (), libcdev_makeflags, vars): + package.setdefault('Provides').extend([ + PackageRelationGroup( + f'{package["Package"]}-{arch}-cross (= ${{binary:Version}})' + ) + for arch in sorted(libcdev_debianarches) + ]) + + def do_indep_featureset_setup( + self, + config: ConfigMergedFeatureset, + vars: dict[str, str], + makeflags: MakeFlags, + ) -> None: makeflags['LOCALVERSION'] = vars['localversion'] kernel_arches = set() - for arch in iter(self.config['base', ]['arches']): - if self.config.get_merge('base', arch, featureset, None, - 'flavours'): - kernel_arches.add(self.config['base', arch]['kernel-arch']) + for kernelarch in self.config.kernelarchs: + for debianarch in kernelarch.debianarchs: + for featureset in debianarch.featuresets: + if config.name_featureset in featureset.name: + kernel_arches.add(kernelarch.name) makeflags['ALL_KERNEL_ARCHES'] = ' '.join(sorted(list(kernel_arches))) vars['featureset_desc'] = '' - if featureset != 'none': - desc = self.config[('description', None, featureset)] - desc_parts = desc['parts'] + if config.name_featureset != 'none': + desc = config.description vars['featureset_desc'] = (' with the %s featureset' % - desc['part-short-%s' % desc_parts[0]]) - - def do_indep_featureset_packages(self, featureset, vars, makeflags) -> None: - self.bundle.add('headers.featureset', (featureset, ), makeflags, vars) + desc.short[desc.parts[0]]) + + def do_indep_featureset_packages( + self, + config: ConfigMergedFeatureset, + vars: dict[str, str], + makeflags: MakeFlags, + ) -> None: + self.bundle.add('headers.featureset', (config.name_featureset, ), makeflags, vars) + + def do_arch_setup( + self, + config: ConfigMergedDebianarch, + vars: dict[str, str], + makeflags: MakeFlags, + ) -> None: + makeflags['KERNEL_ARCH'] = config.name_kernelarch + + def do_arch_packages( + self, + config: ConfigMergedDebianarch, + vars: dict[str, str], + makeflags: MakeFlags, + ) -> None: + arch = config.name - arch_makeflags = ( - ('kernel-arch', 'KERNEL_ARCH', False), - ) - - def do_arch_setup(self, vars, makeflags, arch) -> None: - config_base = self.config.merge('base', arch) - - self._setup_makeflags(self.arch_makeflags, makeflags, config_base) - - try: - gnu_type = subprocess.check_output( - ['dpkg-architecture', '-f', '-a', arch, - '-q', 'DEB_HOST_GNU_TYPE'], - stderr=subprocess.DEVNULL, - encoding='utf-8') - except subprocess.CalledProcessError: - # This sometimes happens for the newest ports :-/ - print('W: Unable to get GNU type for %s' % arch, file=sys.stderr) - else: - vars['gnu-type-package'] = gnu_type.strip().replace('_', '-') - - def do_arch_packages(self, arch, vars, makeflags) -> None: if not self.disable_signed: - build_signed = self.config.merge('build', arch) \ - .get('signed-code', False) + build_signed = config.build.enable_signed else: build_signed = False @@ -226,112 +227,68 @@ linux-signed-{vars['arch']} (@signedtemplate_sourceversion@) {dist}; urgency={ur * Sign kernel from {self.changelog[0].source} @signedtemplate_binaryversion@ ''') - if self.config['base', arch].get('featuresets') and \ - self.config.merge('packages').get('source', True): + if config.packages.source and list(config.featuresets): self.bundle.add('config', (arch, ), makeflags, vars) - if self.config.merge('packages').get('tools-unversioned', True): + if config.packages.tools_unversioned: self.bundle.add('tools-unversioned', (arch, ), makeflags, vars) - if self.config.merge('packages').get('tools-versioned', True): + if config.packages.tools_versioned: self.bundle.add('tools-versioned', (arch, ), makeflags, vars) - def do_featureset_setup(self, vars, makeflags, arch, featureset) -> None: + def do_featureset_setup( + self, + featureset: ConfigMergedFeatureset, + vars: dict[str, str], + makeflags: MakeFlags, + ) -> None: vars['localversion_headers'] = vars['localversion'] makeflags['LOCALVERSION_HEADERS'] = vars['localversion_headers'] - self.default_flavour = self.config.merge('base', arch, featureset) \ - .get('default-flavour') - if self.default_flavour is not None: - if featureset != 'none': - raise RuntimeError("default-flavour set for %s %s," - " but must only be set for featureset none" - % (arch, featureset)) - if self.default_flavour \ - not in iter_flavours(self.config, arch, featureset): - raise RuntimeError("default-flavour %s for %s %s does not exist" - % (self.default_flavour, arch, featureset)) - - self.quick_flavour = self.config.merge('base', arch, featureset) \ - .get('quick-flavour') - - flavour_makeflags_base = ( - ('compiler', 'COMPILER', False), - ('compiler-filename', 'COMPILER', True), - ('kernel-arch', 'KERNEL_ARCH', False), - ('cflags', 'KCFLAGS', True), - ('kernel-deb-arch', 'KERNEL_DEB_ARCH', True), - ('kernel-gnu-type', 'KERNEL_GNU_TYPE', True), - ('compat-deb-arch', 'COMPAT_DEB_ARCH', True), - ('compat-gnu-type', 'COMPAT_GNU_TYPE', True), - ) - - flavour_makeflags_build = ( - ('image-file', 'IMAGE_FILE', True), - ) - - flavour_makeflags_image = ( - ('install-stem', 'IMAGE_INSTALL_STEM', True), - ) - - flavour_makeflags_other = ( - ('localversion', 'LOCALVERSION', False), - ('localversion-image', 'LOCALVERSION_IMAGE', True), - ) - - def do_flavour_setup(self, vars, makeflags, arch, featureset, flavour) -> None: - config_base = self.config.merge('base', arch, featureset, flavour) - config_build = self.config.merge('build', arch, featureset, flavour) - config_description = self.config.merge('description', arch, featureset, - flavour) - config_image = self.config.merge('image', arch, featureset, flavour) - + def do_flavour_setup( + self, + config: ConfigMergedFlavour, + vars: dict[str, str], + makeflags: MakeFlags, + ) -> None: vars['flavour'] = vars['localversion'][1:] - vars['class'] = config_description['hardware'] - vars['longclass'] = (config_description.get('hardware-long') - or vars['class']) + vars['class'] = config.description.hardware or '' + vars['longclass'] = config.description.hardware_long or vars['class'] vars['localversion-image'] = vars['localversion'] - override_localversion = config_image.get('override-localversion', None) - if override_localversion is not None: - vars['localversion-image'] = (vars['localversion_headers'] + '-' - + override_localversion) - vars['image-stem'] = config_image.get('install-stem') - - self._setup_makeflags(self.flavour_makeflags_base, makeflags, - config_base) - self._setup_makeflags(self.flavour_makeflags_build, makeflags, - config_build) - self._setup_makeflags(self.flavour_makeflags_image, makeflags, - config_image) - self._setup_makeflags(self.flavour_makeflags_other, makeflags, vars) - - def do_flavour_packages(self, arch, featureset, - flavour, vars, makeflags) -> None: - ruleid = (arch, featureset, flavour) + + vars['image-stem'] = cast(str, config.build.kernel_stem) + + if t := config.build.cflags: + makeflags['KCFLAGS'] = t + makeflags['COMPILER'] = config.build.compiler + if t := config.build.compiler_gnutype: + makeflags['KERNEL_GNU_TYPE'] = t + if t := config.build.compiler_gnutype_compat: + makeflags['COMPAT_GNU_TYPE'] = t + makeflags['IMAGE_FILE'] = config.build.kernel_file + makeflags['IMAGE_INSTALL_STEM'] = config.build.kernel_stem + + makeflags['LOCALVERSION'] = vars['localversion'] + makeflags['LOCALVERSION_IMAGE'] = vars['localversion-image'] + + def do_flavour_packages( + self, + config: ConfigMergedFlavour, + vars: dict[str, str], + makeflags: MakeFlags, + ) -> None: + arch = config.name_debianarch + ruleid = (arch, config.name_featureset, config.name_flavour) packages_headers = ( self.bundle.add('headers', ruleid, makeflags, vars, arch=arch) ) assert len(packages_headers) == 1 - do_meta = self.config.merge('packages').get('meta', True) - config_entry_base = self.config.merge('base', arch, featureset, - flavour) - config_entry_build = self.config.merge('build', arch, featureset, - flavour) - config_entry_description = self.config.merge('description', arch, - featureset, flavour) - config_entry_packages = self.config.merge('packages', arch, featureset, - flavour) - - def config_entry_image(key, *args, **kwargs) -> Any: - return self.config.get_merge( - 'image', arch, featureset, flavour, key, *args, **kwargs) - - compiler = config_entry_base.get('compiler', 'gcc') + do_meta = config.packages.meta - relation_compiler = PackageRelationEntry(compiler) + relation_compiler = PackageRelationEntry(cast(str, config.build.compiler)) relation_compiler_header = PackageRelationGroup([relation_compiler]) @@ -350,7 +307,7 @@ linux-signed-{vars['arch']} (@signedtemplate_sourceversion@) {dist}; urgency={ur self.bundle.packages['source']['Build-Depends-Arch'].merge([ PackageRelationEntry( relation_compiler, - name=f'{relation_compiler.name}-{vars["gnu-type-package"]}', + name=f'{relation_compiler.name}-{config.defs_debianarch.gnutype_package}', arches={arch}, restrictions='<cross !pkg.linux.nokernel>', ) @@ -358,32 +315,34 @@ linux-signed-{vars['arch']} (@signedtemplate_sourceversion@) {dist}; urgency={ur # Generate compiler build-depends for kernel: # gcc-13-hppa64-linux-gnu [hppa] <!pkg.linux.nokernel> - if gnutype := config_entry_base.get('kernel-gnu-type'): - self.bundle.packages['source']['Build-Depends-Arch'].merge([ - PackageRelationEntry( - relation_compiler, - name=f'{relation_compiler.name}-{gnutype}', - arches={arch}, - restrictions='<!pkg.linux.nokernel>', - ) - ]) + if gnutype := config.build.compiler_gnutype: + if gnutype != config.defs_debianarch.gnutype: + self.bundle.packages['source']['Build-Depends-Arch'].merge([ + PackageRelationEntry( + relation_compiler, + name=f'{relation_compiler.name}-{gnutype.replace("_", "-")}', + arches={arch}, + restrictions='<!pkg.linux.nokernel>', + ) + ]) # Generate compiler build-depends for compat: # gcc-arm-linux-gnueabihf [arm64] <!pkg.linux.nokernel> # XXX: Linux uses various definitions for this, all ending with "gcc", not $CC - if gnutype := config_entry_base.get('compat-gnu-type'): - self.bundle.packages['source']['Build-Depends-Arch'].merge([ - PackageRelationEntry( - f'gcc-{gnutype}', - arches={arch}, - restrictions='<!pkg.linux.nokernel>', - ) - ]) + if gnutype := config.build.compiler_gnutype_compat: + if gnutype != config.defs_debianarch.gnutype: + self.bundle.packages['source']['Build-Depends-Arch'].merge([ + PackageRelationEntry( + f'gcc-{gnutype.replace("_", "-")}', + arches={arch}, + restrictions='<!pkg.linux.nokernel>', + ) + ]) packages_own = [] if not self.disable_signed: - build_signed = config_entry_build.get('signed-code') + build_signed = config.build.enable_signed else: build_signed = False @@ -392,29 +351,32 @@ linux-signed-{vars['arch']} (@signedtemplate_sourceversion@) {dist}; urgency={ur else: bundle_signed = self.bundle - vars.setdefault('desc', None) - - packages_image = [] + vars.setdefault('desc', '') if build_signed: + packages_image_unsigned = ( + self.bundle.add('image-unsigned', ruleid, makeflags, vars, arch=arch) + ) + packages_image = packages_image_unsigned[:] packages_image.extend( - bundle_signed.add('signed.image', ruleid, makeflags, vars, arch=arch)) - packages_image.extend( - self.bundle.add('image-unsigned', ruleid, makeflags, vars, arch=arch)) + bundle_signed.add('signed.image', ruleid, makeflags, vars, arch=arch) + ) else: - packages_image.extend(bundle_signed.add('image', ruleid, makeflags, vars, arch=arch)) + packages_image = packages_image_unsigned = ( + bundle_signed.add('image', ruleid, makeflags, vars, arch=arch) + ) for field in ('Depends', 'Provides', 'Suggests', 'Recommends', 'Conflicts', 'Breaks'): - for i in config_entry_image(field.lower(), ()): + for i in getattr(config.relations.image, field.lower(), []): for package_image in packages_image: package_image.setdefault(field).merge( PackageRelationGroup(i, arches={arch}) ) for field in ('Depends', 'Suggests', 'Recommends'): - for i in config_entry_image(field.lower(), ()): + for i in getattr(config.relations.image, field.lower(), []): group = PackageRelationGroup(i, arches={arch}) for entry in group: if entry.operator is not None: @@ -422,9 +384,7 @@ linux-signed-{vars['arch']} (@signedtemplate_sourceversion@) {dist}; urgency={ur for package_image in packages_image: package_image.setdefault('Breaks').append(PackageRelationGroup([entry])) - desc_parts = self.config.get_merge('description', arch, featureset, - flavour, 'parts') - if desc_parts: + if desc_parts := config.description.parts: # XXX: Workaround, we need to support multiple entries of the same # name parts = list(set(desc_parts)) @@ -432,9 +392,8 @@ linux-signed-{vars['arch']} (@signedtemplate_sourceversion@) {dist}; urgency={ur for package_image in packages_image: desc = package_image['Description'] for part in parts: - desc.append(config_entry_description['part-long-' + part]) - desc.append_short(config_entry_description - .get('part-short-' + part, '')) + desc.append(config.description.long[part]) + desc.append_short(config.description.short[part]) packages_headers[0]['Depends'].merge(relation_compiler_header) packages_own.extend(packages_image) @@ -457,8 +416,11 @@ linux-signed-{vars['arch']} (@signedtemplate_sourceversion@) {dist}; urgency={ur ) assert len(packages_meta) == 2 - if flavour == self.default_flavour \ - and not self.vars['source_suffix']: + if ( + config.name_featureset == 'none' + and config.defs_flavour.is_default + and not self.vars['source_suffix'] + ): packages_meta[0].setdefault('Provides') \ .append('linux-image-generic') packages_meta[1].setdefault('Provides') \ @@ -466,7 +428,7 @@ linux-signed-{vars['arch']} (@signedtemplate_sourceversion@) {dist}; urgency={ur packages_own.extend(packages_meta) - if config_entry_build.get('vdso', False): + if config.build.enable_vdso: makeflags['VDSO'] = True packages_own.extend( @@ -478,80 +440,34 @@ linux-signed-{vars['arch']} (@signedtemplate_sourceversion@) {dist}; urgency={ur ) # In a quick build, only build the quick flavour (if any). - if flavour != self.quick_flavour: + if ( + config.name_featureset != 'none' + or not config.defs_flavour.is_quick + ): for package in packages_own: package['Build-Profiles'][0].neg.add('pkg.linux.quick') - tests_control = self.templates.get_tests_control('image.tests-control', vars)[0] - tests_control['Depends'].merge( - PackageRelationGroup(package_image['Package'], - arches={arch})) - if self.tests_control_image: - for i in tests_control['Depends']: - self.tests_control_image['Depends'].merge(i) - else: - self.tests_control_image = tests_control - self.tests_control.append(tests_control) - - if flavour == (self.quick_flavour or self.default_flavour): - if not self.tests_control_headers: - self.tests_control_headers = \ - self.templates.get_tests_control('headers.tests-control', vars)[0] - self.tests_control.append(self.tests_control_headers) - assert self.tests_control_headers is not None - self.tests_control_headers['Architecture'].add(arch) - self.tests_control_headers['Depends'].merge( - PackageRelationGroup(packages_headers[0]['Package'], - arches={arch})) - - def get_config(*entry_name) -> Any: - entry_real = ('image',) + entry_name - entry = self.config.get(entry_real, None) - if entry is None: - return None - return entry.get('configs', None) - - def check_config_default(fail, f) -> list[str]: - for d in self.config_dirs[::-1]: - f1 = d + '/' + f - if os.path.exists(f1): - return [f1] - if fail: - raise RuntimeError("%s unavailable" % f) - return [] - - def check_config_files(files) -> list[str]: - ret = [] - for f in files: - for d in self.config_dirs[::-1]: - f1 = d + '/' + f - if os.path.exists(f1): - ret.append(f1) - break - else: - raise RuntimeError("%s unavailable" % f) - return ret - - def check_config(default, fail, *entry_name) -> list[str]: - configs = get_config(*entry_name) - if configs is None: - return check_config_default(fail, default) - return check_config_files(configs) - - kconfig = check_config('config', True) - # XXX: We have no way to override kernelarch-X configs - kconfig.extend(check_config_default(False, - "kernelarch-%s/config" % config_entry_base['kernel-arch'])) - kconfig.extend(check_config("%s/config" % arch, True, arch)) - kconfig.extend(check_config("%s/config.%s" % (arch, flavour), False, - arch, None, flavour)) - kconfig.extend(check_config("featureset-%s/config" % featureset, False, - None, featureset)) - kconfig.extend(check_config("%s/%s/config" % (arch, featureset), False, - arch, featureset)) - kconfig.extend(check_config("%s/%s/config.%s" % - (arch, featureset, flavour), False, - arch, featureset, flavour)) + tests_control_image = self.templates.get_tests_control('image.tests-control', vars) + for c in tests_control_image: + c.setdefault('Depends').extend( + [i['Package'] for i in packages_image_unsigned] + ) + + tests_control_headers = self.templates.get_tests_control('headers.tests-control', vars) + for c in tests_control_headers: + c.setdefault('Depends').extend( + [i['Package'] for i in packages_headers] + + [i['Package'] for i in packages_image_unsigned] + ) + + self.tests_control.extend(tests_control_image) + self.tests_control.extend(tests_control_headers) + + kconfig = [] + for c in config.config: + for d in self.config_dirs: + if (f := d / c).exists(): + kconfig.append(str(f)) makeflags['KCONFIG'] = ' '.join(kconfig) makeflags['KCONFIG_OPTIONS'] = '' # Add "salt" to fix #872263 @@ -559,12 +475,16 @@ linux-signed-{vars['arch']} (@signedtemplate_sourceversion@) {dist}; urgency={ur ' -o "BUILD_SALT=\\"%(abiname)s%(localversion)s\\""' % vars merged_config = ('debian/build/config.%s_%s_%s' % - (arch, featureset, flavour)) + (config.name_debianarch, config.name_featureset, config.name_flavour)) self.bundle.makefile.add_cmds(merged_config, ["$(MAKE) -f debian/rules.real %s %s" % (merged_config, makeflags)]) - if not self.disable_installer and config_entry_packages.get('installer'): + if ( + config.name_featureset == 'none' + and not self.disable_installer + and config.packages.installer + ): with tempfile.TemporaryDirectory(prefix='linux-gencontrol') as config_dir: base_path = pathlib.Path('debian/installer').absolute() config_path = pathlib.Path(config_dir) @@ -603,7 +523,7 @@ linux-signed-{vars['arch']} (@signedtemplate_sourceversion@) {dist}; urgency={ur bundle_signed.add_packages( udeb_packages, - (arch, featureset, flavour), + (config.name_debianarch, config.name_featureset, config.name_flavour), makeflags_local, arch=arch, ) @@ -624,7 +544,7 @@ linux-signed-{vars['arch']} (@signedtemplate_sourceversion@) {dist}; urgency={ur self.bundle.add_packages( udeb_packages, - (arch, featureset, flavour), + (config.name_debianarch, config.name_featureset, config.name_flavour), makeflags, arch=arch, check_packages=False, ) @@ -652,10 +572,6 @@ linux-signed-{vars['arch']} (@signedtemplate_sourceversion@) {dist}; urgency={ur } self.vars['source_suffix'] = \ self.changelog[0].source[len(self.vars['source_basename']):] - self.config['version', ] = {'source': self.version.complete, - 'upstream': self.version.linux_upstream, - 'abiname_base': self.abiname, - 'abiname': self.abiname} distribution = self.changelog[0].distribution if distribution in ('unstable', ): @@ -679,16 +595,10 @@ linux-signed-{vars['arch']} (@signedtemplate_sourceversion@) {dist}; urgency={ur (distribution, version)) def write(self) -> None: - self.write_config() super().write() self.write_tests_control() self.write_signed() - def write_config(self) -> None: - f = open("debian/config.defines.dump", 'wb') - self.config.dump(f) - f.close() - def write_signed(self) -> None: for bundle in self.bundles.values(): pkg_sign_entries = {} diff --git a/debian/bin/getconfig.py b/debian/bin/getconfig.py deleted file mode 100755 index b719a17a12..0000000000 --- a/debian/bin/getconfig.py +++ /dev/null @@ -1,25 +0,0 @@ -#!/usr/bin/python3 - -import sys - -from debian_linux.config import ConfigCoreDump - -section = tuple(s or None for s in sys.argv[1:-1]) -key = sys.argv[-1] -config = ConfigCoreDump(fp=open("debian/config.defines.dump", "rb")) -try: - value = config[section][key] -except KeyError: - sys.exit(1) - -if isinstance(value, str): - # Don't iterate over it - print(value) -else: - # In case it's a sequence, try printing each item - try: - for item in value: - print(item) - except TypeError: - # Otherwise use the default format - print(value) diff --git a/debian/changelog b/debian/changelog index 30a065ba0c..946a85279f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,206 @@ +linux (6.7.7-1) unstable; urgency=medium + + * New upstream stable update: + https://www.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.7.5 + https://www.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.7.6 + - mmc: sdhci-pci-o2micro: Fix a warm reboot issue that disk can't be + detected by BIOS (Closes: #1056056) + https://www.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.7.7 + - drm/amd/display: Only allow dig mapping to pwrseq in new asic + (Closes: #1061449) + + [ Weizhao Ouyang ] + * Enable CONFIG_MFD_RK8XX_SPI for RK3588 SoC + - MFD_RK8XX_SPI as built-in, same behavior as MFD_RK8XX_I2C + + [ Uwe Kleine-König ] + * [armhf] Enable DRM_PANEL_MIPI_DBI as a module for + stm32mp157c-lxa-tac-gen2. + * Backport a patch from v6.8-rc1 to be more verbose about pending deferred + probes helping debugging of failed boot attempts. + * [arm64] Make PINCTRL_ROCKCHIP builtin. + + [ Vincent Blut ] + * [x86] drivers/hwmon: Enable SENSORS_HP_WMI as module (Closes: #1064507) + + [ Weihao Li] + * [loong64] Build kernel image and udebs for loong64 (Closes: #1053650) + + -- Salvatore Bonaccorso <carnil@debian.org> Sat, 02 Mar 2024 08:22:54 +0100 + +linux (6.7.4-1~exp1) experimental; urgency=medium + + * New upstream stable update: + https://www.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.7.2 + https://www.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.7.3 + https://www.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.7.4 + + [ Aurelien Jarno ] + * [riscv64] Add clock, MFD, PCIe PHYs, regulator and RTC drivers to + kernel-image udeb. + * [riscv64] Disable CRYPTO_DEV_JH7110, it is broken. + + [ Bastian Blank ] + * Make linux-libc-dev provide all cross packages. + + [ Salvatore Bonaccorso ] + * Input: atkbd - skip ATKBD_CMD_SETLEDS when skipping ATKBD_CMD_GETID + (Closes: #1061521) + + [ Emanuele Rocca ] + * [arm64] drivers/thermal/qcom: enable QCOM_SPMI_ADC_TM5 as module for + thermal throttling on the Lenovo ThinkPad X13s. + + [ Vincent Blut ] + * drivers/hwmon: Enable SENSORS_IIO_HWMON as module (Closes: #1057272) + + -- Salvatore Bonaccorso <carnil@debian.org> Thu, 08 Feb 2024 16:01:07 +0100 + +linux (6.7.1-1~exp1) experimental; urgency=medium + + * New upstream stable update: + https://www.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.7.1 + + [ Salvatore Bonaccorso ] + * Enable bcachefs filesystem support + - fs/bcachefs: Enable BCACHEFS_FS as module + - fs/bcachefs: Enable BCACHEFS_QUOTA + - fs/bcachefs: Enable BCACHEFS_POSIX_ACL + * media: solo6x10: replace max(a, min(b, c)) by clamp(b, a, c) + + [ Aurelien Jarno ] + * [riscv64] Enable ARCH_SOPHGO and ARCH_THEAD. + * [riscv64] Disable ARCH_R9A07G043 as it now depends on NONPORTABLE. + * [riscv64] Enable PHY_STARFIVE_JH7110_DPHY_RX, PHY_STARFIVE_JH7110_PCIE and + PHY_STARFIVE_JH7110_USB as modules. + * [powerpc,ppc64,ppc64el] Drop ipddp from nic-modules. + * [riscv64] Enable LEDS_PWM and LEDS_PWM_MULTICOLOR as modules. + + [ Vincent Blut ] + * [arm64, armhf] drivers/net/phy: Enable ADIN_PHY as module + (Closes: #1043354) + + [ Martin Kepplinger ] + * [arm64] Enable CSI camera stack for i.MX8M SoCs (Closes: #1055442) + + [ Tim Pambor ] + * Enable configs for MT8195 Chromebooks: + - COMMON_CLK_MT8195 as built-in + - COMMON_CLK_MT8195_APUSYS, COMMON_CLK_MT8195_AUDSYS, + COMMON_CLK_MT8195_IMP_IIC_WRAP, COMMON_CLK_MT8195_MFGCFG, + COMMON_CLK_MT8195_MSDC, COMMON_CLK_MT8195_SCP_ADSP, + COMMON_CLK_MT8195_VDOSYS, COMMON_CLK_MT8195_VPPSYS, + COMMON_CLK_MT8195_CAMSYS, COMMON_CLK_MT8195_IMGSYS, + COMMON_CLK_MT8195_WPESYS, COMMON_CLK_MT8195_VDECSYS, + COMMON_CLK_MT8195_VENCSYS as modules + - MFD_MT6360, REGULATOR_MT6315, REGULATOR_MT6359, + REGULATOR_CROS_EC, MTK_LVTS_THERMAL as modules + - MTK_ADSP_MBOX, MTK_ADSP_IPC, SND_SOC_SOF_OF, SND_SOC_MT8195, + SND_SOC_MT8195_MT6359, SND_SOC_SOF_MT8195 as modules + - SND_SOC_SOF_TOPLEVEL, SND_SOC_SOF_MTK_TOPLEVEL as built-in + - DRM_MEDIATEK_DP, PHY_MTK_DP, PHY_MTK_PCIE, PHY_MTK_UFS as modules + - PINCTRL_MT8195, PCIE_MEDIATEK_GEN3, SPMI_MTK_PMIF as built-in + + [ Zhang Ning ] + * [arm64] drivers/rtc: Enable RTC_DRV_RS5C372 as module + + [ Bastian Blank ] + * Revert "Run dh_movetousr also in signed images." + * Fix config specified CFLAGS on kernel builds. Also drop old definitions + that have not worked for a long time. + * Disable ability to do binNMU. The Debian infrastructure is not ready + to binNMU signed packages. But they instead just break the dependencies + within this package. + * Restructure and cleanup complete config: + - Uses TOML instead of our home-grown INI based format. + - Don't export a config dump anymore, it is not longer in use. + * Generate and ship vmlinux.h in linux-headers package. + + [ Emanuele Rocca ] + * [arm64] Set QCOM_QSEECOM and QCOM_QSEECOM_UEFISECAPP to 'y' in order to + add support for EFI variables on the Lenovo X13s. + + [ Martyn Welch ] + * [arm64] Support HDMI output on TI SK-AM62. Enable DRM_SII902X and + DRM_TIDSS as modules. + + -- Bastian Blank <waldi@debian.org> Mon, 22 Jan 2024 09:50:46 +0100 + +linux (6.7-1~exp1) experimental; urgency=medium + + * New upstream release: https://kernelnewbies.org/Linux_6.7 + + [ Harry 88 ] + * [arm64] udeb: Include sun8i-drm-hdmi module in installer + (Closes: #1050315) + + [ Diederik de Haas ] + * Update to 6.7: + - d/copyright: Remove drivers/net/appletalk/cops*; removed upstream + - d/rules.d/scripts/mod: Add symsearch to Makefile.real + * Drop patches applied upstream: + - Drop "powerpc: Don't clobber f0/vs0 during fp|altivec register save" + * Drop patches: + - Drop "Add removal patches for: 3c359, smctr, keyspan, cops"; cops + support removed upstream which was the last remaining part + - Drop "Hardcode arch script output"; ia64 architecture removed upstream + * Refresh patches: + - Adjust context in "Tweak gitignore for Debian pkg-kernel using git" + - Adjust context in "video: Remove nvidiafb and rivafb" + - Adjust context in "Include package version along with kernel release in + stack traces" + - Adjust context in "kbuild: Look for module.lds under arch directory too" + - Adjust context in "firmware: Remove redundant log messages from drivers" + - Adjust context in "add sysctl to disallow unprivileged CLONE_NEWUSER by + default" + - Adjust context in "firmware: Remove redundant log messages from drivers" + - Adjust context in "intel-iommu: Add option to exclude integrated GPU + only" + - Adjust context in "intel-iommu: Add Kconfig option to exclude iGPU by + default" + - Adjust context in "x86: Make x32 syscall support conditional on a kernel + parameter" + * [ia64] Drop all ia64 configs due to upstream dropping IA64 arch + * d/config: Update with the help of kconfigeditor2: + - Remove XZ_DEC_IA64 + - Remove DEV_APPLETALK, IPDDP and IPDDP_ENCAP + - Remove RTL8192U + - Remove MODULE_SIG_SHA1, MODULE_SIG_SHA224 + - Replace BCACHE_CLOSURES_DEBUG with DEBUG_CLOSURES + - Remove BTRFS_FS_CHECK_INTEGRITY + - Remove EEPROM_LEGACY + - Remove MTD_AR7_PARTS + - Remove QLGE + - Replace SCSI_IZIP_EPP16 with SCSI_IMM + - Remove AMD_IOMMU_V2 + - Replace SND_SOC_INTEL_SOF_DA7219_MAX98373_MACH with + SND_SOC_INTEL_SOF_DA7219_MACH + * [rt] Update to 6.7-rt6 + + [ Bastian Blank ] + * Generate separate package tests for every flavour. + * Fix stripping of vmlinux binaries. (closes: #1059713) + * Ignore vmlinux for shlibs. (closes: #1059676) + * Drop not working selftests. (closes: #1059765) + * Always build with CROSS_COMPILE set. + * Run dh_movetousr also in signed images. + * Fix some remaining cross build problems. + + [ Christian Göttsche ] + * Enable MODULE_DECOMPRESS + + [ Timothy Pearson ] + * [ppc64] Build PowerNV PCIe hotplug driver as a module + + [ Aurelien Jarno ] + * [riscv64] udeb: Add efi-modules and xfs-modules. + + [ Francesco Dolcini ] + * [arm64] Add support for NXP i.MX8M PCIe + - drivers/phy/freescale: Enable PHY_FSL_IMX8M_PCIE as module + + -- Bastian Blank <waldi@debian.org> Mon, 08 Jan 2024 22:51:34 +0100 + linux (6.6.15-2) unstable; urgency=medium * Revert upstream commit causing documentation build failure diff --git a/debian/config.defines.dump b/debian/config.defines.dump deleted file mode 100644 index 811203e8cd..0000000000 --- a/debian/config.defines.dump +++ /dev/null @@ -1,2732 +0,0 @@ -cdebian_linux.config -ConfigCore -p0 -(tRp1 -(Vbase -p2 -tp3 -(dp4 -Varches -p5 -(lp6 -Valpha -p7 -aVamd64 -p8 -aVarm64 -p9 -aVarmel -p10 -aVarmhf -p11 -aVhppa -p12 -aVi386 -p13 -aVia64 -p14 -aVm68k -p15 -aVmips -p16 -aVmips64 -p17 -aVmips64el -p18 -aVmips64r6el -p19 -aVmipsel -p20 -aVpowerpc -p21 -aVppc64 -p22 -aVppc64el -p23 -aVriscv64 -p24 -aVs390x -p25 -aVsh4 -p26 -aVsparc64 -p27 -aVx32 -p28 -asVcompiler -p29 -Vgcc-13 -p30 -sVfeaturesets -p31 -(lp32 -Vnone -p33 -aVrt -p34 -ass(Vbuild -p35 -tp36 -(dp37 -Vsigned-code -p38 -I00 -ss(Vbase -p39 -NVrt -p40 -tp41 -(dp42 -Venabled -p43 -I01 -ss(Vdescription -p44 -tp45 -(dp46 -Vpart-long-up -p47 -VThis kernel is not suitable for SMP (multi-processor, multi-core or hyper-threaded) systems. -p48 -ss(Vimage -p49 -tp50 -(dp51 -Vdepends -p52 -(lp53 -Vinitramfs-tools (>= 0.120+deb8u2) | linux-initramfs-tool -p54 -asVbreaks -p55 -(lp56 -Vfwupdate (<< 12-7) -p57 -aVwireless-regdb (<< 2019.06.03-1~) -p58 -asVrecommends -p59 -(lp60 -Vapparmor -p61 -ass(Vbase -p62 -Valpha -p63 -tp64 -(dp65 -Vdefault-flavour -p66 -Valpha-smp -p67 -sVkernel-arch -p68 -Valpha -p69 -sVfeaturesets -p70 -(lp71 -Vnone -p72 -ass(Vbuild -p73 -g63 -tp74 -(dp75 -Vimage-file -p76 -Varch/alpha/boot/vmlinux.gz -p77 -ss(Vimage -p78 -g63 -tp79 -(dp80 -Vsuggests -p81 -(lp82 -Vaboot -p83 -aVfdutils -p84 -asVinstall-stem -p85 -Vvmlinuz -p86 -ss(Vdescription -p87 -g63 -NValpha-generic -p88 -tp89 -(dp90 -Vhardware -p91 -VAlpha -p92 -sVhardware-long -p93 -VDEC Alpha systems with extended kernel start address (Wildfire, Titan, Marvel) -p94 -ss(Vpackages -p95 -g63 -NValpha-generic -p96 -tp97 -(dp98 -Vinstaller -p99 -I01 -ss(Vdescription -p100 -g63 -NValpha-smp -p101 -tp102 -(dp103 -Vhardware -p104 -VAlpha SMP -p105 -sVhardware-long -p106 -VDEC Alpha SMP systems with extended kernel start address (Wildfire, Titan, Marvel) -p107 -ss(Vbase -p108 -g63 -g72 -tp109 -(dp110 -Vflavours -p111 -(lp112 -Valpha-generic -p113 -aValpha-smp -p114 -asVimplicit-flavour -p115 -I01 -ss(Vbase -p116 -Vamd64 -p117 -tp118 -(dp119 -Vfeaturesets -p120 -(lp121 -Vnone -p122 -aVrt -p123 -asVkernel-arch -p124 -Vx86 -p125 -ss(Vbuild -p126 -g117 -tp127 -(dp128 -Vimage-file -p129 -Varch/x86/boot/bzImage -p130 -sVsigned-code -p131 -I01 -sVvdso -p132 -I01 -ss(Vimage -p133 -g117 -tp134 -(dp135 -Vsuggests -p136 -(lp137 -Vgrub-pc | grub-efi-amd64 | extlinux -p138 -asVinstall-stem -p139 -Vvmlinuz -p140 -ss(Vdescription -p141 -g117 -NVamd64 -p142 -tp143 -(dp144 -Vhardware -p145 -V64-bit PCs -p146 -sVhardware-long -p147 -VPCs with AMD64, Intel 64 or VIA Nano processors -p148 -ss(Vdescription -p149 -g117 -NVcloud-amd64 -p150 -tp151 -(dp152 -Vhardware -p153 -Vx86-64 cloud -p154 -sVhardware-long -p155 -Vcloud platforms including Amazon EC2, Microsoft Azure, and Google Compute Engine -p156 -ss(Vbase -p157 -g117 -Vnone -p158 -tp159 -(dp160 -Vflavours -p161 -(lp162 -Vamd64 -p163 -aVcloud-amd64 -p164 -asVdefault-flavour -p165 -Vamd64 -p166 -sVquick-flavour -p167 -Vcloud-amd64 -p168 -ss(Vpackages -p169 -g117 -g158 -Vamd64 -p170 -tp171 -(dp172 -Vinstaller -p173 -I01 -ss(Vimage -p174 -g117 -g158 -Vcloud-amd64 -p175 -tp176 -(dp177 -Vconfigs -p178 -(lp179 -Vconfig.cloud -p180 -aVamd64/config.cloud-amd64 -p181 -ass(Vbase -p182 -g117 -Vrt -p183 -tp184 -(dp185 -Vflavours -p186 -(lp187 -Vamd64 -p188 -ass(Vbase -p189 -Varm64 -p190 -tp191 -(dp192 -Vcompat-deb-arch -p193 -Varmhf -p194 -sVcompat-gnu-type -p195 -Varm-linux-gnueabihf -p196 -sVkernel-arch -p197 -Varm64 -p198 -sVfeaturesets -p199 -(lp200 -Vnone -p201 -aVrt -p202 -ass(Vbuild -p203 -g190 -tp204 -(dp205 -Vimage-file -p206 -Varch/arm64/boot/Image -p207 -sVsigned-code -p208 -I01 -sVvdso -p209 -I01 -ss(Vimage -p210 -g190 -tp211 -(dp212 -Vinstall-stem -p213 -Vvmlinuz -p214 -ss(Vdescription -p215 -g190 -NVarm64 -p216 -tp217 -(dp218 -Vhardware -p219 -V64-bit ARMv8 machines -p220 -ss(Vdescription -p221 -g190 -NVcloud-arm64 -p222 -tp223 -(dp224 -Vhardware -p225 -Varm64 cloud -p226 -sVhardware-long -p227 -Vcloud platforms supporting arm64 virtual machines -p228 -ss(Vimage -p229 -g190 -NVarm64 -p230 -tp231 -(dp232 -s(Vbase -p233 -g190 -Vnone -p234 -tp235 -(dp236 -Vflavours -p237 -(lp238 -Varm64 -p239 -aVcloud-arm64 -p240 -asVdefault-flavour -p241 -Varm64 -p242 -sVquick-flavour -p243 -Vcloud-arm64 -p244 -ss(Vpackages -p245 -g190 -g234 -Varm64 -p246 -tp247 -(dp248 -Vinstaller -p249 -I01 -ss(Vimage -p250 -g190 -g234 -Vcloud-arm64 -p251 -tp252 -(dp253 -Vconfigs -p254 -(lp255 -Vconfig.cloud -p256 -aVarm64/config.cloud-arm64 -p257 -ass(Vbase -p258 -g190 -Vrt -p259 -tp260 -(dp261 -Vflavours -p262 -(lp263 -Varm64 -p264 -ass(Vbase -p265 -Varmel -p266 -tp267 -(dp268 -Vkernel-arch -p269 -Varm -p270 -sg70 -(lp271 -g72 -ass(Vbuild -p272 -g266 -tp273 -(dp274 -Vimage-file -p275 -Varch/arm/boot/zImage -p276 -sVuncompressed-image-file -p277 -Varch/arm/boot/Image -p278 -ss(Vimage -p279 -g266 -tp280 -(dp281 -Vinstall-stem -p282 -Vvmlinuz -p283 -ss(Vdescription -p284 -g266 -NVrpi -p285 -tp286 -(dp287 -Vhardware -p288 -VRaspberry Pi Zero, Zero W and 1 -p289 -sVhardware-long -p290 -VRaspberry Pi Zero, Zero W and 1 based systems -p291 -ss(g108 -g266 -g72 -tp292 -(dp293 -g111 -(lp294 -Vrpi -p295 -asg115 -I01 -ss(Vbase -p296 -Varmhf -p297 -tp298 -(dp299 -Vfeaturesets -p300 -(lp301 -Vnone -p302 -aVrt -p303 -asVkernel-arch -p304 -Varm -p305 -ss(Vbuild -p306 -g297 -tp307 -(dp308 -Vimage-file -p309 -Varch/arm/boot/zImage -p310 -sVvdso -p311 -I01 -ss(Vimage -p312 -g297 -tp313 -(dp314 -Vinstall-stem -p315 -Vvmlinuz -p316 -ss(Vdescription -p317 -g297 -NVarmmp -p318 -tp319 -(dp320 -Vhardware -p321 -VARMv7 multiplatform compatible SoCs -p322 -sVhardware-long -p323 -VARMv7 multiplatform kernel. See https://wiki.debian.org/DebianKernel/ARMMP for details of supported platforms -p324 -ss(Vdescription -p325 -g297 -NVarmmp-lpae -p326 -tp327 -(dp328 -Vhardware -p329 -VARMv7 multiplatform compatible SoCs supporting LPAE -p330 -sVhardware-long -p331 -VARMv7 multiplatform kernel supporting LPAE. See https://wiki.debian.org/DebianKernel/ARMMP for details of supported platforms. -p332 -ss(Vbase -p333 -g297 -Vnone -p334 -tp335 -(dp336 -Vflavours -p337 -(lp338 -Varmmp -p339 -aVarmmp-lpae -p340 -asVdefault-flavour -p341 -Varmmp -p342 -ss(Vpackages -p343 -g297 -g334 -Varmmp -p344 -tp345 -(dp346 -Vinstaller -p347 -I01 -ss(Vbase -p348 -g297 -Vrt -p349 -tp350 -(dp351 -Vflavours -p352 -(lp353 -Varmmp -p354 -ass(Vbase -p355 -Vhppa -p356 -tp357 -(dp358 -Vdefault-flavour -p359 -Vparisc -p360 -sVkernel-arch -p361 -Vparisc -p362 -sg70 -(lp363 -g72 -ass(Vbuild -p364 -g356 -tp365 -(dp366 -Vimage-file -p367 -Varch/parisc/boot/bzImage -p368 -ss(Vimage -p369 -g356 -tp370 -(dp371 -Vsuggests -p372 -(lp373 -Vpalo -p374 -asVinstall-stem -p375 -Vvmlinuz -p376 -ss(Vdescription -p377 -g356 -NVparisc -p378 -tp379 -(dp380 -Vhardware -p381 -V32-bit PA-RISC -p382 -sVhardware-long -p383 -VHP PA-RISC 32-bit systems with max 4 GB RAM -p384 -ss(Vpackages -p385 -g356 -NVparisc -p386 -tp387 -(dp388 -Vinstaller -p389 -I01 -ss(Vbase -p390 -g356 -NVparisc64 -p391 -tp392 -(dp393 -Vcflags -p394 -V-fno-cse-follow-jumps -p395 -sVkernel-deb-arch -p396 -Vundefined -p397 -sVkernel-gnu-type -p398 -Vhppa64-linux-gnu -p399 -sVcompat-deb-arch -p400 -Vhppa -p401 -sVcompat-gnu-type -p402 -Vhppa-linux-gnu -p403 -ss(Vdescription -p404 -g356 -NVparisc64 -p405 -tp406 -(dp407 -Vhardware -p408 -V64-bit PA-RISC -p409 -sVhardware-long -p410 -VHP PA-RISC 64-bit systems with support for more than 4 GB RAM -p411 -ss(Vpackages -p412 -g356 -NVparisc64 -p413 -tp414 -(dp415 -Vinstaller -p416 -I01 -ss(g108 -g356 -g72 -tp417 -(dp418 -g111 -(lp419 -Vparisc -p420 -aVparisc64 -p421 -asg115 -I01 -ss(Vbase -p422 -Vi386 -p423 -tp424 -(dp425 -Vfeaturesets -p426 -(lp427 -Vnone -p428 -aVrt -p429 -asVkernel-arch -p430 -Vx86 -p431 -ss(Vbuild -p432 -g423 -tp433 -(dp434 -Vimage-file -p435 -Varch/x86/boot/bzImage -p436 -sVvdso -p437 -I01 -ss(Vdescription -p438 -g423 -tp439 -(dp440 -Vpart-long-pae -p441 -VThis 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. -p442 -ss(Vimage -p443 -g423 -tp444 -(dp445 -Vsuggests -p446 -(lp447 -Vgrub-pc | grub-efi-ia32 | extlinux -p448 -asVinstall-stem -p449 -Vvmlinuz -p450 -ss(Vdescription -p451 -g423 -NV686 -p452 -tp453 -(dp454 -Vhardware -p455 -Volder PCs -p456 -sVhardware-long -p457 -VPCs with one or more processors not supporting PAE -p458 -ss(Vdescription -p459 -g423 -NV686-pae -p460 -tp461 -(dp462 -Vhardware -p463 -Vmodern PCs -p464 -sVhardware-long -p465 -VPCs with one or more processors supporting PAE -p466 -sVparts -p467 -(lp468 -Vpae -p469 -ass(Vbase -p470 -g423 -Vnone -p471 -tp472 -(dp473 -Vflavours -p474 -(lp475 -V686 -p476 -aV686-pae -p477 -asVdefault-flavour -p478 -V686-pae -p479 -ss(Vpackages -p480 -g423 -g471 -V686 -p481 -tp482 -(dp483 -Vinstaller -p484 -I01 -ss(Vpackages -p485 -g423 -g471 -V686-pae -p486 -tp487 -(dp488 -Vinstaller -p489 -I01 -ss(Vbase -p490 -g423 -Vrt -p491 -tp492 -(dp493 -Vflavours -p494 -(lp495 -V686-pae -p496 -ass(Vbase -p497 -Via64 -p498 -tp499 -(dp500 -Vdefault-flavour -p501 -Vitanium -p502 -sVkernel-arch -p503 -Via64 -p504 -sVcompiler -p505 -Vgcc-12 -p506 -sg70 -(lp507 -g72 -ass(Vbuild -p508 -g498 -tp509 -(dp510 -Vimage-file -p511 -Vvmlinux.gz -p512 -ss(Vimage -p513 -g498 -tp514 -(dp515 -Vsuggests -p516 -(lp517 -Vgrub-efi-ia64 -p518 -asVinstall-stem -p519 -Vvmlinuz -p520 -ss(Vdescription -p521 -g498 -NVitanium -p522 -tp523 -(dp524 -Vhardware -p525 -VItanium (Merced) -p526 -sVhardware-long -p527 -Vsystems with original Itanium (Merced) processors -p528 -ss(Vpackages -p529 -g498 -NVitanium -p530 -tp531 -(dp532 -Vinstaller -p533 -I01 -ss(Vdescription -p534 -g498 -NVmckinley -p535 -tp536 -(dp537 -Vhardware -p538 -VItanium 2+ -p539 -sVhardware-long -p540 -Vsystems with Itanium 2 or 9300/9500/9700-series processors -p541 -ss(g108 -g498 -g72 -tp542 -(dp543 -g111 -(lp544 -Vitanium -p545 -aVmckinley -p546 -asg115 -I01 -ss(Vbase -p547 -Vm68k -p548 -tp549 -(dp550 -Vcflags -p551 -V-ffreestanding -p552 -sVdefault-flavour -p553 -Vm68k -p554 -sVkernel-arch -p555 -Vm68k -p556 -sg70 -(lp557 -g72 -ass(Vbuild -p558 -g548 -tp559 -(dp560 -Vimage-file -p561 -Vvmlinux -p562 -ss(Vimage -p563 -g548 -tp564 -(dp565 -Vsuggests -p566 -(lp567 -Vvmelilo -p568 -aVfdutils -p569 -asVinstall-stem -p570 -Vvmlinux -p571 -ss(Vdescription -p572 -g548 -NVm68k -p573 -tp574 -(dp575 -Vhardware -p576 -VMotorola MC68020+ family -p577 -ss(Vpackages -p578 -g548 -NVm68k -p579 -tp580 -(dp581 -Vinstaller -p582 -I01 -ss(g108 -g548 -g72 -tp583 -(dp584 -g111 -(lp585 -Vm68k -p586 -asg115 -I01 -ss(Vbase -p587 -Vmips -p588 -tp589 -(dp590 -Vkernel-arch -p591 -Vmips -p592 -sg70 -(lp593 -g72 -ass(Vbuild -p594 -g588 -tp595 -(dp596 -Vimage-file -p597 -Vvmlinuz -p598 -ss(Vimage -p599 -g588 -tp600 -(dp601 -Vinstall-stem -p602 -Vvmlinuz -p603 -ss(Vdescription -p604 -g588 -NV4kc-malta -p605 -tp606 -(dp607 -Vhardware -p608 -VMIPS Malta -p609 -sVhardware-long -p610 -VMIPS Malta boards -p611 -ss(Vimage -p612 -g588 -NV4kc-malta -p613 -tp614 -(dp615 -Vconfigs -p616 -(lp617 -Vkernelarch-mips/config.malta -p618 -aVkernelarch-mips/config.mips32r2 -p619 -ass(Vpackages -p620 -g588 -NV4kc-malta -p621 -tp622 -(dp623 -Vinstaller -p624 -I01 -ss(Vdescription -p625 -g588 -NVmips32r2eb -p626 -tp627 -(dp628 -Vhardware -p629 -VMIPS Generic (mips32r2eb) -p630 -sVhardware-long -p631 -VMIPS Generic platform (mips32r2eb) -p632 -ss(Vimage -p633 -g588 -NVmips32r2eb -p634 -tp635 -(dp636 -Vconfigs -p637 -(lp638 -Vkernelarch-mips/config.boston -p639 -aVkernelarch-mips/config.mips32r2 -p640 -ass(Vpackages -p641 -g588 -NVmips32r2eb -p642 -tp643 -(dp644 -Vinstaller -p645 -I01 -ss(Vdescription -p646 -g588 -NVocteon -p647 -tp648 -(dp649 -Vhardware -p650 -VOcteon -p651 -sVhardware-long -p652 -VCavium Networks Octeon -p653 -ss(Vbuild -p654 -g588 -NVocteon -p655 -tp656 -(dp657 -Vimage-file -p658 -Vvmlinux -p659 -ss(Vimage -p660 -g588 -NVocteon -p661 -tp662 -(dp663 -Vinstall-stem -p664 -Vvmlinux -p665 -sVconfigs -p666 -(lp667 -Vkernelarch-mips/config.octeon -p668 -ass(Vpackages -p669 -g588 -NVocteon -p670 -tp671 -(dp672 -Vinstaller -p673 -I01 -ss(g108 -g588 -g72 -tp674 -(dp675 -g111 -(lp676 -V4kc-malta -p677 -aVmips32r2eb -p678 -aVocteon -p679 -asg115 -I01 -ss(Vbase -p680 -Vmips64 -p681 -tp682 -(dp683 -Vkernel-arch -p684 -Vmips -p685 -sg70 -(lp686 -g72 -ass(Vbuild -p687 -g681 -tp688 -(dp689 -Vimage-file -p690 -Vvmlinuz -p691 -ss(Vimage -p692 -g681 -tp693 -(dp694 -Vinstall-stem -p695 -Vvmlinuz -p696 -ss(Vdescription -p697 -g681 -NV5kc-malta -p698 -tp699 -(dp700 -Vhardware -p701 -VMIPS Malta -p702 -sVhardware-long -p703 -VMIPS Malta boards -p704 -ss(Vimage -p705 -g681 -NV5kc-malta -p706 -tp707 -(dp708 -Vconfigs -p709 -(lp710 -Vkernelarch-mips/config.malta -p711 -aVkernelarch-mips/config.mips64r2 -p712 -ass(Vpackages -p713 -g681 -NV5kc-malta -p714 -tp715 -(dp716 -Vinstaller -p717 -I01 -ss(Vdescription -p718 -g681 -NVmips64r2eb -p719 -tp720 -(dp721 -Vhardware -p722 -VMIPS Generic (mips64r2eb) -p723 -sVhardware-long -p724 -VMIPS Generic platform (mips64r2eb) -p725 -ss(Vimage -p726 -g681 -NVmips64r2eb -p727 -tp728 -(dp729 -Vconfigs -p730 -(lp731 -Vkernelarch-mips/config.boston -p732 -aVkernelarch-mips/config.mips64r2 -p733 -ass(Vpackages -p734 -g681 -NVmips64r2eb -p735 -tp736 -(dp737 -Vinstaller -p738 -I01 -ss(Vdescription -p739 -g681 -NVocteon -p740 -tp741 -(dp742 -Vhardware -p743 -VOcteon -p744 -sVhardware-long -p745 -VCavium Networks Octeon -p746 -ss(Vbuild -p747 -g681 -NVocteon -p748 -tp749 -(dp750 -Vimage-file -p751 -Vvmlinux -p752 -ss(Vimage -p753 -g681 -NVocteon -p754 -tp755 -(dp756 -Vinstall-stem -p757 -Vvmlinux -p758 -sVconfigs -p759 -(lp760 -Vkernelarch-mips/config.octeon -p761 -ass(Vpackages -p762 -g681 -NVocteon -p763 -tp764 -(dp765 -Vinstaller -p766 -I01 -ss(g108 -g681 -g72 -tp767 -(dp768 -g111 -(lp769 -V5kc-malta -p770 -aVmips64r2eb -p771 -aVocteon -p772 -asg115 -I01 -ss(Vbase -p773 -Vmips64el -p774 -tp775 -(dp776 -Vkernel-arch -p777 -Vmips -p778 -sg70 -(lp779 -g72 -ass(Vbuild -p780 -g774 -tp781 -(dp782 -Vimage-file -p783 -Vvmlinuz -p784 -ss(Vimage -p785 -g774 -tp786 -(dp787 -Vinstall-stem -p788 -Vvmlinuz -p789 -ss(Vdescription -p790 -g774 -NV5kc-malta -p791 -tp792 -(dp793 -Vhardware -p794 -VMIPS Malta -p795 -sVhardware-long -p796 -VMIPS Malta boards -p797 -ss(Vimage -p798 -g774 -NV5kc-malta -p799 -tp800 -(dp801 -Vconfigs -p802 -(lp803 -Vkernelarch-mips/config.malta -p804 -aVkernelarch-mips/config.mips64r2 -p805 -ass(Vpackages -p806 -g774 -NV5kc-malta -p807 -tp808 -(dp809 -Vinstaller -p810 -I01 -ss(Vdescription -p811 -g774 -NVmips64r2el -p812 -tp813 -(dp814 -Vhardware -p815 -VMIPS Generic (mips64r2el) -p816 -sVhardware-long -p817 -VMIPS Generic platform (mips64r2el) -p818 -ss(Vimage -p819 -g774 -NVmips64r2el -p820 -tp821 -(dp822 -Vconfigs -p823 -(lp824 -Vkernelarch-mips/config.boston -p825 -aVkernelarch-mips/config.mips64r2 -p826 -ass(Vpackages -p827 -g774 -NVmips64r2el -p828 -tp829 -(dp830 -Vinstaller -p831 -I01 -ss(Vdescription -p832 -g774 -NVloongson-3 -p833 -tp834 -(dp835 -Vhardware -p836 -VLoongson 3A/3B -p837 -sVhardware-long -p838 -VLoongson 3A or 3B based systems (e.g. from Loongson or Lemote) -p839 -ss(Vimage -p840 -g774 -NVloongson-3 -p841 -tp842 -(dp843 -Vrecommends -p844 -(lp845 -Vpmon-update -p846 -asVconfigs -p847 -(lp848 -Vkernelarch-mips/config.loongson-3 -p849 -ass(Vpackages -p850 -g774 -NVloongson-3 -p851 -tp852 -(dp853 -Vinstaller -p854 -I01 -ss(Vdescription -p855 -g774 -NVocteon -p856 -tp857 -(dp858 -Vhardware -p859 -VOcteon -p860 -sVhardware-long -p861 -VCavium Networks Octeon -p862 -ss(Vbuild -p863 -g774 -NVocteon -p864 -tp865 -(dp866 -Vimage-file -p867 -Vvmlinux -p868 -ss(Vimage -p869 -g774 -NVocteon -p870 -tp871 -(dp872 -Vinstall-stem -p873 -Vvmlinux -p874 -sVconfigs -p875 -(lp876 -Vkernelarch-mips/config.octeon -p877 -ass(Vpackages -p878 -g774 -NVocteon -p879 -tp880 -(dp881 -Vinstaller -p882 -I01 -ss(g108 -g774 -g72 -tp883 -(dp884 -g111 -(lp885 -V5kc-malta -p886 -aVmips64r2el -p887 -aVloongson-3 -p888 -aVocteon -p889 -asg115 -I01 -ss(Vbase -p890 -Vmips64r6el -p891 -tp892 -(dp893 -Vkernel-arch -p894 -Vmips -p895 -sg70 -(lp896 -g72 -ass(Vbuild -p897 -g891 -tp898 -(dp899 -Vimage-file -p900 -Vvmlinuz -p901 -ss(Vimage -p902 -g891 -tp903 -(dp904 -Vinstall-stem -p905 -Vvmlinuz -p906 -ss(Vdescription -p907 -g891 -NVmips64r6el -p908 -tp909 -(dp910 -Vhardware -p911 -VMIPS Generic (mips64r6el) -p912 -sVhardware-long -p913 -VMIPS Generic platform (mips64r6el) -p914 -ss(Vimage -p915 -g891 -NVmips64r6el -p916 -tp917 -(dp918 -Vconfigs -p919 -(lp920 -Vkernelarch-mips/config.boston -p921 -aVkernelarch-mips/config.mips64r6 -p922 -ass(Vpackages -p923 -g891 -NVmips64r6el -p924 -tp925 -(dp926 -Vinstaller -p927 -I01 -ss(g108 -g891 -g72 -tp928 -(dp929 -g111 -(lp930 -Vmips64r6el -p931 -asg115 -I01 -ss(Vbase -p932 -Vmipsel -p933 -tp934 -(dp935 -Vkernel-arch -p936 -Vmips -p937 -sg70 -(lp938 -g72 -ass(Vbuild -p939 -g933 -tp940 -(dp941 -Vimage-file -p942 -Vvmlinuz -p943 -ss(Vimage -p944 -g933 -tp945 -(dp946 -Vinstall-stem -p947 -Vvmlinuz -p948 -ss(Vdescription -p949 -g933 -NV4kc-malta -p950 -tp951 -(dp952 -Vhardware -p953 -VMIPS Malta -p954 -sVhardware-long -p955 -VMIPS Malta boards -p956 -ss(Vimage -p957 -g933 -NV4kc-malta -p958 -tp959 -(dp960 -Vconfigs -p961 -(lp962 -Vkernelarch-mips/config.malta -p963 -aVkernelarch-mips/config.mips32r2 -p964 -ass(Vpackages -p965 -g933 -NV4kc-malta -p966 -tp967 -(dp968 -Vinstaller -p969 -I01 -ss(Vdescription -p970 -g933 -NVmips32r2el -p971 -tp972 -(dp973 -Vhardware -p974 -VMIPS Generic (mips32r2el) -p975 -sVhardware-long -p976 -VMIPS Generic platform (mips32r2el) -p977 -ss(Vimage -p978 -g933 -NVmips32r2el -p979 -tp980 -(dp981 -Vconfigs -p982 -(lp983 -Vkernelarch-mips/config.boston -p984 -aVkernelarch-mips/config.mips32r2 -p985 -ass(Vpackages -p986 -g933 -NVmips32r2el -p987 -tp988 -(dp989 -Vinstaller -p990 -I01 -ss(Vdescription -p991 -g933 -NVloongson-3 -p992 -tp993 -(dp994 -Vhardware -p995 -VLoongson 3A/3B -p996 -sVhardware-long -p997 -VLoongson 3A or 3B based systems (e.g. from Loongson or Lemote) -p998 -ss(Vimage -p999 -g933 -NVloongson-3 -p1000 -tp1001 -(dp1002 -Vrecommends -p1003 -(lp1004 -Vpmon-update -p1005 -asVconfigs -p1006 -(lp1007 -Vkernelarch-mips/config.loongson-3 -p1008 -ass(Vpackages -p1009 -g933 -NVloongson-3 -p1010 -tp1011 -(dp1012 -Vinstaller -p1013 -I01 -ss(Vdescription -p1014 -g933 -NVocteon -p1015 -tp1016 -(dp1017 -Vhardware -p1018 -VOcteon -p1019 -sVhardware-long -p1020 -VCavium Networks Octeon -p1021 -ss(Vbuild -p1022 -g933 -NVocteon -p1023 -tp1024 -(dp1025 -Vimage-file -p1026 -Vvmlinux -p1027 -ss(Vimage -p1028 -g933 -NVocteon -p1029 -tp1030 -(dp1031 -Vinstall-stem -p1032 -Vvmlinux -p1033 -sVconfigs -p1034 -(lp1035 -Vkernelarch-mips/config.octeon -p1036 -ass(Vpackages -p1037 -g933 -NVocteon -p1038 -tp1039 -(dp1040 -Vinstaller -p1041 -I01 -ss(g108 -g933 -g72 -tp1042 -(dp1043 -g111 -(lp1044 -V4kc-malta -p1045 -aVmips32r2el -p1046 -aVloongson-3 -p1047 -aVocteon -p1048 -asg115 -I01 -ss(Vbase -p1049 -Vpowerpc -p1050 -tp1051 -(dp1052 -Vkernel-arch -p1053 -Vpowerpc -p1054 -sg70 -(lp1055 -g72 -ass(Vbuild -p1056 -g1050 -tp1057 -(dp1058 -Vimage-file -p1059 -Vvmlinux -p1060 -ss(Vimage -p1061 -g1050 -tp1062 -(dp1063 -Vconfigs -p1064 -(lp1065 -sVsuggests -p1066 -(lp1067 -Vmkvmlinuz -p1068 -aVgrub-ieee1275 -p1069 -asVinstall-stem -p1070 -Vvmlinux -p1071 -ss(Vdescription -p1072 -g1050 -NVpowerpc -p1073 -tp1074 -(dp1075 -Vhardware -p1076 -Vuniprocessor 32-bit PowerPC -p1077 -ss(Vpackages -p1078 -g1050 -NVpowerpc -p1079 -tp1080 -(dp1081 -Vinstaller -p1082 -I01 -ss(Vdescription -p1083 -g1050 -NVpowerpc-smp -p1084 -tp1085 -(dp1086 -Vhardware -p1087 -Vmultiprocessor 32-bit PowerPC -p1088 -ss(Vimage -p1089 -g1050 -NVpowerpc-smp -p1090 -tp1091 -(dp1092 -Vconfigs -p1093 -(lp1094 -Vpowerpc/config.powerpc -p1095 -aVpowerpc/config.powerpc-smp -p1096 -ass(Vdescription -p1097 -g1050 -NVpowerpc64 -p1098 -tp1099 -(dp1100 -Vhardware -p1101 -V64-bit PowerPC -p1102 -ss(Vimage -p1103 -g1050 -NVpowerpc64 -p1104 -tp1105 -(dp1106 -Vconfigs -p1107 -(lp1108 -Vkernelarch-powerpc/config-arch-64 -p1109 -aVkernelarch-powerpc/config-arch-64-be -p1110 -ass(Vpackages -p1111 -g1050 -NVpowerpc64 -p1112 -tp1113 -(dp1114 -Vinstaller -p1115 -I01 -ss(g108 -g1050 -g72 -tp1116 -(dp1117 -g111 -(lp1118 -Vpowerpc -p1119 -aVpowerpc-smp -p1120 -aVpowerpc64 -p1121 -asg115 -I01 -ss(Vbase -p1122 -Vppc64 -p1123 -tp1124 -(dp1125 -Vdefault-flavour -p1126 -Vpowerpc64 -p1127 -sVkernel-arch -p1128 -Vpowerpc -p1129 -sg70 -(lp1130 -g72 -ass(Vbuild -p1131 -g1123 -tp1132 -(dp1133 -Vimage-file -p1134 -Vvmlinux -p1135 -ss(Vimage -p1136 -g1123 -tp1137 -(dp1138 -Vconfigs -p1139 -(lp1140 -sVsuggests -p1141 -(lp1142 -Vmkvmlinuz -p1143 -aVgrub-ieee1275 -p1144 -asVinstall-stem -p1145 -Vvmlinux -p1146 -ss(Vdescription -p1147 -g1123 -NVpowerpc64 -p1148 -tp1149 -(dp1150 -Vhardware -p1151 -V64-bit PowerPC -p1152 -ss(Vimage -p1153 -g1123 -NVpowerpc64 -p1154 -tp1155 -(dp1156 -Vconfigs -p1157 -(lp1158 -Vkernelarch-powerpc/config-arch-64 -p1159 -aVkernelarch-powerpc/config-arch-64-be -p1160 -ass(Vpackages -p1161 -g1123 -NVpowerpc64 -p1162 -tp1163 -(dp1164 -Vinstaller -p1165 -I01 -ss(g108 -g1123 -g72 -tp1166 -(dp1167 -g111 -(lp1168 -Vpowerpc64 -p1169 -asg115 -I01 -ss(Vbase -p1170 -Vppc64el -p1171 -tp1172 -(dp1173 -Vdefault-flavour -p1174 -Vpowerpc64le -p1175 -sVkernel-arch -p1176 -Vpowerpc -p1177 -sg70 -(lp1178 -g72 -ass(Vbuild -p1179 -g1171 -tp1180 -(dp1181 -Vimage-file -p1182 -Vvmlinux -p1183 -ss(Vimage -p1184 -g1171 -tp1185 -(dp1186 -Vconfigs -p1187 -(lp1188 -sVsuggests -p1189 -(lp1190 -Vmkvmlinuz -p1191 -aVgrub-ieee1275 -p1192 -asVinstall-stem -p1193 -Vvmlinux -p1194 -ss(Vdescription -p1195 -g1171 -NVpowerpc64le -p1196 -tp1197 -(dp1198 -Vhardware -p1199 -VLittle-endian 64-bit PowerPC -p1200 -ss(Vimage -p1201 -g1171 -NVpowerpc64le -p1202 -tp1203 -(dp1204 -Vconfigs -p1205 -(lp1206 -Vkernelarch-powerpc/config-arch-64 -p1207 -aVkernelarch-powerpc/config-arch-64-le -p1208 -ass(Vpackages -p1209 -g1171 -NVpowerpc64le -p1210 -tp1211 -(dp1212 -Vinstaller -p1213 -I01 -ss(g108 -g1171 -g72 -tp1214 -(dp1215 -g111 -(lp1216 -Vpowerpc64le -p1217 -asg115 -I01 -ss(Vbase -p1218 -Vriscv64 -p1219 -tp1220 -(dp1221 -Vkernel-arch -p1222 -Vriscv -p1223 -sVfeaturesets -p1224 -(lp1225 -Vnone -p1226 -ass(Vbuild -p1227 -g1219 -tp1228 -(dp1229 -Vimage-file -p1230 -Varch/riscv/boot/Image -p1231 -sVvdso -p1232 -I01 -ss(Vimage -p1233 -g1219 -tp1234 -(dp1235 -Vinstall-stem -p1236 -Vvmlinux -p1237 -ss(Vdescription -p1238 -g1219 -NVriscv64 -p1239 -tp1240 -(dp1241 -Vhardware -p1242 -V64-bit RISC-V platforms -p1243 -sVhardware-long -p1244 -V64-bit RISC-V platforms -p1245 -ss(Vbase -p1246 -g1219 -Vnone -p1247 -tp1248 -(dp1249 -Vflavours -p1250 -(lp1251 -Vriscv64 -p1252 -asVdefault-flavour -p1253 -Vriscv64 -p1254 -ss(Vpackages -p1255 -g1219 -g1247 -Vriscv64 -p1256 -tp1257 -(dp1258 -Vinstaller -p1259 -I01 -ss(Vbase -p1260 -Vs390x -p1261 -tp1262 -(dp1263 -Vdefault-flavour -p1264 -Vs390x -p1265 -sVkernel-arch -p1266 -Vs390 -p1267 -sg70 -(lp1268 -g72 -ass(Vbuild -p1269 -g1261 -tp1270 -(dp1271 -Vimage-file -p1272 -Varch/s390/boot/bzImage -p1273 -sVvdso -p1274 -I01 -ss(Vimage -p1275 -g1261 -tp1276 -(dp1277 -Vsuggests -p1278 -(lp1279 -Vs390-tools -p1280 -asVinstall-stem -p1281 -Vvmlinuz -p1282 -ss(Vdescription -p1283 -g1261 -NVs390x -p1284 -tp1285 -(dp1286 -Vhardware -p1287 -VIBM zSeries -p1288 -ss(Vpackages -p1289 -g1261 -NVs390x -p1290 -tp1291 -(dp1292 -Vinstaller -p1293 -I01 -ss(g108 -g1261 -g72 -tp1294 -(dp1295 -g111 -(lp1296 -Vs390x -p1297 -asg115 -I01 -ss(Vbase -p1298 -Vsh4 -p1299 -tp1300 -(dp1301 -Vkernel-arch -p1302 -Vsh -p1303 -sg70 -(lp1304 -g72 -ass(Vbuild -p1305 -g1299 -tp1306 -(dp1307 -Vimage-file -p1308 -Varch/sh/boot/zImage -p1309 -ss(Vimage -p1310 -g1299 -tp1311 -(dp1312 -Vinstall-stem -p1313 -Vvmlinuz -p1314 -ss(Vdescription -p1315 -g1299 -NVsh7751r -p1316 -tp1317 -(dp1318 -Vhardware -p1319 -Vsh7751r -p1320 -sVhardware-long -p1321 -VRenesas SH7751R R2D plus board -p1322 -ss(Vpackages -p1323 -g1299 -NVsh7751r -p1324 -tp1325 -(dp1326 -Vinstaller -p1327 -I01 -ss(Vdescription -p1328 -g1299 -NVsh7785lcr -p1329 -tp1330 -(dp1331 -Vhardware -p1332 -Vsh7785lcr -p1333 -sVhardware-long -p1334 -VRenesas SH7785 reference board -p1335 -ss(Vimage -p1336 -g1299 -NVsh7785lcr -p1337 -tp1338 -(dp1339 -Vrecommends -p1340 -(lp1341 -Vu-boot-tools -p1342 -asVcheck-size -p1343 -I4194304 -ss(Vpackages -p1344 -g1299 -NVsh7785lcr -p1345 -tp1346 -(dp1347 -Vinstaller -p1348 -I01 -ss(g108 -g1299 -g72 -tp1349 -(dp1350 -g111 -(lp1351 -Vsh7751r -p1352 -aVsh7785lcr -p1353 -asg115 -I01 -ss(Vbase -p1354 -Vsparc64 -p1355 -tp1356 -(dp1357 -Vdefault-flavour -p1358 -Vsparc64-smp -p1359 -sVkernel-arch -p1360 -Vsparc -p1361 -sg70 -(lp1362 -g72 -ass(Vbuild -p1363 -g1355 -tp1364 -(dp1365 -Vimage-file -p1366 -Vvmlinux -p1367 -ss(Vimage -p1368 -g1355 -tp1369 -(dp1370 -Vconfigs -p1371 -(lp1372 -sVsuggests -p1373 -(lp1374 -Vfdutils -p1375 -aVgrub-ieee1275 -p1376 -asVinstall-stem -p1377 -Vvmlinux -p1378 -ss(Vdescription -p1379 -g1355 -NVsparc64 -p1380 -tp1381 -(dp1382 -Vhardware -p1383 -Vuniprocessor 64-bit UltraSPARC -p1384 -ss(Vimage -p1385 -g1355 -NVsparc64 -p1386 -tp1387 -(dp1388 -Vconfigs -p1389 -(lp1390 -Vkernelarch-sparc/config-up -p1391 -ass(Vpackages -p1392 -g1355 -NVsparc64 -p1393 -tp1394 -(dp1395 -Vinstaller -p1396 -I01 -ss(Vdescription -p1397 -g1355 -NVsparc64-smp -p1398 -tp1399 -(dp1400 -Vhardware -p1401 -Vmultiprocessor 64-bit UltraSPARC -p1402 -ss(Vimage -p1403 -g1355 -NVsparc64-smp -p1404 -tp1405 -(dp1406 -Vconfigs -p1407 -(lp1408 -Vkernelarch-sparc/config-smp -p1409 -ass(g108 -g1355 -g72 -tp1410 -(dp1411 -g111 -(lp1412 -Vsparc64 -p1413 -aVsparc64-smp -p1414 -asg115 -I01 -ss(Vbase -p1415 -Vx32 -p1416 -tp1417 -(dp1418 -Vkernel-arch -p1419 -Vx86 -p1420 -sVfeaturesets -p1421 -(lp1422 -ss(Vabi -p1423 -NVrt -p1424 -tp1425 -(dp1426 -Vignore-changes -p1427 -V* -p1428 -ss(Vdescription -p1429 -Ng1424 -tp1430 -(dp1431 -Vpart-long-rt -p1432 -VThis kernel includes the PREEMPT_RT realtime patch set. -p1433 -sVpart-short-rt -p1434 -VPREEMPT_RT -p1435 -sVparts -p1436 -(lp1437 -Vrt -p1438 -ass(Vversion -p1439 -tp1440 -(dp1441 -Vsource -p1442 -V6.6.15-2 -p1443 -sVupstream -p1444 -V6.6 -p1445 -sVabiname_base -p1446 -V6.6.15 -p1447 -sVabiname -p1448 -g1447 -ss.
\ No newline at end of file diff --git a/debian/config/alpha/config b/debian/config/alpha/config index 03cb7bec52..bfd139e541 100644 --- a/debian/config/alpha/config +++ b/debian/config/alpha/config @@ -676,7 +676,7 @@ CONFIG_SCSI_GENERIC_NCR5380=m CONFIG_SCSI_IPS=m CONFIG_SCSI_INITIO=m CONFIG_SCSI_INIA100=m -CONFIG_SCSI_IZIP_EPP16=y +CONFIG_SCSI_IMM=y CONFIG_SCSI_IZIP_SLOW_CTR=y CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=1 CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS=16 diff --git a/debian/config/alpha/defines b/debian/config/alpha/defines deleted file mode 100644 index bbe9c6f4ae..0000000000 --- a/debian/config/alpha/defines +++ /dev/null @@ -1,22 +0,0 @@ -[base] -flavours: alpha-generic alpha-smp -default-flavour: alpha-smp -kernel-arch: alpha - -[build] -image-file: arch/alpha/boot/vmlinux.gz - -[image] -suggests: aboot, fdutils -install-stem: vmlinuz - -[alpha-generic_description] -hardware: Alpha -hardware-long: DEC Alpha systems with extended kernel start address (Wildfire, Titan, Marvel) - -[alpha-generic_packages] -installer: true - -[alpha-smp_description] -hardware: Alpha SMP -hardware-long: DEC Alpha SMP systems with extended kernel start address (Wildfire, Titan, Marvel) diff --git a/debian/config/alpha/defines.toml b/debian/config/alpha/defines.toml new file mode 100644 index 0000000000..2096f19d77 --- /dev/null +++ b/debian/config/alpha/defines.toml @@ -0,0 +1,28 @@ +[[flavour]] +name = 'alpha-generic' +[flavour.description] +hardware = 'Alpha' +hardware_long = 'DEC Alpha systems with extended kernel start address (Wildfire, Titan, Marvel)' +[flavour.packages] +installer = true + +[[flavour]] +name = 'alpha-smp' +[flavour.defs] +is_default = true +[flavour.description] +hardware = 'Alpha SMP' +hardware_long = 'DEC Alpha SMP systems with extended kernel start address (Wildfire, Titan, Marvel)' + +[[featureset]] +name = 'none' + +[build] +kernel_file = 'arch/alpha/boot/vmlinux.gz' +kernel_stem = 'vmlinuz' + +[relations.image] +suggests = [ + 'aboot', + 'fdutils', +] diff --git a/debian/config/amd64/config b/debian/config/amd64/config index 8f4c80a44a..8d321f203b 100644 --- a/debian/config/amd64/config +++ b/debian/config/amd64/config @@ -163,8 +163,6 @@ CONFIG_MOUSE_PS2_TRACKPOINT=y ## file: drivers/iommu/amd/Kconfig ## CONFIG_AMD_IOMMU=y -#. Can be built as a module, but nothing will trigger loading -CONFIG_AMD_IOMMU_V2=y ## ## file: drivers/macintosh/Kconfig diff --git a/debian/config/amd64/defines b/debian/config/amd64/defines deleted file mode 100644 index 42b154d394..0000000000 --- a/debian/config/amd64/defines +++ /dev/null @@ -1,22 +0,0 @@ -[base] -featuresets: - none - rt -kernel-arch: x86 - -[build] -image-file: arch/x86/boot/bzImage -signed-code: true -vdso: true - -[image] -suggests: grub-pc | grub-efi-amd64 | extlinux -install-stem: vmlinuz - -[amd64_description] -hardware: 64-bit PCs -hardware-long: PCs with AMD64, Intel 64 or VIA Nano processors - -[cloud-amd64_description] -hardware: x86-64 cloud -hardware-long: cloud platforms including Amazon EC2, Microsoft Azure, and Google Compute Engine diff --git a/debian/config/amd64/defines.toml b/debian/config/amd64/defines.toml new file mode 100644 index 0000000000..f492bce6da --- /dev/null +++ b/debian/config/amd64/defines.toml @@ -0,0 +1,37 @@ +[[flavour]] +name = 'amd64' +[flavour.defs] +is_default = true +[flavour.description] +hardware = '64-bit PCs' +hardware_long = 'PCs with AMD64, Intel 64 or VIA Nano processors' +[flavour.packages] +installer = true + +[[flavour]] +name = 'cloud-amd64' +[flavour.build] +config = ['config.cloud'] +[flavour.defs] +is_quick = true +[flavour.description] +hardware = 'x86-64 cloud' +hardware_long = 'cloud platforms including Amazon EC2, Microsoft Azure, and Google Compute Engine' + +[[featureset]] +name = 'none' + +[[featureset]] +name = 'rt' +# Override available flavours in rt featureset +[[featureset.flavour]] +name = 'amd64' + +[build] +enable_signed = true +enable_vdso = true +kernel_file = 'arch/x86/boot/bzImage' +kernel_stem = 'vmlinuz' + +[relations.image] +suggests = ['grub-pc | grub-efi-amd64 | extlinux'] diff --git a/debian/config/amd64/none/defines b/debian/config/amd64/none/defines deleted file mode 100644 index eab4471d18..0000000000 --- a/debian/config/amd64/none/defines +++ /dev/null @@ -1,14 +0,0 @@ -[base] -flavours: - amd64 - cloud-amd64 -default-flavour: amd64 -quick-flavour: cloud-amd64 - -[amd64_packages] -installer: true - -[cloud-amd64_image] -configs: - config.cloud - amd64/config.cloud-amd64 diff --git a/debian/config/amd64/rt/defines b/debian/config/amd64/rt/defines deleted file mode 100644 index 090dc41bfb..0000000000 --- a/debian/config/amd64/rt/defines +++ /dev/null @@ -1,3 +0,0 @@ -[base] -flavours: - amd64 diff --git a/debian/config/arm64/config b/debian/config/arm64/config index 9f6f49da65..f242e6a42f 100644 --- a/debian/config/arm64/config +++ b/debian/config/arm64/config @@ -248,7 +248,20 @@ CONFIG_COMMON_CLK_MT8183_VENCSYS=m # CONFIG_COMMON_CLK_MT8186 is not set # CONFIG_COMMON_CLK_MT8188 is not set # CONFIG_COMMON_CLK_MT8192 is not set -# CONFIG_COMMON_CLK_MT8195 is not set +CONFIG_COMMON_CLK_MT8195=y +CONFIG_COMMON_CLK_MT8195_APUSYS=m +CONFIG_COMMON_CLK_MT8195_AUDSYS=m +CONFIG_COMMON_CLK_MT8195_IMP_IIC_WRAP=m +CONFIG_COMMON_CLK_MT8195_MFGCFG=m +CONFIG_COMMON_CLK_MT8195_MSDC=m +CONFIG_COMMON_CLK_MT8195_SCP_ADSP=m +CONFIG_COMMON_CLK_MT8195_VDOSYS=m +CONFIG_COMMON_CLK_MT8195_VPPSYS=m +CONFIG_COMMON_CLK_MT8195_CAMSYS=m +CONFIG_COMMON_CLK_MT8195_IMGSYS=m +CONFIG_COMMON_CLK_MT8195_WPESYS=m +CONFIG_COMMON_CLK_MT8195_VDECSYS=m +CONFIG_COMMON_CLK_MT8195_VENCSYS=m # CONFIG_COMMON_CLK_MT8365 is not set # CONFIG_COMMON_CLK_MT8516 is not set @@ -434,6 +447,7 @@ CONFIG_EXTCON_USBC_CROS_EC=m ## CONFIG_ARM_SCPI_PROTOCOL=m CONFIG_RASPBERRYPI_FIRMWARE=y +CONFIG_MTK_ADSP_IPC=m CONFIG_TURRIS_MOX_RWTM=m ## @@ -449,6 +463,12 @@ CONFIG_GOOGLE_COREBOOT_TABLE=y CONFIG_GOOGLE_FRAMEBUFFER_COREBOOT=y ## +## file: drivers/firmware/qcom/Kconfig +## +CONFIG_QCOM_QSEECOM=y +CONFIG_QCOM_QSEECOM_UEFISECAPP=y + +## ## file: drivers/gpio/Kconfig ## CONFIG_GPIOLIB=y @@ -500,6 +520,7 @@ CONFIG_DRM_LVDS_CODEC=m CONFIG_DRM_NWL_MIPI_DSI=m CONFIG_DRM_NXP_PTN3460=m CONFIG_DRM_PARADE_PS8640=m +CONFIG_DRM_SII902X=m CONFIG_DRM_SIMPLE_BRIDGE=m CONFIG_DRM_TI_SN65DSI86=m @@ -554,6 +575,7 @@ CONFIG_DRM_LIMA=m ## file: drivers/gpu/drm/mediatek/Kconfig ## CONFIG_DRM_MEDIATEK=m +CONFIG_DRM_MEDIATEK_DP=m CONFIG_DRM_MEDIATEK_HDMI=m ## @@ -628,6 +650,11 @@ CONFIG_DRM_TEGRA=m CONFIG_DRM_TEGRA_STAGING=y ## +## file: drivers/gpu/drm/tidss/Kconfig +## +CONFIG_DRM_TIDSS=m + +## ## file: drivers/gpu/drm/v3d/Kconfig ## CONFIG_DRM_V3D=m @@ -863,6 +890,7 @@ CONFIG_BCM2835_MBOX=y CONFIG_HI6220_MBOX=y CONFIG_QCOM_APCS_IPC=m CONFIG_XGENE_SLIMPRO_MBOX=m +CONFIG_MTK_ADSP_MBOX=m CONFIG_MTK_CMDQ_MBOX=m CONFIG_QCOM_IPCC=m @@ -909,6 +937,13 @@ CONFIG_VIDEO_MEDIATEK_VCODEC=m CONFIG_VIDEO_MEDIATEK_VPU=m ## +## file: drivers/media/platform/nxp/Kconfig +## +CONFIG_VIDEO_IMX7_CSI=m +CONFIG_VIDEO_IMX8MQ_MIPI_CSI2=m +CONFIG_VIDEO_IMX_MIPI_CSIS=m + +## ## file: drivers/media/platform/qcom/venus/Kconfig ## CONFIG_VIDEO_QCOM_VENUS=m @@ -953,10 +988,12 @@ CONFIG_MFD_AXP20X_RSB=m CONFIG_MFD_CROS_EC_DEV=m CONFIG_MFD_HI655X_PMIC=m CONFIG_MFD_MAX77620=y +CONFIG_MFD_MT6360=m CONFIG_MFD_MT6397=m CONFIG_MFD_QCOM_RPM=m CONFIG_MFD_SPMI_PMIC=m CONFIG_MFD_RK8XX_I2C=y +CONFIG_MFD_RK8XX_SPI=y CONFIG_MFD_SL28CPLD=y CONFIG_MFD_WM8994=m CONFIG_MFD_ROHM_BD718XX=m @@ -1262,6 +1299,7 @@ CONFIG_MDIO_BUS_MUX_MMIOREG=m ## file: drivers/net/phy/Kconfig ## CONFIG_MESON_GXL_PHY=m +CONFIG_ADIN_PHY=m CONFIG_BCM54140_PHY=m CONFIG_MARVELL_PHY=m CONFIG_MARVELL_10G_PHY=m @@ -1364,6 +1402,7 @@ CONFIG_PCIE_BRCMSTB=y CONFIG_PCI_HOST_THUNDER_PEM=y CONFIG_PCI_HOST_THUNDER_ECAM=y CONFIG_PCI_HOST_GENERIC=y +CONFIG_PCIE_MEDIATEK_GEN3=y CONFIG_PCI_TEGRA=y CONFIG_PCIE_ROCKCHIP_HOST=y CONFIG_PCI_XGENE=y @@ -1445,6 +1484,7 @@ CONFIG_PHY_MESON8B_USB2=m ## CONFIG_PHY_FSL_IMX8MQ_USB=m CONFIG_PHY_MIXEL_MIPI_DPHY=m +CONFIG_PHY_FSL_IMX8M_PCIE=m ## ## file: drivers/phy/hisilicon/Kconfig @@ -1461,9 +1501,12 @@ CONFIG_PHY_MVEBU_CP110_COMPHY=m ## ## file: drivers/phy/mediatek/Kconfig ## +CONFIG_PHY_MTK_PCIE=m CONFIG_PHY_MTK_TPHY=m +CONFIG_PHY_MTK_UFS=m CONFIG_PHY_MTK_HDMI=m CONFIG_PHY_MTK_MIPI_DSI=m +CONFIG_PHY_MTK_DP=m ## ## file: drivers/phy/qualcomm/Kconfig @@ -1516,7 +1559,7 @@ CONFIG_PINCTRL_AMD=y CONFIG_PINCTRL_AXP209=m CONFIG_PINCTRL_MAX77620=y CONFIG_PINCTRL_RK805=y -CONFIG_PINCTRL_ROCKCHIP=m +CONFIG_PINCTRL_ROCKCHIP=y CONFIG_PINCTRL_SINGLE=y ## @@ -1545,7 +1588,7 @@ CONFIG_PINCTRL_MT8183=y # CONFIG_PINCTRL_MT8186 is not set # CONFIG_PINCTRL_MT8188 is not set # CONFIG_PINCTRL_MT8192 is not set -# CONFIG_PINCTRL_MT8195 is not set +CONFIG_PINCTRL_MT8195=y # CONFIG_PINCTRL_MT8365 is not set # CONFIG_PINCTRL_MT8516 is not set # CONFIG_PINCTRL_MT6397 is not set @@ -1579,6 +1622,33 @@ CONFIG_CROS_EC_SPI=m CONFIG_CROS_KBD_LED_BACKLIGHT=m ## +## file: drivers/pmdomain/bcm/Kconfig +## +CONFIG_RASPBERRYPI_POWER=y + +## +## file: drivers/pmdomain/mediatek/Kconfig +## +CONFIG_MTK_SCPSYS=y +CONFIG_MTK_SCPSYS_PM_DOMAINS=y + +## +## file: drivers/pmdomain/qcom/Kconfig +## +CONFIG_QCOM_RPMHPD=y +CONFIG_QCOM_RPMPD=y + +## +## file: drivers/pmdomain/rockchip/Kconfig +## +CONFIG_ROCKCHIP_PM_DOMAINS=y + +## +## file: drivers/pmdomain/ti/Kconfig +## +CONFIG_TI_SCI_PM_DOMAINS=y + +## ## file: drivers/power/reset/Kconfig ## CONFIG_POWER_RESET_HISI=y @@ -1635,13 +1705,16 @@ CONFIG_REGULATOR=y CONFIG_REGULATOR_FIXED_VOLTAGE=m CONFIG_REGULATOR_AXP20X=m CONFIG_REGULATOR_BD718XX=m +CONFIG_REGULATOR_CROS_EC=m CONFIG_REGULATOR_DA9211=m CONFIG_REGULATOR_FAN53555=m CONFIG_REGULATOR_GPIO=m CONFIG_REGULATOR_HI655X=m CONFIG_REGULATOR_MAX77620=m CONFIG_REGULATOR_MP8859=m +CONFIG_REGULATOR_MT6315=m CONFIG_REGULATOR_MT6358=m +CONFIG_REGULATOR_MT6359=m CONFIG_REGULATOR_MT6397=m CONFIG_REGULATOR_PCA9450=m CONFIG_REGULATOR_PFUZE100=m @@ -1693,6 +1766,7 @@ CONFIG_RTC_DRV_DS1307=y CONFIG_RTC_DRV_HYM8563=m CONFIG_RTC_DRV_MAX77686=y CONFIG_RTC_DRV_RK808=y +CONFIG_RTC_DRV_RS5C372=m CONFIG_RTC_DRV_PCF8523=m CONFIG_RTC_DRV_PCF85063=y CONFIG_RTC_DRV_PCF8563=y @@ -1724,11 +1798,6 @@ CONFIG_SCSI_HISI_SAS=m CONFIG_SCSI_HISI_SAS_PCI=m ## -## file: drivers/soc/bcm/Kconfig -## -CONFIG_RASPBERRYPI_POWER=y - -## ## file: drivers/soc/fsl/Kconfig ## CONFIG_FSL_MC_DPIO=m @@ -1741,8 +1810,6 @@ CONFIG_MTK_CMDQ=m CONFIG_MTK_INFRACFG=y CONFIG_MTK_PMIC_WRAP=m CONFIG_MTK_REGULATOR_COUPLER=y -CONFIG_MTK_SCPSYS=y -CONFIG_MTK_SCPSYS_PM_DOMAINS=y CONFIG_MTK_MMSYS=m CONFIG_MTK_SVS=m @@ -1757,8 +1824,6 @@ CONFIG_QCOM_LLCC=m CONFIG_QCOM_OCMEM=m CONFIG_QCOM_PMIC_GLINK=m CONFIG_QCOM_RPMH=y -CONFIG_QCOM_RPMHPD=y -CONFIG_QCOM_RPMPD=y CONFIG_QCOM_SMEM=m CONFIG_QCOM_SMD_RPM=m CONFIG_QCOM_SMP2P=m @@ -1782,7 +1847,6 @@ CONFIG_ARCH_R9A09G011=y ## CONFIG_ROCKCHIP_GRF=y CONFIG_ROCKCHIP_IODOMAIN=m -CONFIG_ROCKCHIP_PM_DOMAINS=y CONFIG_ROCKCHIP_DTPM=m ## @@ -1792,11 +1856,6 @@ CONFIG_ARCH_TEGRA_132_SOC=y CONFIG_ARCH_TEGRA_210_SOC=y ## -## file: drivers/soc/ti/Kconfig -## -CONFIG_TI_SCI_PM_DOMAINS=y - -## ## file: drivers/spi/Kconfig ## CONFIG_SPI_ARMADA_3700=m @@ -1828,6 +1887,7 @@ CONFIG_SPI_XLP=m ## CONFIG_SPMI=y CONFIG_SPMI_MSM_PMIC_ARB=y +CONFIG_SPMI_MTK_PMIF=y ## ## file: drivers/staging/media/Kconfig @@ -1898,11 +1958,13 @@ CONFIG_BCM2835_THERMAL=m ## file: drivers/thermal/mediatek/Kconfig ## CONFIG_MTK_THERMAL=m +CONFIG_MTK_LVTS_THERMAL=m ## ## file: drivers/thermal/qcom/Kconfig ## CONFIG_QCOM_TSENS=m +CONFIG_QCOM_SPMI_ADC_TM5=m CONFIG_QCOM_SPMI_TEMP_ALARM=m ## @@ -2247,6 +2309,8 @@ CONFIG_SND_SOC_MT8173_RT5650=m CONFIG_SND_SOC_MT8183=m CONFIG_SND_SOC_MT8183_MT6358_TS3A227E_MAX98357A=m CONFIG_SND_SOC_MT8183_DA7219_MAX98357A=m +CONFIG_SND_SOC_MT8195=m +CONFIG_SND_SOC_MT8195_MT6359=m ## ## file: sound/soc/meson/Kconfig @@ -2274,6 +2338,18 @@ CONFIG_SND_SOC_ROCKCHIP_RT5645=m CONFIG_SND_SOC_RK3399_GRU_SOUND=m ## +## file: sound/soc/sof/Kconfig +## +CONFIG_SND_SOC_SOF_TOPLEVEL=y +CONFIG_SND_SOC_SOF_OF=m + +## +## file: sound/soc/sof/mediatek/Kconfig +## +CONFIG_SND_SOC_SOF_MTK_TOPLEVEL=y +CONFIG_SND_SOC_SOF_MT8195=m + +## ## file: sound/soc/sunxi/Kconfig ## CONFIG_SND_SUN8I_CODEC=m diff --git a/debian/config/arm64/defines b/debian/config/arm64/defines deleted file mode 100644 index 095f75711b..0000000000 --- a/debian/config/arm64/defines +++ /dev/null @@ -1,24 +0,0 @@ -[base] -compat-deb-arch: armhf -compat-gnu-type: arm-linux-gnueabihf -kernel-arch: arm64 -featuresets: - none - rt - -[build] -image-file: arch/arm64/boot/Image -signed-code: true -vdso: true - -[image] -install-stem: vmlinuz - -[arm64_description] -hardware: 64-bit ARMv8 machines - -[cloud-arm64_description] -hardware: arm64 cloud -hardware-long: cloud platforms supporting arm64 virtual machines - -[arm64_image] diff --git a/debian/config/arm64/defines.toml b/debian/config/arm64/defines.toml new file mode 100644 index 0000000000..12e9d984fe --- /dev/null +++ b/debian/config/arm64/defines.toml @@ -0,0 +1,34 @@ +[[flavour]] +name = 'arm64' +[flavour.defs] +is_default = true +[flavour.description] +hardware = '64-bit ARMv8 machines' +[flavour.packages] +installer = true + +[[flavour]] +name = 'cloud-arm64' +[flavour.build] +config = ['config.cloud'] +[flavour.defs] +is_quick = true +[flavour.description] +hardware = 'arm64 cloud' +hardware_long = 'cloud platforms supporting arm64 virtual machines' + +[[featureset]] +name = 'none' + +[[featureset]] +name = 'rt' +# Override available flavours in rt featureset +[[featureset.flavour]] +name = 'arm64' + +[build] +compiler_gnutype_compat = 'arm-linux-gnueabihf' +enable_signed = true +enable_vdso = true +kernel_file = 'arch/arm64/boot/Image' +kernel_stem = 'vmlinuz' diff --git a/debian/config/arm64/none/defines b/debian/config/arm64/none/defines deleted file mode 100644 index 97260a2423..0000000000 --- a/debian/config/arm64/none/defines +++ /dev/null @@ -1,14 +0,0 @@ -[base] -flavours: - arm64 - cloud-arm64 -default-flavour: arm64 -quick-flavour: cloud-arm64 - -[arm64_packages] -installer: true - -[cloud-arm64_image] -configs: - config.cloud - arm64/config.cloud-arm64 diff --git a/debian/config/arm64/rt/defines b/debian/config/arm64/rt/defines deleted file mode 100644 index fdea40cbca..0000000000 --- a/debian/config/arm64/rt/defines +++ /dev/null @@ -1,3 +0,0 @@ -[base] -flavours: - arm64 diff --git a/debian/config/armel/config.rpi b/debian/config/armel/config.rpi index 5a6bf6fb48..b87c158fc6 100644 --- a/debian/config/armel/config.rpi +++ b/debian/config/armel/config.rpi @@ -107,6 +107,11 @@ CONFIG_BRCMFMAC_SDIO=y CONFIG_NVMEM_RMEM=m ## +## file: drivers/pmdomain/bcm/Kconfig +## +CONFIG_RASPBERRYPI_POWER=y + +## ## file: drivers/pwm/Kconfig ## CONFIG_PWM=y @@ -118,11 +123,6 @@ CONFIG_PWM_BCM2835=y CONFIG_RTC_DRV_DS1307=m ## -## file: drivers/soc/bcm/Kconfig -## -CONFIG_RASPBERRYPI_POWER=y - -## ## file: drivers/spi/Kconfig ## CONFIG_SPI_BCM2835=y diff --git a/debian/config/armel/defines b/debian/config/armel/defines deleted file mode 100644 index 6a074ca66f..0000000000 --- a/debian/config/armel/defines +++ /dev/null @@ -1,16 +0,0 @@ -[base] -flavours: - rpi -kernel-arch: arm - -[build] -image-file: arch/arm/boot/zImage -# uncompressed-image is just for size checking -uncompressed-image-file: arch/arm/boot/Image - -[image] -install-stem: vmlinuz - -[rpi_description] -hardware: Raspberry Pi Zero, Zero W and 1 -hardware-long: Raspberry Pi Zero, Zero W and 1 based systems diff --git a/debian/config/armel/defines.toml b/debian/config/armel/defines.toml new file mode 100644 index 0000000000..4fd318e6da --- /dev/null +++ b/debian/config/armel/defines.toml @@ -0,0 +1,12 @@ +[[flavour]] +name = 'rpi' +[flavour.description] +hardware = 'Raspberry Pi Zero, Zero W and 1' +hardware_long = 'Raspberry Pi Zero, Zero W and 1 based systems' + +[[featureset]] +name = 'none' + +[build] +kernel_file = 'arch/arm/boot/zImage' +kernel_stem = 'vmlinuz' diff --git a/debian/config/armhf/config b/debian/config/armhf/config index af51773b95..4ece0c6129 100644 --- a/debian/config/armhf/config +++ b/debian/config/armhf/config @@ -516,6 +516,11 @@ CONFIG_DRM_TEGRA_STAGING=y CONFIG_DRM_TILCDC=m ## +## file: drivers/gpu/drm/tiny/Kconfig +## +CONFIG_DRM_PANEL_MIPI_DBI=m + +## ## file: drivers/gpu/host1x/Kconfig ## CONFIG_TEGRA_HOST1X=m @@ -1064,6 +1069,11 @@ CONFIG_MDIO_SUN4I=y CONFIG_MDIO_ASPEED=m ## +## file: drivers/net/phy/Kconfig +## +CONFIG_ADIN_PHY=m + +## ## file: drivers/net/wireless/broadcom/brcm80211/brcmfmac/Kconfig ## CONFIG_BRCMFMAC=m @@ -1207,6 +1217,16 @@ CONFIG_OLPC_XO175=y CONFIG_OLPC_XO175_EC=m ## +## file: drivers/pmdomain/bcm/Kconfig +## +CONFIG_RASPBERRYPI_POWER=y + +## +## file: drivers/pmdomain/rockchip/Kconfig +## +CONFIG_ROCKCHIP_PM_DOMAINS=y + +## ## file: drivers/power/reset/Kconfig ## CONFIG_POWER_RESET=y @@ -1345,15 +1365,9 @@ CONFIG_ASPEED_LPC_SNOOP=m CONFIG_ASPEED_P2A_CTRL=m ## -## file: drivers/soc/bcm/Kconfig -## -CONFIG_RASPBERRYPI_POWER=y - -## ## file: drivers/soc/rockchip/Kconfig ## CONFIG_ROCKCHIP_IODOMAIN=m -CONFIG_ROCKCHIP_PM_DOMAINS=y ## ## file: drivers/soc/tegra/Kconfig diff --git a/debian/config/armhf/defines b/debian/config/armhf/defines deleted file mode 100644 index 762775239f..0000000000 --- a/debian/config/armhf/defines +++ /dev/null @@ -1,24 +0,0 @@ -[base] -featuresets: - none - rt -kernel-arch: arm - -[build] -image-file: arch/arm/boot/zImage -vdso: true - -[image] -install-stem: vmlinuz - -[armmp_description] -hardware: ARMv7 multiplatform compatible SoCs -hardware-long: ARMv7 multiplatform kernel. See - https://wiki.debian.org/DebianKernel/ARMMP for details of supported - platforms - -[armmp-lpae_description] -hardware: ARMv7 multiplatform compatible SoCs supporting LPAE -hardware-long: ARMv7 multiplatform kernel supporting LPAE. See - https://wiki.debian.org/DebianKernel/ARMMP for details of supported - platforms. diff --git a/debian/config/armhf/defines.toml b/debian/config/armhf/defines.toml new file mode 100644 index 0000000000..51cd3911a0 --- /dev/null +++ b/debian/config/armhf/defines.toml @@ -0,0 +1,29 @@ +[[flavour]] +name = "armmp" +[flavour.defs] +is_default = true +[flavour.description] +hardware = 'ARMv7 multiplatform compatible SoCs' +hardware_long = 'ARMv7 multiplatform kernel. See https://wiki.debian.org/DebianKernel/ARMMP for details of supported platforms' +[flavour.packages] +installer = true + +[[flavour]] +name = "armmp-lpae" +[flavour.description] +hardware = 'ARMv7 multiplatform compatible SoCs supporting LPAE' +hardware_long = 'ARMv7 multiplatform kernel supporting LPAE. See https://wiki.debian.org/DebianKernel/ARMMP for details of supported platforms.' + +[[featureset]] +name = 'none' + +[[featureset]] +name = 'rt' +# Override available flavours in rt featureset +[[featureset.flavour]] +name = 'armmp' + +[build] +enable_vdso = true +kernel_file = 'arch/arm/boot/zImage' +kernel_stem = 'vmlinuz' diff --git a/debian/config/armhf/none/defines b/debian/config/armhf/none/defines deleted file mode 100644 index 3b127c36a1..0000000000 --- a/debian/config/armhf/none/defines +++ /dev/null @@ -1,8 +0,0 @@ -[base] -flavours: - armmp - armmp-lpae -default-flavour: armmp - -[armmp_packages] -installer: true diff --git a/debian/config/armhf/rt/defines b/debian/config/armhf/rt/defines deleted file mode 100644 index 897e415f89..0000000000 --- a/debian/config/armhf/rt/defines +++ /dev/null @@ -1,3 +0,0 @@ -[base] -flavours: - armmp diff --git a/debian/config/config b/debian/config/config index f72595fd66..e942fdb5f5 100644 --- a/debian/config/config +++ b/debian/config/config @@ -1030,7 +1030,7 @@ CONFIG_SENSORS_G760A=m # CONFIG_SENSORS_HIH6130 is not set CONFIG_SENSORS_IBMAEM=m CONFIG_SENSORS_IBMPEX=m -# CONFIG_SENSORS_IIO_HWMON is not set +CONFIG_SENSORS_IIO_HWMON=m CONFIG_SENSORS_CORETEMP=m # CONFIG_SENSORS_IT87 is not set CONFIG_SENSORS_JC42=m @@ -1522,6 +1522,7 @@ CONFIG_VL53L0X_I2C=m ## # CONFIG_AD2S90 is not set # CONFIG_AD2S1200 is not set +# CONFIG_AD2S1210 is not set ## ## file: drivers/iio/temperature/Kconfig @@ -2056,7 +2057,6 @@ CONFIG_DM_ZONED=m ## CONFIG_BCACHE=m # CONFIG_BCACHE_DEBUG is not set -# CONFIG_BCACHE_CLOSURES_DEBUG is not set ## ## file: drivers/media/Kconfig @@ -2911,7 +2911,6 @@ CONFIG_CB710_CORE=m ## CONFIG_EEPROM_AT24=m CONFIG_EEPROM_AT25=m -CONFIG_EEPROM_LEGACY=m CONFIG_EEPROM_MAX6875=m CONFIG_EEPROM_93CX6=m # CONFIG_EEPROM_93XX46 is not set @@ -3044,7 +3043,6 @@ CONFIG_MTD_NAND_RICOH=m ## ## file: drivers/mtd/parsers/Kconfig ## -CONFIG_MTD_AR7_PARTS=m CONFIG_MTD_OF_PARTS=m ## @@ -3100,14 +3098,6 @@ CONFIG_XEN_NETDEV_BACKEND=m CONFIG_NET_FAILOVER=m ## -## file: drivers/net/appletalk/Kconfig -## -CONFIG_ATALK=m -CONFIG_DEV_APPLETALK=y -CONFIG_IPDDP=m -CONFIG_IPDDP_ENCAP=y - -## ## file: drivers/net/can/Kconfig ## CONFIG_CAN_DEV=m @@ -4782,7 +4772,6 @@ CONFIG_SCSI_SNIC=m # CONFIG_SCSI_SNIC_DEBUG_FS is not set # CONFIG_SCSI_PPA is not set # CONFIG_SCSI_IMM is not set -# CONFIG_SCSI_IZIP_EPP16 is not set # CONFIG_SCSI_IZIP_SLOW_CTR is not set CONFIG_SCSI_STEX=m CONFIG_SCSI_SYM53C8XX_2=m @@ -5033,11 +5022,6 @@ CONFIG_STAGING=y # CONFIG_AD5933 is not set ## -## file: drivers/staging/iio/resolver/Kconfig -## -# CONFIG_AD2S1210 is not set - -## ## file: drivers/staging/media/Kconfig ## # CONFIG_STAGING_MEDIA is not set @@ -5051,11 +5035,6 @@ CONFIG_DVB_BUDGET_PATCH=m CONFIG_DVB_SP8870=m ## -## file: drivers/staging/qlge/Kconfig -## -CONFIG_QLGE=m - -## ## file: drivers/staging/rtl8192e/Kconfig ## # CONFIG_RTLLIB is not set @@ -5066,11 +5045,6 @@ CONFIG_QLGE=m # CONFIG_RTL8192E is not set ## -## file: drivers/staging/rtl8192u/Kconfig -## -# CONFIG_RTL8192U is not set - -## ## file: drivers/staging/rtl8712/Kconfig ## CONFIG_R8712U=m @@ -5831,6 +5805,13 @@ CONFIG_AFS_FSCACHE=y CONFIG_AUTOFS_FS=m ## +## file: fs/bcachefs/Kconfig +## +CONFIG_BCACHEFS_FS=m +CONFIG_BCACHEFS_QUOTA=y +CONFIG_BCACHEFS_POSIX_ACL=y + +## ## file: fs/befs/Kconfig ## CONFIG_BEFS_FS=m @@ -5846,7 +5827,6 @@ CONFIG_BFS_FS=m ## CONFIG_BTRFS_FS=m CONFIG_BTRFS_FS_POSIX_ACL=y -# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set # CONFIG_BTRFS_FS_RUN_SANITY_TESTS is not set # CONFIG_BTRFS_DEBUG is not set # CONFIG_BTRFS_ASSERT is not set @@ -6498,8 +6478,6 @@ CONFIG_MODULE_SIG=y # CONFIG_MODULE_SIG_FORCE is not set CONFIG_MODULE_SIG_ALL=y ## choice: Which hash algorithm should modules be signed with? -# CONFIG_MODULE_SIG_SHA1 is not set -# CONFIG_MODULE_SIG_SHA224 is not set CONFIG_MODULE_SIG_SHA256=y # CONFIG_MODULE_SIG_SHA384 is not set # CONFIG_MODULE_SIG_SHA512 is not set @@ -6507,6 +6485,7 @@ CONFIG_MODULE_SIG_SHA256=y ## choice: Module compression mode CONFIG_MODULE_COMPRESS_XZ=y ## end choice +CONFIG_MODULE_DECOMPRESS=y # CONFIG_TRIM_UNUSED_KSYMS is not set ## @@ -6657,6 +6636,7 @@ CONFIG_DEBUG_LIST=y # CONFIG_DEBUG_PLIST is not set # CONFIG_DEBUG_SG is not set # CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_DEBUG_CLOSURES is not set # CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set # CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set # CONFIG_LATENCYTOP is not set @@ -6742,7 +6722,6 @@ CONFIG_CORDIC=m #. These are enabled again by arch config, matching the defaults # CONFIG_XZ_DEC_X86 is not set # CONFIG_XZ_DEC_POWERPC is not set -# CONFIG_XZ_DEC_IA64 is not set # CONFIG_XZ_DEC_ARM is not set # CONFIG_XZ_DEC_ARMTHUMB is not set # CONFIG_XZ_DEC_SPARC is not set @@ -6864,6 +6843,11 @@ CONFIG_NET_9P_RDMA=m # CONFIG_NET_9P_DEBUG is not set ## +## file: net/appletalk/Kconfig +## +CONFIG_ATALK=m + +## ## file: net/atm/Kconfig ## CONFIG_ATM=m diff --git a/debian/config/config.cloud b/debian/config/config.cloud index 0a3638ffb0..01f4afb776 100644 --- a/debian/config/config.cloud +++ b/debian/config/config.cloud @@ -566,11 +566,6 @@ CONFIG_XEN_NETDEV_FRONTEND=m # CONFIG_FUJITSU_ES is not set ## -## file: drivers/net/appletalk/Kconfig -## -# CONFIG_ATALK is not set - -## ## file: drivers/net/arcnet/Kconfig ## # CONFIG_ARCNET is not set @@ -1546,6 +1541,11 @@ CONFIG_KERNEL_LZ4=y # CONFIG_NET_9P is not set ## +## file: net/appletalk/Kconfig +## +# CONFIG_ATALK is not set + +## ## file: net/atm/Kconfig ## # CONFIG_ATM is not set diff --git a/debian/config/defines b/debian/config/defines deleted file mode 100644 index c89aa72a7b..0000000000 --- a/debian/config/defines +++ /dev/null @@ -1,44 +0,0 @@ -[base] -arches: - alpha - amd64 - arm64 - armel - armhf - hppa - i386 - ia64 - m68k - mips - mips64 - mips64el - mips64r6el - mipsel - powerpc - ppc64 - ppc64el - riscv64 - s390x - sh4 - sparc64 - x32 -compiler: gcc-13 -featuresets: - none - rt - -[build] -# Disable code signing by default; this can be overridden per-architecture -signed-code: false - -[featureset-rt_base] -enabled: true - -[description] -part-long-up: This kernel is not suitable for SMP (multi-processor, - multi-core or hyper-threaded) systems. - -[image] -depends: initramfs-tools (>= 0.120+deb8u2) | linux-initramfs-tool -breaks: fwupdate (<< 12-7), wireless-regdb (<< 2019.06.03-1~) -recommends: apparmor diff --git a/debian/config/defines.toml b/debian/config/defines.toml new file mode 100644 index 0000000000..2f70bb9c2c --- /dev/null +++ b/debian/config/defines.toml @@ -0,0 +1,110 @@ +[[kernelarch]] +name = 'alpha' + [[kernelarch.debianarch]] + name = 'alpha' + +[[kernelarch]] +name = 'arm' + [[kernelarch.debianarch]] + name = 'armel' + [[kernelarch.debianarch]] + name = 'armhf' + +[[kernelarch]] +name = 'arm64' + [[kernelarch.debianarch]] + name = 'arm64' + +[[kernelarch]] +name = 'parisc' + [[kernelarch.debianarch]] + name = 'hppa' + +[[kernelarch]] +name = 'loongarch' + [[kernelarch.debianarch]] + name = 'loong64' + +[[kernelarch]] +name = 'm68k' + [[kernelarch.debianarch]] + name = 'm68k' + +[[kernelarch]] +name = 'mips' + [[kernelarch.debianarch]] + name = 'mips' + [[kernelarch.debianarch]] + name = 'mips64' + [[kernelarch.debianarch]] + name = 'mips64el' + [[kernelarch.debianarch]] + name = 'mips64r6el' + [[kernelarch.debianarch]] + name = 'mipsel' + +[[kernelarch]] +name = 'powerpc' + [[kernelarch.debianarch]] + name = 'powerpc' + [[kernelarch.debianarch]] + name = 'ppc64' + [[kernelarch.debianarch]] + name = 'ppc64el' + +[[kernelarch]] +name = 'riscv' + [[kernelarch.debianarch]] + name = 'riscv64' + +[[kernelarch]] +name = 's390' + [[kernelarch.debianarch]] + name = 's390x' + +[[kernelarch]] +name = 'sh' + [[kernelarch.debianarch]] + name = 'sh4' + +[[kernelarch]] +name = 'sparc' + [[kernelarch.debianarch]] + name = 'sparc64' + +[[kernelarch]] +name = 'x86' + [[kernelarch.debianarch]] + name = 'amd64' + [[kernelarch.debianarch]] + name = 'i386' + [[kernelarch.debianarch]] + name = 'x32' + +[[featureset]] +name = 'none' + +[[featureset]] +name = 'rt' +enable = true + [featureset.description] + parts = ['rt'] + [featureset.description.long] + rt = 'This kernel includes the PREEMPT_RT realtime patch set.' + [featureset.description.short] + rt = 'PREEMPT_RT' + +[build] +compiler = 'gcc-13' + +[relations.image] +depends = [ + 'initramfs-tools (>= 0.120+deb8u2) | linux-initramfs-tool', +] +recommends = [ + 'apparmor', +] +breaks = [ + 'fwupdate (<< 12-7)', + 'wireless-regdb (<< 2019.06.03-1~)', +] diff --git a/debian/config/featureset-rt/defines b/debian/config/featureset-rt/defines deleted file mode 100644 index 44e2f2b030..0000000000 --- a/debian/config/featureset-rt/defines +++ /dev/null @@ -1,7 +0,0 @@ -[abi] -ignore-changes: * - -[description] -part-long-rt: This kernel includes the PREEMPT_RT realtime patch set. -part-short-rt: PREEMPT_RT -parts: rt diff --git a/debian/config/hppa/defines b/debian/config/hppa/defines deleted file mode 100644 index 4ce559e285..0000000000 --- a/debian/config/hppa/defines +++ /dev/null @@ -1,33 +0,0 @@ -[base] -flavours: parisc parisc64 -default-flavour: parisc -kernel-arch: parisc - -[build] -image-file: arch/parisc/boot/bzImage - -[image] -suggests: palo -install-stem: vmlinuz - -[parisc_description] -hardware: 32-bit PA-RISC -hardware-long: HP PA-RISC 32-bit systems with max 4 GB RAM - -[parisc_packages] -installer: true - -[parisc64_base] -cflags: -fno-cse-follow-jumps -# no Debian architecture defined; force cross-build -kernel-deb-arch: undefined -kernel-gnu-type: hppa64-linux-gnu -compat-deb-arch: hppa -compat-gnu-type: hppa-linux-gnu - -[parisc64_description] -hardware: 64-bit PA-RISC -hardware-long: HP PA-RISC 64-bit systems with support for more than 4 GB RAM - -[parisc64_packages] -installer: true diff --git a/debian/config/hppa/defines.toml b/debian/config/hppa/defines.toml new file mode 100644 index 0000000000..b900d437b2 --- /dev/null +++ b/debian/config/hppa/defines.toml @@ -0,0 +1,30 @@ +[[flavour]] +name = 'parisc' +[flavour.defs] +is_default = true +[flavour.description] +hardware = '32-bit PA-RISC' +hardware_long = 'HP PA-RISC 32-bit systems with max 4 GB RAM' +[flavour.packages] +installer = true + +[[flavour]] +name = 'parisc64' +[flavour.build] +compiler_gnutype = 'hppa64-linux-gnu' +compiler_gnutype_compat = 'hppa-linux-gnu' +[flavour.description] +hardware = '64-bit PA-RISC' +hardware_long = 'HP PA-RISC 64-bit systems with support for more than 4 GB RAM' +[flavour.packages] +installer = true + +[[featureset]] +name = 'none' + +[build] +kernel_file = 'arch/parisc/boot/bzImage' +kernel_stem = 'vmlinuz' + +[relations.image] +suggests = ['palo'] diff --git a/debian/config/i386/defines b/debian/config/i386/defines deleted file mode 100644 index ed130f0440..0000000000 --- a/debian/config/i386/defines +++ /dev/null @@ -1,28 +0,0 @@ -[base] -featuresets: - none - rt -kernel-arch: x86 - -[build] -image-file: arch/x86/boot/bzImage -vdso: true - -[description] -part-long-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. - -[image] -suggests: grub-pc | grub-efi-ia32 | extlinux -install-stem: vmlinuz - -[686_description] -hardware: older PCs -hardware-long: PCs with one or more processors not supporting PAE - -[686-pae_description] -hardware: modern PCs -hardware-long: PCs with one or more processors supporting PAE -parts: pae diff --git a/debian/config/i386/defines.toml b/debian/config/i386/defines.toml new file mode 100644 index 0000000000..f934e009e4 --- /dev/null +++ b/debian/config/i386/defines.toml @@ -0,0 +1,44 @@ +[[flavour]] +name = '686' +[flavour.description] +hardware = 'older PCs' +hardware_long = 'PCs with one or more processors not supporting PAE' +[flavour.packages] +installer = true + +[[flavour]] +name = '686-pae' +[flavour.defs] +is_default = true +[flavour.description] +hardware = 'modern PCs' +hardware_long = 'PCs with one or more processors supporting PAE' +parts = ['pae'] +[flavour.packages] +installer = true + +[[featureset]] +name = 'none' + +[[featureset]] +name = 'rt' +# Override available flavours in rt featureset +[[featureset.flavour]] +name = '686-pae' + +[build] +enable_vdso = true +kernel_file = 'arch/x86/boot/bzImage' +kernel_stem = 'vmlinuz' + +[description.short] +pae = '' + +[description.long] +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.''' + +[relations.image] +suggests = ['grub-pc | grub-efi-ia32 | extlinux'] diff --git a/debian/config/i386/none/defines b/debian/config/i386/none/defines deleted file mode 100644 index b9add20341..0000000000 --- a/debian/config/i386/none/defines +++ /dev/null @@ -1,11 +0,0 @@ -[base] -flavours: - 686 - 686-pae -default-flavour: 686-pae - -[686_packages] -installer: true - -[686-pae_packages] -installer: true diff --git a/debian/config/i386/rt/defines b/debian/config/i386/rt/defines deleted file mode 100644 index 358e12d559..0000000000 --- a/debian/config/i386/rt/defines +++ /dev/null @@ -1,3 +0,0 @@ -[base] -flavours: - 686-pae diff --git a/debian/config/ia64/config b/debian/config/ia64/config deleted file mode 100644 index 43907d7e6c..0000000000 --- a/debian/config/ia64/config +++ /dev/null @@ -1,740 +0,0 @@ -## -## file: arch/ia64/Kconfig -## -CONFIG_HOTPLUG_CPU=y -CONFIG_SCHED_SMT=y -CONFIG_PERMIT_BSP_REMOVE=y -CONFIG_NODES_SHIFT=8 -CONFIG_IA64_MCA_RECOVERY=y -CONFIG_IA64_PALINFO=m -CONFIG_MSPEC=m - -## -## file: arch/ia64/Kconfig.debug -## -## choice: Physical memory granularity -CONFIG_IA64_GRANULE_16MB=y -# CONFIG_IA64_GRANULE_64MB is not set -## end choice -CONFIG_IA64_PRINT_HAZARDS=y -# CONFIG_DISABLE_VHPT is not set -# CONFIG_IA64_DEBUG_CMPXCHG is not set -# CONFIG_IA64_DEBUG_IRQ is not set - -## -## file: block/partitions/Kconfig -## -CONFIG_ACORN_PARTITION=y -# CONFIG_ACORN_PARTITION_CUMANA is not set -CONFIG_ACORN_PARTITION_EESOX=y -CONFIG_ACORN_PARTITION_ICS=y -CONFIG_ACORN_PARTITION_ADFS=y -CONFIG_ACORN_PARTITION_POWERTEC=y -CONFIG_ACORN_PARTITION_RISCIX=y -CONFIG_OSF_PARTITION=y -CONFIG_AMIGA_PARTITION=y -CONFIG_ATARI_PARTITION=y -CONFIG_MAC_PARTITION=y -CONFIG_BSD_DISKLABEL=y -CONFIG_MINIX_SUBPARTITION=y -CONFIG_SOLARIS_X86_PARTITION=y -CONFIG_UNIXWARE_DISKLABEL=y -CONFIG_LDM_PARTITION=y -CONFIG_LDM_DEBUG=y -CONFIG_SGI_PARTITION=y -CONFIG_ULTRIX_PARTITION=y -CONFIG_SUN_PARTITION=y - -## -## file: crypto/Kconfig -## -CONFIG_CRYPTO_ZSTD=y - -## -## file: drivers/acpi/Kconfig -## -CONFIG_ACPI_DOCK=y -CONFIG_ACPI_PCI_SLOT=y -CONFIG_ACPI_CONTAINER=y - -## -## file: drivers/ata/Kconfig -## -CONFIG_PATA_ALI=m -CONFIG_PATA_AMD=m -CONFIG_PATA_CMD64X=m -CONFIG_PATA_CS5520=m -CONFIG_PATA_EFAR=m -CONFIG_PATA_HPT366=m -CONFIG_PATA_HPT37X=m -CONFIG_PATA_NETCELL=m -CONFIG_PATA_NS87415=m -CONFIG_PATA_OLDPIIX=m -CONFIG_PATA_PDC2027X=m -CONFIG_PATA_PDC_OLD=m -CONFIG_PATA_SC1200=m -CONFIG_PATA_SERVERWORKS=m -CONFIG_PATA_SIL680=m -CONFIG_PATA_TRIFLEX=m -CONFIG_PATA_VIA=m -CONFIG_PATA_MPIIX=m -CONFIG_PATA_NS87410=m -CONFIG_PATA_OPTI=m -CONFIG_PATA_LEGACY=m - -## -## file: drivers/block/Kconfig -## -CONFIG_CDROM_PKTCDVD=m -CONFIG_CDROM_PKTCDVD_BUFFERS=8 -# CONFIG_CDROM_PKTCDVD_WCACHE is not set - -## -## file: drivers/char/Kconfig -## -CONFIG_PRINTER=m -# CONFIG_LP_CONSOLE is not set -CONFIG_PPDEV=m -CONFIG_DTLK=m -CONFIG_APPLICOM=m -CONFIG_HPET=y -# CONFIG_HPET_MMAP is not set - -## -## file: drivers/char/agp/Kconfig -## -#. Workaround -CONFIG_AGP=y -#. Workaround -CONFIG_AGP_I460=y -#. Workaround -CONFIG_AGP_HP_ZX1=y - -## -## file: drivers/char/ipmi/Kconfig -## -CONFIG_IPMI_HANDLER=m -# CONFIG_IPMI_PANIC_EVENT is not set -CONFIG_IPMI_DEVICE_INTERFACE=m -CONFIG_IPMI_SI=m -CONFIG_IPMI_WATCHDOG=m -CONFIG_IPMI_POWEROFF=m - -## -## file: drivers/cpufreq/Kconfig -## -CONFIG_IA64_ACPI_CPUFREQ=m - -## -## file: drivers/firmware/Kconfig -## -CONFIG_DMIID=y - -## -## file: drivers/gpu/drm/Kconfig -## -CONFIG_DRM=m - -## -## file: drivers/gpu/drm/i2c/Kconfig -## -CONFIG_DRM_I2C_CH7006=m -CONFIG_DRM_I2C_SIL164=m - -## -## file: drivers/gpu/drm/nouveau/Kconfig -## -CONFIG_DRM_NOUVEAU=m -# CONFIG_DRM_NOUVEAU_BACKLIGHT is not set - -## -## file: drivers/gpu/drm/radeon/Kconfig -## -CONFIG_DRM_RADEON=m - -## -## file: drivers/hid/usbhid/Kconfig -## -CONFIG_USB_HID=m -# CONFIG_HID_PID is not set - -## -## file: drivers/hwmon/Kconfig -## -CONFIG_SENSORS_ADM1021=m -CONFIG_SENSORS_ADM1025=m -CONFIG_SENSORS_ADM1026=m -CONFIG_SENSORS_ADM1031=m -CONFIG_SENSORS_ASB100=m -CONFIG_SENSORS_DS1621=m -CONFIG_SENSORS_F71805F=m -CONFIG_SENSORS_GL518SM=m -CONFIG_SENSORS_GL520SM=m -CONFIG_SENSORS_IT87=m -CONFIG_SENSORS_MAX1619=m -CONFIG_SENSORS_LM63=m -CONFIG_SENSORS_LM75=m -CONFIG_SENSORS_LM77=m -CONFIG_SENSORS_LM78=m -CONFIG_SENSORS_LM80=m -CONFIG_SENSORS_LM83=m -CONFIG_SENSORS_LM85=m -CONFIG_SENSORS_LM87=m -CONFIG_SENSORS_LM90=m -CONFIG_SENSORS_LM92=m -CONFIG_SENSORS_PC87360=m -CONFIG_SENSORS_PCF8591=m -CONFIG_SENSORS_SIS5595=m -CONFIG_SENSORS_SMSC47M1=m -CONFIG_SENSORS_SMSC47B397=m -CONFIG_SENSORS_VIA686A=m -CONFIG_SENSORS_W83781D=m -CONFIG_SENSORS_W83L785TS=m -CONFIG_SENSORS_W83627HF=m - -## -## file: drivers/i2c/Kconfig -## -CONFIG_I2C=m -CONFIG_I2C_CHARDEV=m -CONFIG_I2C_STUB=m -# CONFIG_I2C_DEBUG_CORE is not set -# CONFIG_I2C_DEBUG_ALGO is not set -# CONFIG_I2C_DEBUG_BUS is not set - -## -## file: drivers/i2c/busses/Kconfig -## -CONFIG_I2C_ALI1535=m -CONFIG_I2C_ALI1563=m -CONFIG_I2C_ALI15X3=m -CONFIG_I2C_AMD756=m -CONFIG_I2C_AMD756_S4882=m -CONFIG_I2C_AMD8111=m -CONFIG_I2C_I801=m -CONFIG_I2C_PIIX4=m -CONFIG_I2C_NFORCE2=m -CONFIG_I2C_SIS5595=m -CONFIG_I2C_SIS630=m -CONFIG_I2C_SIS96X=m -CONFIG_I2C_VIA=m -CONFIG_I2C_VIAPRO=m -CONFIG_I2C_PARPORT=m -CONFIG_I2C_PCA_ISA=m -CONFIG_SCx200_ACB=m - -## -## file: drivers/input/gameport/Kconfig -## -CONFIG_GAMEPORT=m -CONFIG_GAMEPORT_NS558=m -CONFIG_GAMEPORT_L4=m -CONFIG_GAMEPORT_EMU10K1=m -CONFIG_GAMEPORT_FM801=m - -## -## file: drivers/input/keyboard/Kconfig -## -CONFIG_INPUT_KEYBOARD=y -CONFIG_KEYBOARD_ATKBD=y -CONFIG_KEYBOARD_LKKBD=m -CONFIG_KEYBOARD_NEWTON=m -CONFIG_KEYBOARD_SUNKBD=m -CONFIG_KEYBOARD_XTKBD=m - -## -## file: drivers/input/misc/Kconfig -## -CONFIG_INPUT_MISC=y -CONFIG_INPUT_UINPUT=m - -## -## file: drivers/input/mouse/Kconfig -## -CONFIG_INPUT_MOUSE=y -CONFIG_MOUSE_PS2=m -CONFIG_MOUSE_SERIAL=m -CONFIG_MOUSE_VSXXXAA=m - -## -## file: drivers/input/serio/Kconfig -## -CONFIG_SERIO=y -CONFIG_SERIO_I8042=y -CONFIG_SERIO_SERPORT=m -CONFIG_SERIO_PARKBD=m -CONFIG_SERIO_PCIPS2=m -CONFIG_SERIO_LIBPS2=y -CONFIG_SERIO_RAW=m - -## -## file: drivers/input/touchscreen/Kconfig -## -# CONFIG_INPUT_TOUCHSCREEN is not set - -## -## file: drivers/isdn/Kconfig -## -CONFIG_ISDN=y - -## -## file: drivers/media/radio/Kconfig -## -CONFIG_RADIO_MAXIRADIO=m -CONFIG_USB_DSBR=m - -## -## file: drivers/mmc/Kconfig -## -CONFIG_MMC=m - -## -## file: drivers/mmc/core/Kconfig -## -CONFIG_MMC_BLOCK=m - -## -## file: drivers/mmc/host/Kconfig -## -# CONFIG_MMC_DEBUG is not set - -## -## file: drivers/net/Kconfig -## -CONFIG_NET_FC=y -CONFIG_NET_SB1000=m - -## -## file: drivers/net/arcnet/Kconfig -## -CONFIG_ARCNET=m -CONFIG_ARCNET_1201=m -CONFIG_ARCNET_1051=m -CONFIG_ARCNET_RAW=m -CONFIG_ARCNET_CAP=m -CONFIG_ARCNET_COM90xx=m -CONFIG_ARCNET_COM90xxIO=m -CONFIG_ARCNET_RIM_I=m -CONFIG_ARCNET_COM20020=m -CONFIG_ARCNET_COM20020_PCI=m -CONFIG_ARCNET_COM20020_CS=m - -## -## file: drivers/net/ethernet/3com/Kconfig -## -CONFIG_NET_VENDOR_3COM=y -CONFIG_PCMCIA_3C574=m -CONFIG_PCMCIA_3C589=m -CONFIG_VORTEX=m -CONFIG_TYPHOON=m - -## -## file: drivers/net/ethernet/8390/Kconfig -## -CONFIG_PCMCIA_AXNET=m -CONFIG_NE2K_PCI=m -CONFIG_PCMCIA_PCNET=m - -## -## file: drivers/net/ethernet/adaptec/Kconfig -## -CONFIG_ADAPTEC_STARFIRE=m - -## -## file: drivers/net/ethernet/amd/Kconfig -## -CONFIG_AMD8111_ETH=m -CONFIG_PCMCIA_NMCLAN=m - -## -## file: drivers/net/ethernet/broadcom/Kconfig -## -CONFIG_B44=m - -## -## file: drivers/net/ethernet/dec/tulip/Kconfig -## -CONFIG_NET_TULIP=y -CONFIG_DE2104X=m -CONFIG_TULIP=m -# CONFIG_TULIP_MWI is not set -# CONFIG_TULIP_MMIO is not set -CONFIG_WINBOND_840=m -CONFIG_DM9102=m -CONFIG_PCMCIA_XIRCOM=m - -## -## file: drivers/net/ethernet/dlink/Kconfig -## -CONFIG_SUNDANCE=m -# CONFIG_SUNDANCE_MMIO is not set - -## -## file: drivers/net/ethernet/fujitsu/Kconfig -## -CONFIG_PCMCIA_FMVJ18X=m - -## -## file: drivers/net/ethernet/intel/Kconfig -## -CONFIG_E100=m - -## -## file: drivers/net/ethernet/natsemi/Kconfig -## -CONFIG_NATSEMI=m - -## -## file: drivers/net/ethernet/nvidia/Kconfig -## -CONFIG_FORCEDETH=m - -## -## file: drivers/net/ethernet/realtek/Kconfig -## -CONFIG_8139CP=m -CONFIG_8139TOO=m -# CONFIG_8139TOO_PIO is not set -# CONFIG_8139TOO_TUNE_TWISTER is not set -# CONFIG_8139TOO_8129 is not set -# CONFIG_8139_OLD_RX_RESET is not set - -## -## file: drivers/net/ethernet/sis/Kconfig -## -CONFIG_SIS900=m - -## -## file: drivers/net/ethernet/smsc/Kconfig -## -CONFIG_PCMCIA_SMC91C92=m -CONFIG_EPIC100=m - -## -## file: drivers/net/ethernet/via/Kconfig -## -CONFIG_VIA_RHINE=m -# CONFIG_VIA_RHINE_MMIO is not set - -## -## file: drivers/net/ethernet/xircom/Kconfig -## -CONFIG_PCMCIA_XIRC2PS=m - -## -## file: drivers/net/fddi/Kconfig -## -CONFIG_FDDI=y -CONFIG_SKFP=m - -## -## file: drivers/net/hippi/Kconfig -## -# CONFIG_HIPPI is not set - -## -## file: drivers/net/plip/Kconfig -## -CONFIG_PLIP=m - -## -## file: drivers/net/wan/Kconfig -## -CONFIG_WAN=y -CONFIG_PCI200SYN=m -CONFIG_WANXL=m -CONFIG_FARSYNC=m - -## -## file: drivers/net/wireless/atmel/Kconfig -## -CONFIG_ATMEL=m -CONFIG_PCI_ATMEL=m -CONFIG_PCMCIA_ATMEL=m - -## -## file: drivers/net/wireless/cisco/Kconfig -## -CONFIG_AIRO_CS=m - -## -## file: drivers/net/wireless/intel/ipw2x00/Kconfig -## -CONFIG_IPW2100=m -CONFIG_IPW2100_MONITOR=y - -## -## file: drivers/net/wireless/intersil/orinoco/Kconfig -## -CONFIG_HERMES=m -CONFIG_PLX_HERMES=m -CONFIG_TMD_HERMES=m -CONFIG_PCI_HERMES=m -CONFIG_PCMCIA_HERMES=m -CONFIG_PCMCIA_SPECTRUM=m - -## -## file: drivers/net/wireless/legacy/Kconfig -## -CONFIG_PCMCIA_RAYCS=m -CONFIG_PCMCIA_WL3501=m - -## -## file: drivers/net/wireless/marvell/mwifiex/Kconfig -## -CONFIG_MWIFIEX=m -CONFIG_MWIFIEX_SDIO=m -CONFIG_MWIFIEX_PCIE=m - -## -## file: drivers/net/wireless/zydas/Kconfig -## -CONFIG_USB_ZD1201=m - -## -## file: drivers/pci/hotplug/Kconfig -## -CONFIG_HOTPLUG_PCI=y - -## -## file: drivers/pcmcia/Kconfig -## -CONFIG_PCCARD=m -CONFIG_PCMCIA=m -CONFIG_CARDBUS=y -CONFIG_YENTA=m -CONFIG_PD6729=m -CONFIG_I82092=m - -## -## file: drivers/rtc/Kconfig -## -CONFIG_RTC_DRV_EFI=y - -## -## file: drivers/scsi/Kconfig -## -CONFIG_SCSI_ARCMSR=m -CONFIG_SCSI_MYRB=m -CONFIG_SCSI_MYRS=m -CONFIG_SCSI_DMX3191D=m -CONFIG_SCSI_IPS=m -CONFIG_SCSI_INITIO=m -CONFIG_SCSI_INIA100=m -CONFIG_SCSI_SYM53C8XX_2=m -CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=1 -CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS=16 -CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64 -CONFIG_SCSI_IPR=m -CONFIG_SCSI_IPR_TRACE=y -CONFIG_SCSI_IPR_DUMP=y -CONFIG_SCSI_QLOGIC_1280=m -CONFIG_SCSI_DC395x=m -CONFIG_SCSI_AM53C974=m - -## -## file: drivers/scsi/megaraid/Kconfig.megaraid -## -CONFIG_MEGARAID_NEWGEN=y -CONFIG_MEGARAID_MM=m -CONFIG_MEGARAID_MAILBOX=m -CONFIG_MEGARAID_LEGACY=m - -## -## file: drivers/scsi/pcmcia/Kconfig -## -CONFIG_PCMCIA_QLOGIC=m -CONFIG_PCMCIA_SYM53C500=m - -## -## file: drivers/staging/wlan-ng/Kconfig -## -# CONFIG_PRISM2_USB is not set - -## -## file: drivers/tty/Kconfig -## -CONFIG_VT=y -CONFIG_VT_CONSOLE=y -CONFIG_SERIAL_NONSTANDARD=y -CONFIG_MOXA_INTELLIO=m -# CONFIG_MOXA_SMARTIO is not set -CONFIG_N_HDLC=m - -## -## file: drivers/tty/serial/Kconfig -## -CONFIG_SERIAL_JSM=m - -## -## file: drivers/tty/serial/8250/Kconfig -## -CONFIG_SERIAL_8250=y -CONFIG_SERIAL_8250_CONSOLE=y -CONFIG_SERIAL_8250_CS=m -CONFIG_SERIAL_8250_NR_UARTS=32 -CONFIG_SERIAL_8250_RUNTIME_UARTS=4 -CONFIG_SERIAL_8250_EXTENDED=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -# CONFIG_SERIAL_8250_DETECT_IRQ is not set -CONFIG_SERIAL_8250_RSA=y - -## -## file: drivers/usb/Kconfig -## -CONFIG_USB=m - -## -## file: drivers/usb/host/Kconfig -## -CONFIG_USB_EHCI_HCD=m -CONFIG_USB_OHCI_HCD=m -CONFIG_USB_UHCI_HCD=m -CONFIG_USB_SL811_HCD=m -CONFIG_USB_SL811_CS=m - -## -## file: drivers/usb/misc/Kconfig -## -CONFIG_USB_USS720=m - -## -## file: drivers/video/console/Kconfig -## -CONFIG_VGA_CONSOLE=y -CONFIG_FRAMEBUFFER_CONSOLE=y - -## -## file: drivers/video/fbdev/Kconfig -## -CONFIG_FB=y -CONFIG_FB_CIRRUS=m -CONFIG_FB_PM2=m -# CONFIG_FB_PM2_FIFO_DISCONNECT is not set -CONFIG_FB_CYBER2000=m -CONFIG_FB_ASILIANT=y -# CONFIG_FB_IMSTT is not set -CONFIG_FB_S1D13XXX=m -CONFIG_FB_MATROX=m -CONFIG_FB_MATROX_MILLENIUM=y -CONFIG_FB_MATROX_MYSTIQUE=y -CONFIG_FB_MATROX_G=y -CONFIG_FB_MATROX_I2C=m -CONFIG_FB_MATROX_MAVEN=m -CONFIG_FB_RADEON=m -CONFIG_FB_RADEON_I2C=y -# CONFIG_FB_RADEON_DEBUG is not set -CONFIG_FB_ATY128=m -CONFIG_FB_ATY=m -CONFIG_FB_ATY_CT=y -CONFIG_FB_ATY_GENERIC_LCD=y -CONFIG_FB_ATY_GX=y -CONFIG_FB_SAVAGE=m -CONFIG_FB_SAVAGE_I2C=y -# CONFIG_FB_SAVAGE_ACCEL is not set -CONFIG_FB_SIS=m -CONFIG_FB_SIS_300=y -CONFIG_FB_SIS_315=y -CONFIG_FB_NEOMAGIC=m -CONFIG_FB_KYRO=m -CONFIG_FB_VOODOO1=m -CONFIG_FB_TRIDENT=m -# CONFIG_FB_VIRTUAL is not set - -## -## file: drivers/video/fbdev/core/Kconfig -## -CONFIG_FB_MODE_HELPERS=y -CONFIG_FB_TILEBLITTING=y - -## -## file: fs/pstore/Kconfig -## -CONFIG_PSTORE=y - -## -## file: kernel/Kconfig.kexec -## -CONFIG_KEXEC=y -CONFIG_CRASH_DUMP=y - -## -## file: lib/Kconfig.debug -## -#. Broken here (#905461) -# CONFIG_SCHED_STACK_END_CHECK is not set - -## -## file: lib/xz/Kconfig -## -CONFIG_XZ_DEC_IA64=y - -## -## file: net/ipv6/Kconfig -## -CONFIG_IPV6=y - -## -## file: security/Kconfig -## -CONFIG_LSM_MMAP_MIN_ADDR=65536 -# CONFIG_HARDENED_USERCOPY is not set - -## -## file: sound/drivers/Kconfig -## -CONFIG_SND_DUMMY=m -CONFIG_SND_VIRMIDI=m -CONFIG_SND_MTPAV=m -CONFIG_SND_SERIAL_U16550=m -CONFIG_SND_MPU401=m - -## -## file: sound/pci/Kconfig -## -CONFIG_SND_ALS4000=m -CONFIG_SND_ALI5451=m -CONFIG_SND_ATIIXP=m -CONFIG_SND_ATIIXP_MODEM=m -CONFIG_SND_AU8810=m -CONFIG_SND_AU8820=m -CONFIG_SND_AU8830=m -CONFIG_SND_AZT3328=m -CONFIG_SND_BT87X=m -# CONFIG_SND_BT87X_OVERCLOCK is not set -CONFIG_SND_CA0106=m -CONFIG_SND_CMIPCI=m -CONFIG_SND_CS4281=m -CONFIG_SND_CS46XX=m -CONFIG_SND_CS46XX_NEW_DSP=y -CONFIG_SND_EMU10K1=m -CONFIG_SND_EMU10K1X=m -CONFIG_SND_ENS1370=m -CONFIG_SND_ENS1371=m -CONFIG_SND_ES1938=m -CONFIG_SND_ES1968=m -CONFIG_SND_FM801=m -CONFIG_SND_FM801_TEA575X_BOOL=y -CONFIG_SND_HDSP=m -CONFIG_SND_ICE1712=m -CONFIG_SND_ICE1724=m -CONFIG_SND_INTEL8X0=m -CONFIG_SND_INTEL8X0M=m -CONFIG_SND_KORG1212=m -CONFIG_SND_MAESTRO3=m -CONFIG_SND_MIXART=m -CONFIG_SND_NM256=m -CONFIG_SND_RME32=m -CONFIG_SND_RME96=m -CONFIG_SND_RME9652=m -CONFIG_SND_SONICVIBES=m -CONFIG_SND_TRIDENT=m -CONFIG_SND_VIA82XX=m -CONFIG_SND_VIA82XX_MODEM=m -CONFIG_SND_VX222=m -CONFIG_SND_YMFPCI=m - -## -## file: sound/pci/hda/Kconfig -## -CONFIG_SND_HDA_INTEL=m diff --git a/debian/config/ia64/config.itanium b/debian/config/ia64/config.itanium deleted file mode 100644 index 1d1da671fb..0000000000 --- a/debian/config/ia64/config.itanium +++ /dev/null @@ -1,10 +0,0 @@ -## -## file: arch/ia64/Kconfig -## -## choice: Processor type -CONFIG_ITANIUM=y -# CONFIG_MCKINLEY is not set -## end choice -CONFIG_SMP=y -CONFIG_NR_CPUS=64 -# CONFIG_SCHED_SMT is not set diff --git a/debian/config/ia64/config.mckinley b/debian/config/ia64/config.mckinley deleted file mode 100644 index 581fcde88c..0000000000 --- a/debian/config/ia64/config.mckinley +++ /dev/null @@ -1,10 +0,0 @@ -## -## file: arch/ia64/Kconfig -## -## choice: Processor type -# CONFIG_ITANIUM is not set -CONFIG_MCKINLEY=y -## end choice -CONFIG_SMP=y -CONFIG_NR_CPUS=64 -# CONFIG_SCHED_SMT is not set diff --git a/debian/config/ia64/defines b/debian/config/ia64/defines deleted file mode 100644 index f4751c65b6..0000000000 --- a/debian/config/ia64/defines +++ /dev/null @@ -1,25 +0,0 @@ -[base] -flavours: - itanium - mckinley -default-flavour: itanium -kernel-arch: ia64 -compiler: gcc-12 - -[build] -image-file: vmlinux.gz - -[image] -suggests: grub-efi-ia64 -install-stem: vmlinuz - -[itanium_description] -hardware: Itanium (Merced) -hardware-long: systems with original Itanium (Merced) processors - -[itanium_packages] -installer: true - -[mckinley_description] -hardware: Itanium 2+ -hardware-long: systems with Itanium 2 or 9300/9500/9700-series processors diff --git a/debian/config/kernelarch-powerpc/config-arch-64 b/debian/config/kernelarch-powerpc/config-arch-64 index fdd0fbe89f..97e4e6ac43 100644 --- a/debian/config/kernelarch-powerpc/config-arch-64 +++ b/debian/config/kernelarch-powerpc/config-arch-64 @@ -145,6 +145,7 @@ CONFIG_IBM_EMAC_RX_COPY_THRESHOLD=256 ## file: drivers/pci/hotplug/Kconfig ## CONFIG_HOTPLUG_PCI=y +CONFIG_HOTPLUG_PCI_POWERNV=m CONFIG_HOTPLUG_PCI_RPA=m CONFIG_HOTPLUG_PCI_RPA_DLPAR=m diff --git a/debian/config/kernelarch-x86/config b/debian/config/kernelarch-x86/config index fe10477d97..4f3f22fb74 100644 --- a/debian/config/kernelarch-x86/config +++ b/debian/config/kernelarch-x86/config @@ -726,6 +726,7 @@ CONFIG_SENSORS_W83627HF=m CONFIG_SENSORS_ACPI_POWER=m CONFIG_SENSORS_ASUS_WMI=m CONFIG_SENSORS_ASUS_EC=m +CONFIG_SENSORS_HP_WMI=m ## ## file: drivers/hwtracing/intel_th/Kconfig @@ -1741,11 +1742,6 @@ CONFIG_RTLLIB_CRYPTO_WEP=m CONFIG_RTL8192E=m ## -## file: drivers/staging/rtl8192u/Kconfig -## -CONFIG_RTL8192U=m - -## ## file: drivers/staging/rts5208/Kconfig ## CONFIG_RTS5208=m @@ -2267,7 +2263,7 @@ CONFIG_SND_SOC_INTEL_SOF_ES8336_MACH=m CONFIG_SND_SOC_INTEL_SOF_NAU8825_MACH=m CONFIG_SND_SOC_INTEL_CML_LP_DA7219_MAX98357A_MACH=m CONFIG_SND_SOC_INTEL_SOF_CML_RT1011_RT5682_MACH=m -CONFIG_SND_SOC_INTEL_SOF_DA7219_MAX98373_MACH=m +CONFIG_SND_SOC_INTEL_SOF_DA7219_MACH=m CONFIG_SND_SOC_INTEL_SOF_SSP_AMP_MACH=m CONFIG_SND_SOC_INTEL_SOUNDWIRE_SOF_MACH=m diff --git a/debian/config/loong64/config b/debian/config/loong64/config new file mode 100644 index 0000000000..6df221b4e0 --- /dev/null +++ b/debian/config/loong64/config @@ -0,0 +1,236 @@ +## +## file: arch/loongarch/Kconfig +## +CONFIG_DMI=y +CONFIG_EFI=y +CONFIG_EFI_STUB=y +CONFIG_SMP=y +CONFIG_HOTPLUG_CPU=y +CONFIG_NR_CPUS=64 +CONFIG_NUMA=y +CONFIG_CPU_HAS_LSX=y +CONFIG_CPU_HAS_LASX=y + +## +## file: drivers/acpi/Kconfig +## +CONFIG_ACPI_IPMI=m +CONFIG_ACPI_PCI_SLOT=y +CONFIG_ACPI_HOTPLUG_MEMORY=y + +## +## file: drivers/bluetooth/Kconfig +## +CONFIG_BT_HCIUART=m +CONFIG_BT_HCIUART_BCSP=y +CONFIG_BT_HCIBCM203X=m +CONFIG_BT_HCIBPA10X=m +CONFIG_BT_HCIBFUSB=m +CONFIG_BT_HCIDTL1=m +CONFIG_BT_HCIBT3C=m +CONFIG_BT_HCIBLUECARD=m +CONFIG_BT_HCIVHCI=m +CONFIG_BT_VIRTIO=m + +## +## file: drivers/char/Kconfig +## +CONFIG_PRINTER=m + +## +## file: drivers/dma/Kconfig +## +CONFIG_DMADEVICES=y + +## +## file: drivers/firmware/efi/Kconfig +## +CONFIG_EFI_ZBOOT=y + +## +## file: drivers/gpio/Kconfig +## +CONFIG_GPIO_LOONGSON=y + +## +## file: drivers/gpu/drm/Kconfig +## +CONFIG_DRM=m + +## +## file: drivers/gpu/drm/amd/amdgpu/Kconfig +## +CONFIG_DRM_AMDGPU=m + +## +## file: drivers/gpu/drm/ast/Kconfig +## +CONFIG_DRM_AST=m + +## +## file: drivers/gpu/drm/radeon/Kconfig +## +CONFIG_DRM_RADEON=m + +## +## file: drivers/hwmon/Kconfig +## +CONFIG_SENSORS_LM75=m +CONFIG_SENSORS_W83627HF=m + +## +## file: drivers/i2c/Kconfig +## +CONFIG_I2C=y + +## +## file: drivers/i2c/busses/Kconfig +## +CONFIG_I2C_PIIX4=m + +## +## file: drivers/input/keyboard/Kconfig +## +CONFIG_KEYBOARD_XTKBD=m + +## +## file: drivers/input/misc/Kconfig +## +CONFIG_INPUT_MISC=y +CONFIG_INPUT_UINPUT=m + +## +## file: drivers/input/mouse/Kconfig +## +CONFIG_INPUT_MOUSE=y +CONFIG_MOUSE_PS2=m +CONFIG_MOUSE_PS2_VMMOUSE=y +CONFIG_MOUSE_SERIAL=m + +## +## file: drivers/input/serio/Kconfig +## +CONFIG_SERIO_SERPORT=m +CONFIG_SERIO_RAW=m + +## +## file: drivers/mtd/chips/Kconfig +## +CONFIG_MTD_CFI=m +CONFIG_MTD_JEDECPROBE=m +CONFIG_MTD_CFI_INTELEXT=m +CONFIG_MTD_CFI_AMDSTD=m +CONFIG_MTD_CFI_STAA=m +CONFIG_MTD_RAM=m +CONFIG_MTD_ROM=m + +## +## file: drivers/net/ethernet/realtek/Kconfig +## +CONFIG_8139CP=m +CONFIG_8139TOO=m + +## +## file: drivers/net/ethernet/stmicro/stmmac/Kconfig +## +CONFIG_STMMAC_ETH=m + +## +## file: drivers/pci/hotplug/Kconfig +## +CONFIG_HOTPLUG_PCI=y +CONFIG_HOTPLUG_PCI_SHPC=y + +## +## file: drivers/power/reset/Kconfig +## +CONFIG_POWER_RESET=y +CONFIG_POWER_RESET_RESTART=y +CONFIG_POWER_RESET_SYSCON=y +CONFIG_POWER_RESET_SYSCON_POWEROFF=y +CONFIG_SYSCON_REBOOT_MODE=m + +## +## file: drivers/pwm/Kconfig +## +CONFIG_PWM=y + +## +## file: drivers/rtc/Kconfig +## +CONFIG_RTC_DRV_EFI=y + +## +## file: drivers/scsi/megaraid/Kconfig.megaraid +## +CONFIG_MEGARAID_NEWGEN=y +CONFIG_MEGARAID_MM=m +CONFIG_MEGARAID_MAILBOX=m +CONFIG_MEGARAID_LEGACY=m + +## +## file: drivers/tty/serial/8250/Kconfig +## +CONFIG_SERIAL_8250=y +CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_SERIAL_8250_NR_UARTS=16 +CONFIG_SERIAL_8250_RUNTIME_UARTS=16 +CONFIG_SERIAL_8250_EXTENDED=y +CONFIG_SERIAL_8250_MANY_PORTS=y +CONFIG_SERIAL_8250_SHARE_IRQ=y +CONFIG_SERIAL_8250_RSA=y +CONFIG_SERIAL_OF_PLATFORM=y + +## +## file: drivers/usb/Kconfig +## +CONFIG_USB=m + +## +## file: drivers/usb/host/Kconfig +## +CONFIG_USB_EHCI_HCD_PLATFORM=m +CONFIG_USB_OHCI_HCD_PLATFORM=m + +## +## file: drivers/usb/typec/tcpm/Kconfig +## +CONFIG_TYPEC_TCPCI=m + +## +## file: drivers/vfio/Kconfig +## +CONFIG_VFIO=m + +## +## file: drivers/vfio/pci/Kconfig +## +CONFIG_VFIO_PCI=m + +## +## file: drivers/video/backlight/Kconfig +## +CONFIG_LCD_CLASS_DEVICE=m +CONFIG_LCD_PLATFORM=m + +## +## file: drivers/video/fbdev/Kconfig +## +CONFIG_FB_EFI=y +CONFIG_FB_RADEON=m + +## +## file: kernel/Kconfig.kexec +## +CONFIG_KEXEC=y +CONFIG_CRASH_DUMP=y + +## +## file: sound/pci/Kconfig +## +CONFIG_SND_BT87X=m + +## +## file: sound/pci/hda/Kconfig +## +CONFIG_SND_HDA_INTEL=m diff --git a/debian/config/loong64/defines.toml b/debian/config/loong64/defines.toml new file mode 100644 index 0000000000..ee8ce61e9a --- /dev/null +++ b/debian/config/loong64/defines.toml @@ -0,0 +1,16 @@ +[[flavour]] +name = 'loong64' +[flavour.defs] +is_default = true +[flavour.description] +hardware = '64-bit LoongArch platforms' +[flavour.packages] +installer = true + +[[featureset]] +name = 'none' + +[build] +enable_vdso = true +kernel_file = 'arch/loongarch/boot/vmlinuz.efi' +kernel_stem = 'vmlinuz' diff --git a/debian/config/m68k/config b/debian/config/m68k/config index c7dc8d1aaa..5a171354f4 100644 --- a/debian/config/m68k/config +++ b/debian/config/m68k/config @@ -346,11 +346,6 @@ CONFIG_MAC_EMUMOUSEBTN=m # CONFIG_MTD is not set ## -## file: drivers/net/appletalk/Kconfig -## -CONFIG_DEV_APPLETALK=m - -## ## file: drivers/net/arcnet/Kconfig ## # CONFIG_ARCNET is not set diff --git a/debian/config/m68k/defines b/debian/config/m68k/defines deleted file mode 100644 index b572549dcc..0000000000 --- a/debian/config/m68k/defines +++ /dev/null @@ -1,19 +0,0 @@ -[base] -cflags: -ffreestanding -flavours: - m68k -default-flavour: m68k -kernel-arch: m68k - -[build] -image-file: vmlinux - -[image] -suggests: vmelilo, fdutils -install-stem: vmlinux - -[m68k_description] -hardware: Motorola MC68020+ family - -[m68k_packages] -installer: true diff --git a/debian/config/m68k/defines.toml b/debian/config/m68k/defines.toml new file mode 100644 index 0000000000..c5dbaab92e --- /dev/null +++ b/debian/config/m68k/defines.toml @@ -0,0 +1,18 @@ +[[flavour]] +name = 'm68k' +[flavour.defs] +is_default = true +[flavour.description] +hardware = 'Motorola MC68020+ family' +[flavour.packages] +installer = true + +[[featureset]] +name = 'none' + +[build] +kernel_file = 'vmlinux' +kernel_stem = 'vmlinux' + +[relations.image] +suggests = ['vmelilo', 'fdutils'] diff --git a/debian/config/mips/defines b/debian/config/mips/defines deleted file mode 100644 index 6833df7342..0000000000 --- a/debian/config/mips/defines +++ /dev/null @@ -1,50 +0,0 @@ -[base] -flavours: - 4kc-malta - mips32r2eb - octeon -kernel-arch: mips - -[build] -image-file: vmlinuz - -[image] -install-stem: vmlinuz - -[4kc-malta_description] -hardware: MIPS Malta -hardware-long: MIPS Malta boards - -[4kc-malta_image] -configs: - kernelarch-mips/config.malta - kernelarch-mips/config.mips32r2 - -[4kc-malta_packages] -installer: true - -[mips32r2eb_description] -hardware: MIPS Generic (mips32r2eb) -hardware-long: MIPS Generic platform (mips32r2eb) - -[mips32r2eb_image] -configs: - kernelarch-mips/config.boston - kernelarch-mips/config.mips32r2 - -[mips32r2eb_packages] -installer: true - -[octeon_description] -hardware: Octeon -hardware-long: Cavium Networks Octeon - -[octeon_build] -image-file: vmlinux - -[octeon_image] -install-stem: vmlinux -configs: kernelarch-mips/config.octeon - -[octeon_packages] -installer: true diff --git a/debian/config/mips/defines.toml b/debian/config/mips/defines.toml new file mode 100644 index 0000000000..f2d98e7a7e --- /dev/null +++ b/debian/config/mips/defines.toml @@ -0,0 +1,46 @@ +[[flavour]] +name = '4kc-malta' +[flavour.build] +config = [ + 'kernelarch-mips/config.malta', + 'kernelarch-mips/config.mips32r2', +] +[flavour.description] +hardware = 'MIPS Malta' +hardware_long = 'MIPS Malta boards' +[flavour.packages] +installer = true + +[[flavour]] +name = 'mips32r2eb' +[flavour.build] +config = [ + 'kernelarch-mips/config.boston', + 'kernelarch-mips/config.mips32r2', +] +[flavour.description] +hardware = 'MIPS Generic (mips32r2eb)' +hardware_long = 'MIPS Generic platform (mips32r2eb)' +[flavour.packages] +installer = true + +[[flavour]] +name = 'octeon' +[flavour.build] +config = [ + 'kernelarch-mips/config.octeon', +] +kernel_file = 'vmlinux' +kernel_stem = 'vmlinux' +[flavour.description] +hardware = 'Octeon' +hardware_long = 'Cavium Networks Octeon' +[flavour.packages] +installer = true + +[[featureset]] +name = 'none' + +[build] +kernel_file = 'vmlinuz' +kernel_stem = 'vmlinuz' diff --git a/debian/config/mips64/defines b/debian/config/mips64/defines deleted file mode 100644 index 7b4efe79c6..0000000000 --- a/debian/config/mips64/defines +++ /dev/null @@ -1,50 +0,0 @@ -[base] -flavours: - 5kc-malta - mips64r2eb - octeon -kernel-arch: mips - -[build] -image-file: vmlinuz - -[image] -install-stem: vmlinuz - -[5kc-malta_description] -hardware: MIPS Malta -hardware-long: MIPS Malta boards - -[5kc-malta_image] -configs: - kernelarch-mips/config.malta - kernelarch-mips/config.mips64r2 - -[5kc-malta_packages] -installer: true - -[mips64r2eb_description] -hardware: MIPS Generic (mips64r2eb) -hardware-long: MIPS Generic platform (mips64r2eb) - -[mips64r2eb_image] -configs: - kernelarch-mips/config.boston - kernelarch-mips/config.mips64r2 - -[mips64r2eb_packages] -installer: true - -[octeon_description] -hardware: Octeon -hardware-long: Cavium Networks Octeon - -[octeon_build] -image-file: vmlinux - -[octeon_image] -install-stem: vmlinux -configs: kernelarch-mips/config.octeon - -[octeon_packages] -installer: true diff --git a/debian/config/mips64/defines.toml b/debian/config/mips64/defines.toml new file mode 100644 index 0000000000..686be0d2b7 --- /dev/null +++ b/debian/config/mips64/defines.toml @@ -0,0 +1,46 @@ +[[flavour]] +name = '5kc-malta' +[flavour.build] +config = [ + 'kernelarch-mips/config.malta', + 'kernelarch-mips/config.mips64r2', +] +[flavour.description] +hardware = 'MIPS Malta' +hardware_long = 'MIPS Malta boards' +[flavour.packages] +installer = true + +[[flavour]] +name = 'mips64r2eb' +[flavour.build] +config = [ + 'kernelarch-mips/config.boston', + 'kernelarch-mips/config.mips64r2', +] +[flavour.description] +hardware = 'MIPS Generic (mips64r2eb)' +hardware_long = 'MIPS Generic platform (mips64r2eb)' +[flavour.packages] +installer = true + +[[flavour]] +name = 'octeon' +[flavour.build] +config = [ + 'kernelarch-mips/config.octeon', +] +kernel_file = 'vmlinux' +kernel_stem = 'vmlinux' +[flavour.description] +hardware = 'Octeon' +hardware_long = 'Cavium Networks Octeon' +[flavour.packages] +installer = true + +[[featureset]] +name = 'none' + +[build] +kernel_file = 'vmlinuz' +kernel_stem = 'vmlinuz' diff --git a/debian/config/mips64el/defines b/debian/config/mips64el/defines deleted file mode 100644 index 08cbbae433..0000000000 --- a/debian/config/mips64el/defines +++ /dev/null @@ -1,62 +0,0 @@ -[base] -flavours: - 5kc-malta - mips64r2el - loongson-3 - octeon -kernel-arch: mips - -[build] -image-file: vmlinuz - -[image] -install-stem: vmlinuz - -[5kc-malta_description] -hardware: MIPS Malta -hardware-long: MIPS Malta boards - -[5kc-malta_image] -configs: - kernelarch-mips/config.malta - kernelarch-mips/config.mips64r2 - -[5kc-malta_packages] -installer: true - -[mips64r2el_description] -hardware: MIPS Generic (mips64r2el) -hardware-long: MIPS Generic platform (mips64r2el) - -[mips64r2el_image] -configs: - kernelarch-mips/config.boston - kernelarch-mips/config.mips64r2 - -[mips64r2el_packages] -installer: true - -[loongson-3_description] -hardware: Loongson 3A/3B -hardware-long: Loongson 3A or 3B based systems (e.g. from Loongson or Lemote) - -[loongson-3_image] -recommends: pmon-update -configs: kernelarch-mips/config.loongson-3 - -[loongson-3_packages] -installer: true - -[octeon_description] -hardware: Octeon -hardware-long: Cavium Networks Octeon - -[octeon_build] -image-file: vmlinux - -[octeon_image] -install-stem: vmlinux -configs: kernelarch-mips/config.octeon - -[octeon_packages] -installer: true diff --git a/debian/config/mips64el/defines.toml b/debian/config/mips64el/defines.toml new file mode 100644 index 0000000000..0be05d5d76 --- /dev/null +++ b/debian/config/mips64el/defines.toml @@ -0,0 +1,60 @@ +[[flavour]] +name = '5kc-malta' +[flavour.build] +config = [ + 'kernelarch-mips/config.malta', + 'kernelarch-mips/config.mips64r2', +] +[flavour.description] +hardware = 'MIPS Malta' +hardware_long = 'MIPS Malta boards' +[flavour.packages] +installer = true + +[[flavour]] +name = 'mips64r2el' +[flavour.build] +config = [ + 'kernelarch-mips/config.boston', + 'kernelarch-mips/config.mips64r2', +] +[flavour.description] +hardware = 'MIPS Generic (mips64r2el)' +hardware_long = 'MIPS Generic platform (mips64r2el)' +[flavour.packages] +installer = true + +[[flavour]] +name = 'loongson-3' +[flavour.build] +config = [ + 'kernelarch-mips/config.loongson-3', +] +[flavour.description] +hardware = 'Loongson 3A/3B' +hardware_long = 'Loongson 3A or 3B based systems (e.g. from Loongson or Lemote)' +[flavour.packages] +installer = true +[flavour.relations.image] +recommends = ['pmon-update'] + +[[flavour]] +name = 'octeon' +[flavour.build] +config = [ + 'kernelarch-mips/config.octeon', +] +kernel_file = 'vmlinux' +kernel_stem = 'vmlinux' +[flavour.description] +hardware = 'Octeon' +hardware_long = 'Cavium Networks Octeon' +[flavour.packages] +installer = true + +[[featureset]] +name = 'none' + +[build] +kernel_file = 'vmlinuz' +kernel_stem = 'vmlinuz' diff --git a/debian/config/mips64r6el/defines b/debian/config/mips64r6el/defines deleted file mode 100644 index 410cee457f..0000000000 --- a/debian/config/mips64r6el/defines +++ /dev/null @@ -1,22 +0,0 @@ -[base] -flavours: - mips64r6el -kernel-arch: mips - -[build] -image-file: vmlinuz - -[image] -install-stem: vmlinuz - -[mips64r6el_description] -hardware: MIPS Generic (mips64r6el) -hardware-long: MIPS Generic platform (mips64r6el) - -[mips64r6el_image] -configs: - kernelarch-mips/config.boston - kernelarch-mips/config.mips64r6 - -[mips64r6el_packages] -installer: true diff --git a/debian/config/mips64r6el/defines.toml b/debian/config/mips64r6el/defines.toml new file mode 100644 index 0000000000..40848b9805 --- /dev/null +++ b/debian/config/mips64r6el/defines.toml @@ -0,0 +1,19 @@ +[[flavour]] +name = 'mips64r6el' +[flavour.build] +config = [ + 'kernelarch-mips/config.boston', + 'kernelarch-mips/config.mips64r6', +] +[flavour.description] +hardware = 'MIPS Generic (mips64r6el)' +hardware_long = 'MIPS Generic platform (mips64r6el)' +[flavour.packages] +installer = true + +[[featureset]] +name = 'none' + +[build] +kernel_file = 'vmlinuz' +kernel_stem = 'vmlinuz' diff --git a/debian/config/mipsel/defines b/debian/config/mipsel/defines deleted file mode 100644 index 4340af2b1f..0000000000 --- a/debian/config/mipsel/defines +++ /dev/null @@ -1,62 +0,0 @@ -[base] -flavours: - 4kc-malta - mips32r2el - loongson-3 - octeon -kernel-arch: mips - -[build] -image-file: vmlinuz - -[image] -install-stem: vmlinuz - -[4kc-malta_description] -hardware: MIPS Malta -hardware-long: MIPS Malta boards - -[4kc-malta_image] -configs: - kernelarch-mips/config.malta - kernelarch-mips/config.mips32r2 - -[4kc-malta_packages] -installer: true - -[mips32r2el_description] -hardware: MIPS Generic (mips32r2el) -hardware-long: MIPS Generic platform (mips32r2el) - -[mips32r2el_image] -configs: - kernelarch-mips/config.boston - kernelarch-mips/config.mips32r2 - -[mips32r2el_packages] -installer: true - -[loongson-3_description] -hardware: Loongson 3A/3B -hardware-long: Loongson 3A or 3B based systems (e.g. from Loongson or Lemote) - -[loongson-3_image] -recommends: pmon-update -configs: kernelarch-mips/config.loongson-3 - -[loongson-3_packages] -installer: true - -[octeon_description] -hardware: Octeon -hardware-long: Cavium Networks Octeon - -[octeon_build] -image-file: vmlinux - -[octeon_image] -install-stem: vmlinux -configs: kernelarch-mips/config.octeon - -[octeon_packages] -installer: true diff --git a/debian/config/mipsel/defines.toml b/debian/config/mipsel/defines.toml new file mode 100644 index 0000000000..d5e0a1f82b --- /dev/null +++ b/debian/config/mipsel/defines.toml @@ -0,0 +1,60 @@ +[[flavour]] +name = '4kc-malta' +[flavour.build] +config = [ + 'kernelarch-mips/config.malta', + 'kernelarch-mips/config.mips32r2', +] +[flavour.description] +hardware = 'MIPS Malta' +hardware_long = 'MIPS Malta boards' +[flavour.packages] +installer = true + +[[flavour]] +name = 'mips32r2el' +[flavour.build] +config = [ + 'kernelarch-mips/config.boston', + 'kernelarch-mips/config.mips32r2', +] +[flavour.description] +hardware = 'MIPS Generic (mips32r2el)' +hardware_long = 'MIPS Generic platform (mips32r2el)' +[flavour.packages] +installer = true + +[[flavour]] +name = 'loongson-3' +[flavour.build] +config = [ + 'kernelarch-mips/config.loongson-3', +] +[flavour.description] +hardware = 'Loongson 3A/3B' +hardware_long = 'Loongson 3A or 3B based systems (e.g. from Loongson or Lemote)' +[flavour.packages] +installer = true +[flavour.relations.image] +recommends = ['pmon-update'] + +[[flavour]] +name = 'octeon' +[flavour.build] +config = [ + 'kernelarch-mips/config.octeon', +] +kernel_file = 'vmlinux' +kernel_stem = 'vmlinux' +[flavour.description] +hardware = 'Octeon' +hardware_long = 'Cavium Networks Octeon' +[flavour.packages] +installer = true + +[[featureset]] +name = 'none' + +[build] +kernel_file = 'vmlinuz' +kernel_stem = 'vmlinuz' diff --git a/debian/config/powerpc/defines b/debian/config/powerpc/defines deleted file mode 100644 index 00d21fb8aa..0000000000 --- a/debian/config/powerpc/defines +++ /dev/null @@ -1,35 +0,0 @@ -[base] -flavours: - powerpc - powerpc-smp - powerpc64 -kernel-arch: powerpc - -[build] -image-file: vmlinux - -[image] -configs: -suggests: mkvmlinuz, grub-ieee1275 -install-stem: vmlinux - -[powerpc_description] -hardware: uniprocessor 32-bit PowerPC - -[powerpc_packages] -installer: true - -[powerpc-smp_description] -hardware: multiprocessor 32-bit PowerPC - -[powerpc-smp_image] -configs: powerpc/config.powerpc powerpc/config.powerpc-smp - -[powerpc64_description] -hardware: 64-bit PowerPC - -[powerpc64_image] -configs: kernelarch-powerpc/config-arch-64 kernelarch-powerpc/config-arch-64-be - -[powerpc64_packages] -installer: true diff --git a/debian/config/powerpc/defines.toml b/debian/config/powerpc/defines.toml new file mode 100644 index 0000000000..6821eec17c --- /dev/null +++ b/debian/config/powerpc/defines.toml @@ -0,0 +1,40 @@ +[[flavour]] +name = 'powerpc' +[flavour.description] +hardware = 'uniprocessor 32-bit PowerPC' +[flavour.packages] +installer = true + +[[flavour]] +name = 'powerpc-smp' +[flavour.build] +config = [ + 'powerpc/config.powerpc', +] +[flavour.description] +hardware = 'multiprocessor 32-bit PowerPC' + +[[flavour]] +name = 'powerpc64' +[flavour.build] +config = [ + 'kernelarch-powerpc/config-arch-64', + 'kernelarch-powerpc/config-arch-64-be', +] +[flavour.description] +hardware = '64-bit PowerPC' +[flavour.packages] +installer = true + +[[featureset]] +name = 'none' + +[build] +kernel_file = 'vmlinux' +kernel_stem = 'vmlinux' + +[relations.image] +suggests = [ + 'mkvmlinuz', + 'grub-ieee1275', +] diff --git a/debian/config/ppc64/defines b/debian/config/ppc64/defines deleted file mode 100644 index 8443505197..0000000000 --- a/debian/config/ppc64/defines +++ /dev/null @@ -1,22 +0,0 @@ -[base] -flavours: - powerpc64 -default-flavour: powerpc64 -kernel-arch: powerpc - -[build] -image-file: vmlinux - -[image] -configs: -suggests: mkvmlinuz, grub-ieee1275 -install-stem: vmlinux - -[powerpc64_description] -hardware: 64-bit PowerPC - -[powerpc64_image] -configs: kernelarch-powerpc/config-arch-64 kernelarch-powerpc/config-arch-64-be - -[powerpc64_packages] -installer: true diff --git a/debian/config/ppc64/defines.toml b/debian/config/ppc64/defines.toml new file mode 100644 index 0000000000..157d9ec038 --- /dev/null +++ b/debian/config/ppc64/defines.toml @@ -0,0 +1,26 @@ +[[flavour]] +name = 'powerpc64' +[flavour.build] +config = [ + 'kernelarch-powerpc/config-arch-64', + 'kernelarch-powerpc/config-arch-64-be', +] +[flavour.defs] +is_default = true +[flavour.description] +hardware = '64-bit PowerPC' +[flavour.packages] +installer = true + +[[featureset]] +name = 'none' + +[build] +kernel_file = 'vmlinux' +kernel_stem = 'vmlinux' + +[relations.image] +suggests = [ + 'mkvmlinuz', + 'grub-ieee1275', +] diff --git a/debian/config/ppc64el/defines b/debian/config/ppc64el/defines deleted file mode 100644 index 1fad62778e..0000000000 --- a/debian/config/ppc64el/defines +++ /dev/null @@ -1,22 +0,0 @@ -[base] -flavours: - powerpc64le -default-flavour: powerpc64le -kernel-arch: powerpc - -[build] -image-file: vmlinux - -[image] -configs: -suggests: mkvmlinuz, grub-ieee1275 -install-stem: vmlinux - -[powerpc64le_description] -hardware: Little-endian 64-bit PowerPC - -[powerpc64le_image] -configs: kernelarch-powerpc/config-arch-64 kernelarch-powerpc/config-arch-64-le - -[powerpc64le_packages] -installer: true diff --git a/debian/config/ppc64el/defines.toml b/debian/config/ppc64el/defines.toml new file mode 100644 index 0000000000..e0c43e476d --- /dev/null +++ b/debian/config/ppc64el/defines.toml @@ -0,0 +1,26 @@ +[[flavour]] +name = 'powerpc64le' +[flavour.build] +config = [ + 'kernelarch-powerpc/config-arch-64', + 'kernelarch-powerpc/config-arch-64-le', +] +[flavour.defs] +is_default = true +[flavour.description] +hardware = 'Little-endian 64-bit PowerPC' +[flavour.packages] +installer = true + +[[featureset]] +name = 'none' + +[build] +kernel_file = 'vmlinux' +kernel_stem = 'vmlinux' + +[relations.image] +suggests = [ + 'mkvmlinuz', + 'grub-ieee1275', +] diff --git a/debian/config/riscv64/config b/debian/config/riscv64/config index 3f8ff5e063..eb2f476b70 100644 --- a/debian/config/riscv64/config +++ b/debian/config/riscv64/config @@ -16,8 +16,10 @@ CONFIG_NUMA=y CONFIG_SOC_MICROCHIP_POLARFIRE=y CONFIG_ARCH_RENESAS=y CONFIG_SOC_SIFIVE=y +CONFIG_ARCH_SOPHGO=y CONFIG_SOC_STARFIVE=y CONFIG_ARCH_SUNXI=y +CONFIG_ARCH_THEAD=y CONFIG_SOC_VIRT=y ## @@ -50,11 +52,6 @@ CONFIG_CPUFREQ_DT=m CONFIG_CPUFREQ_DT_PLATDEV=y ## -## file: drivers/crypto/starfive/Kconfig -## -CONFIG_CRYPTO_DEV_JH7110=m - -## ## file: drivers/cxl/Kconfig ## CONFIG_CXL_BUS=y @@ -120,6 +117,16 @@ CONFIG_INPUT_DA9063_ONKEY=m CONFIG_SUN50I_IOMMU=y ## +## file: drivers/leds/Kconfig +## +CONFIG_LEDS_PWM=m + +## +## file: drivers/leds/rgb/Kconfig +## +CONFIG_LEDS_PWM_MULTICOLOR=m + +## ## file: drivers/mailbox/Kconfig ## CONFIG_MAILBOX=y @@ -191,6 +198,13 @@ CONFIG_PCIE_FU740=y CONFIG_PHY_SUN4I_USB=m ## +## file: drivers/phy/starfive/Kconfig +## +CONFIG_PHY_STARFIVE_JH7110_DPHY_RX=m +CONFIG_PHY_STARFIVE_JH7110_PCIE=m +CONFIG_PHY_STARFIVE_JH7110_USB=m + +## ## file: drivers/power/reset/Kconfig ## CONFIG_POWER_RESET=y @@ -229,11 +243,6 @@ CONFIG_RTC_DRV_POLARFIRE_SOC=m CONFIG_POLARFIRE_SOC_SYS_CTRL=m ## -## file: drivers/soc/renesas/Kconfig -## -CONFIG_ARCH_R9A07G043=y - -## ## file: drivers/spi/Kconfig ## CONFIG_SPI_SIFIVE=m diff --git a/debian/config/riscv64/defines b/debian/config/riscv64/defines deleted file mode 100644 index 1d5a58b731..0000000000 --- a/debian/config/riscv64/defines +++ /dev/null @@ -1,15 +0,0 @@ -[base] -kernel-arch: riscv -featuresets: - none - -[build] -image-file: arch/riscv/boot/Image -vdso: true - -[image] -install-stem: vmlinux - -[riscv64_description] -hardware: 64-bit RISC-V platforms -hardware-long: 64-bit RISC-V platforms diff --git a/debian/config/riscv64/defines.toml b/debian/config/riscv64/defines.toml new file mode 100644 index 0000000000..56e2a27309 --- /dev/null +++ b/debian/config/riscv64/defines.toml @@ -0,0 +1,16 @@ +[[flavour]] +name = 'riscv64' +[flavour.defs] +is_default = true +[flavour.description] +hardware = '64-bit RISC-V platforms' +[flavour.packages] +installer = true + +[[featureset]] +name = 'none' + +[build] +enable_vdso = true +kernel_file = 'arch/riscv/boot/Image' +kernel_stem = 'vmlinux' diff --git a/debian/config/riscv64/none/defines b/debian/config/riscv64/none/defines deleted file mode 100644 index b91369dc0b..0000000000 --- a/debian/config/riscv64/none/defines +++ /dev/null @@ -1,7 +0,0 @@ -[base] -flavours: - riscv64 -default-flavour: riscv64 - -[riscv64_packages] -installer: true diff --git a/debian/config/s390x/config b/debian/config/s390x/config index 4d9ffb34ed..fe01c9f905 100644 --- a/debian/config/s390x/config +++ b/debian/config/s390x/config @@ -88,11 +88,6 @@ CONFIG_S390_PRNG=m # CONFIG_MEMSTICK is not set ## -## file: drivers/net/appletalk/Kconfig -## -# CONFIG_ATALK is not set - -## ## file: drivers/net/ppp/Kconfig ## # CONFIG_PPP is not set @@ -212,6 +207,11 @@ CONFIG_SPARSEMEM_MANUAL=y ## end choice ## +## file: net/appletalk/Kconfig +## +# CONFIG_ATALK is not set + +## ## file: net/atm/Kconfig ## # CONFIG_ATM is not set diff --git a/debian/config/s390x/defines b/debian/config/s390x/defines deleted file mode 100644 index 882c4e2b1f..0000000000 --- a/debian/config/s390x/defines +++ /dev/null @@ -1,19 +0,0 @@ -[base] -flavours: - s390x -default-flavour: s390x -kernel-arch: s390 - -[build] -image-file: arch/s390/boot/bzImage -vdso: true - -[image] -suggests: s390-tools -install-stem: vmlinuz - -[s390x_description] -hardware: IBM zSeries - -[s390x_packages] -installer: true diff --git a/debian/config/s390x/defines.toml b/debian/config/s390x/defines.toml new file mode 100644 index 0000000000..ca4bd5c5e1 --- /dev/null +++ b/debian/config/s390x/defines.toml @@ -0,0 +1,21 @@ +[[flavour]] +name = 's390x' +[flavour.defs] +is_default = true +[flavour.description] +hardware = 'IBM zSeries' +[flavour.packages] +installer = true + +[[featureset]] +name = 'none' + +[build] +enable_vdso = true +kernel_file = 'arch/s390/boot/bzImage' +kernel_stem = 'vmlinuz' + +[relations.image] +suggests = [ + 's390-tools', +] diff --git a/debian/config/sh4/defines b/debian/config/sh4/defines deleted file mode 100644 index 46f2633ec0..0000000000 --- a/debian/config/sh4/defines +++ /dev/null @@ -1,30 +0,0 @@ -[base] -flavours: - sh7751r - sh7785lcr -kernel-arch: sh - -[build] -image-file: arch/sh/boot/zImage - -[image] -install-stem: vmlinuz - -[sh7751r_description] -hardware: sh7751r -hardware-long: Renesas SH7751R R2D plus board - -[sh7751r_packages] -installer: true - -[sh7785lcr_description] -hardware: sh7785lcr -hardware-long: Renesas SH7785 reference board - -[sh7785lcr_image] -recommends: u-boot-tools -# Kernel partition size: 4MB -check-size: 4194304 - -[sh7785lcr_packages] -installer: true diff --git a/debian/config/sh4/defines.toml b/debian/config/sh4/defines.toml new file mode 100644 index 0000000000..cf13488dce --- /dev/null +++ b/debian/config/sh4/defines.toml @@ -0,0 +1,24 @@ +[[flavour]] +name = 'sh7751r' +[flavour.description] +hardware = 'sh7751r' +hardware_long = 'Renesas SH7751R R2D plus board' +[flavour.packages] +installer = true + +[[flavour]] +name = 'sh7785lcr' +[flavour.description] +hardware = 'sh7785lcr' +hardware_long = 'Renesas SH7785 reference board' +[flavour.packages] +installer = true +[flavour.relations.image] +recommends = ['u-boot-tools'] + +[[featureset]] +name = 'none' + +[build] +kernel_file = 'arch/sh/boot/zImage' +kernel_stem = 'vmlinuz' diff --git a/debian/config/sparc64/defines b/debian/config/sparc64/defines deleted file mode 100644 index a663ddf147..0000000000 --- a/debian/config/sparc64/defines +++ /dev/null @@ -1,29 +0,0 @@ -[base] -flavours: - sparc64 - sparc64-smp -default-flavour: sparc64-smp -kernel-arch: sparc - -[build] -image-file: vmlinux - -[image] -configs: -suggests: fdutils, grub-ieee1275 -install-stem: vmlinux - -[sparc64_description] -hardware: uniprocessor 64-bit UltraSPARC - -[sparc64_image] -configs: kernelarch-sparc/config-up - -[sparc64_packages] -installer: true - -[sparc64-smp_description] -hardware: multiprocessor 64-bit UltraSPARC - -[sparc64-smp_image] -configs: kernelarch-sparc/config-smp diff --git a/debian/config/sparc64/defines.toml b/debian/config/sparc64/defines.toml new file mode 100644 index 0000000000..b3969e82a8 --- /dev/null +++ b/debian/config/sparc64/defines.toml @@ -0,0 +1,34 @@ +[[flavour]] +name = 'sparc64' +[flavour.build] +config = [ + 'kernelarch-sparc/config-up', +] +[flavour.description] +hardware = 'uniprocessor 64-bit UltraSPARC' +[flavour.packages] +installer = true + +[[flavour]] +name = 'sparc64-smp' +[flavour.build] +config = [ + 'kernelarch-sparc/config-smp', +] +[flavour.defs] +is_default = true +[flavour.description] +hardware = 'multiprocessor 64-bit UltraSPARC' + +[[featureset]] +name = 'none' + +[build] +kernel_file = 'vmlinux' +kernel_stem = 'vmlinux' + +[relations.image] +suggests = [ + 'fdutils', + 'grub-ieee1275', +] diff --git a/debian/config/x32/defines b/debian/config/x32/defines deleted file mode 100644 index 0a19846d48..0000000000 --- a/debian/config/x32/defines +++ /dev/null @@ -1,4 +0,0 @@ -[base] -kernel-arch: x86 -featuresets: -# empty; x32 must be part of a multiarch installation with an amd64 kernel diff --git a/debian/control b/debian/control index d978156342..ab3dca3e2c 100644 --- a/debian/control +++ b/debian/control @@ -4,57 +4,57 @@ Priority: optional Maintainer: Debian Kernel Team <debian-kernel@lists.debian.org> Uploaders: Bastian Blank <waldi@debian.org>, maximilian attems <maks@debian.org>, Ben Hutchings <benh@debian.org>, Salvatore Bonaccorso <carnil@debian.org> Standards-Version: 4.2.0 -Build-Depends: debhelper-compat (= 12), dh-exec, python3:native, python3-jinja2:native, quilt, cpio <!pkg.linux.nokernel>, xz-utils <!pkg.linux.nokernel !pkg.linux.nosource>, dh-python <!pkg.linux.notools>, bison <!pkg.linux.nokernel>, flex (>= 2.6.1-1.1~) <!pkg.linux.nokernel> -Build-Depends-Arch: bc <!pkg.linux.nokernel>, libssl-dev:native <!pkg.linux.nokernel>, libssl-dev <!pkg.linux.notools>, openssl (>= 1.1.0-1~) <!pkg.linux.nokernel>, libelf-dev:native <!pkg.linux.nokernel>, libelf-dev [linux-any] <!pkg.linux.notools>, lz4 [amd64 arm64] <!pkg.linux.nokernel>, pahole <!pkg.linux.nokernel> | dwarves:native (>= 1.16~) <!pkg.linux.nokernel>, gcc-13 [alpha amd64 arm64 armel armhf hppa i386 m68k mips mips64 mips64el mips64r6el mipsel powerpc ppc64 ppc64el riscv64 s390x sh4 sparc64] <!cross !pkg.linux.nokernel>, gcc-13-alpha-linux-gnu [alpha] <cross !pkg.linux.nokernel>, gcc-13-x86-64-linux-gnu [amd64] <cross !pkg.linux.nokernel>, gcc-13-aarch64-linux-gnu [arm64] <cross !pkg.linux.nokernel>, gcc-arm-linux-gnueabihf [arm64] <!pkg.linux.nokernel>, gcc-13-arm-linux-gnueabi [armel] <cross !pkg.linux.nokernel>, gcc-13-arm-linux-gnueabihf [armhf] <cross !pkg.linux.nokernel>, gcc-13-hppa-linux-gnu [hppa] <cross !pkg.linux.nokernel>, gcc-13-hppa64-linux-gnu [hppa] <!pkg.linux.nokernel>, gcc-hppa-linux-gnu [hppa] <!pkg.linux.nokernel>, gcc-13-i686-linux-gnu [i386] <cross !pkg.linux.nokernel>, gcc-12 [ia64] <!cross !pkg.linux.nokernel>, gcc-12-ia64-linux-gnu [ia64] <cross !pkg.linux.nokernel>, gcc-13-m68k-linux-gnu [m68k] <cross !pkg.linux.nokernel>, gcc-13-mips-linux-gnu [mips] <cross !pkg.linux.nokernel>, gcc-13-mips64-linux-gnuabi64 [mips64] <cross !pkg.linux.nokernel>, gcc-13-mips64el-linux-gnuabi64 [mips64el] <cross !pkg.linux.nokernel>, gcc-13-mipsisa64r6el-linux-gnuabi64 [mips64r6el] <cross !pkg.linux.nokernel>, gcc-13-mipsel-linux-gnu [mipsel] <cross !pkg.linux.nokernel>, gcc-13-powerpc-linux-gnu [powerpc] <cross !pkg.linux.nokernel>, gcc-13-powerpc64-linux-gnu [ppc64] <cross !pkg.linux.nokernel>, gcc-13-powerpc64le-linux-gnu [ppc64el] <cross !pkg.linux.nokernel>, gcc-13-riscv64-linux-gnu [riscv64] <cross !pkg.linux.nokernel>, gcc-13-s390x-linux-gnu [s390x] <cross !pkg.linux.nokernel>, gcc-13-sh4-linux-gnu [sh4] <cross !pkg.linux.nokernel>, gcc-13-sparc64-linux-gnu [sparc64] <cross !pkg.linux.nokernel>, python3-docutils [amd64 arm64 armhf i386 linux-any x32] <!nodoc !pkg.linux.notools> <!pkg.linux.mintools !pkg.linux.notools>, binutils-dev [hppa] <!pkg.linux.mintools !pkg.linux.notools>, zlib1g-dev [linux-any] <!pkg.linux.mintools !pkg.linux.notools>, libcap-dev [linux-any] <!pkg.linux.mintools !pkg.linux.notools>, libpci-dev [linux-any] <!pkg.linux.mintools !pkg.linux.notools>, asciidoctor [alpha amd64 arm64 armel armhf hppa i386 mips mips64 mips64el mips64r6 mips64r6el mipsel mipsn32 mipsn32el mipsn32r6 mipsn32r6el mipsr6 mipsr6el powerpc ppc64 ppc64el riscv64 s390 s390x sh4 sparc sparc64] <!nodoc !nopython !pkg.linux.notools>, gcc-multilib [amd64 mips64 mips64el mips64r6 mips64r6el ppc64 s390x sparc64] <!nopython !pkg.linux.mintools !pkg.linux.notools>, libaudit-dev [alpha amd64 arm64 armel armhf hppa i386 mips mips64 mips64el mips64r6 mips64r6el mipsel mipsn32 mipsn32el mipsn32r6 mipsn32r6el mipsr6 mipsr6el powerpc ppc64 ppc64el riscv64 s390 s390x sh4 sparc sparc64] <!nopython !pkg.linux.mintools !pkg.linux.notools>, libbabeltrace-dev [alpha amd64 arm64 armel armhf hppa i386 mips mips64 mips64el mips64r6 mips64r6el mipsel mipsn32 mipsn32el mipsn32r6 mipsn32r6el mipsr6 mipsr6el powerpc ppc64 ppc64el riscv64 s390 s390x sh4 sparc sparc64] <!nopython !pkg.linux.mintools !pkg.linux.notools>, libdw-dev [alpha amd64 arm64 armel armhf hppa i386 mips mips64 mips64el mips64r6 mips64r6el mipsel mipsn32 mipsn32el mipsn32r6 mipsn32r6el mipsr6 mipsr6el powerpc ppc64 ppc64el riscv64 s390 s390x sh4 sparc sparc64] <!nopython !pkg.linux.mintools !pkg.linux.notools>, libnewt-dev [alpha amd64 arm64 armel armhf hppa i386 mips mips64 mips64el mips64r6 mips64r6el mipsel mipsn32 mipsn32el mipsn32r6 mipsn32r6el mipsr6 mipsr6el powerpc ppc64 ppc64el riscv64 s390 s390x sh4 sparc sparc64] <!nopython !pkg.linux.mintools !pkg.linux.notools>, libnuma-dev [alpha amd64 arm64 armel armhf hppa i386 mips mips64 mips64el mips64r6 mips64r6el mipsel mipsn32 mipsn32el mipsn32r6 mipsn32r6el mipsr6 mipsr6el powerpc ppc64 ppc64el riscv64 s390 s390x sh4 sparc sparc64] <!nopython !pkg.linux.mintools !pkg.linux.notools>, libopencsd-dev (>= 1.1.1) [alpha amd64 arm64 armel armhf hppa i386 mips mips64 mips64el mips64r6 mips64r6el mipsel mipsn32 mipsn32el mipsn32r6 mipsn32r6el mipsr6 mipsr6el powerpc ppc64 ppc64el riscv64 s390 s390x sh4 sparc sparc64] <!nopython !pkg.linux.mintools !pkg.linux.notools>, libperl-dev [alpha amd64 arm64 armel armhf hppa i386 mips mips64 mips64el mips64r6 mips64r6el mipsel mipsn32 mipsn32el mipsn32r6 mipsn32r6el mipsr6 mipsr6el powerpc ppc64 ppc64el riscv64 s390 s390x sh4 sparc sparc64] <!nopython !pkg.linux.mintools !pkg.linux.notools>, libpython3-dev [alpha amd64 arm64 armel armhf hppa i386 mips mips64 mips64el mips64r6 mips64r6el mipsel mipsn32 mipsn32el mipsn32r6 mipsn32r6el mipsr6 mipsr6el powerpc ppc64 ppc64el riscv64 s390 s390x sh4 sparc sparc64] <!nopython !pkg.linux.mintools !pkg.linux.notools>, libtraceevent-dev (>= 1:1.5) [alpha amd64 arm64 armel armhf hppa i386 mips mips64 mips64el mips64r6 mips64r6el mipsel mipsn32 mipsn32el mipsn32r6 mipsn32r6el mipsr6 mipsr6el powerpc ppc64 ppc64el riscv64 s390 s390x sh4 sparc sparc64 x32] <!pkg.linux.mintools !pkg.linux.notools>, libunwind-dev [amd64 arm64 armel armhf hppa i386 mips mips64 mips64el mipsel powerpc ppc64 ppc64el sh4] <!nopython !pkg.linux.mintools !pkg.linux.notools>, libzstd-dev [alpha amd64 arm64 armel armhf hppa i386 mips mips64 mips64el mips64r6 mips64r6el mipsel mipsn32 mipsn32el mipsn32r6 mipsn32r6el mipsr6 mipsr6el powerpc ppc64 ppc64el riscv64 s390 s390x sh4 sparc sparc64] <!nopython !pkg.linux.mintools !pkg.linux.notools>, python3-dev:any [alpha amd64 arm64 armel armhf hppa i386 mips mips64 mips64el mips64r6 mips64r6el mipsel mipsn32 mipsn32el mipsn32r6 mipsn32r6el mipsr6 mipsr6el powerpc ppc64 ppc64el riscv64 s390 s390x sh4 sparc sparc64] <!nopython !pkg.linux.mintools !pkg.linux.notools>, python3-setuptools [alpha amd64 arm64 armel armhf hppa i386 mips mips64 mips64el mips64r6 mips64r6el mipsel mipsn32 mipsn32el mipsn32r6 mipsn32r6el mipsr6 mipsr6el powerpc ppc64 ppc64el riscv64 s390 s390x sh4 sparc sparc64] <!nopython !pkg.linux.mintools !pkg.linux.notools>, autoconf [linux-any] <!pkg.linux.mintools !pkg.linux.notools>, automake [linux-any] <!pkg.linux.mintools !pkg.linux.notools>, libtool [linux-any] <!pkg.linux.mintools !pkg.linux.notools>, libglib2.0-dev [linux-any] <!pkg.linux.mintools !pkg.linux.notools>, libudev-dev [linux-any] <!pkg.linux.mintools !pkg.linux.notools>, libwrap0-dev [linux-any] <!pkg.linux.mintools !pkg.linux.notools>, rsync [linux-any] <!pkg.linux.mintools !pkg.linux.notools>, libtracefs-dev (>= 1.3) [amd64 arm64 armhf i386 x32] <!pkg.linux.mintools !pkg.linux.notools>, kernel-wedge (>= 2.105~) [alpha amd64 arm64 armel armhf hppa i386 ia64 m68k mips mips64 mips64el mips64r6el mipsel powerpc ppc64 ppc64el riscv64 s390x sh4 sparc64] <!pkg.linux.nokernel>, kmod [alpha amd64 arm64 armel armhf hppa i386 ia64 m68k mips mips64 mips64el mips64r6el mipsel powerpc ppc64 ppc64el riscv64 s390x sh4 sparc64] <!pkg.linux.nokernel> +Build-Depends: debhelper-compat (= 12), dh-exec, python3:native, python3-dacite:native, python3-jinja2:native, quilt, cpio <!pkg.linux.nokernel>, xz-utils <!pkg.linux.nokernel !pkg.linux.nosource>, dh-python <!pkg.linux.notools>, bison <!pkg.linux.nokernel>, flex (>= 2.6.1-1.1~) <!pkg.linux.nokernel> +Build-Depends-Arch: bc <!pkg.linux.nokernel>, libssl-dev:native <!pkg.linux.nokernel>, libssl-dev <!pkg.linux.notools>, openssl (>= 1.1.0-1~) <!pkg.linux.nokernel>, libelf-dev:native <!pkg.linux.nokernel>, libelf-dev [linux-any] <!pkg.linux.notools>, lz4 [amd64 arm64] <!pkg.linux.nokernel>, pahole <!pkg.linux.nokernel> | dwarves:native (>= 1.16~) <!pkg.linux.nokernel>, gcc-13 [alpha amd64 arm64 armel armhf hppa i386 loong64 m68k mips mips64 mips64el mips64r6el mipsel powerpc ppc64 ppc64el riscv64 s390x sh4 sparc64] <!cross !pkg.linux.nokernel>, gcc-13-alpha-linux-gnu [alpha] <cross !pkg.linux.nokernel>, gcc-13-x86-64-linux-gnu [amd64] <cross !pkg.linux.nokernel>, gcc-13-aarch64-linux-gnu [arm64] <cross !pkg.linux.nokernel>, gcc-arm-linux-gnueabihf [arm64] <!pkg.linux.nokernel>, gcc-13-arm-linux-gnueabi [armel] <cross !pkg.linux.nokernel>, gcc-13-arm-linux-gnueabihf [armhf] <cross !pkg.linux.nokernel>, gcc-13-hppa-linux-gnu [hppa] <cross !pkg.linux.nokernel>, gcc-13-hppa64-linux-gnu [hppa] <!pkg.linux.nokernel>, gcc-13-i686-linux-gnu [i386] <cross !pkg.linux.nokernel>, gcc-13-loongarch64-linux-gnu [loong64] <cross !pkg.linux.nokernel>, gcc-13-m68k-linux-gnu [m68k] <cross !pkg.linux.nokernel>, gcc-13-mips-linux-gnu [mips] <cross !pkg.linux.nokernel>, gcc-13-mips64-linux-gnuabi64 [mips64] <cross !pkg.linux.nokernel>, gcc-13-mips64el-linux-gnuabi64 [mips64el] <cross !pkg.linux.nokernel>, gcc-13-mipsisa64r6el-linux-gnuabi64 [mips64r6el] <cross !pkg.linux.nokernel>, gcc-13-mipsel-linux-gnu [mipsel] <cross !pkg.linux.nokernel>, gcc-13-powerpc-linux-gnu [powerpc] <cross !pkg.linux.nokernel>, gcc-13-powerpc64-linux-gnu [ppc64] <cross !pkg.linux.nokernel>, gcc-13-powerpc64le-linux-gnu [ppc64el] <cross !pkg.linux.nokernel>, gcc-13-riscv64-linux-gnu [riscv64] <cross !pkg.linux.nokernel>, gcc-13-s390x-linux-gnu [s390x] <cross !pkg.linux.nokernel>, gcc-13-sh4-linux-gnu [sh4] <cross !pkg.linux.nokernel>, gcc-13-sparc64-linux-gnu [sparc64] <cross !pkg.linux.nokernel>, python3-docutils [amd64 arm64 armhf i386 linux-any x32] <!nodoc !pkg.linux.notools> <!pkg.linux.mintools !pkg.linux.notools>, binutils-dev [hppa] <!pkg.linux.mintools !pkg.linux.notools>, zlib1g-dev [linux-any] <!pkg.linux.mintools !pkg.linux.notools>, libcap-dev [linux-any] <!pkg.linux.mintools !pkg.linux.notools>, libpci-dev [linux-any] <!pkg.linux.mintools !pkg.linux.notools>, asciidoctor [alpha amd64 arm64 armel armhf hppa i386 loong64 mips mips64 mips64el mips64r6 mips64r6el mipsel mipsn32 mipsn32el mipsn32r6 mipsn32r6el mipsr6 mipsr6el powerpc ppc64 ppc64el riscv64 s390 s390x sh4 sparc sparc64] <!nodoc !nopython !pkg.linux.notools>, gcc-multilib [amd64 mips64 mips64el mips64r6 mips64r6el ppc64 s390x sparc64] <!cross>, libaudit-dev [alpha amd64 arm64 armel armhf hppa i386 loong64 mips mips64 mips64el mips64r6 mips64r6el mipsel mipsn32 mipsn32el mipsn32r6 mipsn32r6el mipsr6 mipsr6el powerpc ppc64 ppc64el riscv64 s390 s390x sh4 sparc sparc64] <!nopython !pkg.linux.mintools !pkg.linux.notools>, libbabeltrace-dev [alpha amd64 arm64 armel armhf hppa i386 loong64 mips mips64 mips64el mips64r6 mips64r6el mipsel mipsn32 mipsn32el mipsn32r6 mipsn32r6el mipsr6 mipsr6el powerpc ppc64 ppc64el riscv64 s390 s390x sh4 sparc sparc64] <!nopython !pkg.linux.mintools !pkg.linux.notools>, libdw-dev [alpha amd64 arm64 armel armhf hppa i386 loong64 mips mips64 mips64el mips64r6 mips64r6el mipsel mipsn32 mipsn32el mipsn32r6 mipsn32r6el mipsr6 mipsr6el powerpc ppc64 ppc64el riscv64 s390 s390x sh4 sparc sparc64] <!nopython !pkg.linux.mintools !pkg.linux.notools>, libnewt-dev [alpha amd64 arm64 armel armhf hppa i386 loong64 mips mips64 mips64el mips64r6 mips64r6el mipsel mipsn32 mipsn32el mipsn32r6 mipsn32r6el mipsr6 mipsr6el powerpc ppc64 ppc64el riscv64 s390 s390x sh4 sparc sparc64] <!nopython !pkg.linux.mintools !pkg.linux.notools>, libnuma-dev [alpha amd64 arm64 armel armhf hppa i386 loong64 mips mips64 mips64el mips64r6 mips64r6el mipsel mipsn32 mipsn32el mipsn32r6 mipsn32r6el mipsr6 mipsr6el powerpc ppc64 ppc64el riscv64 s390 s390x sh4 sparc sparc64] <!nopython !pkg.linux.mintools !pkg.linux.notools>, libopencsd-dev (>= 1.1.1) [alpha amd64 arm64 armel armhf hppa i386 loong64 mips mips64 mips64el mips64r6 mips64r6el mipsel mipsn32 mipsn32el mipsn32r6 mipsn32r6el mipsr6 mipsr6el powerpc ppc64 ppc64el riscv64 s390 s390x sh4 sparc sparc64] <!nopython !pkg.linux.mintools !pkg.linux.notools>, libperl-dev [alpha amd64 arm64 armel armhf hppa i386 loong64 mips mips64 mips64el mips64r6 mips64r6el mipsel mipsn32 mipsn32el mipsn32r6 mipsn32r6el mipsr6 mipsr6el powerpc ppc64 ppc64el riscv64 s390 s390x sh4 sparc sparc64] <!nopython !pkg.linux.mintools !pkg.linux.notools>, libpython3-dev [alpha amd64 arm64 armel armhf hppa i386 loong64 mips mips64 mips64el mips64r6 mips64r6el mipsel mipsn32 mipsn32el mipsn32r6 mipsn32r6el mipsr6 mipsr6el powerpc ppc64 ppc64el riscv64 s390 s390x sh4 sparc sparc64] <!nopython !pkg.linux.mintools !pkg.linux.notools>, libtraceevent-dev (>= 1:1.5) [alpha amd64 arm64 armel armhf hppa i386 loong64 mips mips64 mips64el mips64r6 mips64r6el mipsel mipsn32 mipsn32el mipsn32r6 mipsn32r6el mipsr6 mipsr6el powerpc ppc64 ppc64el riscv64 s390 s390x sh4 sparc sparc64 x32] <!pkg.linux.mintools !pkg.linux.notools>, libunwind-dev [amd64 arm64 armel armhf hppa i386 mips mips64 mips64el mipsel powerpc ppc64 ppc64el sh4] <!nopython !pkg.linux.mintools !pkg.linux.notools>, libzstd-dev [alpha amd64 arm64 armel armhf hppa i386 loong64 mips mips64 mips64el mips64r6 mips64r6el mipsel mipsn32 mipsn32el mipsn32r6 mipsn32r6el mipsr6 mipsr6el powerpc ppc64 ppc64el riscv64 s390 s390x sh4 sparc sparc64] <!nopython !pkg.linux.mintools !pkg.linux.notools>, python3-dev:any [alpha amd64 arm64 armel armhf hppa i386 loong64 mips mips64 mips64el mips64r6 mips64r6el mipsel mipsn32 mipsn32el mipsn32r6 mipsn32r6el mipsr6 mipsr6el powerpc ppc64 ppc64el riscv64 s390 s390x sh4 sparc sparc64] <!nopython !pkg.linux.mintools !pkg.linux.notools>, python3-setuptools [alpha amd64 arm64 armel armhf hppa i386 loong64 mips mips64 mips64el mips64r6 mips64r6el mipsel mipsn32 mipsn32el mipsn32r6 mipsn32r6el mipsr6 mipsr6el powerpc ppc64 ppc64el riscv64 s390 s390x sh4 sparc sparc64] <!nopython !pkg.linux.mintools !pkg.linux.notools>, autoconf [linux-any] <!pkg.linux.mintools !pkg.linux.notools>, automake [linux-any] <!pkg.linux.mintools !pkg.linux.notools>, libtool [linux-any] <!pkg.linux.mintools !pkg.linux.notools>, libglib2.0-dev [linux-any] <!pkg.linux.mintools !pkg.linux.notools>, libudev-dev [linux-any] <!pkg.linux.mintools !pkg.linux.notools>, libwrap0-dev [linux-any] <!pkg.linux.mintools !pkg.linux.notools>, rsync [linux-any] <!pkg.linux.mintools !pkg.linux.notools>, libtracefs-dev (>= 1.3) [amd64 arm64 armhf i386 x32] <!pkg.linux.mintools !pkg.linux.notools>, kernel-wedge (>= 2.105~) [alpha amd64 arm64 armel armhf hppa i386 loong64 m68k mips mips64 mips64el mips64r6el mipsel powerpc ppc64 ppc64el riscv64 s390x sh4 sparc64] <!pkg.linux.nokernel>, kmod [alpha amd64 arm64 armel armhf hppa i386 loong64 m68k mips mips64 mips64el mips64r6el mipsel powerpc ppc64 ppc64el riscv64 s390x sh4 sparc64] <!pkg.linux.nokernel> Build-Depends-Indep: graphviz <!nodoc !pkg.linux.quick>, python3-sphinx <!nodoc !pkg.linux.quick>, python3-sphinx-rtd-theme <!nodoc !pkg.linux.quick>, texlive-latex-base <!nodoc !pkg.linux.quick>, texlive-latex-extra <!nodoc !pkg.linux.quick>, dvipng <!nodoc !pkg.linux.quick>, patchutils <!pkg.linux.nosource !pkg.linux.quick>, rsync Rules-Requires-Root: no Homepage: https://www.kernel.org/ Vcs-Browser: https://salsa.debian.org/kernel-team/linux Vcs-Git: https://salsa.debian.org/kernel-team/linux.git -Package: linux-support-6.6.15 +Package: linux-support-6.7.7 Architecture: all Section: devel Build-Profiles: <!pkg.linux.notools> Depends: ${python3:Depends}, python3-jinja2, ${misc:Depends} Multi-Arch: foreign -Description: Support files for Linux 6.6 +Description: Support files for Linux 6.7 This package provides support files for the Linux kernel build, e.g. scripts to handle ABI information and for generation of build system meta data. -Package: linux-doc-6.6 +Package: linux-doc-6.7 Architecture: all Section: doc Build-Profiles: <!nodoc !pkg.linux.quick> Depends: ${misc:Depends} Multi-Arch: foreign -Description: Linux kernel specific documentation for version 6.6 +Description: Linux kernel specific documentation for version 6.7 This package provides the various README files and HTML documentation for - the Linux kernel version 6.6. Plenty of information, including the + the Linux kernel version 6.7. Plenty of information, including the descriptions of various kernel subsystems, filesystems, driver-specific notes and the like. An index to the documentation is installed as - /usr/share/doc/linux-doc-6.6/html/index.html. + /usr/share/doc/linux-doc-6.7/html/index.html. Package: linux-doc Architecture: all Section: doc Build-Profiles: <!nodoc !pkg.linux.nometa !pkg.linux.quick> -Depends: linux-doc-6.6 (= ${binary:Version}), ${misc:Depends} +Depends: linux-doc-6.7 (= ${binary:Version}), ${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-source-6.6 +Package: linux-source-6.7 Architecture: all Section: kernel Build-Profiles: <!pkg.linux.nosource !pkg.linux.quick> Depends: binutils, xz-utils, ${misc:Depends} -Recommends: build-essential, bc, rsync, kmod, cpio, bison, flex, libelf-dev, libssl-dev, linux-config-6.6 +Recommends: build-essential, bc, rsync, kmod, cpio, bison, flex, libelf-dev, libssl-dev, linux-config-6.7 Suggests: libncurses-dev | ncurses-dev, qtbase5-dev, pkg-config Multi-Arch: foreign -Description: Linux kernel source for version 6.6 with Debian patches - This package provides source code for the Linux kernel version 6.6. This +Description: Linux kernel source for version 6.7 with Debian patches + This package provides source code for the Linux kernel version 6.7. This source closely tracks official Linux kernel releases. Debian's modifications to that source consist of security fixes, bug fixes, and features that have already been (or are believed to be) accepted by the @@ -63,7 +63,7 @@ Description: Linux kernel source for version 6.6 with Debian patches Package: linux-source Architecture: all Build-Profiles: <!pkg.linux.nometa !pkg.linux.nosource !pkg.linux.quick> -Depends: linux-source-6.6 (= ${binary:Version}), ${misc:Depends} +Depends: linux-source-6.7 (= ${binary:Version}), ${misc:Depends} Description: Linux kernel source (meta-package) This package depends on packages containing the sources of the latest Linux kernel. @@ -71,6 +71,7 @@ Description: Linux kernel source (meta-package) Package: linux-libc-dev Architecture: all Section: devel +Provides: linux-libc-dev-alpha-cross (= ${binary:Version}), linux-libc-dev-amd64-cross (= ${binary:Version}), linux-libc-dev-arm64-cross (= ${binary:Version}), linux-libc-dev-armel-cross (= ${binary:Version}), linux-libc-dev-armhf-cross (= ${binary:Version}), linux-libc-dev-hppa-cross (= ${binary:Version}), linux-libc-dev-i386-cross (= ${binary:Version}), linux-libc-dev-loong64-cross (= ${binary:Version}), linux-libc-dev-m68k-cross (= ${binary:Version}), linux-libc-dev-mips-cross (= ${binary:Version}), linux-libc-dev-mips64-cross (= ${binary:Version}), linux-libc-dev-mips64el-cross (= ${binary:Version}), linux-libc-dev-mips64r6el-cross (= ${binary:Version}), linux-libc-dev-mipsel-cross (= ${binary:Version}), linux-libc-dev-powerpc-cross (= ${binary:Version}), linux-libc-dev-ppc64-cross (= ${binary:Version}), linux-libc-dev-ppc64el-cross (= ${binary:Version}), linux-libc-dev-riscv64-cross (= ${binary:Version}), linux-libc-dev-s390x-cross (= ${binary:Version}), linux-libc-dev-sh4-cross (= ${binary:Version}), linux-libc-dev-sparc64-cross (= ${binary:Version}), linux-libc-dev-x32-cross (= ${binary:Version}) Depends: ${misc:Depends} Multi-Arch: foreign Description: Linux support headers for userspace development @@ -78,43 +79,43 @@ Description: Linux support headers for userspace development files are going to be installed into /usr/include, and are used by the installed headers for GNU libc and other system libraries. -Package: linux-headers-6.6.15-common +Package: linux-headers-6.7.7-common Architecture: all Build-Profiles: <!pkg.linux.nokernel> Depends: ${misc:Depends} Multi-Arch: foreign -Description: Common header files for Linux 6.6.15 +Description: Common header files for Linux 6.7.7 This package provides the common kernel header files for Linux kernel - version 6.6.15, generally used for building out-of-tree kernel modules. + version 6.7.7, generally used for building out-of-tree kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-common. + /usr/src/linux-headers-6.7.7-common. . To obtain a complete set of headers you also need to install the - linux-headers-6.6.15-(flavour) package, matching the flavour of the kernel + linux-headers-6.7.7-(flavour) package, matching the flavour of the kernel you intend the build for. -Package: linux-headers-6.6.15-common-rt +Package: linux-headers-6.7.7-common-rt Architecture: all Build-Profiles: <!pkg.linux.nokernel> Depends: ${misc:Depends} Multi-Arch: foreign -Description: Common header files for Linux 6.6.15-rt +Description: Common header files for Linux 6.7.7-rt This package provides the common kernel header files for Linux kernel - version 6.6.15 with the PREEMPT_RT featureset, generally used for building + version 6.7.7 with the PREEMPT_RT featureset, generally used for building out-of-tree kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-common-rt. + /usr/src/linux-headers-6.7.7-common-rt. . To obtain a complete set of headers you also need to install the - linux-headers-6.6.15-(flavour) package, matching the flavour of the kernel + linux-headers-6.7.7-(flavour) package, matching the flavour of the kernel you intend the build for. -Package: linux-config-6.6 +Package: linux-config-6.7 Architecture: linux-any Build-Profiles: <!pkg.linux.nosource> Depends: ${misc:Depends} -Recommends: linux-source-6.6 +Recommends: linux-source-6.7 Multi-Arch: same -Description: Debian kernel configurations for Linux 6.6 +Description: Debian kernel configurations for Linux 6.7 This package contains the configuration files used to build the official Debian kernel files, but without references to Debian's signing certificates. @@ -168,14 +169,14 @@ Description: CPU frequency and voltage scaling tools for Linux (development file This package is needed to compile programs against libcpupower. Package: linux-perf -Architecture: alpha amd64 arm64 armel armhf hppa i386 mips mips64 mips64el mips64r6 mips64r6el mipsel mipsn32 mipsn32el mipsn32r6 mipsn32r6el mipsr6 mipsr6el powerpc ppc64 ppc64el riscv64 s390 s390x sh4 sparc sparc64 +Architecture: alpha amd64 arm64 armel armhf hppa i386 loong64 mips mips64 mips64el mips64r6 mips64r6el mipsel mipsn32 mipsn32el mipsn32r6 mipsn32r6el mipsr6 mipsr6el powerpc ppc64 ppc64el riscv64 s390 s390x sh4 sparc sparc64 Section: devel Build-Profiles: <!nopython !pkg.linux.mintools !pkg.linux.notools> -Provides: linux-tools-6.6 +Provides: linux-tools-6.7 Depends: ${shlibs:Depends}, ${misc:Depends}, ${perl:Depends}, ${python3:Depends} -Suggests: linux-doc-6.6 -Replaces: linux-tools-6.6 -Conflicts: linux-tools-6.6 +Suggests: linux-doc-6.7 +Replaces: linux-tools-6.7 +Conflicts: linux-tools-6.7 Description: Performance analysis tools for Linux This package contains the 'perf' performance analysis tools for Linux. @@ -231,43 +232,43 @@ Description: Real-Time Linux Analysis tools Linux. rtla uses kernel tracing capabilities to provide precise information about the properties and root causes of unexpected results. -Package: linux-kbuild-6.6.15 +Package: linux-kbuild-6.7.7 Architecture: linux-any Build-Profiles: <!pkg.linux.notools> Depends: ${shlibs:Depends}, ${misc:Depends} Multi-Arch: foreign -Description: Kbuild infrastructure for Linux 6.6.15 +Description: Kbuild infrastructure for Linux 6.7.7 This package provides the kbuild infrastructure for the headers packages - for Linux kernel version 6.6. + for Linux kernel version 6.7. -Package: linux-headers-6.6.15-alpha-generic +Package: linux-headers-6.7.7-alpha-generic Architecture: alpha Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Depends: linux-headers-6.6.15-common (= ${source:Version}), linux-image-6.6.15-alpha-generic (= ${binary:Version}) | linux-image-6.6.15-alpha-generic-unsigned (= ${binary:Version}), linux-kbuild-6.6.15, ${misc:Depends}, gcc-13 -Description: Header files for Linux 6.6.15-alpha-generic +Depends: linux-headers-6.7.7-common (= ${source:Version}), linux-image-6.7.7-alpha-generic (= ${binary:Version}) | linux-image-6.7.7-alpha-generic-unsigned (= ${binary:Version}), linux-kbuild-6.7.7, ${misc:Depends}, gcc-13 +Description: Header files for Linux 6.7.7-alpha-generic This package provides the architecture-specific kernel header files for - Linux kernel 6.6.15-alpha-generic, generally used for building out-of-tree + Linux kernel 6.7.7-alpha-generic, generally used for building out-of-tree kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-alpha-generic, and can be used for building + /usr/src/linux-headers-6.7.7-alpha-generic, and can be used for building modules that load into the kernel provided by the - linux-image-6.6.15-alpha-generic package. + linux-image-6.7.7-alpha-generic package. -Package: linux-image-6.6.15-alpha-generic +Package: linux-image-6.7.7-alpha-generic Architecture: alpha Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [alpha] | linux-initramfs-tool [alpha] Recommends: firmware-linux-free, apparmor [alpha] -Suggests: linux-doc-6.6, debian-kernel-handbook, aboot [alpha], fdutils [alpha] +Suggests: linux-doc-6.7, debian-kernel-handbook, aboot [alpha], fdutils [alpha] Breaks: fwupdate (<< 12-7) [alpha], wireless-regdb (<< 2019.06.03-1~) [alpha], initramfs-tools (<< 0.120+deb8u2) [alpha] -Description: Linux 6.6 for Alpha - The Linux kernel 6.6 and modules for use on DEC Alpha systems with +Description: Linux 6.7 for Alpha + The Linux kernel 6.7 and modules for use on DEC Alpha systems with extended kernel start address (Wildfire, Titan, Marvel). Package: linux-image-alpha-generic Architecture: alpha Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Provides: linux-latest-modules-6.6.15-alpha-generic, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] -Depends: linux-image-6.6.15-alpha-generic (= ${binary:Version}), ${misc:Depends} +Provides: linux-latest-modules-6.7.7-alpha-generic, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] +Depends: linux-image-6.7.7-alpha-generic (= ${binary:Version}), ${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, @@ -276,546 +277,546 @@ Description: Linux for Alpha (meta-package) Package: linux-headers-alpha-generic Architecture: alpha Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Depends: linux-headers-6.6.15-alpha-generic (= ${binary:Version}), ${misc:Depends} +Depends: linux-headers-6.7.7-alpha-generic (= ${binary:Version}), ${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-6.6.15-alpha-generic-dbg +Package: linux-image-6.7.7-alpha-generic-dbg Architecture: alpha Section: debug Priority: optional Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.quick> Depends: ${misc:Depends} -Description: Debug symbols for linux-image-6.6.15-alpha-generic +Description: Debug symbols for linux-image-6.7.7-alpha-generic This package provides the detached debug symbols for the Linux kernel and - modules in linux-image-6.6.15-alpha-generic. + modules in linux-image-6.7.7-alpha-generic. Package: linux-image-alpha-generic-dbg Architecture: alpha Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.nometa !pkg.linux.quick> Provides: linux-latest-image-dbg -Depends: linux-image-6.6.15-alpha-generic-dbg (= ${binary:Version}), ${misc:Depends} +Depends: linux-image-6.7.7-alpha-generic-dbg (= ${binary:Version}), ${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: kernel-image-6.6.15-alpha-generic-di +Package: kernel-image-6.7.7-alpha-generic-di Package-Type: udeb Architecture: alpha Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: kernel-image -Kernel-Version: 6.6.15-alpha-generic +Kernel-Version: 6.7.7-alpha-generic Description: Linux kernel image and core modules for the Debian installer This package contains the kernel image and core modules for the Debian installer boot images. It does _not_ provide a usable kernel for your full Debian system. -Package: nic-modules-6.6.15-alpha-generic-di +Package: nic-modules-6.7.7-alpha-generic-di Package-Type: udeb Architecture: alpha Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-modules, nic-extra-modules -Depends: kernel-image-6.6.15-alpha-generic-di, nic-shared-modules-6.6.15-alpha-generic-di, i2c-modules-6.6.15-alpha-generic-di, crc-modules-6.6.15-alpha-generic-di -Kernel-Version: 6.6.15-alpha-generic +Depends: kernel-image-6.7.7-alpha-generic-di, nic-shared-modules-6.7.7-alpha-generic-di, i2c-modules-6.7.7-alpha-generic-di, crc-modules-6.7.7-alpha-generic-di +Kernel-Version: 6.7.7-alpha-generic Description: NIC drivers This package contains Ethernet and some paravirtualised network drivers for the kernel. -Package: nic-wireless-modules-6.6.15-alpha-generic-di +Package: nic-wireless-modules-6.7.7-alpha-generic-di Package-Type: udeb Architecture: alpha Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-wireless-modules -Depends: kernel-image-6.6.15-alpha-generic-di, nic-shared-modules-6.6.15-alpha-generic-di, usb-modules-6.6.15-alpha-generic-di, pcmcia-modules-6.6.15-alpha-generic-di, crc-modules-6.6.15-alpha-generic-di, crypto-modules-6.6.15-alpha-generic-di -Kernel-Version: 6.6.15-alpha-generic +Depends: kernel-image-6.7.7-alpha-generic-di, nic-shared-modules-6.7.7-alpha-generic-di, usb-modules-6.7.7-alpha-generic-di, pcmcia-modules-6.7.7-alpha-generic-di, crc-modules-6.7.7-alpha-generic-di, crypto-modules-6.7.7-alpha-generic-di +Kernel-Version: 6.7.7-alpha-generic Description: Wireless NIC drivers This package contains wireless NIC drivers for the kernel. Includes crypto modules only needed for wireless (WEP, WPA). -Package: nic-shared-modules-6.6.15-alpha-generic-di +Package: nic-shared-modules-6.7.7-alpha-generic-di Package-Type: udeb Architecture: alpha Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-shared-modules -Depends: kernel-image-6.6.15-alpha-generic-di, crc-modules-6.6.15-alpha-generic-di, i2c-modules-6.6.15-alpha-generic-di -Kernel-Version: 6.6.15-alpha-generic +Depends: kernel-image-6.7.7-alpha-generic-di, crc-modules-6.7.7-alpha-generic-di, i2c-modules-6.7.7-alpha-generic-di +Kernel-Version: 6.7.7-alpha-generic Description: Shared NIC drivers This package contains NIC drivers needed by combinations of nic-modules, nic-pcmcia-modules, nic-usb-modules and nic-wireless-modules. -Package: serial-modules-6.6.15-alpha-generic-di +Package: serial-modules-6.7.7-alpha-generic-di Package-Type: udeb Architecture: alpha Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: serial-modules -Depends: kernel-image-6.6.15-alpha-generic-di, pcmcia-modules-6.6.15-alpha-generic-di -Kernel-Version: 6.6.15-alpha-generic +Depends: kernel-image-6.7.7-alpha-generic-di, pcmcia-modules-6.7.7-alpha-generic-di +Kernel-Version: 6.7.7-alpha-generic Description: Serial drivers This package contains serial drivers for the kernel. -Package: usb-serial-modules-6.6.15-alpha-generic-di +Package: usb-serial-modules-6.7.7-alpha-generic-di Package-Type: udeb Architecture: alpha Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-serial-modules -Depends: kernel-image-6.6.15-alpha-generic-di, usb-modules-6.6.15-alpha-generic-di -Kernel-Version: 6.6.15-alpha-generic +Depends: kernel-image-6.7.7-alpha-generic-di, usb-modules-6.7.7-alpha-generic-di +Kernel-Version: 6.7.7-alpha-generic Description: USB serial drivers This package contains USB serial drivers for the kernel. -Package: ppp-modules-6.6.15-alpha-generic-di +Package: ppp-modules-6.7.7-alpha-generic-di Package-Type: udeb Architecture: alpha Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ppp-modules -Depends: kernel-image-6.6.15-alpha-generic-di, serial-modules-6.6.15-alpha-generic-di, crc-modules-6.6.15-alpha-generic-di -Kernel-Version: 6.6.15-alpha-generic +Depends: kernel-image-6.7.7-alpha-generic-di, serial-modules-6.7.7-alpha-generic-di, crc-modules-6.7.7-alpha-generic-di +Kernel-Version: 6.7.7-alpha-generic Description: PPP drivers This package contains PPP drivers for the kernel. -Package: pata-modules-6.6.15-alpha-generic-di +Package: pata-modules-6.7.7-alpha-generic-di Package-Type: udeb Architecture: alpha Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: pata-modules -Depends: kernel-image-6.6.15-alpha-generic-di, ata-modules-6.6.15-alpha-generic-di -Kernel-Version: 6.6.15-alpha-generic +Depends: kernel-image-6.7.7-alpha-generic-di, ata-modules-6.7.7-alpha-generic-di +Kernel-Version: 6.7.7-alpha-generic Description: PATA drivers This package contains PATA drivers for the kernel. -Package: cdrom-core-modules-6.6.15-alpha-generic-di +Package: cdrom-core-modules-6.7.7-alpha-generic-di Package-Type: udeb Architecture: alpha Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: cdrom-core-modules -Depends: kernel-image-6.6.15-alpha-generic-di, scsi-core-modules-6.6.15-alpha-generic-di -Kernel-Version: 6.6.15-alpha-generic +Depends: kernel-image-6.7.7-alpha-generic-di, scsi-core-modules-6.7.7-alpha-generic-di +Kernel-Version: 6.7.7-alpha-generic Description: CDROM support This package contains core CDROM support for the kernel. -Package: scsi-core-modules-6.6.15-alpha-generic-di +Package: scsi-core-modules-6.7.7-alpha-generic-di Package-Type: udeb Architecture: alpha Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-core-modules -Depends: kernel-image-6.6.15-alpha-generic-di, crc-modules-6.6.15-alpha-generic-di -Kernel-Version: 6.6.15-alpha-generic +Depends: kernel-image-6.7.7-alpha-generic-di, crc-modules-6.7.7-alpha-generic-di +Kernel-Version: 6.7.7-alpha-generic Description: Core SCSI subsystem This package contains the core SCSI subsystem for the kernel. -Package: scsi-modules-6.6.15-alpha-generic-di +Package: scsi-modules-6.7.7-alpha-generic-di Package-Type: udeb Architecture: alpha Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-modules -Depends: kernel-image-6.6.15-alpha-generic-di, scsi-core-modules-6.6.15-alpha-generic-di, cdrom-core-modules-6.6.15-alpha-generic-di, ata-modules-6.6.15-alpha-generic-di -Kernel-Version: 6.6.15-alpha-generic +Depends: kernel-image-6.7.7-alpha-generic-di, scsi-core-modules-6.7.7-alpha-generic-di, cdrom-core-modules-6.7.7-alpha-generic-di, ata-modules-6.7.7-alpha-generic-di +Kernel-Version: 6.7.7-alpha-generic Description: SCSI drivers This package contains SCSI drivers for the kernel. -Package: scsi-nic-modules-6.6.15-alpha-generic-di +Package: scsi-nic-modules-6.7.7-alpha-generic-di Package-Type: udeb Architecture: alpha Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-nic-modules -Depends: scsi-modules-6.6.15-alpha-generic-di, nic-modules-6.6.15-alpha-generic-di -Kernel-Version: 6.6.15-alpha-generic +Depends: scsi-modules-6.7.7-alpha-generic-di, nic-modules-6.7.7-alpha-generic-di +Kernel-Version: 6.7.7-alpha-generic Description: SCSI drivers for converged NICs This package contains SCSI drivers that depend on net drivers. -Package: loop-modules-6.6.15-alpha-generic-di +Package: loop-modules-6.7.7-alpha-generic-di Package-Type: udeb Architecture: alpha Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: loop-modules -Depends: kernel-image-6.6.15-alpha-generic-di -Kernel-Version: 6.6.15-alpha-generic +Depends: kernel-image-6.7.7-alpha-generic-di +Kernel-Version: 6.7.7-alpha-generic Description: Loopback filesystem support This package contains loopback filesystem support for the kernel. -Package: btrfs-modules-6.6.15-alpha-generic-di +Package: btrfs-modules-6.7.7-alpha-generic-di Package-Type: udeb Architecture: alpha Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: btrfs-modules -Depends: kernel-image-6.6.15-alpha-generic-di, crc-modules-6.6.15-alpha-generic-di, md-modules-6.6.15-alpha-generic-di -Kernel-Version: 6.6.15-alpha-generic +Depends: kernel-image-6.7.7-alpha-generic-di, crc-modules-6.7.7-alpha-generic-di, md-modules-6.7.7-alpha-generic-di +Kernel-Version: 6.7.7-alpha-generic Description: BTRFS filesystem support This package contains the BTRFS filesystem module for the kernel. -Package: ext4-modules-6.6.15-alpha-generic-di +Package: ext4-modules-6.7.7-alpha-generic-di Package-Type: udeb Architecture: alpha Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ext4-modules, ext2-modules, ext3-modules -Depends: kernel-image-6.6.15-alpha-generic-di, crc-modules-6.6.15-alpha-generic-di -Kernel-Version: 6.6.15-alpha-generic +Depends: kernel-image-6.7.7-alpha-generic-di, crc-modules-6.7.7-alpha-generic-di +Kernel-Version: 6.7.7-alpha-generic Description: ext2/ext3/ext4 filesystem support This package contains the ext4 filesystem module for the kernel, which also supports ext2 and ext3. -Package: isofs-modules-6.6.15-alpha-generic-di +Package: isofs-modules-6.7.7-alpha-generic-di Package-Type: udeb Architecture: alpha Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: isofs-modules -Depends: kernel-image-6.6.15-alpha-generic-di, cdrom-core-modules-6.6.15-alpha-generic-di -Kernel-Version: 6.6.15-alpha-generic +Depends: kernel-image-6.7.7-alpha-generic-di, cdrom-core-modules-6.7.7-alpha-generic-di +Kernel-Version: 6.7.7-alpha-generic Description: ISOFS filesystem support This package contains the ISOFS filesystem module for the kernel. -Package: jfs-modules-6.6.15-alpha-generic-di +Package: jfs-modules-6.7.7-alpha-generic-di Package-Type: udeb Architecture: alpha Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: jfs-modules -Depends: kernel-image-6.6.15-alpha-generic-di -Kernel-Version: 6.6.15-alpha-generic +Depends: kernel-image-6.7.7-alpha-generic-di +Kernel-Version: 6.7.7-alpha-generic Description: JFS filesystem support This package contains the JFS filesystem module for the kernel. -Package: xfs-modules-6.6.15-alpha-generic-di +Package: xfs-modules-6.7.7-alpha-generic-di Package-Type: udeb Architecture: alpha Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: xfs-modules -Depends: kernel-image-6.6.15-alpha-generic-di, crc-modules-6.6.15-alpha-generic-di -Kernel-Version: 6.6.15-alpha-generic +Depends: kernel-image-6.7.7-alpha-generic-di, crc-modules-6.7.7-alpha-generic-di +Kernel-Version: 6.7.7-alpha-generic Description: XFS filesystem support This package contains the XFS filesystem module for the kernel. -Package: fat-modules-6.6.15-alpha-generic-di +Package: fat-modules-6.7.7-alpha-generic-di Package-Type: udeb Architecture: alpha Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fat-modules -Depends: kernel-image-6.6.15-alpha-generic-di -Kernel-Version: 6.6.15-alpha-generic +Depends: kernel-image-6.7.7-alpha-generic-di +Kernel-Version: 6.7.7-alpha-generic Description: FAT filesystem support This package contains the FAT and VFAT filesystem modules for the kernel. -Package: squashfs-modules-6.6.15-alpha-generic-di +Package: squashfs-modules-6.7.7-alpha-generic-di Package-Type: udeb Architecture: alpha Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: squashfs-modules -Depends: kernel-image-6.6.15-alpha-generic-di -Kernel-Version: 6.6.15-alpha-generic +Depends: kernel-image-6.7.7-alpha-generic-di +Kernel-Version: 6.7.7-alpha-generic Description: squashfs modules This package contains squashfs modules. -Package: f2fs-modules-6.6.15-alpha-generic-di +Package: f2fs-modules-6.7.7-alpha-generic-di Package-Type: udeb Architecture: alpha Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: f2fs-modules -Depends: kernel-image-6.6.15-alpha-generic-di, crc-modules-6.6.15-alpha-generic-di -Kernel-Version: 6.6.15-alpha-generic +Depends: kernel-image-6.7.7-alpha-generic-di, crc-modules-6.7.7-alpha-generic-di +Kernel-Version: 6.7.7-alpha-generic Description: f2fs filesystem support This package contains the f2fs (Flash-Friendly Filesystem) module. -Package: md-modules-6.6.15-alpha-generic-di +Package: md-modules-6.7.7-alpha-generic-di Package-Type: udeb Architecture: alpha Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: md-modules -Depends: kernel-image-6.6.15-alpha-generic-di, crc-modules-6.6.15-alpha-generic-di -Kernel-Version: 6.6.15-alpha-generic +Depends: kernel-image-6.7.7-alpha-generic-di, crc-modules-6.7.7-alpha-generic-di +Kernel-Version: 6.7.7-alpha-generic Description: RAID and LVM support This package contains RAID and LVM modules for the kernel. -Package: multipath-modules-6.6.15-alpha-generic-di +Package: multipath-modules-6.7.7-alpha-generic-di Package-Type: udeb Architecture: alpha Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: multipath-modules -Depends: kernel-image-6.6.15-alpha-generic-di, md-modules-6.6.15-alpha-generic-di, scsi-core-modules-6.6.15-alpha-generic-di -Kernel-Version: 6.6.15-alpha-generic +Depends: kernel-image-6.7.7-alpha-generic-di, md-modules-6.7.7-alpha-generic-di, scsi-core-modules-6.7.7-alpha-generic-di +Kernel-Version: 6.7.7-alpha-generic Description: Multipath support This package contains DM-Multipath modules for the kernel. -Package: usb-modules-6.6.15-alpha-generic-di +Package: usb-modules-6.7.7-alpha-generic-di Package-Type: udeb Architecture: alpha Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-modules -Depends: kernel-image-6.6.15-alpha-generic-di -Kernel-Version: 6.6.15-alpha-generic +Depends: kernel-image-6.7.7-alpha-generic-di +Kernel-Version: 6.7.7-alpha-generic Description: USB support This package contains core USB drivers for the kernel. -Package: usb-storage-modules-6.6.15-alpha-generic-di +Package: usb-storage-modules-6.7.7-alpha-generic-di Package-Type: udeb Architecture: alpha Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-storage-modules -Depends: kernel-image-6.6.15-alpha-generic-di, scsi-core-modules-6.6.15-alpha-generic-di, usb-modules-6.6.15-alpha-generic-di -Kernel-Version: 6.6.15-alpha-generic +Depends: kernel-image-6.7.7-alpha-generic-di, scsi-core-modules-6.7.7-alpha-generic-di, usb-modules-6.7.7-alpha-generic-di +Kernel-Version: 6.7.7-alpha-generic Description: USB storage support This package contains the USB storage driver for the kernel. -Package: fb-modules-6.6.15-alpha-generic-di +Package: fb-modules-6.7.7-alpha-generic-di Package-Type: udeb Architecture: alpha Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fb-modules -Depends: kernel-image-6.6.15-alpha-generic-di, i2c-modules-6.6.15-alpha-generic-di, input-modules-6.6.15-alpha-generic-di -Kernel-Version: 6.6.15-alpha-generic +Depends: kernel-image-6.7.7-alpha-generic-di, i2c-modules-6.7.7-alpha-generic-di, input-modules-6.7.7-alpha-generic-di +Kernel-Version: 6.7.7-alpha-generic Description: Frame buffer support This package contains Frame buffer drivers for the kernel. -Package: input-modules-6.6.15-alpha-generic-di +Package: input-modules-6.7.7-alpha-generic-di Package-Type: udeb Architecture: alpha Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: input-modules -Depends: kernel-image-6.6.15-alpha-generic-di, usb-modules-6.6.15-alpha-generic-di, i2c-modules-6.6.15-alpha-generic-di, crc-modules-6.6.15-alpha-generic-di -Kernel-Version: 6.6.15-alpha-generic +Depends: kernel-image-6.7.7-alpha-generic-di, usb-modules-6.7.7-alpha-generic-di, i2c-modules-6.7.7-alpha-generic-di, crc-modules-6.7.7-alpha-generic-di +Kernel-Version: 6.7.7-alpha-generic Description: Input devices support This package contains input device drivers for the kernel. -Package: event-modules-6.6.15-alpha-generic-di +Package: event-modules-6.7.7-alpha-generic-di Package-Type: udeb Architecture: alpha Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: event-modules -Depends: kernel-image-6.6.15-alpha-generic-di -Kernel-Version: 6.6.15-alpha-generic +Depends: kernel-image-6.7.7-alpha-generic-di +Kernel-Version: 6.7.7-alpha-generic Description: Event support This package contains event drivers for the kernel. -Package: mouse-modules-6.6.15-alpha-generic-di +Package: mouse-modules-6.7.7-alpha-generic-di Package-Type: udeb Architecture: alpha Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mouse-modules -Depends: kernel-image-6.6.15-alpha-generic-di, event-modules-6.6.15-alpha-generic-di, input-modules-6.6.15-alpha-generic-di, usb-modules-6.6.15-alpha-generic-di -Kernel-Version: 6.6.15-alpha-generic +Depends: kernel-image-6.7.7-alpha-generic-di, event-modules-6.7.7-alpha-generic-di, input-modules-6.7.7-alpha-generic-di, usb-modules-6.7.7-alpha-generic-di +Kernel-Version: 6.7.7-alpha-generic Description: Mouse support This package contains mouse drivers for the kernel. -Package: nic-pcmcia-modules-6.6.15-alpha-generic-di +Package: nic-pcmcia-modules-6.7.7-alpha-generic-di Package-Type: udeb Architecture: alpha Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-pcmcia-modules -Depends: kernel-image-6.6.15-alpha-generic-di, nic-shared-modules-6.6.15-alpha-generic-di, nic-wireless-modules-6.6.15-alpha-generic-di, pcmcia-modules-6.6.15-alpha-generic-di -Kernel-Version: 6.6.15-alpha-generic +Depends: kernel-image-6.7.7-alpha-generic-di, nic-shared-modules-6.7.7-alpha-generic-di, nic-wireless-modules-6.7.7-alpha-generic-di, pcmcia-modules-6.7.7-alpha-generic-di +Kernel-Version: 6.7.7-alpha-generic Description: Common PCMCIA NIC drivers This package contains common PCMCIA NIC drivers for the kernel. -Package: pcmcia-modules-6.6.15-alpha-generic-di +Package: pcmcia-modules-6.7.7-alpha-generic-di Package-Type: udeb Architecture: alpha Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: pcmcia-modules -Depends: kernel-image-6.6.15-alpha-generic-di -Kernel-Version: 6.6.15-alpha-generic +Depends: kernel-image-6.7.7-alpha-generic-di +Kernel-Version: 6.7.7-alpha-generic Description: Common PCMCIA drivers This package contains common PCMCIA drivers for the kernel. -Package: nic-usb-modules-6.6.15-alpha-generic-di +Package: nic-usb-modules-6.7.7-alpha-generic-di Package-Type: udeb Architecture: alpha Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-usb-modules -Depends: kernel-image-6.6.15-alpha-generic-di, nic-shared-modules-6.6.15-alpha-generic-di, nic-wireless-modules-6.6.15-alpha-generic-di, usb-modules-6.6.15-alpha-generic-di, crc-modules-6.6.15-alpha-generic-di -Kernel-Version: 6.6.15-alpha-generic +Depends: kernel-image-6.7.7-alpha-generic-di, nic-shared-modules-6.7.7-alpha-generic-di, nic-wireless-modules-6.7.7-alpha-generic-di, usb-modules-6.7.7-alpha-generic-di, crc-modules-6.7.7-alpha-generic-di +Kernel-Version: 6.7.7-alpha-generic Description: USB NIC drivers This package contains USB network adapter drivers for the kernel. -Package: sata-modules-6.6.15-alpha-generic-di +Package: sata-modules-6.7.7-alpha-generic-di Package-Type: udeb Architecture: alpha Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sata-modules -Depends: kernel-image-6.6.15-alpha-generic-di, scsi-core-modules-6.6.15-alpha-generic-di, ata-modules-6.6.15-alpha-generic-di -Kernel-Version: 6.6.15-alpha-generic +Depends: kernel-image-6.7.7-alpha-generic-di, scsi-core-modules-6.7.7-alpha-generic-di, ata-modules-6.7.7-alpha-generic-di +Kernel-Version: 6.7.7-alpha-generic Description: SATA drivers This package contains SATA drivers for the kernel. -Package: i2c-modules-6.6.15-alpha-generic-di +Package: i2c-modules-6.7.7-alpha-generic-di Package-Type: udeb Architecture: alpha Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: i2c-modules -Depends: kernel-image-6.6.15-alpha-generic-di -Kernel-Version: 6.6.15-alpha-generic +Depends: kernel-image-6.7.7-alpha-generic-di +Kernel-Version: 6.7.7-alpha-generic Description: i2c support modules This package contains basic i2c support modules. -Package: crc-modules-6.6.15-alpha-generic-di +Package: crc-modules-6.7.7-alpha-generic-di Package-Type: udeb Architecture: alpha Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crc-modules -Depends: kernel-image-6.6.15-alpha-generic-di -Kernel-Version: 6.6.15-alpha-generic +Depends: kernel-image-6.7.7-alpha-generic-di +Kernel-Version: 6.7.7-alpha-generic Description: CRC modules This package contains CRC support modules. -Package: crypto-modules-6.6.15-alpha-generic-di +Package: crypto-modules-6.7.7-alpha-generic-di Package-Type: udeb Architecture: alpha Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-modules -Depends: kernel-image-6.6.15-alpha-generic-di -Kernel-Version: 6.6.15-alpha-generic +Depends: kernel-image-6.7.7-alpha-generic-di +Kernel-Version: 6.7.7-alpha-generic Description: crypto modules This package contains crypto modules. -Package: crypto-dm-modules-6.6.15-alpha-generic-di +Package: crypto-dm-modules-6.7.7-alpha-generic-di Package-Type: udeb Architecture: alpha Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-dm-modules -Depends: kernel-image-6.6.15-alpha-generic-di, md-modules-6.6.15-alpha-generic-di -Kernel-Version: 6.6.15-alpha-generic +Depends: kernel-image-6.7.7-alpha-generic-di, md-modules-6.7.7-alpha-generic-di +Kernel-Version: 6.7.7-alpha-generic Description: devicemapper crypto module This package contains the devicemapper crypto (dm-crypt) module. -Package: ata-modules-6.6.15-alpha-generic-di +Package: ata-modules-6.7.7-alpha-generic-di Package-Type: udeb Architecture: alpha Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ata-modules -Depends: kernel-image-6.6.15-alpha-generic-di, scsi-core-modules-6.6.15-alpha-generic-di -Kernel-Version: 6.6.15-alpha-generic +Depends: kernel-image-6.7.7-alpha-generic-di, scsi-core-modules-6.7.7-alpha-generic-di +Kernel-Version: 6.7.7-alpha-generic Description: ATA disk modules This package contains core ATA disk modules used by both PATA and SATA disk drivers. -Package: nbd-modules-6.6.15-alpha-generic-di +Package: nbd-modules-6.7.7-alpha-generic-di Package-Type: udeb Architecture: alpha Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nbd-modules -Depends: kernel-image-6.6.15-alpha-generic-di -Kernel-Version: 6.6.15-alpha-generic +Depends: kernel-image-6.7.7-alpha-generic-di +Kernel-Version: 6.7.7-alpha-generic Description: Network Block Device modules This package contains the modules required for support of the Network Block Device -Package: srm-modules-6.6.15-alpha-generic-di +Package: srm-modules-6.7.7-alpha-generic-di Package-Type: udeb Architecture: alpha Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: srm-modules -Depends: kernel-image-6.6.15-alpha-generic-di -Kernel-Version: 6.6.15-alpha-generic +Depends: kernel-image-6.7.7-alpha-generic-di +Kernel-Version: 6.7.7-alpha-generic Description: SRM modules This package contains the srm_env module which provides access to the SRM environment. -Package: linux-headers-6.6.15-alpha-smp +Package: linux-headers-6.7.7-alpha-smp Architecture: alpha Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Depends: linux-headers-6.6.15-common (= ${source:Version}), linux-image-6.6.15-alpha-smp (= ${binary:Version}) | linux-image-6.6.15-alpha-smp-unsigned (= ${binary:Version}), linux-kbuild-6.6.15, ${misc:Depends}, gcc-13 -Description: Header files for Linux 6.6.15-alpha-smp +Depends: linux-headers-6.7.7-common (= ${source:Version}), linux-image-6.7.7-alpha-smp (= ${binary:Version}) | linux-image-6.7.7-alpha-smp-unsigned (= ${binary:Version}), linux-kbuild-6.7.7, ${misc:Depends}, gcc-13 +Description: Header files for Linux 6.7.7-alpha-smp This package provides the architecture-specific kernel header files for - Linux kernel 6.6.15-alpha-smp, generally used for building out-of-tree + Linux kernel 6.7.7-alpha-smp, generally used for building out-of-tree kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-alpha-smp, and can be used for building + /usr/src/linux-headers-6.7.7-alpha-smp, and can be used for building modules that load into the kernel provided by the - linux-image-6.6.15-alpha-smp package. + linux-image-6.7.7-alpha-smp package. -Package: linux-image-6.6.15-alpha-smp +Package: linux-image-6.7.7-alpha-smp Architecture: alpha Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [alpha] | linux-initramfs-tool [alpha] Recommends: firmware-linux-free, apparmor [alpha] -Suggests: linux-doc-6.6, debian-kernel-handbook, aboot [alpha], fdutils [alpha] +Suggests: linux-doc-6.7, debian-kernel-handbook, aboot [alpha], fdutils [alpha] Breaks: fwupdate (<< 12-7) [alpha], wireless-regdb (<< 2019.06.03-1~) [alpha], initramfs-tools (<< 0.120+deb8u2) [alpha] -Description: Linux 6.6 for Alpha SMP - The Linux kernel 6.6 and modules for use on DEC Alpha SMP systems with +Description: Linux 6.7 for Alpha SMP + The Linux kernel 6.7 and modules for use on DEC Alpha SMP systems with extended kernel start address (Wildfire, Titan, Marvel). Package: linux-image-alpha-smp Architecture: alpha Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Provides: linux-latest-modules-6.6.15-alpha-smp, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386], linux-image-generic -Depends: linux-image-6.6.15-alpha-smp (= ${binary:Version}), ${misc:Depends} +Provides: linux-latest-modules-6.7.7-alpha-smp, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386], linux-image-generic +Depends: linux-image-6.7.7-alpha-smp (= ${binary:Version}), ${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, @@ -825,26 +826,26 @@ Package: linux-headers-alpha-smp Architecture: alpha Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> Provides: linux-headers-generic -Depends: linux-headers-6.6.15-alpha-smp (= ${binary:Version}), ${misc:Depends} +Depends: linux-headers-6.7.7-alpha-smp (= ${binary:Version}), ${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-6.6.15-alpha-smp-dbg +Package: linux-image-6.7.7-alpha-smp-dbg Architecture: alpha Section: debug Priority: optional Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.quick> Depends: ${misc:Depends} -Description: Debug symbols for linux-image-6.6.15-alpha-smp +Description: Debug symbols for linux-image-6.7.7-alpha-smp This package provides the detached debug symbols for the Linux kernel and - modules in linux-image-6.6.15-alpha-smp. + modules in linux-image-6.7.7-alpha-smp. Package: linux-image-alpha-smp-dbg Architecture: alpha Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.nometa !pkg.linux.quick> Provides: linux-latest-image-dbg -Depends: linux-image-6.6.15-alpha-smp-dbg (= ${binary:Version}), ${misc:Depends} +Depends: linux-image-6.7.7-alpha-smp-dbg (= ${binary:Version}), ${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. @@ -857,756 +858,755 @@ Description: Template for signed linux-image packages for amd64 This package is used to control code signing by the Debian signing service. -Package: linux-headers-6.6.15-amd64 +Package: linux-headers-6.7.7-amd64 Architecture: amd64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Depends: linux-headers-6.6.15-common (= ${source:Version}), linux-image-6.6.15-amd64 (= ${binary:Version}) | linux-image-6.6.15-amd64-unsigned (= ${binary:Version}), linux-kbuild-6.6.15, ${misc:Depends}, gcc-13 -Description: Header files for Linux 6.6.15-amd64 +Depends: linux-headers-6.7.7-common (= ${source:Version}), linux-image-6.7.7-amd64 (= ${binary:Version}) | linux-image-6.7.7-amd64-unsigned (= ${binary:Version}), linux-kbuild-6.7.7, ${misc:Depends}, gcc-13 +Description: Header files for Linux 6.7.7-amd64 This package provides the architecture-specific kernel header files for - Linux kernel 6.6.15-amd64, generally used for building out-of-tree kernel + Linux kernel 6.7.7-amd64, generally used for building out-of-tree kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-amd64, and can be used for building modules - that load into the kernel provided by the linux-image-6.6.15-amd64 - package. + /usr/src/linux-headers-6.7.7-amd64, and can be used for building modules + that load into the kernel provided by the linux-image-6.7.7-amd64 package. -Package: linux-image-6.6.15-amd64-unsigned +Package: linux-image-6.7.7-amd64-unsigned Architecture: amd64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [amd64] | linux-initramfs-tool [amd64] Recommends: firmware-linux-free, apparmor [amd64] -Suggests: linux-doc-6.6, debian-kernel-handbook, grub-pc [amd64] | grub-efi-amd64 [amd64] | extlinux [amd64] -Replaces: linux-image-6.6.15-amd64 +Suggests: linux-doc-6.7, debian-kernel-handbook, grub-pc [amd64] | grub-efi-amd64 [amd64] | extlinux [amd64] +Replaces: linux-image-6.7.7-amd64 Breaks: fwupdate (<< 12-7) [amd64], wireless-regdb (<< 2019.06.03-1~) [amd64], initramfs-tools (<< 0.120+deb8u2) [amd64] -Conflicts: linux-image-6.6.15-amd64 -Description: Linux 6.6 for 64-bit PCs - The Linux kernel 6.6 and modules for use on PCs with AMD64, Intel 64 or +Conflicts: linux-image-6.7.7-amd64 +Description: Linux 6.7 for 64-bit PCs + The Linux kernel 6.7 and modules for use on PCs with AMD64, Intel 64 or VIA Nano processors. -Package: linux-image-6.6.15-amd64-dbg +Package: linux-image-6.7.7-amd64-dbg Architecture: amd64 Section: debug Priority: optional Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.quick> Depends: ${misc:Depends} -Description: Debug symbols for linux-image-6.6.15-amd64 +Description: Debug symbols for linux-image-6.7.7-amd64 This package provides the detached debug symbols for the Linux kernel and - modules in linux-image-6.6.15-amd64. + modules in linux-image-6.7.7-amd64. Package: linux-image-amd64-dbg Architecture: amd64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.nometa !pkg.linux.quick> Provides: linux-latest-image-dbg -Depends: linux-image-6.6.15-amd64-dbg (= ${binary:Version}), ${misc:Depends} +Depends: linux-image-6.7.7-amd64-dbg (= ${binary:Version}), ${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: kernel-image-6.6.15-amd64-di +Package: kernel-image-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: kernel-image -Kernel-Version: 6.6.15-amd64 +Kernel-Version: 6.7.7-amd64 Description: Linux kernel image and core modules for the Debian installer This package contains the kernel image and core modules for the Debian installer boot images. It does _not_ provide a usable kernel for your full Debian system. -Package: nic-modules-6.6.15-amd64-di +Package: nic-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-modules, nic-extra-modules -Depends: kernel-image-6.6.15-amd64-di, nic-shared-modules-6.6.15-amd64-di, i2c-modules-6.6.15-amd64-di, crc-modules-6.6.15-amd64-di, mtd-core-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, nic-shared-modules-6.7.7-amd64-di, i2c-modules-6.7.7-amd64-di, crc-modules-6.7.7-amd64-di, mtd-core-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: NIC drivers This package contains Ethernet and some paravirtualised network drivers for the kernel. -Package: nic-wireless-modules-6.6.15-amd64-di +Package: nic-wireless-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-wireless-modules -Depends: kernel-image-6.6.15-amd64-di, nic-shared-modules-6.6.15-amd64-di, usb-modules-6.6.15-amd64-di, mmc-core-modules-6.6.15-amd64-di, pcmcia-modules-6.6.15-amd64-di, crc-modules-6.6.15-amd64-di, rfkill-modules-6.6.15-amd64-di, crypto-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, nic-shared-modules-6.7.7-amd64-di, usb-modules-6.7.7-amd64-di, mmc-core-modules-6.7.7-amd64-di, pcmcia-modules-6.7.7-amd64-di, crc-modules-6.7.7-amd64-di, rfkill-modules-6.7.7-amd64-di, crypto-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: Wireless NIC drivers This package contains wireless NIC drivers for the kernel. Includes crypto modules only needed for wireless (WEP, WPA). -Package: nic-shared-modules-6.6.15-amd64-di +Package: nic-shared-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-shared-modules -Depends: kernel-image-6.6.15-amd64-di, crc-modules-6.6.15-amd64-di, i2c-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, crc-modules-6.7.7-amd64-di, i2c-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: Shared NIC drivers This package contains NIC drivers needed by combinations of nic-modules, nic-pcmcia-modules, nic-usb-modules and nic-wireless-modules. -Package: serial-modules-6.6.15-amd64-di +Package: serial-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: serial-modules -Depends: kernel-image-6.6.15-amd64-di, pcmcia-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, pcmcia-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: Serial drivers This package contains serial drivers for the kernel. -Package: usb-serial-modules-6.6.15-amd64-di +Package: usb-serial-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-serial-modules -Depends: kernel-image-6.6.15-amd64-di, usb-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, usb-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: USB serial drivers This package contains USB serial drivers for the kernel. -Package: ppp-modules-6.6.15-amd64-di +Package: ppp-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ppp-modules -Depends: kernel-image-6.6.15-amd64-di, serial-modules-6.6.15-amd64-di, crc-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, serial-modules-6.7.7-amd64-di, crc-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: PPP drivers This package contains PPP drivers for the kernel. -Package: pata-modules-6.6.15-amd64-di +Package: pata-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: pata-modules -Depends: kernel-image-6.6.15-amd64-di, ata-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, ata-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: PATA drivers This package contains PATA drivers for the kernel. -Package: cdrom-core-modules-6.6.15-amd64-di +Package: cdrom-core-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: cdrom-core-modules -Depends: kernel-image-6.6.15-amd64-di, scsi-core-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, scsi-core-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: CDROM support This package contains core CDROM support for the kernel. -Package: firewire-core-modules-6.6.15-amd64-di +Package: firewire-core-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: firewire-core-modules -Depends: kernel-image-6.6.15-amd64-di, scsi-core-modules-6.6.15-amd64-di, crc-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, scsi-core-modules-6.7.7-amd64-di, crc-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: Core FireWire drivers This package contains core FireWire drivers for the kernel. -Package: scsi-core-modules-6.6.15-amd64-di +Package: scsi-core-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-core-modules -Depends: kernel-image-6.6.15-amd64-di, crc-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, crc-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: Core SCSI subsystem This package contains the core SCSI subsystem for the kernel. -Package: scsi-modules-6.6.15-amd64-di +Package: scsi-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-modules -Depends: kernel-image-6.6.15-amd64-di, scsi-core-modules-6.6.15-amd64-di, cdrom-core-modules-6.6.15-amd64-di, ata-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, scsi-core-modules-6.7.7-amd64-di, cdrom-core-modules-6.7.7-amd64-di, ata-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: SCSI drivers This package contains SCSI drivers for the kernel. -Package: scsi-nic-modules-6.6.15-amd64-di +Package: scsi-nic-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-nic-modules -Depends: scsi-modules-6.6.15-amd64-di, nic-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: scsi-modules-6.7.7-amd64-di, nic-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: SCSI drivers for converged NICs This package contains SCSI drivers that depend on net drivers. -Package: loop-modules-6.6.15-amd64-di +Package: loop-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: loop-modules -Depends: kernel-image-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: Loopback filesystem support This package contains loopback filesystem support for the kernel. -Package: btrfs-modules-6.6.15-amd64-di +Package: btrfs-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: btrfs-modules -Depends: kernel-image-6.6.15-amd64-di, crc-modules-6.6.15-amd64-di, md-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, crc-modules-6.7.7-amd64-di, md-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: BTRFS filesystem support This package contains the BTRFS filesystem module for the kernel. -Package: ext4-modules-6.6.15-amd64-di +Package: ext4-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ext4-modules, ext2-modules, ext3-modules -Depends: kernel-image-6.6.15-amd64-di, crc-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, crc-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: ext2/ext3/ext4 filesystem support This package contains the ext4 filesystem module for the kernel, which also supports ext2 and ext3. -Package: isofs-modules-6.6.15-amd64-di +Package: isofs-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: isofs-modules -Depends: kernel-image-6.6.15-amd64-di, cdrom-core-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, cdrom-core-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: ISOFS filesystem support This package contains the ISOFS filesystem module for the kernel. -Package: jfs-modules-6.6.15-amd64-di +Package: jfs-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: jfs-modules -Depends: kernel-image-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: JFS filesystem support This package contains the JFS filesystem module for the kernel. -Package: xfs-modules-6.6.15-amd64-di +Package: xfs-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: xfs-modules -Depends: kernel-image-6.6.15-amd64-di, crc-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, crc-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: XFS filesystem support This package contains the XFS filesystem module for the kernel. -Package: fat-modules-6.6.15-amd64-di +Package: fat-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fat-modules -Depends: kernel-image-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: FAT filesystem support This package contains the FAT and VFAT filesystem modules for the kernel. -Package: squashfs-modules-6.6.15-amd64-di +Package: squashfs-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: squashfs-modules -Depends: kernel-image-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: squashfs modules This package contains squashfs modules. -Package: udf-modules-6.6.15-amd64-di +Package: udf-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: udf-modules -Depends: kernel-image-6.6.15-amd64-di, crc-modules-6.6.15-amd64-di, cdrom-core-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, crc-modules-6.7.7-amd64-di, cdrom-core-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: UDF modules This package contains the UDF filesystem module. -Package: f2fs-modules-6.6.15-amd64-di +Package: f2fs-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: f2fs-modules -Depends: kernel-image-6.6.15-amd64-di, crc-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, crc-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: f2fs filesystem support This package contains the f2fs (Flash-Friendly Filesystem) module. -Package: md-modules-6.6.15-amd64-di +Package: md-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: md-modules -Depends: kernel-image-6.6.15-amd64-di, crc-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, crc-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: RAID and LVM support This package contains RAID and LVM modules for the kernel. -Package: multipath-modules-6.6.15-amd64-di +Package: multipath-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: multipath-modules -Depends: kernel-image-6.6.15-amd64-di, md-modules-6.6.15-amd64-di, scsi-core-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, md-modules-6.7.7-amd64-di, scsi-core-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: Multipath support This package contains DM-Multipath modules for the kernel. -Package: usb-modules-6.6.15-amd64-di +Package: usb-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-modules -Depends: kernel-image-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: USB support This package contains core USB drivers for the kernel. -Package: usb-storage-modules-6.6.15-amd64-di +Package: usb-storage-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-storage-modules -Depends: kernel-image-6.6.15-amd64-di, scsi-core-modules-6.6.15-amd64-di, usb-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, scsi-core-modules-6.7.7-amd64-di, usb-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: USB storage support This package contains the USB storage driver for the kernel. -Package: pcmcia-storage-modules-6.6.15-amd64-di +Package: pcmcia-storage-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: pcmcia-storage-modules -Depends: kernel-image-6.6.15-amd64-di, cdrom-core-modules-6.6.15-amd64-di, pcmcia-modules-6.6.15-amd64-di, ata-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, cdrom-core-modules-6.7.7-amd64-di, pcmcia-modules-6.7.7-amd64-di, ata-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: PCMCIA storage drivers This package contains PCMCIA storage drivers for the kernel. -Package: fb-modules-6.6.15-amd64-di +Package: fb-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fb-modules -Depends: kernel-image-6.6.15-amd64-di, i2c-modules-6.6.15-amd64-di, input-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, i2c-modules-6.7.7-amd64-di, input-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: Frame buffer support This package contains Frame buffer drivers for the kernel. -Package: input-modules-6.6.15-amd64-di +Package: input-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: input-modules -Depends: kernel-image-6.6.15-amd64-di, usb-modules-6.6.15-amd64-di, i2c-modules-6.6.15-amd64-di, rfkill-modules-6.6.15-amd64-di, crc-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, usb-modules-6.7.7-amd64-di, i2c-modules-6.7.7-amd64-di, rfkill-modules-6.7.7-amd64-di, crc-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: Input devices support This package contains input device drivers for the kernel. -Package: event-modules-6.6.15-amd64-di +Package: event-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: event-modules -Depends: kernel-image-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: Event support This package contains event drivers for the kernel. -Package: mouse-modules-6.6.15-amd64-di +Package: mouse-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mouse-modules -Depends: kernel-image-6.6.15-amd64-di, event-modules-6.6.15-amd64-di, input-modules-6.6.15-amd64-di, usb-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, event-modules-6.7.7-amd64-di, input-modules-6.7.7-amd64-di, usb-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: Mouse support This package contains mouse drivers for the kernel. -Package: nic-pcmcia-modules-6.6.15-amd64-di +Package: nic-pcmcia-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-pcmcia-modules -Depends: kernel-image-6.6.15-amd64-di, nic-shared-modules-6.6.15-amd64-di, nic-wireless-modules-6.6.15-amd64-di, pcmcia-modules-6.6.15-amd64-di, mmc-core-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, nic-shared-modules-6.7.7-amd64-di, nic-wireless-modules-6.7.7-amd64-di, pcmcia-modules-6.7.7-amd64-di, mmc-core-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: Common PCMCIA NIC drivers This package contains common PCMCIA NIC drivers for the kernel. -Package: pcmcia-modules-6.6.15-amd64-di +Package: pcmcia-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: pcmcia-modules -Depends: kernel-image-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: Common PCMCIA drivers This package contains common PCMCIA drivers for the kernel. -Package: nic-usb-modules-6.6.15-amd64-di +Package: nic-usb-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-usb-modules -Depends: kernel-image-6.6.15-amd64-di, nic-shared-modules-6.6.15-amd64-di, nic-wireless-modules-6.6.15-amd64-di, usb-modules-6.6.15-amd64-di, crc-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, nic-shared-modules-6.7.7-amd64-di, nic-wireless-modules-6.7.7-amd64-di, usb-modules-6.7.7-amd64-di, crc-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: USB NIC drivers This package contains USB network adapter drivers for the kernel. -Package: sata-modules-6.6.15-amd64-di +Package: sata-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sata-modules -Depends: kernel-image-6.6.15-amd64-di, scsi-core-modules-6.6.15-amd64-di, ata-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, scsi-core-modules-6.7.7-amd64-di, ata-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: SATA drivers This package contains SATA drivers for the kernel. -Package: acpi-modules-6.6.15-amd64-di +Package: acpi-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: acpi-modules -Depends: kernel-image-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: ACPI support modules This package contains kernel modules for ACPI. -Package: i2c-modules-6.6.15-amd64-di +Package: i2c-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: i2c-modules -Depends: kernel-image-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: i2c support modules This package contains basic i2c support modules. -Package: crc-modules-6.6.15-amd64-di +Package: crc-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crc-modules -Depends: kernel-image-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: CRC modules This package contains CRC support modules. -Package: crypto-modules-6.6.15-amd64-di +Package: crypto-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-modules -Depends: kernel-image-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: crypto modules This package contains crypto modules. -Package: crypto-dm-modules-6.6.15-amd64-di +Package: crypto-dm-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-dm-modules -Depends: kernel-image-6.6.15-amd64-di, md-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, md-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: devicemapper crypto module This package contains the devicemapper crypto (dm-crypt) module. -Package: efi-modules-6.6.15-amd64-di +Package: efi-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: efi-modules -Depends: kernel-image-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: EFI modules This package contains EFI modules. -Package: ata-modules-6.6.15-amd64-di +Package: ata-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ata-modules -Depends: kernel-image-6.6.15-amd64-di, scsi-core-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, scsi-core-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: ATA disk modules This package contains core ATA disk modules used by both PATA and SATA disk drivers. -Package: mmc-core-modules-6.6.15-amd64-di +Package: mmc-core-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mmc-core-modules -Depends: kernel-image-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: MMC/SD/SDIO core modules This package contains core modules for MMC/SD/SDIO support. -Package: mmc-modules-6.6.15-amd64-di +Package: mmc-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mmc-modules -Depends: kernel-image-6.6.15-amd64-di, mmc-core-modules-6.6.15-amd64-di, usb-modules-6.6.15-amd64-di, crc-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, mmc-core-modules-6.7.7-amd64-di, usb-modules-6.7.7-amd64-di, crc-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: MMC/SD card modules This package contains modules needed to support MMC (multimedia) and SD cards. -Package: nbd-modules-6.6.15-amd64-di +Package: nbd-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nbd-modules -Depends: kernel-image-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: Network Block Device modules This package contains the modules required for support of the Network Block Device -Package: speakup-modules-6.6.15-amd64-di +Package: speakup-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: speakup-modules -Depends: kernel-image-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: speakup modules This package contains speakup modules. -Package: uinput-modules-6.6.15-amd64-di +Package: uinput-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: uinput-modules -Depends: kernel-image-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: uinput support This package contains the uinput module. -Package: sound-modules-6.6.15-amd64-di +Package: sound-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sound-modules -Depends: kernel-image-6.6.15-amd64-di, i2c-modules-6.6.15-amd64-di, usb-modules-6.6.15-amd64-di, pcmcia-modules-6.6.15-amd64-di, firewire-core-modules-6.6.15-amd64-di, crc-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, i2c-modules-6.7.7-amd64-di, usb-modules-6.7.7-amd64-di, pcmcia-modules-6.7.7-amd64-di, firewire-core-modules-6.7.7-amd64-di, crc-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: sound support This package contains sound modules. -Package: mtd-core-modules-6.6.15-amd64-di +Package: mtd-core-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mtd-core-modules -Depends: kernel-image-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: MTD core This package contains the MTD core. -Package: rfkill-modules-6.6.15-amd64-di +Package: rfkill-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: rfkill-modules -Depends: kernel-image-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: rfkill modules This package contains the rfkill module. -Package: linux-headers-6.6.15-cloud-amd64 +Package: linux-headers-6.7.7-cloud-amd64 Architecture: amd64 Build-Profiles: <!pkg.linux.nokernel> -Depends: linux-headers-6.6.15-common (= ${source:Version}), linux-image-6.6.15-cloud-amd64 (= ${binary:Version}) | linux-image-6.6.15-cloud-amd64-unsigned (= ${binary:Version}), linux-kbuild-6.6.15, ${misc:Depends}, gcc-13 -Description: Header files for Linux 6.6.15-cloud-amd64 +Depends: linux-headers-6.7.7-common (= ${source:Version}), linux-image-6.7.7-cloud-amd64 (= ${binary:Version}) | linux-image-6.7.7-cloud-amd64-unsigned (= ${binary:Version}), linux-kbuild-6.7.7, ${misc:Depends}, gcc-13 +Description: Header files for Linux 6.7.7-cloud-amd64 This package provides the architecture-specific kernel header files for - Linux kernel 6.6.15-cloud-amd64, generally used for building out-of-tree + Linux kernel 6.7.7-cloud-amd64, generally used for building out-of-tree kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-cloud-amd64, and can be used for building + /usr/src/linux-headers-6.7.7-cloud-amd64, and can be used for building modules that load into the kernel provided by the - linux-image-6.6.15-cloud-amd64 package. + linux-image-6.7.7-cloud-amd64 package. -Package: linux-image-6.6.15-cloud-amd64-unsigned +Package: linux-image-6.7.7-cloud-amd64-unsigned Architecture: amd64 Build-Profiles: <!pkg.linux.nokernel> Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [amd64] | linux-initramfs-tool [amd64] Recommends: firmware-linux-free, apparmor [amd64] -Suggests: linux-doc-6.6, debian-kernel-handbook, grub-pc [amd64] | grub-efi-amd64 [amd64] | extlinux [amd64] -Replaces: linux-image-6.6.15-cloud-amd64 +Suggests: linux-doc-6.7, debian-kernel-handbook, grub-pc [amd64] | grub-efi-amd64 [amd64] | extlinux [amd64] +Replaces: linux-image-6.7.7-cloud-amd64 Breaks: fwupdate (<< 12-7) [amd64], wireless-regdb (<< 2019.06.03-1~) [amd64], initramfs-tools (<< 0.120+deb8u2) [amd64] -Conflicts: linux-image-6.6.15-cloud-amd64 -Description: Linux 6.6 for x86-64 cloud - The Linux kernel 6.6 and modules for use on cloud platforms including +Conflicts: linux-image-6.7.7-cloud-amd64 +Description: Linux 6.7 for x86-64 cloud + The Linux kernel 6.7 and modules for use on cloud platforms including Amazon EC2, Microsoft Azure, and Google Compute Engine. -Package: linux-image-6.6.15-cloud-amd64-dbg +Package: linux-image-6.7.7-cloud-amd64-dbg Architecture: amd64 Section: debug Priority: optional Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.quick> Depends: ${misc:Depends} -Description: Debug symbols for linux-image-6.6.15-cloud-amd64 +Description: Debug symbols for linux-image-6.7.7-cloud-amd64 This package provides the detached debug symbols for the Linux kernel and - modules in linux-image-6.6.15-cloud-amd64. + modules in linux-image-6.7.7-cloud-amd64. Package: linux-image-cloud-amd64-dbg Architecture: amd64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.nometa !pkg.linux.quick> Provides: linux-latest-image-dbg -Depends: linux-image-6.6.15-cloud-amd64-dbg (= ${binary:Version}), ${misc:Depends} +Depends: linux-image-6.7.7-cloud-amd64-dbg (= ${binary:Version}), ${misc:Depends} Description: Debugging symbols for Linux cloud-amd64 configuration (meta-package) This package depends on the detached debugging symbols for the latest Linux kernel cloud-amd64 configuration. -Package: linux-headers-6.6.15-rt-amd64 +Package: linux-headers-6.7.7-rt-amd64 Architecture: amd64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Depends: linux-headers-6.6.15-common-rt (= ${source:Version}), linux-image-6.6.15-rt-amd64 (= ${binary:Version}) | linux-image-6.6.15-rt-amd64-unsigned (= ${binary:Version}), linux-kbuild-6.6.15, ${misc:Depends}, gcc-13 -Description: Header files for Linux 6.6.15-rt-amd64 +Depends: linux-headers-6.7.7-common-rt (= ${source:Version}), linux-image-6.7.7-rt-amd64 (= ${binary:Version}) | linux-image-6.7.7-rt-amd64-unsigned (= ${binary:Version}), linux-kbuild-6.7.7, ${misc:Depends}, gcc-13 +Description: Header files for Linux 6.7.7-rt-amd64 This package provides the architecture-specific kernel header files for - Linux kernel 6.6.15-rt-amd64, generally used for building out-of-tree + Linux kernel 6.7.7-rt-amd64, generally used for building out-of-tree kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-rt-amd64, and can be used for building + /usr/src/linux-headers-6.7.7-rt-amd64, and can be used for building modules that load into the kernel provided by the - linux-image-6.6.15-rt-amd64 package. + linux-image-6.7.7-rt-amd64 package. -Package: linux-image-6.6.15-rt-amd64-unsigned +Package: linux-image-6.7.7-rt-amd64-unsigned Architecture: amd64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [amd64] | linux-initramfs-tool [amd64] Recommends: firmware-linux-free, apparmor [amd64] -Suggests: linux-doc-6.6, debian-kernel-handbook, grub-pc [amd64] | grub-efi-amd64 [amd64] | extlinux [amd64] -Replaces: linux-image-6.6.15-rt-amd64 +Suggests: linux-doc-6.7, debian-kernel-handbook, grub-pc [amd64] | grub-efi-amd64 [amd64] | extlinux [amd64] +Replaces: linux-image-6.7.7-rt-amd64 Breaks: fwupdate (<< 12-7) [amd64], wireless-regdb (<< 2019.06.03-1~) [amd64], initramfs-tools (<< 0.120+deb8u2) [amd64] -Conflicts: linux-image-6.6.15-rt-amd64 -Description: Linux 6.6 for 64-bit PCs, PREEMPT_RT - The Linux kernel 6.6 and modules for use on PCs with AMD64, Intel 64 or +Conflicts: linux-image-6.7.7-rt-amd64 +Description: Linux 6.7 for 64-bit PCs, PREEMPT_RT + The Linux kernel 6.7 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-image-6.6.15-rt-amd64-dbg +Package: linux-image-6.7.7-rt-amd64-dbg Architecture: amd64 Section: debug Priority: optional Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.quick> Depends: ${misc:Depends} -Description: Debug symbols for linux-image-6.6.15-rt-amd64 +Description: Debug symbols for linux-image-6.7.7-rt-amd64 This package provides the detached debug symbols for the Linux kernel and - modules in linux-image-6.6.15-rt-amd64. + modules in linux-image-6.7.7-rt-amd64. Package: linux-image-rt-amd64-dbg Architecture: amd64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.nometa !pkg.linux.quick> Provides: linux-latest-image-dbg -Depends: linux-image-6.6.15-rt-amd64-dbg (= ${binary:Version}), ${misc:Depends} +Depends: linux-image-6.7.7-rt-amd64-dbg (= ${binary:Version}), ${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. @@ -1619,677 +1619,676 @@ Description: Template for signed linux-image packages for arm64 This package is used to control code signing by the Debian signing service. -Package: linux-headers-6.6.15-arm64 +Package: linux-headers-6.7.7-arm64 Architecture: arm64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Depends: linux-headers-6.6.15-common (= ${source:Version}), linux-image-6.6.15-arm64 (= ${binary:Version}) | linux-image-6.6.15-arm64-unsigned (= ${binary:Version}), linux-kbuild-6.6.15, ${misc:Depends}, gcc-13 -Description: Header files for Linux 6.6.15-arm64 +Depends: linux-headers-6.7.7-common (= ${source:Version}), linux-image-6.7.7-arm64 (= ${binary:Version}) | linux-image-6.7.7-arm64-unsigned (= ${binary:Version}), linux-kbuild-6.7.7, ${misc:Depends}, gcc-13 +Description: Header files for Linux 6.7.7-arm64 This package provides the architecture-specific kernel header files for - Linux kernel 6.6.15-arm64, generally used for building out-of-tree kernel + Linux kernel 6.7.7-arm64, generally used for building out-of-tree kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-arm64, and can be used for building modules - that load into the kernel provided by the linux-image-6.6.15-arm64 - package. + /usr/src/linux-headers-6.7.7-arm64, and can be used for building modules + that load into the kernel provided by the linux-image-6.7.7-arm64 package. -Package: linux-image-6.6.15-arm64-unsigned +Package: linux-image-6.7.7-arm64-unsigned Architecture: arm64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [arm64] | linux-initramfs-tool [arm64] Recommends: firmware-linux-free, apparmor [arm64] -Suggests: linux-doc-6.6, debian-kernel-handbook -Replaces: linux-image-6.6.15-arm64 +Suggests: linux-doc-6.7, debian-kernel-handbook +Replaces: linux-image-6.7.7-arm64 Breaks: fwupdate (<< 12-7) [arm64], wireless-regdb (<< 2019.06.03-1~) [arm64], initramfs-tools (<< 0.120+deb8u2) [arm64] -Conflicts: linux-image-6.6.15-arm64 -Description: Linux 6.6 for 64-bit ARMv8 machines - The Linux kernel 6.6 and modules for use on 64-bit ARMv8 machines. +Conflicts: linux-image-6.7.7-arm64 +Description: Linux 6.7 for 64-bit ARMv8 machines + The Linux kernel 6.7 and modules for use on 64-bit ARMv8 machines. -Package: linux-image-6.6.15-arm64-dbg +Package: linux-image-6.7.7-arm64-dbg Architecture: arm64 Section: debug Priority: optional Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.quick> Depends: ${misc:Depends} -Description: Debug symbols for linux-image-6.6.15-arm64 +Description: Debug symbols for linux-image-6.7.7-arm64 This package provides the detached debug symbols for the Linux kernel and - modules in linux-image-6.6.15-arm64. + modules in linux-image-6.7.7-arm64. Package: linux-image-arm64-dbg Architecture: arm64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.nometa !pkg.linux.quick> Provides: linux-latest-image-dbg -Depends: linux-image-6.6.15-arm64-dbg (= ${binary:Version}), ${misc:Depends} +Depends: linux-image-6.7.7-arm64-dbg (= ${binary:Version}), ${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: kernel-image-6.6.15-arm64-di +Package: kernel-image-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: standard Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: kernel-image, mmc-core-modules -Kernel-Version: 6.6.15-arm64 +Kernel-Version: 6.7.7-arm64 Description: Linux kernel image and core modules for the Debian installer This package contains the kernel image and core modules for the Debian installer boot images. It does _not_ provide a usable kernel for your full Debian system. -Package: nic-modules-6.6.15-arm64-di +Package: nic-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: standard Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-modules, nic-extra-modules -Depends: kernel-image-6.6.15-arm64-di, nic-shared-modules-6.6.15-arm64-di, i2c-modules-6.6.15-arm64-di, crc-modules-6.6.15-arm64-di, mtd-core-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, nic-shared-modules-6.7.7-arm64-di, i2c-modules-6.7.7-arm64-di, crc-modules-6.7.7-arm64-di, mtd-core-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: NIC drivers This package contains Ethernet and some paravirtualised network drivers for the kernel. -Package: nic-wireless-modules-6.6.15-arm64-di +Package: nic-wireless-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: standard Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-wireless-modules -Depends: kernel-image-6.6.15-arm64-di, nic-shared-modules-6.6.15-arm64-di, usb-modules-6.6.15-arm64-di, crc-modules-6.6.15-arm64-di, crypto-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, nic-shared-modules-6.7.7-arm64-di, usb-modules-6.7.7-arm64-di, crc-modules-6.7.7-arm64-di, crypto-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: Wireless NIC drivers This package contains wireless NIC drivers for the kernel. Includes crypto modules only needed for wireless (WEP, WPA). -Package: nic-shared-modules-6.6.15-arm64-di +Package: nic-shared-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: standard Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-shared-modules -Depends: kernel-image-6.6.15-arm64-di, crc-modules-6.6.15-arm64-di, i2c-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, crc-modules-6.7.7-arm64-di, i2c-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: Shared NIC drivers This package contains NIC drivers needed by combinations of nic-modules, nic-pcmcia-modules, nic-usb-modules and nic-wireless-modules. -Package: usb-serial-modules-6.6.15-arm64-di +Package: usb-serial-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-serial-modules -Depends: kernel-image-6.6.15-arm64-di, usb-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, usb-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: USB serial drivers This package contains USB serial drivers for the kernel. -Package: ppp-modules-6.6.15-arm64-di +Package: ppp-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ppp-modules -Depends: kernel-image-6.6.15-arm64-di, crc-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, crc-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: PPP drivers This package contains PPP drivers for the kernel. -Package: cdrom-core-modules-6.6.15-arm64-di +Package: cdrom-core-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: standard Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: cdrom-core-modules -Depends: kernel-image-6.6.15-arm64-di, scsi-core-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, scsi-core-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: CDROM support This package contains core CDROM support for the kernel. -Package: scsi-core-modules-6.6.15-arm64-di +Package: scsi-core-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: standard Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-core-modules -Depends: kernel-image-6.6.15-arm64-di, crc-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, crc-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: Core SCSI subsystem This package contains the core SCSI subsystem for the kernel. -Package: scsi-modules-6.6.15-arm64-di +Package: scsi-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: standard Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-modules -Depends: kernel-image-6.6.15-arm64-di, scsi-core-modules-6.6.15-arm64-di, cdrom-core-modules-6.6.15-arm64-di, ata-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, scsi-core-modules-6.7.7-arm64-di, cdrom-core-modules-6.7.7-arm64-di, ata-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: SCSI drivers This package contains SCSI drivers for the kernel. -Package: scsi-nic-modules-6.6.15-arm64-di +Package: scsi-nic-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-nic-modules -Depends: scsi-modules-6.6.15-arm64-di, nic-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: scsi-modules-6.7.7-arm64-di, nic-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: SCSI drivers for converged NICs This package contains SCSI drivers that depend on net drivers. -Package: loop-modules-6.6.15-arm64-di +Package: loop-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: standard Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: loop-modules -Depends: kernel-image-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: Loopback filesystem support This package contains loopback filesystem support for the kernel. -Package: btrfs-modules-6.6.15-arm64-di +Package: btrfs-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: btrfs-modules -Depends: kernel-image-6.6.15-arm64-di, crc-modules-6.6.15-arm64-di, md-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, crc-modules-6.7.7-arm64-di, md-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: BTRFS filesystem support This package contains the BTRFS filesystem module for the kernel. -Package: ext4-modules-6.6.15-arm64-di +Package: ext4-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: standard Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ext4-modules, ext2-modules, ext3-modules -Depends: kernel-image-6.6.15-arm64-di, crc-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, crc-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: ext2/ext3/ext4 filesystem support This package contains the ext4 filesystem module for the kernel, which also supports ext2 and ext3. -Package: isofs-modules-6.6.15-arm64-di +Package: isofs-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: standard Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: isofs-modules -Depends: kernel-image-6.6.15-arm64-di, cdrom-core-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, cdrom-core-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: ISOFS filesystem support This package contains the ISOFS filesystem module for the kernel. -Package: jfs-modules-6.6.15-arm64-di +Package: jfs-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: standard Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: jfs-modules -Depends: kernel-image-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: JFS filesystem support This package contains the JFS filesystem module for the kernel. -Package: xfs-modules-6.6.15-arm64-di +Package: xfs-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: standard Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: xfs-modules -Depends: kernel-image-6.6.15-arm64-di, crc-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, crc-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: XFS filesystem support This package contains the XFS filesystem module for the kernel. -Package: fat-modules-6.6.15-arm64-di +Package: fat-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fat-modules -Depends: kernel-image-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: FAT filesystem support This package contains the FAT and VFAT filesystem modules for the kernel. -Package: squashfs-modules-6.6.15-arm64-di +Package: squashfs-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: squashfs-modules -Depends: kernel-image-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: squashfs modules This package contains squashfs modules. -Package: udf-modules-6.6.15-arm64-di +Package: udf-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: udf-modules -Depends: kernel-image-6.6.15-arm64-di, crc-modules-6.6.15-arm64-di, cdrom-core-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, crc-modules-6.7.7-arm64-di, cdrom-core-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: UDF modules This package contains the UDF filesystem module. -Package: f2fs-modules-6.6.15-arm64-di +Package: f2fs-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: f2fs-modules -Depends: kernel-image-6.6.15-arm64-di, crc-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, crc-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: f2fs filesystem support This package contains the f2fs (Flash-Friendly Filesystem) module. -Package: md-modules-6.6.15-arm64-di +Package: md-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: md-modules -Depends: kernel-image-6.6.15-arm64-di, crc-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, crc-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: RAID and LVM support This package contains RAID and LVM modules for the kernel. -Package: multipath-modules-6.6.15-arm64-di +Package: multipath-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: multipath-modules -Depends: kernel-image-6.6.15-arm64-di, md-modules-6.6.15-arm64-di, scsi-core-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, md-modules-6.7.7-arm64-di, scsi-core-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: Multipath support This package contains DM-Multipath modules for the kernel. -Package: usb-modules-6.6.15-arm64-di +Package: usb-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-modules -Depends: kernel-image-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: USB support This package contains core USB drivers for the kernel. -Package: usb-storage-modules-6.6.15-arm64-di +Package: usb-storage-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: standard Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-storage-modules -Depends: kernel-image-6.6.15-arm64-di, scsi-core-modules-6.6.15-arm64-di, usb-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, scsi-core-modules-6.7.7-arm64-di, usb-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: USB storage support This package contains the USB storage driver for the kernel. -Package: fb-modules-6.6.15-arm64-di +Package: fb-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fb-modules -Depends: kernel-image-6.6.15-arm64-di, i2c-modules-6.6.15-arm64-di, input-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, i2c-modules-6.7.7-arm64-di, input-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: Frame buffer support This package contains Frame buffer drivers for the kernel. -Package: input-modules-6.6.15-arm64-di +Package: input-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: input-modules -Depends: kernel-image-6.6.15-arm64-di, usb-modules-6.6.15-arm64-di, i2c-modules-6.6.15-arm64-di, crc-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, usb-modules-6.7.7-arm64-di, i2c-modules-6.7.7-arm64-di, crc-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: Input devices support This package contains input device drivers for the kernel. -Package: event-modules-6.6.15-arm64-di +Package: event-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: event-modules -Depends: kernel-image-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: Event support This package contains event drivers for the kernel. -Package: nic-usb-modules-6.6.15-arm64-di +Package: nic-usb-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: standard Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-usb-modules -Depends: kernel-image-6.6.15-arm64-di, nic-shared-modules-6.6.15-arm64-di, nic-wireless-modules-6.6.15-arm64-di, usb-modules-6.6.15-arm64-di, crc-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, nic-shared-modules-6.7.7-arm64-di, nic-wireless-modules-6.7.7-arm64-di, usb-modules-6.7.7-arm64-di, crc-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: USB NIC drivers This package contains USB network adapter drivers for the kernel. -Package: sata-modules-6.6.15-arm64-di +Package: sata-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: standard Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sata-modules -Depends: kernel-image-6.6.15-arm64-di, scsi-core-modules-6.6.15-arm64-di, ata-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, scsi-core-modules-6.7.7-arm64-di, ata-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: SATA drivers This package contains SATA drivers for the kernel. -Package: i2c-modules-6.6.15-arm64-di +Package: i2c-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: i2c-modules -Depends: kernel-image-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: i2c support modules This package contains basic i2c support modules. -Package: crc-modules-6.6.15-arm64-di +Package: crc-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crc-modules -Depends: kernel-image-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: CRC modules This package contains CRC support modules. -Package: crypto-modules-6.6.15-arm64-di +Package: crypto-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-modules -Depends: kernel-image-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: crypto modules This package contains crypto modules. -Package: crypto-dm-modules-6.6.15-arm64-di +Package: crypto-dm-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-dm-modules -Depends: kernel-image-6.6.15-arm64-di, md-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, md-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: devicemapper crypto module This package contains the devicemapper crypto (dm-crypt) module. -Package: efi-modules-6.6.15-arm64-di +Package: efi-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: efi-modules -Depends: kernel-image-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: EFI modules This package contains EFI modules. -Package: ata-modules-6.6.15-arm64-di +Package: ata-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ata-modules -Depends: kernel-image-6.6.15-arm64-di, scsi-core-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, scsi-core-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: ATA disk modules This package contains core ATA disk modules used by both PATA and SATA disk drivers. -Package: mmc-modules-6.6.15-arm64-di +Package: mmc-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mmc-modules -Depends: kernel-image-6.6.15-arm64-di, usb-modules-6.6.15-arm64-di, crc-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, usb-modules-6.7.7-arm64-di, crc-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: MMC/SD card modules This package contains modules needed to support MMC (multimedia) and SD cards. -Package: nbd-modules-6.6.15-arm64-di +Package: nbd-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nbd-modules -Depends: kernel-image-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: Network Block Device modules This package contains the modules required for support of the Network Block Device -Package: speakup-modules-6.6.15-arm64-di +Package: speakup-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: speakup-modules -Depends: kernel-image-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: speakup modules This package contains speakup modules. -Package: uinput-modules-6.6.15-arm64-di +Package: uinput-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: uinput-modules -Depends: kernel-image-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: uinput support This package contains the uinput module. -Package: sound-modules-6.6.15-arm64-di +Package: sound-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sound-modules -Depends: kernel-image-6.6.15-arm64-di, i2c-modules-6.6.15-arm64-di, usb-modules-6.6.15-arm64-di, crc-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, i2c-modules-6.7.7-arm64-di, usb-modules-6.7.7-arm64-di, crc-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: sound support This package contains sound modules. -Package: leds-modules-6.6.15-arm64-di +Package: leds-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: leds-modules -Depends: kernel-image-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: LED modules This package contains LED modules. -Package: mtd-core-modules-6.6.15-arm64-di +Package: mtd-core-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <pkg.linux.udeb-unsigned-test-build !noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mtd-core-modules -Depends: kernel-image-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: MTD core This package contains the MTD core. -Package: linux-headers-6.6.15-cloud-arm64 +Package: linux-headers-6.7.7-cloud-arm64 Architecture: arm64 Build-Profiles: <!pkg.linux.nokernel> -Depends: linux-headers-6.6.15-common (= ${source:Version}), linux-image-6.6.15-cloud-arm64 (= ${binary:Version}) | linux-image-6.6.15-cloud-arm64-unsigned (= ${binary:Version}), linux-kbuild-6.6.15, ${misc:Depends}, gcc-13 -Description: Header files for Linux 6.6.15-cloud-arm64 +Depends: linux-headers-6.7.7-common (= ${source:Version}), linux-image-6.7.7-cloud-arm64 (= ${binary:Version}) | linux-image-6.7.7-cloud-arm64-unsigned (= ${binary:Version}), linux-kbuild-6.7.7, ${misc:Depends}, gcc-13 +Description: Header files for Linux 6.7.7-cloud-arm64 This package provides the architecture-specific kernel header files for - Linux kernel 6.6.15-cloud-arm64, generally used for building out-of-tree + Linux kernel 6.7.7-cloud-arm64, generally used for building out-of-tree kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-cloud-arm64, and can be used for building + /usr/src/linux-headers-6.7.7-cloud-arm64, and can be used for building modules that load into the kernel provided by the - linux-image-6.6.15-cloud-arm64 package. + linux-image-6.7.7-cloud-arm64 package. -Package: linux-image-6.6.15-cloud-arm64-unsigned +Package: linux-image-6.7.7-cloud-arm64-unsigned Architecture: arm64 Build-Profiles: <!pkg.linux.nokernel> Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [arm64] | linux-initramfs-tool [arm64] Recommends: firmware-linux-free, apparmor [arm64] -Suggests: linux-doc-6.6, debian-kernel-handbook -Replaces: linux-image-6.6.15-cloud-arm64 +Suggests: linux-doc-6.7, debian-kernel-handbook +Replaces: linux-image-6.7.7-cloud-arm64 Breaks: fwupdate (<< 12-7) [arm64], wireless-regdb (<< 2019.06.03-1~) [arm64], initramfs-tools (<< 0.120+deb8u2) [arm64] -Conflicts: linux-image-6.6.15-cloud-arm64 -Description: Linux 6.6 for arm64 cloud - The Linux kernel 6.6 and modules for use on cloud platforms supporting +Conflicts: linux-image-6.7.7-cloud-arm64 +Description: Linux 6.7 for arm64 cloud + The Linux kernel 6.7 and modules for use on cloud platforms supporting arm64 virtual machines. -Package: linux-image-6.6.15-cloud-arm64-dbg +Package: linux-image-6.7.7-cloud-arm64-dbg Architecture: arm64 Section: debug Priority: optional Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.quick> Depends: ${misc:Depends} -Description: Debug symbols for linux-image-6.6.15-cloud-arm64 +Description: Debug symbols for linux-image-6.7.7-cloud-arm64 This package provides the detached debug symbols for the Linux kernel and - modules in linux-image-6.6.15-cloud-arm64. + modules in linux-image-6.7.7-cloud-arm64. Package: linux-image-cloud-arm64-dbg Architecture: arm64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.nometa !pkg.linux.quick> Provides: linux-latest-image-dbg -Depends: linux-image-6.6.15-cloud-arm64-dbg (= ${binary:Version}), ${misc:Depends} +Depends: linux-image-6.7.7-cloud-arm64-dbg (= ${binary:Version}), ${misc:Depends} Description: Debugging symbols for Linux cloud-arm64 configuration (meta-package) This package depends on the detached debugging symbols for the latest Linux kernel cloud-arm64 configuration. -Package: linux-headers-6.6.15-rt-arm64 +Package: linux-headers-6.7.7-rt-arm64 Architecture: arm64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Depends: linux-headers-6.6.15-common-rt (= ${source:Version}), linux-image-6.6.15-rt-arm64 (= ${binary:Version}) | linux-image-6.6.15-rt-arm64-unsigned (= ${binary:Version}), linux-kbuild-6.6.15, ${misc:Depends}, gcc-13 -Description: Header files for Linux 6.6.15-rt-arm64 +Depends: linux-headers-6.7.7-common-rt (= ${source:Version}), linux-image-6.7.7-rt-arm64 (= ${binary:Version}) | linux-image-6.7.7-rt-arm64-unsigned (= ${binary:Version}), linux-kbuild-6.7.7, ${misc:Depends}, gcc-13 +Description: Header files for Linux 6.7.7-rt-arm64 This package provides the architecture-specific kernel header files for - Linux kernel 6.6.15-rt-arm64, generally used for building out-of-tree + Linux kernel 6.7.7-rt-arm64, generally used for building out-of-tree kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-rt-arm64, and can be used for building + /usr/src/linux-headers-6.7.7-rt-arm64, and can be used for building modules that load into the kernel provided by the - linux-image-6.6.15-rt-arm64 package. + linux-image-6.7.7-rt-arm64 package. -Package: linux-image-6.6.15-rt-arm64-unsigned +Package: linux-image-6.7.7-rt-arm64-unsigned Architecture: arm64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [arm64] | linux-initramfs-tool [arm64] Recommends: firmware-linux-free, apparmor [arm64] -Suggests: linux-doc-6.6, debian-kernel-handbook -Replaces: linux-image-6.6.15-rt-arm64 +Suggests: linux-doc-6.7, debian-kernel-handbook +Replaces: linux-image-6.7.7-rt-arm64 Breaks: fwupdate (<< 12-7) [arm64], wireless-regdb (<< 2019.06.03-1~) [arm64], initramfs-tools (<< 0.120+deb8u2) [arm64] -Conflicts: linux-image-6.6.15-rt-arm64 -Description: Linux 6.6 for 64-bit ARMv8 machines, PREEMPT_RT - The Linux kernel 6.6 and modules for use on 64-bit ARMv8 machines. +Conflicts: linux-image-6.7.7-rt-arm64 +Description: Linux 6.7 for 64-bit ARMv8 machines, PREEMPT_RT + The Linux kernel 6.7 and modules for use on 64-bit ARMv8 machines. . This kernel includes the PREEMPT_RT realtime patch set. -Package: linux-image-6.6.15-rt-arm64-dbg +Package: linux-image-6.7.7-rt-arm64-dbg Architecture: arm64 Section: debug Priority: optional Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.quick> Depends: ${misc:Depends} -Description: Debug symbols for linux-image-6.6.15-rt-arm64 +Description: Debug symbols for linux-image-6.7.7-rt-arm64 This package provides the detached debug symbols for the Linux kernel and - modules in linux-image-6.6.15-rt-arm64. + modules in linux-image-6.7.7-rt-arm64. Package: linux-image-rt-arm64-dbg Architecture: arm64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.nometa !pkg.linux.quick> Provides: linux-latest-image-dbg -Depends: linux-image-6.6.15-rt-arm64-dbg (= ${binary:Version}), ${misc:Depends} +Depends: linux-image-6.7.7-rt-arm64-dbg (= ${binary:Version}), ${misc:Depends} Description: Debugging symbols for Linux rt-arm64 configuration (meta-package) This package depends on the detached debugging symbols for the latest Linux kernel rt-arm64 configuration. -Package: linux-headers-6.6.15-rpi +Package: linux-headers-6.7.7-rpi Architecture: armel Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Depends: linux-headers-6.6.15-common (= ${source:Version}), linux-image-6.6.15-rpi (= ${binary:Version}) | linux-image-6.6.15-rpi-unsigned (= ${binary:Version}), linux-kbuild-6.6.15, ${misc:Depends}, gcc-13 -Description: Header files for Linux 6.6.15-rpi +Depends: linux-headers-6.7.7-common (= ${source:Version}), linux-image-6.7.7-rpi (= ${binary:Version}) | linux-image-6.7.7-rpi-unsigned (= ${binary:Version}), linux-kbuild-6.7.7, ${misc:Depends}, gcc-13 +Description: Header files for Linux 6.7.7-rpi This package provides the architecture-specific kernel header files for - Linux kernel 6.6.15-rpi, generally used for building out-of-tree kernel + Linux kernel 6.7.7-rpi, generally used for building out-of-tree kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-rpi, and can be used for building modules - that load into the kernel provided by the linux-image-6.6.15-rpi package. + /usr/src/linux-headers-6.7.7-rpi, and can be used for building modules + that load into the kernel provided by the linux-image-6.7.7-rpi package. -Package: linux-image-6.6.15-rpi +Package: linux-image-6.7.7-rpi Architecture: armel Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [armel] | linux-initramfs-tool [armel] Recommends: firmware-linux-free, apparmor [armel] -Suggests: linux-doc-6.6, debian-kernel-handbook +Suggests: linux-doc-6.7, debian-kernel-handbook Breaks: fwupdate (<< 12-7) [armel], wireless-regdb (<< 2019.06.03-1~) [armel], initramfs-tools (<< 0.120+deb8u2) [armel] -Description: Linux 6.6 for Raspberry Pi Zero, Zero W and 1 - The Linux kernel 6.6 and modules for use on Raspberry Pi Zero, Zero W and +Description: Linux 6.7 for Raspberry Pi Zero, Zero W and 1 + The Linux kernel 6.7 and modules for use on Raspberry Pi Zero, Zero W and 1 based systems. Package: linux-image-rpi Architecture: armel Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Provides: linux-latest-modules-6.6.15-rpi, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] -Depends: linux-image-6.6.15-rpi (= ${binary:Version}), ${misc:Depends} +Provides: linux-latest-modules-6.7.7-rpi, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] +Depends: linux-image-6.7.7-rpi (= ${binary:Version}), ${misc:Depends} Description: Linux for Raspberry Pi Zero, Zero W and 1 (meta-package) This package depends on the latest Linux kernel and modules for use on Raspberry Pi Zero, Zero W and 1 based systems. @@ -2297,59 +2296,58 @@ Description: Linux for Raspberry Pi Zero, Zero W and 1 (meta-package) Package: linux-headers-rpi Architecture: armel Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Depends: linux-headers-6.6.15-rpi (= ${binary:Version}), ${misc:Depends} +Depends: linux-headers-6.7.7-rpi (= ${binary:Version}), ${misc:Depends} Description: Header files for Linux rpi configuration (meta-package) This package depends on the architecture-specific header files for the latest Linux kernel rpi configuration. -Package: linux-image-6.6.15-rpi-dbg +Package: linux-image-6.7.7-rpi-dbg Architecture: armel Section: debug Priority: optional Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.quick> Depends: ${misc:Depends} -Description: Debug symbols for linux-image-6.6.15-rpi +Description: Debug symbols for linux-image-6.7.7-rpi This package provides the detached debug symbols for the Linux kernel and - modules in linux-image-6.6.15-rpi. + modules in linux-image-6.7.7-rpi. Package: linux-image-rpi-dbg Architecture: armel Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.nometa !pkg.linux.quick> Provides: linux-latest-image-dbg -Depends: linux-image-6.6.15-rpi-dbg (= ${binary:Version}), ${misc:Depends} +Depends: linux-image-6.7.7-rpi-dbg (= ${binary:Version}), ${misc:Depends} Description: Debugging symbols for Linux rpi configuration (meta-package) This package depends on the detached debugging symbols for the latest Linux kernel rpi configuration. -Package: linux-headers-6.6.15-armmp +Package: linux-headers-6.7.7-armmp Architecture: armhf Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Depends: linux-headers-6.6.15-common (= ${source:Version}), linux-image-6.6.15-armmp (= ${binary:Version}) | linux-image-6.6.15-armmp-unsigned (= ${binary:Version}), linux-kbuild-6.6.15, ${misc:Depends}, gcc-13 -Description: Header files for Linux 6.6.15-armmp +Depends: linux-headers-6.7.7-common (= ${source:Version}), linux-image-6.7.7-armmp (= ${binary:Version}) | linux-image-6.7.7-armmp-unsigned (= ${binary:Version}), linux-kbuild-6.7.7, ${misc:Depends}, gcc-13 +Description: Header files for Linux 6.7.7-armmp This package provides the architecture-specific kernel header files for - Linux kernel 6.6.15-armmp, generally used for building out-of-tree kernel + Linux kernel 6.7.7-armmp, generally used for building out-of-tree kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-armmp, and can be used for building modules - that load into the kernel provided by the linux-image-6.6.15-armmp - package. + /usr/src/linux-headers-6.7.7-armmp, and can be used for building modules + that load into the kernel provided by the linux-image-6.7.7-armmp package. -Package: linux-image-6.6.15-armmp +Package: linux-image-6.7.7-armmp Architecture: armhf Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [armhf] | linux-initramfs-tool [armhf] Recommends: firmware-linux-free, apparmor [armhf] -Suggests: linux-doc-6.6, debian-kernel-handbook +Suggests: linux-doc-6.7, debian-kernel-handbook Breaks: fwupdate (<< 12-7) [armhf], wireless-regdb (<< 2019.06.03-1~) [armhf], initramfs-tools (<< 0.120+deb8u2) [armhf] -Description: Linux 6.6 for ARMv7 multiplatform compatible SoCs - The Linux kernel 6.6 and modules for use on ARMv7 multiplatform kernel. +Description: Linux 6.7 for ARMv7 multiplatform compatible SoCs + The Linux kernel 6.7 and modules for use on ARMv7 multiplatform kernel. See https://wiki.debian.org/DebianKernel/ARMMP for details of supported platforms. Package: linux-image-armmp Architecture: armhf Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Provides: linux-latest-modules-6.6.15-armmp, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386], linux-image-generic -Depends: linux-image-6.6.15-armmp (= ${binary:Version}), ${misc:Depends} +Provides: linux-latest-modules-6.7.7-armmp, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386], linux-image-generic +Depends: linux-image-6.7.7-armmp (= ${binary:Version}), ${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 @@ -2360,571 +2358,571 @@ Package: linux-headers-armmp Architecture: armhf Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> Provides: linux-headers-generic -Depends: linux-headers-6.6.15-armmp (= ${binary:Version}), ${misc:Depends} +Depends: linux-headers-6.7.7-armmp (= ${binary:Version}), ${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-6.6.15-armmp-dbg +Package: linux-image-6.7.7-armmp-dbg Architecture: armhf Section: debug Priority: optional Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.quick> Depends: ${misc:Depends} -Description: Debug symbols for linux-image-6.6.15-armmp +Description: Debug symbols for linux-image-6.7.7-armmp This package provides the detached debug symbols for the Linux kernel and - modules in linux-image-6.6.15-armmp. + modules in linux-image-6.7.7-armmp. Package: linux-image-armmp-dbg Architecture: armhf Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.nometa !pkg.linux.quick> Provides: linux-latest-image-dbg -Depends: linux-image-6.6.15-armmp-dbg (= ${binary:Version}), ${misc:Depends} +Depends: linux-image-6.7.7-armmp-dbg (= ${binary:Version}), ${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: kernel-image-6.6.15-armmp-di +Package: kernel-image-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: kernel-image, mmc-core-modules, mtd-core-modules -Kernel-Version: 6.6.15-armmp +Kernel-Version: 6.7.7-armmp Description: Linux kernel image and core modules for the Debian installer This package contains the kernel image and core modules for the Debian installer boot images. It does _not_ provide a usable kernel for your full Debian system. -Package: nic-modules-6.6.15-armmp-di +Package: nic-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-modules, nic-extra-modules -Depends: kernel-image-6.6.15-armmp-di, nic-shared-modules-6.6.15-armmp-di, i2c-modules-6.6.15-armmp-di, crc-modules-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: kernel-image-6.7.7-armmp-di, nic-shared-modules-6.7.7-armmp-di, i2c-modules-6.7.7-armmp-di, crc-modules-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: NIC drivers This package contains Ethernet and some paravirtualised network drivers for the kernel. -Package: nic-wireless-modules-6.6.15-armmp-di +Package: nic-wireless-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-wireless-modules -Depends: kernel-image-6.6.15-armmp-di, nic-shared-modules-6.6.15-armmp-di, usb-modules-6.6.15-armmp-di, crc-modules-6.6.15-armmp-di, crypto-modules-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: kernel-image-6.7.7-armmp-di, nic-shared-modules-6.7.7-armmp-di, usb-modules-6.7.7-armmp-di, crc-modules-6.7.7-armmp-di, crypto-modules-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: Wireless NIC drivers This package contains wireless NIC drivers for the kernel. Includes crypto modules only needed for wireless (WEP, WPA). -Package: nic-shared-modules-6.6.15-armmp-di +Package: nic-shared-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-shared-modules -Depends: kernel-image-6.6.15-armmp-di, crc-modules-6.6.15-armmp-di, i2c-modules-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: kernel-image-6.7.7-armmp-di, crc-modules-6.7.7-armmp-di, i2c-modules-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: Shared NIC drivers This package contains NIC drivers needed by combinations of nic-modules, nic-pcmcia-modules, nic-usb-modules and nic-wireless-modules. -Package: usb-serial-modules-6.6.15-armmp-di +Package: usb-serial-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-serial-modules -Depends: kernel-image-6.6.15-armmp-di, usb-modules-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: kernel-image-6.7.7-armmp-di, usb-modules-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: USB serial drivers This package contains USB serial drivers for the kernel. -Package: ppp-modules-6.6.15-armmp-di +Package: ppp-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ppp-modules -Depends: kernel-image-6.6.15-armmp-di, crc-modules-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: kernel-image-6.7.7-armmp-di, crc-modules-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: PPP drivers This package contains PPP drivers for the kernel. -Package: pata-modules-6.6.15-armmp-di +Package: pata-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: pata-modules -Depends: kernel-image-6.6.15-armmp-di, ata-modules-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: kernel-image-6.7.7-armmp-di, ata-modules-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: PATA drivers This package contains PATA drivers for the kernel. -Package: cdrom-core-modules-6.6.15-armmp-di +Package: cdrom-core-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: cdrom-core-modules -Depends: kernel-image-6.6.15-armmp-di, scsi-core-modules-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: kernel-image-6.7.7-armmp-di, scsi-core-modules-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: CDROM support This package contains core CDROM support for the kernel. -Package: scsi-core-modules-6.6.15-armmp-di +Package: scsi-core-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-core-modules -Depends: kernel-image-6.6.15-armmp-di, crc-modules-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: kernel-image-6.7.7-armmp-di, crc-modules-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: Core SCSI subsystem This package contains the core SCSI subsystem for the kernel. -Package: scsi-modules-6.6.15-armmp-di +Package: scsi-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-modules -Depends: kernel-image-6.6.15-armmp-di, scsi-core-modules-6.6.15-armmp-di, cdrom-core-modules-6.6.15-armmp-di, ata-modules-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: kernel-image-6.7.7-armmp-di, scsi-core-modules-6.7.7-armmp-di, cdrom-core-modules-6.7.7-armmp-di, ata-modules-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: SCSI drivers This package contains SCSI drivers for the kernel. -Package: scsi-nic-modules-6.6.15-armmp-di +Package: scsi-nic-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-nic-modules -Depends: scsi-modules-6.6.15-armmp-di, nic-modules-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: scsi-modules-6.7.7-armmp-di, nic-modules-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: SCSI drivers for converged NICs This package contains SCSI drivers that depend on net drivers. -Package: loop-modules-6.6.15-armmp-di +Package: loop-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: loop-modules -Depends: kernel-image-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: kernel-image-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: Loopback filesystem support This package contains loopback filesystem support for the kernel. -Package: btrfs-modules-6.6.15-armmp-di +Package: btrfs-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: btrfs-modules -Depends: kernel-image-6.6.15-armmp-di, crc-modules-6.6.15-armmp-di, md-modules-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: kernel-image-6.7.7-armmp-di, crc-modules-6.7.7-armmp-di, md-modules-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: BTRFS filesystem support This package contains the BTRFS filesystem module for the kernel. -Package: ext4-modules-6.6.15-armmp-di +Package: ext4-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ext4-modules, ext2-modules, ext3-modules -Depends: kernel-image-6.6.15-armmp-di, crc-modules-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: kernel-image-6.7.7-armmp-di, crc-modules-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: ext2/ext3/ext4 filesystem support This package contains the ext4 filesystem module for the kernel, which also supports ext2 and ext3. -Package: isofs-modules-6.6.15-armmp-di +Package: isofs-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: isofs-modules -Depends: kernel-image-6.6.15-armmp-di, cdrom-core-modules-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: kernel-image-6.7.7-armmp-di, cdrom-core-modules-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: ISOFS filesystem support This package contains the ISOFS filesystem module for the kernel. -Package: jfs-modules-6.6.15-armmp-di +Package: jfs-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: jfs-modules -Depends: kernel-image-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: kernel-image-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: JFS filesystem support This package contains the JFS filesystem module for the kernel. -Package: fat-modules-6.6.15-armmp-di +Package: fat-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fat-modules -Depends: kernel-image-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: kernel-image-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: FAT filesystem support This package contains the FAT and VFAT filesystem modules for the kernel. -Package: squashfs-modules-6.6.15-armmp-di +Package: squashfs-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: squashfs-modules -Depends: kernel-image-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: kernel-image-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: squashfs modules This package contains squashfs modules. -Package: udf-modules-6.6.15-armmp-di +Package: udf-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: udf-modules -Depends: kernel-image-6.6.15-armmp-di, crc-modules-6.6.15-armmp-di, cdrom-core-modules-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: kernel-image-6.7.7-armmp-di, crc-modules-6.7.7-armmp-di, cdrom-core-modules-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: UDF modules This package contains the UDF filesystem module. -Package: f2fs-modules-6.6.15-armmp-di +Package: f2fs-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: f2fs-modules -Depends: kernel-image-6.6.15-armmp-di, crc-modules-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: kernel-image-6.7.7-armmp-di, crc-modules-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: f2fs filesystem support This package contains the f2fs (Flash-Friendly Filesystem) module. -Package: md-modules-6.6.15-armmp-di +Package: md-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: md-modules -Depends: kernel-image-6.6.15-armmp-di, crc-modules-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: kernel-image-6.7.7-armmp-di, crc-modules-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: RAID and LVM support This package contains RAID and LVM modules for the kernel. -Package: multipath-modules-6.6.15-armmp-di +Package: multipath-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: multipath-modules -Depends: kernel-image-6.6.15-armmp-di, md-modules-6.6.15-armmp-di, scsi-core-modules-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: kernel-image-6.7.7-armmp-di, md-modules-6.7.7-armmp-di, scsi-core-modules-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: Multipath support This package contains DM-Multipath modules for the kernel. -Package: usb-modules-6.6.15-armmp-di +Package: usb-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-modules -Depends: kernel-image-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: kernel-image-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: USB support This package contains core USB drivers for the kernel. -Package: usb-storage-modules-6.6.15-armmp-di +Package: usb-storage-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-storage-modules -Depends: kernel-image-6.6.15-armmp-di, scsi-core-modules-6.6.15-armmp-di, usb-modules-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: kernel-image-6.7.7-armmp-di, scsi-core-modules-6.7.7-armmp-di, usb-modules-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: USB storage support This package contains the USB storage driver for the kernel. -Package: fb-modules-6.6.15-armmp-di +Package: fb-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fb-modules -Depends: kernel-image-6.6.15-armmp-di, i2c-modules-6.6.15-armmp-di, input-modules-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: kernel-image-6.7.7-armmp-di, i2c-modules-6.7.7-armmp-di, input-modules-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: Frame buffer support This package contains Frame buffer drivers for the kernel. -Package: input-modules-6.6.15-armmp-di +Package: input-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: input-modules -Depends: kernel-image-6.6.15-armmp-di, usb-modules-6.6.15-armmp-di, i2c-modules-6.6.15-armmp-di, crc-modules-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: kernel-image-6.7.7-armmp-di, usb-modules-6.7.7-armmp-di, i2c-modules-6.7.7-armmp-di, crc-modules-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: Input devices support This package contains input device drivers for the kernel. -Package: event-modules-6.6.15-armmp-di +Package: event-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: event-modules -Depends: kernel-image-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: kernel-image-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: Event support This package contains event drivers for the kernel. -Package: nic-usb-modules-6.6.15-armmp-di +Package: nic-usb-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-usb-modules -Depends: kernel-image-6.6.15-armmp-di, nic-shared-modules-6.6.15-armmp-di, nic-wireless-modules-6.6.15-armmp-di, usb-modules-6.6.15-armmp-di, crc-modules-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: kernel-image-6.7.7-armmp-di, nic-shared-modules-6.7.7-armmp-di, nic-wireless-modules-6.7.7-armmp-di, usb-modules-6.7.7-armmp-di, crc-modules-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: USB NIC drivers This package contains USB network adapter drivers for the kernel. -Package: sata-modules-6.6.15-armmp-di +Package: sata-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sata-modules -Depends: kernel-image-6.6.15-armmp-di, scsi-core-modules-6.6.15-armmp-di, ata-modules-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: kernel-image-6.7.7-armmp-di, scsi-core-modules-6.7.7-armmp-di, ata-modules-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: SATA drivers This package contains SATA drivers for the kernel. -Package: i2c-modules-6.6.15-armmp-di +Package: i2c-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: i2c-modules -Depends: kernel-image-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: kernel-image-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: i2c support modules This package contains basic i2c support modules. -Package: crc-modules-6.6.15-armmp-di +Package: crc-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crc-modules -Depends: kernel-image-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: kernel-image-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: CRC modules This package contains CRC support modules. -Package: crypto-modules-6.6.15-armmp-di +Package: crypto-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-modules -Depends: kernel-image-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: kernel-image-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: crypto modules This package contains crypto modules. -Package: crypto-dm-modules-6.6.15-armmp-di +Package: crypto-dm-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-dm-modules -Depends: kernel-image-6.6.15-armmp-di, md-modules-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: kernel-image-6.7.7-armmp-di, md-modules-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: devicemapper crypto module This package contains the devicemapper crypto (dm-crypt) module. -Package: efi-modules-6.6.15-armmp-di +Package: efi-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: efi-modules -Depends: kernel-image-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: kernel-image-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: EFI modules This package contains EFI modules. -Package: ata-modules-6.6.15-armmp-di +Package: ata-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ata-modules -Depends: kernel-image-6.6.15-armmp-di, scsi-core-modules-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: kernel-image-6.7.7-armmp-di, scsi-core-modules-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: ATA disk modules This package contains core ATA disk modules used by both PATA and SATA disk drivers. -Package: mmc-modules-6.6.15-armmp-di +Package: mmc-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mmc-modules -Depends: kernel-image-6.6.15-armmp-di, usb-modules-6.6.15-armmp-di, crc-modules-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: kernel-image-6.7.7-armmp-di, usb-modules-6.7.7-armmp-di, crc-modules-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: MMC/SD card modules This package contains modules needed to support MMC (multimedia) and SD cards. -Package: nbd-modules-6.6.15-armmp-di +Package: nbd-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nbd-modules -Depends: kernel-image-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: kernel-image-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: Network Block Device modules This package contains the modules required for support of the Network Block Device -Package: speakup-modules-6.6.15-armmp-di +Package: speakup-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: speakup-modules -Depends: kernel-image-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: kernel-image-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: speakup modules This package contains speakup modules. -Package: uinput-modules-6.6.15-armmp-di +Package: uinput-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: uinput-modules -Depends: kernel-image-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: kernel-image-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: uinput support This package contains the uinput module. -Package: sound-modules-6.6.15-armmp-di +Package: sound-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sound-modules -Depends: kernel-image-6.6.15-armmp-di, i2c-modules-6.6.15-armmp-di, usb-modules-6.6.15-armmp-di, crc-modules-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: kernel-image-6.7.7-armmp-di, i2c-modules-6.7.7-armmp-di, usb-modules-6.7.7-armmp-di, crc-modules-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: sound support This package contains sound modules. -Package: leds-modules-6.6.15-armmp-di +Package: leds-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: leds-modules -Depends: kernel-image-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: kernel-image-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: LED modules This package contains LED modules. -Package: mtd-modules-6.6.15-armmp-di +Package: mtd-modules-6.7.7-armmp-di Package-Type: udeb Architecture: armhf Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mtd-modules -Depends: kernel-image-6.6.15-armmp-di -Kernel-Version: 6.6.15-armmp +Depends: kernel-image-6.7.7-armmp-di +Kernel-Version: 6.7.7-armmp Description: MTD driver modules This package contains MTD driver modules. -Package: linux-headers-6.6.15-armmp-lpae +Package: linux-headers-6.7.7-armmp-lpae Architecture: armhf Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Depends: linux-headers-6.6.15-common (= ${source:Version}), linux-image-6.6.15-armmp-lpae (= ${binary:Version}) | linux-image-6.6.15-armmp-lpae-unsigned (= ${binary:Version}), linux-kbuild-6.6.15, ${misc:Depends}, gcc-13 -Description: Header files for Linux 6.6.15-armmp-lpae +Depends: linux-headers-6.7.7-common (= ${source:Version}), linux-image-6.7.7-armmp-lpae (= ${binary:Version}) | linux-image-6.7.7-armmp-lpae-unsigned (= ${binary:Version}), linux-kbuild-6.7.7, ${misc:Depends}, gcc-13 +Description: Header files for Linux 6.7.7-armmp-lpae This package provides the architecture-specific kernel header files for - Linux kernel 6.6.15-armmp-lpae, generally used for building out-of-tree + Linux kernel 6.7.7-armmp-lpae, generally used for building out-of-tree kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-armmp-lpae, and can be used for building + /usr/src/linux-headers-6.7.7-armmp-lpae, and can be used for building modules that load into the kernel provided by the - linux-image-6.6.15-armmp-lpae package. + linux-image-6.7.7-armmp-lpae package. -Package: linux-image-6.6.15-armmp-lpae +Package: linux-image-6.7.7-armmp-lpae Architecture: armhf Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [armhf] | linux-initramfs-tool [armhf] Recommends: firmware-linux-free, apparmor [armhf] -Suggests: linux-doc-6.6, debian-kernel-handbook +Suggests: linux-doc-6.7, debian-kernel-handbook Breaks: fwupdate (<< 12-7) [armhf], wireless-regdb (<< 2019.06.03-1~) [armhf], initramfs-tools (<< 0.120+deb8u2) [armhf] -Description: Linux 6.6 for ARMv7 multiplatform compatible SoCs supporting LPAE - The Linux kernel 6.6 and modules for use on ARMv7 multiplatform kernel +Description: Linux 6.7 for ARMv7 multiplatform compatible SoCs supporting LPAE + The Linux kernel 6.7 and modules for use on ARMv7 multiplatform kernel supporting LPAE. See https://wiki.debian.org/DebianKernel/ARMMP for details of supported platforms.. Package: linux-image-armmp-lpae Architecture: armhf Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Provides: linux-latest-modules-6.6.15-armmp-lpae, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] -Depends: linux-image-6.6.15-armmp-lpae (= ${binary:Version}), ${misc:Depends} +Provides: linux-latest-modules-6.7.7-armmp-lpae, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] +Depends: linux-image-6.7.7-armmp-lpae (= ${binary:Version}), ${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 @@ -2934,51 +2932,51 @@ Description: Linux for ARMv7 multiplatform compatible SoCs supporting LPAE (meta Package: linux-headers-armmp-lpae Architecture: armhf Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Depends: linux-headers-6.6.15-armmp-lpae (= ${binary:Version}), ${misc:Depends} +Depends: linux-headers-6.7.7-armmp-lpae (= ${binary:Version}), ${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-6.6.15-armmp-lpae-dbg +Package: linux-image-6.7.7-armmp-lpae-dbg Architecture: armhf Section: debug Priority: optional Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.quick> Depends: ${misc:Depends} -Description: Debug symbols for linux-image-6.6.15-armmp-lpae +Description: Debug symbols for linux-image-6.7.7-armmp-lpae This package provides the detached debug symbols for the Linux kernel and - modules in linux-image-6.6.15-armmp-lpae. + modules in linux-image-6.7.7-armmp-lpae. Package: linux-image-armmp-lpae-dbg Architecture: armhf Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.nometa !pkg.linux.quick> Provides: linux-latest-image-dbg -Depends: linux-image-6.6.15-armmp-lpae-dbg (= ${binary:Version}), ${misc:Depends} +Depends: linux-image-6.7.7-armmp-lpae-dbg (= ${binary:Version}), ${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-headers-6.6.15-rt-armmp +Package: linux-headers-6.7.7-rt-armmp Architecture: armhf Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Depends: linux-headers-6.6.15-common-rt (= ${source:Version}), linux-image-6.6.15-rt-armmp (= ${binary:Version}) | linux-image-6.6.15-rt-armmp-unsigned (= ${binary:Version}), linux-kbuild-6.6.15, ${misc:Depends}, gcc-13 -Description: Header files for Linux 6.6.15-rt-armmp +Depends: linux-headers-6.7.7-common-rt (= ${source:Version}), linux-image-6.7.7-rt-armmp (= ${binary:Version}) | linux-image-6.7.7-rt-armmp-unsigned (= ${binary:Version}), linux-kbuild-6.7.7, ${misc:Depends}, gcc-13 +Description: Header files for Linux 6.7.7-rt-armmp This package provides the architecture-specific kernel header files for - Linux kernel 6.6.15-rt-armmp, generally used for building out-of-tree + Linux kernel 6.7.7-rt-armmp, generally used for building out-of-tree kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-rt-armmp, and can be used for building + /usr/src/linux-headers-6.7.7-rt-armmp, and can be used for building modules that load into the kernel provided by the - linux-image-6.6.15-rt-armmp package. + linux-image-6.7.7-rt-armmp package. -Package: linux-image-6.6.15-rt-armmp +Package: linux-image-6.7.7-rt-armmp Architecture: armhf Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [armhf] | linux-initramfs-tool [armhf] Recommends: firmware-linux-free, apparmor [armhf] -Suggests: linux-doc-6.6, debian-kernel-handbook +Suggests: linux-doc-6.7, debian-kernel-handbook Breaks: fwupdate (<< 12-7) [armhf], wireless-regdb (<< 2019.06.03-1~) [armhf], initramfs-tools (<< 0.120+deb8u2) [armhf] -Description: Linux 6.6 for ARMv7 multiplatform compatible SoCs, PREEMPT_RT - The Linux kernel 6.6 and modules for use on ARMv7 multiplatform kernel. +Description: Linux 6.7 for ARMv7 multiplatform compatible SoCs, PREEMPT_RT + The Linux kernel 6.7 and modules for use on ARMv7 multiplatform kernel. See https://wiki.debian.org/DebianKernel/ARMMP for details of supported platforms. . @@ -2987,8 +2985,8 @@ Description: Linux 6.6 for ARMv7 multiplatform compatible SoCs, PREEMPT_RT Package: linux-image-rt-armmp Architecture: armhf Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Provides: linux-latest-modules-6.6.15-rt-armmp, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] -Depends: linux-image-6.6.15-rt-armmp (= ${binary:Version}), ${misc:Depends} +Provides: linux-latest-modules-6.7.7-rt-armmp, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] +Depends: linux-image-6.7.7-rt-armmp (= ${binary:Version}), ${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 @@ -2998,58 +2996,58 @@ Description: Linux for ARMv7 multiplatform compatible SoCs (meta-package) Package: linux-headers-rt-armmp Architecture: armhf Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Depends: linux-headers-6.6.15-rt-armmp (= ${binary:Version}), ${misc:Depends} +Depends: linux-headers-6.7.7-rt-armmp (= ${binary:Version}), ${misc:Depends} Description: Header files for Linux rt-armmp configuration (meta-package) This package depends on the architecture-specific header files for the latest Linux kernel rt-armmp configuration. -Package: linux-image-6.6.15-rt-armmp-dbg +Package: linux-image-6.7.7-rt-armmp-dbg Architecture: armhf Section: debug Priority: optional Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.quick> Depends: ${misc:Depends} -Description: Debug symbols for linux-image-6.6.15-rt-armmp +Description: Debug symbols for linux-image-6.7.7-rt-armmp This package provides the detached debug symbols for the Linux kernel and - modules in linux-image-6.6.15-rt-armmp. + modules in linux-image-6.7.7-rt-armmp. Package: linux-image-rt-armmp-dbg Architecture: armhf Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.nometa !pkg.linux.quick> Provides: linux-latest-image-dbg -Depends: linux-image-6.6.15-rt-armmp-dbg (= ${binary:Version}), ${misc:Depends} +Depends: linux-image-6.7.7-rt-armmp-dbg (= ${binary:Version}), ${misc:Depends} Description: Debugging symbols for Linux rt-armmp configuration (meta-package) This package depends on the detached debugging symbols for the latest Linux kernel rt-armmp configuration. -Package: linux-headers-6.6.15-parisc +Package: linux-headers-6.7.7-parisc Architecture: hppa Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Depends: linux-headers-6.6.15-common (= ${source:Version}), linux-image-6.6.15-parisc (= ${binary:Version}) | linux-image-6.6.15-parisc-unsigned (= ${binary:Version}), linux-kbuild-6.6.15, ${misc:Depends}, gcc-13 -Description: Header files for Linux 6.6.15-parisc +Depends: linux-headers-6.7.7-common (= ${source:Version}), linux-image-6.7.7-parisc (= ${binary:Version}) | linux-image-6.7.7-parisc-unsigned (= ${binary:Version}), linux-kbuild-6.7.7, ${misc:Depends}, gcc-13 +Description: Header files for Linux 6.7.7-parisc This package provides the architecture-specific kernel header files for - Linux kernel 6.6.15-parisc, generally used for building out-of-tree kernel + Linux kernel 6.7.7-parisc, generally used for building out-of-tree kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-parisc, and can be used for building modules - that load into the kernel provided by the linux-image-6.6.15-parisc + /usr/src/linux-headers-6.7.7-parisc, and can be used for building modules + that load into the kernel provided by the linux-image-6.7.7-parisc package. -Package: linux-image-6.6.15-parisc +Package: linux-image-6.7.7-parisc Architecture: hppa Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [hppa] | linux-initramfs-tool [hppa] Recommends: firmware-linux-free, apparmor [hppa] -Suggests: linux-doc-6.6, debian-kernel-handbook, palo [hppa] +Suggests: linux-doc-6.7, debian-kernel-handbook, palo [hppa] Breaks: fwupdate (<< 12-7) [hppa], wireless-regdb (<< 2019.06.03-1~) [hppa], initramfs-tools (<< 0.120+deb8u2) [hppa] -Description: Linux 6.6 for 32-bit PA-RISC - The Linux kernel 6.6 and modules for use on HP PA-RISC 32-bit systems with +Description: Linux 6.7 for 32-bit PA-RISC + The Linux kernel 6.7 and modules for use on HP PA-RISC 32-bit systems with max 4 GB RAM. Package: linux-image-parisc Architecture: hppa Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Provides: linux-latest-modules-6.6.15-parisc, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386], linux-image-generic -Depends: linux-image-6.6.15-parisc (= ${binary:Version}), ${misc:Depends} +Provides: linux-latest-modules-6.7.7-parisc, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386], linux-image-generic +Depends: linux-image-6.7.7-parisc (= ${binary:Version}), ${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. @@ -3058,472 +3056,472 @@ Package: linux-headers-parisc Architecture: hppa Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> Provides: linux-headers-generic -Depends: linux-headers-6.6.15-parisc (= ${binary:Version}), ${misc:Depends} +Depends: linux-headers-6.7.7-parisc (= ${binary:Version}), ${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-6.6.15-parisc-dbg +Package: linux-image-6.7.7-parisc-dbg Architecture: hppa Section: debug Priority: optional Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.quick> Depends: ${misc:Depends} -Description: Debug symbols for linux-image-6.6.15-parisc +Description: Debug symbols for linux-image-6.7.7-parisc This package provides the detached debug symbols for the Linux kernel and - modules in linux-image-6.6.15-parisc. + modules in linux-image-6.7.7-parisc. Package: linux-image-parisc-dbg Architecture: hppa Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.nometa !pkg.linux.quick> Provides: linux-latest-image-dbg -Depends: linux-image-6.6.15-parisc-dbg (= ${binary:Version}), ${misc:Depends} +Depends: linux-image-6.7.7-parisc-dbg (= ${binary:Version}), ${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: kernel-image-6.6.15-parisc-di +Package: kernel-image-6.7.7-parisc-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: kernel-image -Kernel-Version: 6.6.15-parisc +Kernel-Version: 6.7.7-parisc Description: Linux kernel image and core modules for the Debian installer This package contains the kernel image and core modules for the Debian installer boot images. It does _not_ provide a usable kernel for your full Debian system. -Package: nic-modules-6.6.15-parisc-di +Package: nic-modules-6.7.7-parisc-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-modules, nic-extra-modules -Depends: kernel-image-6.6.15-parisc-di, nic-shared-modules-6.6.15-parisc-di, i2c-modules-6.6.15-parisc-di, crc-modules-6.6.15-parisc-di -Kernel-Version: 6.6.15-parisc +Depends: kernel-image-6.7.7-parisc-di, nic-shared-modules-6.7.7-parisc-di, i2c-modules-6.7.7-parisc-di, crc-modules-6.7.7-parisc-di +Kernel-Version: 6.7.7-parisc Description: NIC drivers This package contains Ethernet and some paravirtualised network drivers for the kernel. -Package: nic-shared-modules-6.6.15-parisc-di +Package: nic-shared-modules-6.7.7-parisc-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-shared-modules -Depends: kernel-image-6.6.15-parisc-di, crc-modules-6.6.15-parisc-di, i2c-modules-6.6.15-parisc-di -Kernel-Version: 6.6.15-parisc +Depends: kernel-image-6.7.7-parisc-di, crc-modules-6.7.7-parisc-di, i2c-modules-6.7.7-parisc-di +Kernel-Version: 6.7.7-parisc Description: Shared NIC drivers This package contains NIC drivers needed by combinations of nic-modules, nic-pcmcia-modules, nic-usb-modules and nic-wireless-modules. -Package: serial-modules-6.6.15-parisc-di +Package: serial-modules-6.7.7-parisc-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: serial-modules -Depends: kernel-image-6.6.15-parisc-di -Kernel-Version: 6.6.15-parisc +Depends: kernel-image-6.7.7-parisc-di +Kernel-Version: 6.7.7-parisc Description: Serial drivers This package contains serial drivers for the kernel. -Package: usb-serial-modules-6.6.15-parisc-di +Package: usb-serial-modules-6.7.7-parisc-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-serial-modules -Depends: kernel-image-6.6.15-parisc-di, usb-modules-6.6.15-parisc-di -Kernel-Version: 6.6.15-parisc +Depends: kernel-image-6.7.7-parisc-di, usb-modules-6.7.7-parisc-di +Kernel-Version: 6.7.7-parisc Description: USB serial drivers This package contains USB serial drivers for the kernel. -Package: ppp-modules-6.6.15-parisc-di +Package: ppp-modules-6.7.7-parisc-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ppp-modules -Depends: kernel-image-6.6.15-parisc-di, serial-modules-6.6.15-parisc-di, crc-modules-6.6.15-parisc-di -Kernel-Version: 6.6.15-parisc +Depends: kernel-image-6.7.7-parisc-di, serial-modules-6.7.7-parisc-di, crc-modules-6.7.7-parisc-di +Kernel-Version: 6.7.7-parisc Description: PPP drivers This package contains PPP drivers for the kernel. -Package: pata-modules-6.6.15-parisc-di +Package: pata-modules-6.7.7-parisc-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: pata-modules -Depends: kernel-image-6.6.15-parisc-di, ata-modules-6.6.15-parisc-di -Kernel-Version: 6.6.15-parisc +Depends: kernel-image-6.7.7-parisc-di, ata-modules-6.7.7-parisc-di +Kernel-Version: 6.7.7-parisc Description: PATA drivers This package contains PATA drivers for the kernel. -Package: cdrom-core-modules-6.6.15-parisc-di +Package: cdrom-core-modules-6.7.7-parisc-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: cdrom-core-modules -Depends: kernel-image-6.6.15-parisc-di, scsi-core-modules-6.6.15-parisc-di -Kernel-Version: 6.6.15-parisc +Depends: kernel-image-6.7.7-parisc-di, scsi-core-modules-6.7.7-parisc-di +Kernel-Version: 6.7.7-parisc Description: CDROM support This package contains core CDROM support for the kernel. -Package: scsi-core-modules-6.6.15-parisc-di +Package: scsi-core-modules-6.7.7-parisc-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-core-modules -Depends: kernel-image-6.6.15-parisc-di, crc-modules-6.6.15-parisc-di -Kernel-Version: 6.6.15-parisc +Depends: kernel-image-6.7.7-parisc-di, crc-modules-6.7.7-parisc-di +Kernel-Version: 6.7.7-parisc Description: Core SCSI subsystem This package contains the core SCSI subsystem for the kernel. -Package: scsi-modules-6.6.15-parisc-di +Package: scsi-modules-6.7.7-parisc-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-modules -Depends: kernel-image-6.6.15-parisc-di, scsi-core-modules-6.6.15-parisc-di, cdrom-core-modules-6.6.15-parisc-di, ata-modules-6.6.15-parisc-di -Kernel-Version: 6.6.15-parisc +Depends: kernel-image-6.7.7-parisc-di, scsi-core-modules-6.7.7-parisc-di, cdrom-core-modules-6.7.7-parisc-di, ata-modules-6.7.7-parisc-di +Kernel-Version: 6.7.7-parisc Description: SCSI drivers This package contains SCSI drivers for the kernel. -Package: loop-modules-6.6.15-parisc-di +Package: loop-modules-6.7.7-parisc-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: loop-modules -Depends: kernel-image-6.6.15-parisc-di -Kernel-Version: 6.6.15-parisc +Depends: kernel-image-6.7.7-parisc-di +Kernel-Version: 6.7.7-parisc Description: Loopback filesystem support This package contains loopback filesystem support for the kernel. -Package: btrfs-modules-6.6.15-parisc-di +Package: btrfs-modules-6.7.7-parisc-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: btrfs-modules -Depends: kernel-image-6.6.15-parisc-di, crc-modules-6.6.15-parisc-di, md-modules-6.6.15-parisc-di -Kernel-Version: 6.6.15-parisc +Depends: kernel-image-6.7.7-parisc-di, crc-modules-6.7.7-parisc-di, md-modules-6.7.7-parisc-di +Kernel-Version: 6.7.7-parisc Description: BTRFS filesystem support This package contains the BTRFS filesystem module for the kernel. -Package: ext4-modules-6.6.15-parisc-di +Package: ext4-modules-6.7.7-parisc-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ext4-modules, ext2-modules, ext3-modules -Depends: kernel-image-6.6.15-parisc-di, crc-modules-6.6.15-parisc-di -Kernel-Version: 6.6.15-parisc +Depends: kernel-image-6.7.7-parisc-di, crc-modules-6.7.7-parisc-di +Kernel-Version: 6.7.7-parisc Description: ext2/ext3/ext4 filesystem support This package contains the ext4 filesystem module for the kernel, which also supports ext2 and ext3. -Package: isofs-modules-6.6.15-parisc-di +Package: isofs-modules-6.7.7-parisc-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: isofs-modules -Depends: kernel-image-6.6.15-parisc-di, cdrom-core-modules-6.6.15-parisc-di -Kernel-Version: 6.6.15-parisc +Depends: kernel-image-6.7.7-parisc-di, cdrom-core-modules-6.7.7-parisc-di +Kernel-Version: 6.7.7-parisc Description: ISOFS filesystem support This package contains the ISOFS filesystem module for the kernel. -Package: jfs-modules-6.6.15-parisc-di +Package: jfs-modules-6.7.7-parisc-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: jfs-modules -Depends: kernel-image-6.6.15-parisc-di -Kernel-Version: 6.6.15-parisc +Depends: kernel-image-6.7.7-parisc-di +Kernel-Version: 6.7.7-parisc Description: JFS filesystem support This package contains the JFS filesystem module for the kernel. -Package: xfs-modules-6.6.15-parisc-di +Package: xfs-modules-6.7.7-parisc-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: xfs-modules -Depends: kernel-image-6.6.15-parisc-di, crc-modules-6.6.15-parisc-di -Kernel-Version: 6.6.15-parisc +Depends: kernel-image-6.7.7-parisc-di, crc-modules-6.7.7-parisc-di +Kernel-Version: 6.7.7-parisc Description: XFS filesystem support This package contains the XFS filesystem module for the kernel. -Package: fat-modules-6.6.15-parisc-di +Package: fat-modules-6.7.7-parisc-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fat-modules -Depends: kernel-image-6.6.15-parisc-di -Kernel-Version: 6.6.15-parisc +Depends: kernel-image-6.7.7-parisc-di +Kernel-Version: 6.7.7-parisc Description: FAT filesystem support This package contains the FAT and VFAT filesystem modules for the kernel. -Package: squashfs-modules-6.6.15-parisc-di +Package: squashfs-modules-6.7.7-parisc-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: squashfs-modules -Depends: kernel-image-6.6.15-parisc-di -Kernel-Version: 6.6.15-parisc +Depends: kernel-image-6.7.7-parisc-di +Kernel-Version: 6.7.7-parisc Description: squashfs modules This package contains squashfs modules. -Package: f2fs-modules-6.6.15-parisc-di +Package: f2fs-modules-6.7.7-parisc-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: f2fs-modules -Depends: kernel-image-6.6.15-parisc-di, crc-modules-6.6.15-parisc-di -Kernel-Version: 6.6.15-parisc +Depends: kernel-image-6.7.7-parisc-di, crc-modules-6.7.7-parisc-di +Kernel-Version: 6.7.7-parisc Description: f2fs filesystem support This package contains the f2fs (Flash-Friendly Filesystem) module. -Package: md-modules-6.6.15-parisc-di +Package: md-modules-6.7.7-parisc-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: md-modules -Depends: kernel-image-6.6.15-parisc-di, crc-modules-6.6.15-parisc-di -Kernel-Version: 6.6.15-parisc +Depends: kernel-image-6.7.7-parisc-di, crc-modules-6.7.7-parisc-di +Kernel-Version: 6.7.7-parisc Description: RAID and LVM support This package contains RAID and LVM modules for the kernel. -Package: multipath-modules-6.6.15-parisc-di +Package: multipath-modules-6.7.7-parisc-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: multipath-modules -Depends: kernel-image-6.6.15-parisc-di, md-modules-6.6.15-parisc-di, scsi-core-modules-6.6.15-parisc-di -Kernel-Version: 6.6.15-parisc +Depends: kernel-image-6.7.7-parisc-di, md-modules-6.7.7-parisc-di, scsi-core-modules-6.7.7-parisc-di +Kernel-Version: 6.7.7-parisc Description: Multipath support This package contains DM-Multipath modules for the kernel. -Package: usb-modules-6.6.15-parisc-di +Package: usb-modules-6.7.7-parisc-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-modules -Depends: kernel-image-6.6.15-parisc-di -Kernel-Version: 6.6.15-parisc +Depends: kernel-image-6.7.7-parisc-di +Kernel-Version: 6.7.7-parisc Description: USB support This package contains core USB drivers for the kernel. -Package: usb-storage-modules-6.6.15-parisc-di +Package: usb-storage-modules-6.7.7-parisc-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-storage-modules -Depends: kernel-image-6.6.15-parisc-di, scsi-core-modules-6.6.15-parisc-di, usb-modules-6.6.15-parisc-di -Kernel-Version: 6.6.15-parisc +Depends: kernel-image-6.7.7-parisc-di, scsi-core-modules-6.7.7-parisc-di, usb-modules-6.7.7-parisc-di +Kernel-Version: 6.7.7-parisc Description: USB storage support This package contains the USB storage driver for the kernel. -Package: input-modules-6.6.15-parisc-di +Package: input-modules-6.7.7-parisc-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: input-modules -Depends: kernel-image-6.6.15-parisc-di, usb-modules-6.6.15-parisc-di, i2c-modules-6.6.15-parisc-di, crc-modules-6.6.15-parisc-di -Kernel-Version: 6.6.15-parisc +Depends: kernel-image-6.7.7-parisc-di, usb-modules-6.7.7-parisc-di, i2c-modules-6.7.7-parisc-di, crc-modules-6.7.7-parisc-di +Kernel-Version: 6.7.7-parisc Description: Input devices support This package contains input device drivers for the kernel. -Package: event-modules-6.6.15-parisc-di +Package: event-modules-6.7.7-parisc-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: event-modules -Depends: kernel-image-6.6.15-parisc-di -Kernel-Version: 6.6.15-parisc +Depends: kernel-image-6.7.7-parisc-di +Kernel-Version: 6.7.7-parisc Description: Event support This package contains event drivers for the kernel. -Package: mouse-modules-6.6.15-parisc-di +Package: mouse-modules-6.7.7-parisc-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mouse-modules -Depends: kernel-image-6.6.15-parisc-di, event-modules-6.6.15-parisc-di, input-modules-6.6.15-parisc-di, usb-modules-6.6.15-parisc-di -Kernel-Version: 6.6.15-parisc +Depends: kernel-image-6.7.7-parisc-di, event-modules-6.7.7-parisc-di, input-modules-6.7.7-parisc-di, usb-modules-6.7.7-parisc-di +Kernel-Version: 6.7.7-parisc Description: Mouse support This package contains mouse drivers for the kernel. -Package: nic-usb-modules-6.6.15-parisc-di +Package: nic-usb-modules-6.7.7-parisc-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-usb-modules -Depends: kernel-image-6.6.15-parisc-di, nic-shared-modules-6.6.15-parisc-di, usb-modules-6.6.15-parisc-di, crc-modules-6.6.15-parisc-di -Kernel-Version: 6.6.15-parisc +Depends: kernel-image-6.7.7-parisc-di, nic-shared-modules-6.7.7-parisc-di, usb-modules-6.7.7-parisc-di, crc-modules-6.7.7-parisc-di +Kernel-Version: 6.7.7-parisc Description: USB NIC drivers This package contains USB network adapter drivers for the kernel. -Package: sata-modules-6.6.15-parisc-di +Package: sata-modules-6.7.7-parisc-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sata-modules -Depends: kernel-image-6.6.15-parisc-di, scsi-core-modules-6.6.15-parisc-di, ata-modules-6.6.15-parisc-di -Kernel-Version: 6.6.15-parisc +Depends: kernel-image-6.7.7-parisc-di, scsi-core-modules-6.7.7-parisc-di, ata-modules-6.7.7-parisc-di +Kernel-Version: 6.7.7-parisc Description: SATA drivers This package contains SATA drivers for the kernel. -Package: i2c-modules-6.6.15-parisc-di +Package: i2c-modules-6.7.7-parisc-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: i2c-modules -Depends: kernel-image-6.6.15-parisc-di -Kernel-Version: 6.6.15-parisc +Depends: kernel-image-6.7.7-parisc-di +Kernel-Version: 6.7.7-parisc Description: i2c support modules This package contains basic i2c support modules. -Package: crc-modules-6.6.15-parisc-di +Package: crc-modules-6.7.7-parisc-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crc-modules -Depends: kernel-image-6.6.15-parisc-di -Kernel-Version: 6.6.15-parisc +Depends: kernel-image-6.7.7-parisc-di +Kernel-Version: 6.7.7-parisc Description: CRC modules This package contains CRC support modules. -Package: crypto-modules-6.6.15-parisc-di +Package: crypto-modules-6.7.7-parisc-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-modules -Depends: kernel-image-6.6.15-parisc-di -Kernel-Version: 6.6.15-parisc +Depends: kernel-image-6.7.7-parisc-di +Kernel-Version: 6.7.7-parisc Description: crypto modules This package contains crypto modules. -Package: crypto-dm-modules-6.6.15-parisc-di +Package: crypto-dm-modules-6.7.7-parisc-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-dm-modules -Depends: kernel-image-6.6.15-parisc-di, md-modules-6.6.15-parisc-di -Kernel-Version: 6.6.15-parisc +Depends: kernel-image-6.7.7-parisc-di, md-modules-6.7.7-parisc-di +Kernel-Version: 6.7.7-parisc Description: devicemapper crypto module This package contains the devicemapper crypto (dm-crypt) module. -Package: ata-modules-6.6.15-parisc-di +Package: ata-modules-6.7.7-parisc-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ata-modules -Depends: kernel-image-6.6.15-parisc-di, scsi-core-modules-6.6.15-parisc-di -Kernel-Version: 6.6.15-parisc +Depends: kernel-image-6.7.7-parisc-di, scsi-core-modules-6.7.7-parisc-di +Kernel-Version: 6.7.7-parisc Description: ATA disk modules This package contains core ATA disk modules used by both PATA and SATA disk drivers. -Package: nbd-modules-6.6.15-parisc-di +Package: nbd-modules-6.7.7-parisc-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nbd-modules -Depends: kernel-image-6.6.15-parisc-di -Kernel-Version: 6.6.15-parisc +Depends: kernel-image-6.7.7-parisc-di +Kernel-Version: 6.7.7-parisc Description: Network Block Device modules This package contains the modules required for support of the Network Block Device -Package: linux-headers-6.6.15-parisc64 +Package: linux-headers-6.7.7-parisc64 Architecture: hppa Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Depends: linux-headers-6.6.15-common (= ${source:Version}), linux-image-6.6.15-parisc64 (= ${binary:Version}) | linux-image-6.6.15-parisc64-unsigned (= ${binary:Version}), linux-kbuild-6.6.15, ${misc:Depends}, gcc-13 -Description: Header files for Linux 6.6.15-parisc64 +Depends: linux-headers-6.7.7-common (= ${source:Version}), linux-image-6.7.7-parisc64 (= ${binary:Version}) | linux-image-6.7.7-parisc64-unsigned (= ${binary:Version}), linux-kbuild-6.7.7, ${misc:Depends}, gcc-13 +Description: Header files for Linux 6.7.7-parisc64 This package provides the architecture-specific kernel header files for - Linux kernel 6.6.15-parisc64, generally used for building out-of-tree + Linux kernel 6.7.7-parisc64, generally used for building out-of-tree kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-parisc64, and can be used for building + /usr/src/linux-headers-6.7.7-parisc64, and can be used for building modules that load into the kernel provided by the - linux-image-6.6.15-parisc64 package. + linux-image-6.7.7-parisc64 package. -Package: linux-image-6.6.15-parisc64 +Package: linux-image-6.7.7-parisc64 Architecture: hppa Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [hppa] | linux-initramfs-tool [hppa] Recommends: firmware-linux-free, apparmor [hppa] -Suggests: linux-doc-6.6, debian-kernel-handbook, palo [hppa] +Suggests: linux-doc-6.7, debian-kernel-handbook, palo [hppa] Breaks: fwupdate (<< 12-7) [hppa], wireless-regdb (<< 2019.06.03-1~) [hppa], initramfs-tools (<< 0.120+deb8u2) [hppa] -Description: Linux 6.6 for 64-bit PA-RISC - The Linux kernel 6.6 and modules for use on HP PA-RISC 64-bit systems with +Description: Linux 6.7 for 64-bit PA-RISC + The Linux kernel 6.7 and modules for use on HP PA-RISC 64-bit systems with support for more than 4 GB RAM. Package: linux-image-parisc64 Architecture: hppa Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Provides: linux-latest-modules-6.6.15-parisc64, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] -Depends: linux-image-6.6.15-parisc64 (= ${binary:Version}), ${misc:Depends} +Provides: linux-latest-modules-6.7.7-parisc64, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] +Depends: linux-image-6.7.7-parisc64 (= ${binary:Version}), ${misc:Depends} Description: Linux for 64-bit PA-RISC (meta-package) This package depends on the latest Linux kernel and modules for use on HP PA-RISC 64-bit systems with support for more than 4 GB RAM. @@ -3531,471 +3529,471 @@ Description: Linux for 64-bit PA-RISC (meta-package) Package: linux-headers-parisc64 Architecture: hppa Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Depends: linux-headers-6.6.15-parisc64 (= ${binary:Version}), ${misc:Depends} +Depends: linux-headers-6.7.7-parisc64 (= ${binary:Version}), ${misc:Depends} Description: Header files for Linux parisc64 configuration (meta-package) This package depends on the architecture-specific header files for the latest Linux kernel parisc64 configuration. -Package: linux-image-6.6.15-parisc64-dbg +Package: linux-image-6.7.7-parisc64-dbg Architecture: hppa Section: debug Priority: optional Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.quick> Depends: ${misc:Depends} -Description: Debug symbols for linux-image-6.6.15-parisc64 +Description: Debug symbols for linux-image-6.7.7-parisc64 This package provides the detached debug symbols for the Linux kernel and - modules in linux-image-6.6.15-parisc64. + modules in linux-image-6.7.7-parisc64. Package: linux-image-parisc64-dbg Architecture: hppa Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.nometa !pkg.linux.quick> Provides: linux-latest-image-dbg -Depends: linux-image-6.6.15-parisc64-dbg (= ${binary:Version}), ${misc:Depends} +Depends: linux-image-6.7.7-parisc64-dbg (= ${binary:Version}), ${misc:Depends} Description: Debugging symbols for Linux parisc64 configuration (meta-package) This package depends on the detached debugging symbols for the latest Linux kernel parisc64 configuration. -Package: kernel-image-6.6.15-parisc64-di +Package: kernel-image-6.7.7-parisc64-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: kernel-image, i2c-modules -Kernel-Version: 6.6.15-parisc64 +Kernel-Version: 6.7.7-parisc64 Description: Linux kernel image and core modules for the Debian installer This package contains the kernel image and core modules for the Debian installer boot images. It does _not_ provide a usable kernel for your full Debian system. -Package: nic-modules-6.6.15-parisc64-di +Package: nic-modules-6.7.7-parisc64-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-modules, nic-extra-modules -Depends: kernel-image-6.6.15-parisc64-di, nic-shared-modules-6.6.15-parisc64-di, crc-modules-6.6.15-parisc64-di -Kernel-Version: 6.6.15-parisc64 +Depends: kernel-image-6.7.7-parisc64-di, nic-shared-modules-6.7.7-parisc64-di, crc-modules-6.7.7-parisc64-di +Kernel-Version: 6.7.7-parisc64 Description: NIC drivers This package contains Ethernet and some paravirtualised network drivers for the kernel. -Package: nic-shared-modules-6.6.15-parisc64-di +Package: nic-shared-modules-6.7.7-parisc64-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-shared-modules -Depends: kernel-image-6.6.15-parisc64-di, crc-modules-6.6.15-parisc64-di -Kernel-Version: 6.6.15-parisc64 +Depends: kernel-image-6.7.7-parisc64-di, crc-modules-6.7.7-parisc64-di +Kernel-Version: 6.7.7-parisc64 Description: Shared NIC drivers This package contains NIC drivers needed by combinations of nic-modules, nic-pcmcia-modules, nic-usb-modules and nic-wireless-modules. -Package: serial-modules-6.6.15-parisc64-di +Package: serial-modules-6.7.7-parisc64-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: serial-modules -Depends: kernel-image-6.6.15-parisc64-di -Kernel-Version: 6.6.15-parisc64 +Depends: kernel-image-6.7.7-parisc64-di +Kernel-Version: 6.7.7-parisc64 Description: Serial drivers This package contains serial drivers for the kernel. -Package: usb-serial-modules-6.6.15-parisc64-di +Package: usb-serial-modules-6.7.7-parisc64-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-serial-modules -Depends: kernel-image-6.6.15-parisc64-di, usb-modules-6.6.15-parisc64-di -Kernel-Version: 6.6.15-parisc64 +Depends: kernel-image-6.7.7-parisc64-di, usb-modules-6.7.7-parisc64-di +Kernel-Version: 6.7.7-parisc64 Description: USB serial drivers This package contains USB serial drivers for the kernel. -Package: ppp-modules-6.6.15-parisc64-di +Package: ppp-modules-6.7.7-parisc64-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ppp-modules -Depends: kernel-image-6.6.15-parisc64-di, serial-modules-6.6.15-parisc64-di, crc-modules-6.6.15-parisc64-di -Kernel-Version: 6.6.15-parisc64 +Depends: kernel-image-6.7.7-parisc64-di, serial-modules-6.7.7-parisc64-di, crc-modules-6.7.7-parisc64-di +Kernel-Version: 6.7.7-parisc64 Description: PPP drivers This package contains PPP drivers for the kernel. -Package: pata-modules-6.6.15-parisc64-di +Package: pata-modules-6.7.7-parisc64-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: pata-modules -Depends: kernel-image-6.6.15-parisc64-di, ata-modules-6.6.15-parisc64-di -Kernel-Version: 6.6.15-parisc64 +Depends: kernel-image-6.7.7-parisc64-di, ata-modules-6.7.7-parisc64-di +Kernel-Version: 6.7.7-parisc64 Description: PATA drivers This package contains PATA drivers for the kernel. -Package: cdrom-core-modules-6.6.15-parisc64-di +Package: cdrom-core-modules-6.7.7-parisc64-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: cdrom-core-modules -Depends: kernel-image-6.6.15-parisc64-di, scsi-core-modules-6.6.15-parisc64-di -Kernel-Version: 6.6.15-parisc64 +Depends: kernel-image-6.7.7-parisc64-di, scsi-core-modules-6.7.7-parisc64-di +Kernel-Version: 6.7.7-parisc64 Description: CDROM support This package contains core CDROM support for the kernel. -Package: scsi-core-modules-6.6.15-parisc64-di +Package: scsi-core-modules-6.7.7-parisc64-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-core-modules -Depends: kernel-image-6.6.15-parisc64-di, crc-modules-6.6.15-parisc64-di -Kernel-Version: 6.6.15-parisc64 +Depends: kernel-image-6.7.7-parisc64-di, crc-modules-6.7.7-parisc64-di +Kernel-Version: 6.7.7-parisc64 Description: Core SCSI subsystem This package contains the core SCSI subsystem for the kernel. -Package: scsi-modules-6.6.15-parisc64-di +Package: scsi-modules-6.7.7-parisc64-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-modules -Depends: kernel-image-6.6.15-parisc64-di, scsi-core-modules-6.6.15-parisc64-di, cdrom-core-modules-6.6.15-parisc64-di, ata-modules-6.6.15-parisc64-di -Kernel-Version: 6.6.15-parisc64 +Depends: kernel-image-6.7.7-parisc64-di, scsi-core-modules-6.7.7-parisc64-di, cdrom-core-modules-6.7.7-parisc64-di, ata-modules-6.7.7-parisc64-di +Kernel-Version: 6.7.7-parisc64 Description: SCSI drivers This package contains SCSI drivers for the kernel. -Package: loop-modules-6.6.15-parisc64-di +Package: loop-modules-6.7.7-parisc64-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: loop-modules -Depends: kernel-image-6.6.15-parisc64-di -Kernel-Version: 6.6.15-parisc64 +Depends: kernel-image-6.7.7-parisc64-di +Kernel-Version: 6.7.7-parisc64 Description: Loopback filesystem support This package contains loopback filesystem support for the kernel. -Package: btrfs-modules-6.6.15-parisc64-di +Package: btrfs-modules-6.7.7-parisc64-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: btrfs-modules -Depends: kernel-image-6.6.15-parisc64-di, crc-modules-6.6.15-parisc64-di, md-modules-6.6.15-parisc64-di -Kernel-Version: 6.6.15-parisc64 +Depends: kernel-image-6.7.7-parisc64-di, crc-modules-6.7.7-parisc64-di, md-modules-6.7.7-parisc64-di +Kernel-Version: 6.7.7-parisc64 Description: BTRFS filesystem support This package contains the BTRFS filesystem module for the kernel. -Package: ext4-modules-6.6.15-parisc64-di +Package: ext4-modules-6.7.7-parisc64-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ext4-modules, ext2-modules, ext3-modules -Depends: kernel-image-6.6.15-parisc64-di, crc-modules-6.6.15-parisc64-di -Kernel-Version: 6.6.15-parisc64 +Depends: kernel-image-6.7.7-parisc64-di, crc-modules-6.7.7-parisc64-di +Kernel-Version: 6.7.7-parisc64 Description: ext2/ext3/ext4 filesystem support This package contains the ext4 filesystem module for the kernel, which also supports ext2 and ext3. -Package: isofs-modules-6.6.15-parisc64-di +Package: isofs-modules-6.7.7-parisc64-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: isofs-modules -Depends: kernel-image-6.6.15-parisc64-di, cdrom-core-modules-6.6.15-parisc64-di -Kernel-Version: 6.6.15-parisc64 +Depends: kernel-image-6.7.7-parisc64-di, cdrom-core-modules-6.7.7-parisc64-di +Kernel-Version: 6.7.7-parisc64 Description: ISOFS filesystem support This package contains the ISOFS filesystem module for the kernel. -Package: jfs-modules-6.6.15-parisc64-di +Package: jfs-modules-6.7.7-parisc64-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: jfs-modules -Depends: kernel-image-6.6.15-parisc64-di -Kernel-Version: 6.6.15-parisc64 +Depends: kernel-image-6.7.7-parisc64-di +Kernel-Version: 6.7.7-parisc64 Description: JFS filesystem support This package contains the JFS filesystem module for the kernel. -Package: xfs-modules-6.6.15-parisc64-di +Package: xfs-modules-6.7.7-parisc64-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: xfs-modules -Depends: kernel-image-6.6.15-parisc64-di, crc-modules-6.6.15-parisc64-di -Kernel-Version: 6.6.15-parisc64 +Depends: kernel-image-6.7.7-parisc64-di, crc-modules-6.7.7-parisc64-di +Kernel-Version: 6.7.7-parisc64 Description: XFS filesystem support This package contains the XFS filesystem module for the kernel. -Package: fat-modules-6.6.15-parisc64-di +Package: fat-modules-6.7.7-parisc64-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fat-modules -Depends: kernel-image-6.6.15-parisc64-di -Kernel-Version: 6.6.15-parisc64 +Depends: kernel-image-6.7.7-parisc64-di +Kernel-Version: 6.7.7-parisc64 Description: FAT filesystem support This package contains the FAT and VFAT filesystem modules for the kernel. -Package: squashfs-modules-6.6.15-parisc64-di +Package: squashfs-modules-6.7.7-parisc64-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: squashfs-modules -Depends: kernel-image-6.6.15-parisc64-di -Kernel-Version: 6.6.15-parisc64 +Depends: kernel-image-6.7.7-parisc64-di +Kernel-Version: 6.7.7-parisc64 Description: squashfs modules This package contains squashfs modules. -Package: f2fs-modules-6.6.15-parisc64-di +Package: f2fs-modules-6.7.7-parisc64-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: f2fs-modules -Depends: kernel-image-6.6.15-parisc64-di, crc-modules-6.6.15-parisc64-di -Kernel-Version: 6.6.15-parisc64 +Depends: kernel-image-6.7.7-parisc64-di, crc-modules-6.7.7-parisc64-di +Kernel-Version: 6.7.7-parisc64 Description: f2fs filesystem support This package contains the f2fs (Flash-Friendly Filesystem) module. -Package: md-modules-6.6.15-parisc64-di +Package: md-modules-6.7.7-parisc64-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: md-modules -Depends: kernel-image-6.6.15-parisc64-di, crc-modules-6.6.15-parisc64-di -Kernel-Version: 6.6.15-parisc64 +Depends: kernel-image-6.7.7-parisc64-di, crc-modules-6.7.7-parisc64-di +Kernel-Version: 6.7.7-parisc64 Description: RAID and LVM support This package contains RAID and LVM modules for the kernel. -Package: multipath-modules-6.6.15-parisc64-di +Package: multipath-modules-6.7.7-parisc64-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: multipath-modules -Depends: kernel-image-6.6.15-parisc64-di, md-modules-6.6.15-parisc64-di, scsi-core-modules-6.6.15-parisc64-di -Kernel-Version: 6.6.15-parisc64 +Depends: kernel-image-6.7.7-parisc64-di, md-modules-6.7.7-parisc64-di, scsi-core-modules-6.7.7-parisc64-di +Kernel-Version: 6.7.7-parisc64 Description: Multipath support This package contains DM-Multipath modules for the kernel. -Package: usb-modules-6.6.15-parisc64-di +Package: usb-modules-6.7.7-parisc64-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-modules -Depends: kernel-image-6.6.15-parisc64-di -Kernel-Version: 6.6.15-parisc64 +Depends: kernel-image-6.7.7-parisc64-di +Kernel-Version: 6.7.7-parisc64 Description: USB support This package contains core USB drivers for the kernel. -Package: usb-storage-modules-6.6.15-parisc64-di +Package: usb-storage-modules-6.7.7-parisc64-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-storage-modules -Depends: kernel-image-6.6.15-parisc64-di, scsi-core-modules-6.6.15-parisc64-di, usb-modules-6.6.15-parisc64-di -Kernel-Version: 6.6.15-parisc64 +Depends: kernel-image-6.7.7-parisc64-di, scsi-core-modules-6.7.7-parisc64-di, usb-modules-6.7.7-parisc64-di +Kernel-Version: 6.7.7-parisc64 Description: USB storage support This package contains the USB storage driver for the kernel. -Package: fb-modules-6.6.15-parisc64-di +Package: fb-modules-6.7.7-parisc64-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fb-modules -Depends: kernel-image-6.6.15-parisc64-di, input-modules-6.6.15-parisc64-di -Kernel-Version: 6.6.15-parisc64 +Depends: kernel-image-6.7.7-parisc64-di, input-modules-6.7.7-parisc64-di +Kernel-Version: 6.7.7-parisc64 Description: Frame buffer support This package contains Frame buffer drivers for the kernel. -Package: input-modules-6.6.15-parisc64-di +Package: input-modules-6.7.7-parisc64-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: input-modules -Depends: kernel-image-6.6.15-parisc64-di, usb-modules-6.6.15-parisc64-di, crc-modules-6.6.15-parisc64-di -Kernel-Version: 6.6.15-parisc64 +Depends: kernel-image-6.7.7-parisc64-di, usb-modules-6.7.7-parisc64-di, crc-modules-6.7.7-parisc64-di +Kernel-Version: 6.7.7-parisc64 Description: Input devices support This package contains input device drivers for the kernel. -Package: event-modules-6.6.15-parisc64-di +Package: event-modules-6.7.7-parisc64-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: event-modules -Depends: kernel-image-6.6.15-parisc64-di -Kernel-Version: 6.6.15-parisc64 +Depends: kernel-image-6.7.7-parisc64-di +Kernel-Version: 6.7.7-parisc64 Description: Event support This package contains event drivers for the kernel. -Package: mouse-modules-6.6.15-parisc64-di +Package: mouse-modules-6.7.7-parisc64-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mouse-modules -Depends: kernel-image-6.6.15-parisc64-di, event-modules-6.6.15-parisc64-di, input-modules-6.6.15-parisc64-di, usb-modules-6.6.15-parisc64-di -Kernel-Version: 6.6.15-parisc64 +Depends: kernel-image-6.7.7-parisc64-di, event-modules-6.7.7-parisc64-di, input-modules-6.7.7-parisc64-di, usb-modules-6.7.7-parisc64-di +Kernel-Version: 6.7.7-parisc64 Description: Mouse support This package contains mouse drivers for the kernel. -Package: nic-usb-modules-6.6.15-parisc64-di +Package: nic-usb-modules-6.7.7-parisc64-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-usb-modules -Depends: kernel-image-6.6.15-parisc64-di, nic-shared-modules-6.6.15-parisc64-di, usb-modules-6.6.15-parisc64-di, crc-modules-6.6.15-parisc64-di -Kernel-Version: 6.6.15-parisc64 +Depends: kernel-image-6.7.7-parisc64-di, nic-shared-modules-6.7.7-parisc64-di, usb-modules-6.7.7-parisc64-di, crc-modules-6.7.7-parisc64-di +Kernel-Version: 6.7.7-parisc64 Description: USB NIC drivers This package contains USB network adapter drivers for the kernel. -Package: sata-modules-6.6.15-parisc64-di +Package: sata-modules-6.7.7-parisc64-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sata-modules -Depends: kernel-image-6.6.15-parisc64-di, scsi-core-modules-6.6.15-parisc64-di, ata-modules-6.6.15-parisc64-di -Kernel-Version: 6.6.15-parisc64 +Depends: kernel-image-6.7.7-parisc64-di, scsi-core-modules-6.7.7-parisc64-di, ata-modules-6.7.7-parisc64-di +Kernel-Version: 6.7.7-parisc64 Description: SATA drivers This package contains SATA drivers for the kernel. -Package: crc-modules-6.6.15-parisc64-di +Package: crc-modules-6.7.7-parisc64-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crc-modules -Depends: kernel-image-6.6.15-parisc64-di -Kernel-Version: 6.6.15-parisc64 +Depends: kernel-image-6.7.7-parisc64-di +Kernel-Version: 6.7.7-parisc64 Description: CRC modules This package contains CRC support modules. -Package: crypto-modules-6.6.15-parisc64-di +Package: crypto-modules-6.7.7-parisc64-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-modules -Depends: kernel-image-6.6.15-parisc64-di -Kernel-Version: 6.6.15-parisc64 +Depends: kernel-image-6.7.7-parisc64-di +Kernel-Version: 6.7.7-parisc64 Description: crypto modules This package contains crypto modules. -Package: crypto-dm-modules-6.6.15-parisc64-di +Package: crypto-dm-modules-6.7.7-parisc64-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-dm-modules -Depends: kernel-image-6.6.15-parisc64-di, md-modules-6.6.15-parisc64-di -Kernel-Version: 6.6.15-parisc64 +Depends: kernel-image-6.7.7-parisc64-di, md-modules-6.7.7-parisc64-di +Kernel-Version: 6.7.7-parisc64 Description: devicemapper crypto module This package contains the devicemapper crypto (dm-crypt) module. -Package: ata-modules-6.6.15-parisc64-di +Package: ata-modules-6.7.7-parisc64-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ata-modules -Depends: kernel-image-6.6.15-parisc64-di, scsi-core-modules-6.6.15-parisc64-di -Kernel-Version: 6.6.15-parisc64 +Depends: kernel-image-6.7.7-parisc64-di, scsi-core-modules-6.7.7-parisc64-di +Kernel-Version: 6.7.7-parisc64 Description: ATA disk modules This package contains core ATA disk modules used by both PATA and SATA disk drivers. -Package: nbd-modules-6.6.15-parisc64-di +Package: nbd-modules-6.7.7-parisc64-di Package-Type: udeb Architecture: hppa Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nbd-modules -Depends: kernel-image-6.6.15-parisc64-di -Kernel-Version: 6.6.15-parisc64 +Depends: kernel-image-6.7.7-parisc64-di +Kernel-Version: 6.7.7-parisc64 Description: Network Block Device modules This package contains the modules required for support of the Network Block Device -Package: linux-headers-6.6.15-686 +Package: linux-headers-6.7.7-686 Architecture: i386 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Depends: linux-headers-6.6.15-common (= ${source:Version}), linux-image-6.6.15-686 (= ${binary:Version}) | linux-image-6.6.15-686-unsigned (= ${binary:Version}), linux-kbuild-6.6.15, ${misc:Depends}, gcc-13 -Description: Header files for Linux 6.6.15-686 +Depends: linux-headers-6.7.7-common (= ${source:Version}), linux-image-6.7.7-686 (= ${binary:Version}) | linux-image-6.7.7-686-unsigned (= ${binary:Version}), linux-kbuild-6.7.7, ${misc:Depends}, gcc-13 +Description: Header files for Linux 6.7.7-686 This package provides the architecture-specific kernel header files for - Linux kernel 6.6.15-686, generally used for building out-of-tree kernel + Linux kernel 6.7.7-686, generally used for building out-of-tree kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-686, and can be used for building modules - that load into the kernel provided by the linux-image-6.6.15-686 package. + /usr/src/linux-headers-6.7.7-686, and can be used for building modules + that load into the kernel provided by the linux-image-6.7.7-686 package. -Package: linux-image-6.6.15-686 +Package: linux-image-6.7.7-686 Architecture: i386 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [i386] | linux-initramfs-tool [i386] Recommends: firmware-linux-free, apparmor [i386] -Suggests: linux-doc-6.6, debian-kernel-handbook, grub-pc [i386] | grub-efi-ia32 [i386] | extlinux [i386] +Suggests: linux-doc-6.7, debian-kernel-handbook, grub-pc [i386] | grub-efi-ia32 [i386] | extlinux [i386] Breaks: fwupdate (<< 12-7) [i386], wireless-regdb (<< 2019.06.03-1~) [i386], initramfs-tools (<< 0.120+deb8u2) [i386] -Description: Linux 6.6 for older PCs - The Linux kernel 6.6 and modules for use on PCs with one or more +Description: Linux 6.7 for older PCs + The Linux kernel 6.7 and modules for use on PCs with one or more processors not supporting PAE. Package: linux-image-686 Architecture: i386 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Provides: linux-latest-modules-6.6.15-686, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] -Depends: linux-image-6.6.15-686 (= ${binary:Version}), ${misc:Depends} +Provides: linux-latest-modules-6.7.7-686, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] +Depends: linux-image-6.7.7-686 (= ${binary:Version}), ${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. @@ -4003,671 +4001,671 @@ Description: Linux for older PCs (meta-package) Package: linux-headers-686 Architecture: i386 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Depends: linux-headers-6.6.15-686 (= ${binary:Version}), ${misc:Depends} +Depends: linux-headers-6.7.7-686 (= ${binary:Version}), ${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-6.6.15-686-dbg +Package: linux-image-6.7.7-686-dbg Architecture: i386 Section: debug Priority: optional Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.quick> Depends: ${misc:Depends} -Description: Debug symbols for linux-image-6.6.15-686 +Description: Debug symbols for linux-image-6.7.7-686 This package provides the detached debug symbols for the Linux kernel and - modules in linux-image-6.6.15-686. + modules in linux-image-6.7.7-686. Package: linux-image-686-dbg Architecture: i386 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.nometa !pkg.linux.quick> Provides: linux-latest-image-dbg -Depends: linux-image-6.6.15-686-dbg (= ${binary:Version}), ${misc:Depends} +Depends: linux-image-6.7.7-686-dbg (= ${binary:Version}), ${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: kernel-image-6.6.15-686-di +Package: kernel-image-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: kernel-image, rtc-modules -Kernel-Version: 6.6.15-686 +Kernel-Version: 6.7.7-686 Description: Linux kernel image and core modules for the Debian installer This package contains the kernel image and core modules for the Debian installer boot images. It does _not_ provide a usable kernel for your full Debian system. -Package: nic-modules-6.6.15-686-di +Package: nic-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-modules, nic-extra-modules -Depends: kernel-image-6.6.15-686-di, nic-shared-modules-6.6.15-686-di, i2c-modules-6.6.15-686-di, crc-modules-6.6.15-686-di, mtd-core-modules-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di, nic-shared-modules-6.7.7-686-di, i2c-modules-6.7.7-686-di, crc-modules-6.7.7-686-di, mtd-core-modules-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: NIC drivers This package contains Ethernet and some paravirtualised network drivers for the kernel. -Package: nic-wireless-modules-6.6.15-686-di +Package: nic-wireless-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-wireless-modules -Depends: kernel-image-6.6.15-686-di, nic-shared-modules-6.6.15-686-di, usb-modules-6.6.15-686-di, mmc-core-modules-6.6.15-686-di, pcmcia-modules-6.6.15-686-di, crc-modules-6.6.15-686-di, rfkill-modules-6.6.15-686-di, crypto-modules-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di, nic-shared-modules-6.7.7-686-di, usb-modules-6.7.7-686-di, mmc-core-modules-6.7.7-686-di, pcmcia-modules-6.7.7-686-di, crc-modules-6.7.7-686-di, rfkill-modules-6.7.7-686-di, crypto-modules-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: Wireless NIC drivers This package contains wireless NIC drivers for the kernel. Includes crypto modules only needed for wireless (WEP, WPA). -Package: nic-shared-modules-6.6.15-686-di +Package: nic-shared-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-shared-modules -Depends: kernel-image-6.6.15-686-di, crc-modules-6.6.15-686-di, i2c-modules-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di, crc-modules-6.7.7-686-di, i2c-modules-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: Shared NIC drivers This package contains NIC drivers needed by combinations of nic-modules, nic-pcmcia-modules, nic-usb-modules and nic-wireless-modules. -Package: serial-modules-6.6.15-686-di +Package: serial-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: serial-modules -Depends: kernel-image-6.6.15-686-di, pcmcia-modules-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di, pcmcia-modules-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: Serial drivers This package contains serial drivers for the kernel. -Package: usb-serial-modules-6.6.15-686-di +Package: usb-serial-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-serial-modules -Depends: kernel-image-6.6.15-686-di, usb-modules-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di, usb-modules-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: USB serial drivers This package contains USB serial drivers for the kernel. -Package: ppp-modules-6.6.15-686-di +Package: ppp-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ppp-modules -Depends: kernel-image-6.6.15-686-di, serial-modules-6.6.15-686-di, crc-modules-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di, serial-modules-6.7.7-686-di, crc-modules-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: PPP drivers This package contains PPP drivers for the kernel. -Package: pata-modules-6.6.15-686-di +Package: pata-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: pata-modules -Depends: kernel-image-6.6.15-686-di, ata-modules-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di, ata-modules-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: PATA drivers This package contains PATA drivers for the kernel. -Package: cdrom-core-modules-6.6.15-686-di +Package: cdrom-core-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: cdrom-core-modules -Depends: kernel-image-6.6.15-686-di, scsi-core-modules-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di, scsi-core-modules-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: CDROM support This package contains core CDROM support for the kernel. -Package: firewire-core-modules-6.6.15-686-di +Package: firewire-core-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: firewire-core-modules -Depends: kernel-image-6.6.15-686-di, scsi-core-modules-6.6.15-686-di, crc-modules-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di, scsi-core-modules-6.7.7-686-di, crc-modules-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: Core FireWire drivers This package contains core FireWire drivers for the kernel. -Package: scsi-core-modules-6.6.15-686-di +Package: scsi-core-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-core-modules -Depends: kernel-image-6.6.15-686-di, crc-modules-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di, crc-modules-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: Core SCSI subsystem This package contains the core SCSI subsystem for the kernel. -Package: scsi-modules-6.6.15-686-di +Package: scsi-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-modules -Depends: kernel-image-6.6.15-686-di, scsi-core-modules-6.6.15-686-di, cdrom-core-modules-6.6.15-686-di, ata-modules-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di, scsi-core-modules-6.7.7-686-di, cdrom-core-modules-6.7.7-686-di, ata-modules-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: SCSI drivers This package contains SCSI drivers for the kernel. -Package: scsi-nic-modules-6.6.15-686-di +Package: scsi-nic-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-nic-modules -Depends: scsi-modules-6.6.15-686-di, nic-modules-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: scsi-modules-6.7.7-686-di, nic-modules-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: SCSI drivers for converged NICs This package contains SCSI drivers that depend on net drivers. -Package: loop-modules-6.6.15-686-di +Package: loop-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: loop-modules -Depends: kernel-image-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: Loopback filesystem support This package contains loopback filesystem support for the kernel. -Package: btrfs-modules-6.6.15-686-di +Package: btrfs-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: btrfs-modules -Depends: kernel-image-6.6.15-686-di, crc-modules-6.6.15-686-di, md-modules-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di, crc-modules-6.7.7-686-di, md-modules-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: BTRFS filesystem support This package contains the BTRFS filesystem module for the kernel. -Package: ext4-modules-6.6.15-686-di +Package: ext4-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ext4-modules, ext2-modules, ext3-modules -Depends: kernel-image-6.6.15-686-di, crc-modules-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di, crc-modules-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: ext2/ext3/ext4 filesystem support This package contains the ext4 filesystem module for the kernel, which also supports ext2 and ext3. -Package: isofs-modules-6.6.15-686-di +Package: isofs-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: isofs-modules -Depends: kernel-image-6.6.15-686-di, cdrom-core-modules-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di, cdrom-core-modules-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: ISOFS filesystem support This package contains the ISOFS filesystem module for the kernel. -Package: jfs-modules-6.6.15-686-di +Package: jfs-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: jfs-modules -Depends: kernel-image-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: JFS filesystem support This package contains the JFS filesystem module for the kernel. -Package: xfs-modules-6.6.15-686-di +Package: xfs-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: xfs-modules -Depends: kernel-image-6.6.15-686-di, crc-modules-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di, crc-modules-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: XFS filesystem support This package contains the XFS filesystem module for the kernel. -Package: fat-modules-6.6.15-686-di +Package: fat-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fat-modules -Depends: kernel-image-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: FAT filesystem support This package contains the FAT and VFAT filesystem modules for the kernel. -Package: squashfs-modules-6.6.15-686-di +Package: squashfs-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: squashfs-modules -Depends: kernel-image-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: squashfs modules This package contains squashfs modules. -Package: udf-modules-6.6.15-686-di +Package: udf-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: udf-modules -Depends: kernel-image-6.6.15-686-di, crc-modules-6.6.15-686-di, cdrom-core-modules-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di, crc-modules-6.7.7-686-di, cdrom-core-modules-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: UDF modules This package contains the UDF filesystem module. -Package: f2fs-modules-6.6.15-686-di +Package: f2fs-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: f2fs-modules -Depends: kernel-image-6.6.15-686-di, crc-modules-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di, crc-modules-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: f2fs filesystem support This package contains the f2fs (Flash-Friendly Filesystem) module. -Package: md-modules-6.6.15-686-di +Package: md-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: md-modules -Depends: kernel-image-6.6.15-686-di, crc-modules-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di, crc-modules-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: RAID and LVM support This package contains RAID and LVM modules for the kernel. -Package: multipath-modules-6.6.15-686-di +Package: multipath-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: multipath-modules -Depends: kernel-image-6.6.15-686-di, md-modules-6.6.15-686-di, scsi-core-modules-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di, md-modules-6.7.7-686-di, scsi-core-modules-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: Multipath support This package contains DM-Multipath modules for the kernel. -Package: usb-modules-6.6.15-686-di +Package: usb-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-modules -Depends: kernel-image-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: USB support This package contains core USB drivers for the kernel. -Package: usb-storage-modules-6.6.15-686-di +Package: usb-storage-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-storage-modules -Depends: kernel-image-6.6.15-686-di, scsi-core-modules-6.6.15-686-di, usb-modules-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di, scsi-core-modules-6.7.7-686-di, usb-modules-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: USB storage support This package contains the USB storage driver for the kernel. -Package: pcmcia-storage-modules-6.6.15-686-di +Package: pcmcia-storage-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: pcmcia-storage-modules -Depends: kernel-image-6.6.15-686-di, cdrom-core-modules-6.6.15-686-di, pcmcia-modules-6.6.15-686-di, ata-modules-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di, cdrom-core-modules-6.7.7-686-di, pcmcia-modules-6.7.7-686-di, ata-modules-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: PCMCIA storage drivers This package contains PCMCIA storage drivers for the kernel. -Package: fb-modules-6.6.15-686-di +Package: fb-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fb-modules -Depends: kernel-image-6.6.15-686-di, i2c-modules-6.6.15-686-di, input-modules-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di, i2c-modules-6.7.7-686-di, input-modules-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: Frame buffer support This package contains Frame buffer drivers for the kernel. -Package: input-modules-6.6.15-686-di +Package: input-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: input-modules -Depends: kernel-image-6.6.15-686-di, usb-modules-6.6.15-686-di, i2c-modules-6.6.15-686-di, rfkill-modules-6.6.15-686-di, crc-modules-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di, usb-modules-6.7.7-686-di, i2c-modules-6.7.7-686-di, rfkill-modules-6.7.7-686-di, crc-modules-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: Input devices support This package contains input device drivers for the kernel. -Package: event-modules-6.6.15-686-di +Package: event-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: event-modules -Depends: kernel-image-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: Event support This package contains event drivers for the kernel. -Package: mouse-modules-6.6.15-686-di +Package: mouse-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mouse-modules -Depends: kernel-image-6.6.15-686-di, event-modules-6.6.15-686-di, input-modules-6.6.15-686-di, usb-modules-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di, event-modules-6.7.7-686-di, input-modules-6.7.7-686-di, usb-modules-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: Mouse support This package contains mouse drivers for the kernel. -Package: nic-pcmcia-modules-6.6.15-686-di +Package: nic-pcmcia-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-pcmcia-modules -Depends: kernel-image-6.6.15-686-di, nic-shared-modules-6.6.15-686-di, nic-wireless-modules-6.6.15-686-di, pcmcia-modules-6.6.15-686-di, mmc-core-modules-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di, nic-shared-modules-6.7.7-686-di, nic-wireless-modules-6.7.7-686-di, pcmcia-modules-6.7.7-686-di, mmc-core-modules-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: Common PCMCIA NIC drivers This package contains common PCMCIA NIC drivers for the kernel. -Package: pcmcia-modules-6.6.15-686-di +Package: pcmcia-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: pcmcia-modules -Depends: kernel-image-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: Common PCMCIA drivers This package contains common PCMCIA drivers for the kernel. -Package: nic-usb-modules-6.6.15-686-di +Package: nic-usb-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-usb-modules -Depends: kernel-image-6.6.15-686-di, nic-shared-modules-6.6.15-686-di, nic-wireless-modules-6.6.15-686-di, usb-modules-6.6.15-686-di, crc-modules-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di, nic-shared-modules-6.7.7-686-di, nic-wireless-modules-6.7.7-686-di, usb-modules-6.7.7-686-di, crc-modules-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: USB NIC drivers This package contains USB network adapter drivers for the kernel. -Package: sata-modules-6.6.15-686-di +Package: sata-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sata-modules -Depends: kernel-image-6.6.15-686-di, scsi-core-modules-6.6.15-686-di, ata-modules-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di, scsi-core-modules-6.7.7-686-di, ata-modules-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: SATA drivers This package contains SATA drivers for the kernel. -Package: acpi-modules-6.6.15-686-di +Package: acpi-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: acpi-modules -Depends: kernel-image-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: ACPI support modules This package contains kernel modules for ACPI. -Package: i2c-modules-6.6.15-686-di +Package: i2c-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: i2c-modules -Depends: kernel-image-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: i2c support modules This package contains basic i2c support modules. -Package: crc-modules-6.6.15-686-di +Package: crc-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crc-modules -Depends: kernel-image-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: CRC modules This package contains CRC support modules. -Package: crypto-modules-6.6.15-686-di +Package: crypto-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-modules -Depends: kernel-image-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: crypto modules This package contains crypto modules. -Package: crypto-dm-modules-6.6.15-686-di +Package: crypto-dm-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-dm-modules -Depends: kernel-image-6.6.15-686-di, md-modules-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di, md-modules-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: devicemapper crypto module This package contains the devicemapper crypto (dm-crypt) module. -Package: efi-modules-6.6.15-686-di +Package: efi-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: efi-modules -Depends: kernel-image-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: EFI modules This package contains EFI modules. -Package: ata-modules-6.6.15-686-di +Package: ata-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ata-modules -Depends: kernel-image-6.6.15-686-di, scsi-core-modules-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di, scsi-core-modules-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: ATA disk modules This package contains core ATA disk modules used by both PATA and SATA disk drivers. -Package: mmc-core-modules-6.6.15-686-di +Package: mmc-core-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mmc-core-modules -Depends: kernel-image-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: MMC/SD/SDIO core modules This package contains core modules for MMC/SD/SDIO support. -Package: mmc-modules-6.6.15-686-di +Package: mmc-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mmc-modules -Depends: kernel-image-6.6.15-686-di, mmc-core-modules-6.6.15-686-di, usb-modules-6.6.15-686-di, crc-modules-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di, mmc-core-modules-6.7.7-686-di, usb-modules-6.7.7-686-di, crc-modules-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: MMC/SD card modules This package contains modules needed to support MMC (multimedia) and SD cards. -Package: nbd-modules-6.6.15-686-di +Package: nbd-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nbd-modules -Depends: kernel-image-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: Network Block Device modules This package contains the modules required for support of the Network Block Device -Package: speakup-modules-6.6.15-686-di +Package: speakup-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: speakup-modules -Depends: kernel-image-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: speakup modules This package contains speakup modules. -Package: uinput-modules-6.6.15-686-di +Package: uinput-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: uinput-modules -Depends: kernel-image-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: uinput support This package contains the uinput module. -Package: sound-modules-6.6.15-686-di +Package: sound-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sound-modules -Depends: kernel-image-6.6.15-686-di, i2c-modules-6.6.15-686-di, usb-modules-6.6.15-686-di, pcmcia-modules-6.6.15-686-di, firewire-core-modules-6.6.15-686-di, crc-modules-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di, i2c-modules-6.7.7-686-di, usb-modules-6.7.7-686-di, pcmcia-modules-6.7.7-686-di, firewire-core-modules-6.7.7-686-di, crc-modules-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: sound support This package contains sound modules. -Package: mtd-core-modules-6.6.15-686-di +Package: mtd-core-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mtd-core-modules -Depends: kernel-image-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: MTD core This package contains the MTD core. -Package: rfkill-modules-6.6.15-686-di +Package: rfkill-modules-6.7.7-686-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: rfkill-modules -Depends: kernel-image-6.6.15-686-di -Kernel-Version: 6.6.15-686 +Depends: kernel-image-6.7.7-686-di +Kernel-Version: 6.7.7-686 Description: rfkill modules This package contains the rfkill module. -Package: linux-headers-6.6.15-686-pae +Package: linux-headers-6.7.7-686-pae Architecture: i386 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Depends: linux-headers-6.6.15-common (= ${source:Version}), linux-image-6.6.15-686-pae (= ${binary:Version}) | linux-image-6.6.15-686-pae-unsigned (= ${binary:Version}), linux-kbuild-6.6.15, ${misc:Depends}, gcc-13 -Description: Header files for Linux 6.6.15-686-pae +Depends: linux-headers-6.7.7-common (= ${source:Version}), linux-image-6.7.7-686-pae (= ${binary:Version}) | linux-image-6.7.7-686-pae-unsigned (= ${binary:Version}), linux-kbuild-6.7.7, ${misc:Depends}, gcc-13 +Description: Header files for Linux 6.7.7-686-pae This package provides the architecture-specific kernel header files for - Linux kernel 6.6.15-686-pae, generally used for building out-of-tree - kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-686-pae, and can be used for building - modules that load into the kernel provided by the - linux-image-6.6.15-686-pae package. + Linux kernel 6.7.7-686-pae, generally used for building out-of-tree kernel + modules. These files are going to be installed into + /usr/src/linux-headers-6.7.7-686-pae, and can be used for building modules + that load into the kernel provided by the linux-image-6.7.7-686-pae + package. -Package: linux-image-6.6.15-686-pae +Package: linux-image-6.7.7-686-pae Architecture: i386 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [i386] | linux-initramfs-tool [i386] Recommends: firmware-linux-free, apparmor [i386] -Suggests: linux-doc-6.6, debian-kernel-handbook, grub-pc [i386] | grub-efi-ia32 [i386] | extlinux [i386] +Suggests: linux-doc-6.7, debian-kernel-handbook, grub-pc [i386] | grub-efi-ia32 [i386] | extlinux [i386] Breaks: fwupdate (<< 12-7) [i386], wireless-regdb (<< 2019.06.03-1~) [i386], initramfs-tools (<< 0.120+deb8u2) [i386] -Description: Linux 6.6 for modern PCs - The Linux kernel 6.6 and modules for use on PCs with one or more +Description: Linux 6.7 for modern PCs + The Linux kernel 6.7 and modules for use on PCs with one or more processors supporting PAE. . This kernel requires PAE (Physical Address Extension). This feature is @@ -4678,8 +4676,8 @@ Description: Linux 6.6 for modern PCs Package: linux-image-686-pae Architecture: i386 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Provides: linux-latest-modules-6.6.15-686-pae, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386], linux-image-generic -Depends: linux-image-6.6.15-686-pae (= ${binary:Version}), ${misc:Depends} +Provides: linux-latest-modules-6.7.7-686-pae, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386], linux-image-generic +Depends: linux-image-6.7.7-686-pae (= ${binary:Version}), ${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. @@ -4688,671 +4686,671 @@ Package: linux-headers-686-pae Architecture: i386 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> Provides: linux-headers-generic -Depends: linux-headers-6.6.15-686-pae (= ${binary:Version}), ${misc:Depends} +Depends: linux-headers-6.7.7-686-pae (= ${binary:Version}), ${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-6.6.15-686-pae-dbg +Package: linux-image-6.7.7-686-pae-dbg Architecture: i386 Section: debug Priority: optional Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.quick> Depends: ${misc:Depends} -Description: Debug symbols for linux-image-6.6.15-686-pae +Description: Debug symbols for linux-image-6.7.7-686-pae This package provides the detached debug symbols for the Linux kernel and - modules in linux-image-6.6.15-686-pae. + modules in linux-image-6.7.7-686-pae. Package: linux-image-686-pae-dbg Architecture: i386 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.nometa !pkg.linux.quick> Provides: linux-latest-image-dbg -Depends: linux-image-6.6.15-686-pae-dbg (= ${binary:Version}), ${misc:Depends} +Depends: linux-image-6.7.7-686-pae-dbg (= ${binary:Version}), ${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: kernel-image-6.6.15-686-pae-di +Package: kernel-image-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: kernel-image, rtc-modules -Kernel-Version: 6.6.15-686-pae +Kernel-Version: 6.7.7-686-pae Description: Linux kernel image and core modules for the Debian installer This package contains the kernel image and core modules for the Debian installer boot images. It does _not_ provide a usable kernel for your full Debian system. -Package: nic-modules-6.6.15-686-pae-di +Package: nic-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-modules, nic-extra-modules -Depends: kernel-image-6.6.15-686-pae-di, nic-shared-modules-6.6.15-686-pae-di, i2c-modules-6.6.15-686-pae-di, crc-modules-6.6.15-686-pae-di, mtd-core-modules-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di, nic-shared-modules-6.7.7-686-pae-di, i2c-modules-6.7.7-686-pae-di, crc-modules-6.7.7-686-pae-di, mtd-core-modules-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: NIC drivers This package contains Ethernet and some paravirtualised network drivers for the kernel. -Package: nic-wireless-modules-6.6.15-686-pae-di +Package: nic-wireless-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-wireless-modules -Depends: kernel-image-6.6.15-686-pae-di, nic-shared-modules-6.6.15-686-pae-di, usb-modules-6.6.15-686-pae-di, mmc-core-modules-6.6.15-686-pae-di, pcmcia-modules-6.6.15-686-pae-di, crc-modules-6.6.15-686-pae-di, rfkill-modules-6.6.15-686-pae-di, crypto-modules-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di, nic-shared-modules-6.7.7-686-pae-di, usb-modules-6.7.7-686-pae-di, mmc-core-modules-6.7.7-686-pae-di, pcmcia-modules-6.7.7-686-pae-di, crc-modules-6.7.7-686-pae-di, rfkill-modules-6.7.7-686-pae-di, crypto-modules-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: Wireless NIC drivers This package contains wireless NIC drivers for the kernel. Includes crypto modules only needed for wireless (WEP, WPA). -Package: nic-shared-modules-6.6.15-686-pae-di +Package: nic-shared-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-shared-modules -Depends: kernel-image-6.6.15-686-pae-di, crc-modules-6.6.15-686-pae-di, i2c-modules-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di, crc-modules-6.7.7-686-pae-di, i2c-modules-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: Shared NIC drivers This package contains NIC drivers needed by combinations of nic-modules, nic-pcmcia-modules, nic-usb-modules and nic-wireless-modules. -Package: serial-modules-6.6.15-686-pae-di +Package: serial-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: serial-modules -Depends: kernel-image-6.6.15-686-pae-di, pcmcia-modules-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di, pcmcia-modules-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: Serial drivers This package contains serial drivers for the kernel. -Package: usb-serial-modules-6.6.15-686-pae-di +Package: usb-serial-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-serial-modules -Depends: kernel-image-6.6.15-686-pae-di, usb-modules-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di, usb-modules-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: USB serial drivers This package contains USB serial drivers for the kernel. -Package: ppp-modules-6.6.15-686-pae-di +Package: ppp-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ppp-modules -Depends: kernel-image-6.6.15-686-pae-di, serial-modules-6.6.15-686-pae-di, crc-modules-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di, serial-modules-6.7.7-686-pae-di, crc-modules-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: PPP drivers This package contains PPP drivers for the kernel. -Package: pata-modules-6.6.15-686-pae-di +Package: pata-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: pata-modules -Depends: kernel-image-6.6.15-686-pae-di, ata-modules-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di, ata-modules-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: PATA drivers This package contains PATA drivers for the kernel. -Package: cdrom-core-modules-6.6.15-686-pae-di +Package: cdrom-core-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: cdrom-core-modules -Depends: kernel-image-6.6.15-686-pae-di, scsi-core-modules-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di, scsi-core-modules-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: CDROM support This package contains core CDROM support for the kernel. -Package: firewire-core-modules-6.6.15-686-pae-di +Package: firewire-core-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: firewire-core-modules -Depends: kernel-image-6.6.15-686-pae-di, scsi-core-modules-6.6.15-686-pae-di, crc-modules-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di, scsi-core-modules-6.7.7-686-pae-di, crc-modules-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: Core FireWire drivers This package contains core FireWire drivers for the kernel. -Package: scsi-core-modules-6.6.15-686-pae-di +Package: scsi-core-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-core-modules -Depends: kernel-image-6.6.15-686-pae-di, crc-modules-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di, crc-modules-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: Core SCSI subsystem This package contains the core SCSI subsystem for the kernel. -Package: scsi-modules-6.6.15-686-pae-di +Package: scsi-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-modules -Depends: kernel-image-6.6.15-686-pae-di, scsi-core-modules-6.6.15-686-pae-di, cdrom-core-modules-6.6.15-686-pae-di, ata-modules-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di, scsi-core-modules-6.7.7-686-pae-di, cdrom-core-modules-6.7.7-686-pae-di, ata-modules-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: SCSI drivers This package contains SCSI drivers for the kernel. -Package: scsi-nic-modules-6.6.15-686-pae-di +Package: scsi-nic-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-nic-modules -Depends: scsi-modules-6.6.15-686-pae-di, nic-modules-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: scsi-modules-6.7.7-686-pae-di, nic-modules-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: SCSI drivers for converged NICs This package contains SCSI drivers that depend on net drivers. -Package: loop-modules-6.6.15-686-pae-di +Package: loop-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: loop-modules -Depends: kernel-image-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: Loopback filesystem support This package contains loopback filesystem support for the kernel. -Package: btrfs-modules-6.6.15-686-pae-di +Package: btrfs-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: btrfs-modules -Depends: kernel-image-6.6.15-686-pae-di, crc-modules-6.6.15-686-pae-di, md-modules-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di, crc-modules-6.7.7-686-pae-di, md-modules-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: BTRFS filesystem support This package contains the BTRFS filesystem module for the kernel. -Package: ext4-modules-6.6.15-686-pae-di +Package: ext4-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ext4-modules, ext2-modules, ext3-modules -Depends: kernel-image-6.6.15-686-pae-di, crc-modules-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di, crc-modules-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: ext2/ext3/ext4 filesystem support This package contains the ext4 filesystem module for the kernel, which also supports ext2 and ext3. -Package: isofs-modules-6.6.15-686-pae-di +Package: isofs-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: isofs-modules -Depends: kernel-image-6.6.15-686-pae-di, cdrom-core-modules-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di, cdrom-core-modules-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: ISOFS filesystem support This package contains the ISOFS filesystem module for the kernel. -Package: jfs-modules-6.6.15-686-pae-di +Package: jfs-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: jfs-modules -Depends: kernel-image-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: JFS filesystem support This package contains the JFS filesystem module for the kernel. -Package: xfs-modules-6.6.15-686-pae-di +Package: xfs-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: xfs-modules -Depends: kernel-image-6.6.15-686-pae-di, crc-modules-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di, crc-modules-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: XFS filesystem support This package contains the XFS filesystem module for the kernel. -Package: fat-modules-6.6.15-686-pae-di +Package: fat-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fat-modules -Depends: kernel-image-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: FAT filesystem support This package contains the FAT and VFAT filesystem modules for the kernel. -Package: squashfs-modules-6.6.15-686-pae-di +Package: squashfs-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: squashfs-modules -Depends: kernel-image-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: squashfs modules This package contains squashfs modules. -Package: udf-modules-6.6.15-686-pae-di +Package: udf-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: udf-modules -Depends: kernel-image-6.6.15-686-pae-di, crc-modules-6.6.15-686-pae-di, cdrom-core-modules-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di, crc-modules-6.7.7-686-pae-di, cdrom-core-modules-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: UDF modules This package contains the UDF filesystem module. -Package: f2fs-modules-6.6.15-686-pae-di +Package: f2fs-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: f2fs-modules -Depends: kernel-image-6.6.15-686-pae-di, crc-modules-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di, crc-modules-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: f2fs filesystem support This package contains the f2fs (Flash-Friendly Filesystem) module. -Package: md-modules-6.6.15-686-pae-di +Package: md-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: md-modules -Depends: kernel-image-6.6.15-686-pae-di, crc-modules-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di, crc-modules-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: RAID and LVM support This package contains RAID and LVM modules for the kernel. -Package: multipath-modules-6.6.15-686-pae-di +Package: multipath-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: multipath-modules -Depends: kernel-image-6.6.15-686-pae-di, md-modules-6.6.15-686-pae-di, scsi-core-modules-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di, md-modules-6.7.7-686-pae-di, scsi-core-modules-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: Multipath support This package contains DM-Multipath modules for the kernel. -Package: usb-modules-6.6.15-686-pae-di +Package: usb-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-modules -Depends: kernel-image-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: USB support This package contains core USB drivers for the kernel. -Package: usb-storage-modules-6.6.15-686-pae-di +Package: usb-storage-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-storage-modules -Depends: kernel-image-6.6.15-686-pae-di, scsi-core-modules-6.6.15-686-pae-di, usb-modules-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di, scsi-core-modules-6.7.7-686-pae-di, usb-modules-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: USB storage support This package contains the USB storage driver for the kernel. -Package: pcmcia-storage-modules-6.6.15-686-pae-di +Package: pcmcia-storage-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: pcmcia-storage-modules -Depends: kernel-image-6.6.15-686-pae-di, cdrom-core-modules-6.6.15-686-pae-di, pcmcia-modules-6.6.15-686-pae-di, ata-modules-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di, cdrom-core-modules-6.7.7-686-pae-di, pcmcia-modules-6.7.7-686-pae-di, ata-modules-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: PCMCIA storage drivers This package contains PCMCIA storage drivers for the kernel. -Package: fb-modules-6.6.15-686-pae-di +Package: fb-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fb-modules -Depends: kernel-image-6.6.15-686-pae-di, i2c-modules-6.6.15-686-pae-di, input-modules-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di, i2c-modules-6.7.7-686-pae-di, input-modules-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: Frame buffer support This package contains Frame buffer drivers for the kernel. -Package: input-modules-6.6.15-686-pae-di +Package: input-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: input-modules -Depends: kernel-image-6.6.15-686-pae-di, usb-modules-6.6.15-686-pae-di, i2c-modules-6.6.15-686-pae-di, rfkill-modules-6.6.15-686-pae-di, crc-modules-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di, usb-modules-6.7.7-686-pae-di, i2c-modules-6.7.7-686-pae-di, rfkill-modules-6.7.7-686-pae-di, crc-modules-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: Input devices support This package contains input device drivers for the kernel. -Package: event-modules-6.6.15-686-pae-di +Package: event-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: event-modules -Depends: kernel-image-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: Event support This package contains event drivers for the kernel. -Package: mouse-modules-6.6.15-686-pae-di +Package: mouse-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mouse-modules -Depends: kernel-image-6.6.15-686-pae-di, event-modules-6.6.15-686-pae-di, input-modules-6.6.15-686-pae-di, usb-modules-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di, event-modules-6.7.7-686-pae-di, input-modules-6.7.7-686-pae-di, usb-modules-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: Mouse support This package contains mouse drivers for the kernel. -Package: nic-pcmcia-modules-6.6.15-686-pae-di +Package: nic-pcmcia-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-pcmcia-modules -Depends: kernel-image-6.6.15-686-pae-di, nic-shared-modules-6.6.15-686-pae-di, nic-wireless-modules-6.6.15-686-pae-di, pcmcia-modules-6.6.15-686-pae-di, mmc-core-modules-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di, nic-shared-modules-6.7.7-686-pae-di, nic-wireless-modules-6.7.7-686-pae-di, pcmcia-modules-6.7.7-686-pae-di, mmc-core-modules-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: Common PCMCIA NIC drivers This package contains common PCMCIA NIC drivers for the kernel. -Package: pcmcia-modules-6.6.15-686-pae-di +Package: pcmcia-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: pcmcia-modules -Depends: kernel-image-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: Common PCMCIA drivers This package contains common PCMCIA drivers for the kernel. -Package: nic-usb-modules-6.6.15-686-pae-di +Package: nic-usb-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-usb-modules -Depends: kernel-image-6.6.15-686-pae-di, nic-shared-modules-6.6.15-686-pae-di, nic-wireless-modules-6.6.15-686-pae-di, usb-modules-6.6.15-686-pae-di, crc-modules-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di, nic-shared-modules-6.7.7-686-pae-di, nic-wireless-modules-6.7.7-686-pae-di, usb-modules-6.7.7-686-pae-di, crc-modules-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: USB NIC drivers This package contains USB network adapter drivers for the kernel. -Package: sata-modules-6.6.15-686-pae-di +Package: sata-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sata-modules -Depends: kernel-image-6.6.15-686-pae-di, scsi-core-modules-6.6.15-686-pae-di, ata-modules-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di, scsi-core-modules-6.7.7-686-pae-di, ata-modules-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: SATA drivers This package contains SATA drivers for the kernel. -Package: acpi-modules-6.6.15-686-pae-di +Package: acpi-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: acpi-modules -Depends: kernel-image-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: ACPI support modules This package contains kernel modules for ACPI. -Package: i2c-modules-6.6.15-686-pae-di +Package: i2c-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: i2c-modules -Depends: kernel-image-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: i2c support modules This package contains basic i2c support modules. -Package: crc-modules-6.6.15-686-pae-di +Package: crc-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crc-modules -Depends: kernel-image-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: CRC modules This package contains CRC support modules. -Package: crypto-modules-6.6.15-686-pae-di +Package: crypto-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-modules -Depends: kernel-image-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: crypto modules This package contains crypto modules. -Package: crypto-dm-modules-6.6.15-686-pae-di +Package: crypto-dm-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-dm-modules -Depends: kernel-image-6.6.15-686-pae-di, md-modules-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di, md-modules-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: devicemapper crypto module This package contains the devicemapper crypto (dm-crypt) module. -Package: efi-modules-6.6.15-686-pae-di +Package: efi-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: efi-modules -Depends: kernel-image-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: EFI modules This package contains EFI modules. -Package: ata-modules-6.6.15-686-pae-di +Package: ata-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ata-modules -Depends: kernel-image-6.6.15-686-pae-di, scsi-core-modules-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di, scsi-core-modules-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: ATA disk modules This package contains core ATA disk modules used by both PATA and SATA disk drivers. -Package: mmc-core-modules-6.6.15-686-pae-di +Package: mmc-core-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mmc-core-modules -Depends: kernel-image-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: MMC/SD/SDIO core modules This package contains core modules for MMC/SD/SDIO support. -Package: mmc-modules-6.6.15-686-pae-di +Package: mmc-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mmc-modules -Depends: kernel-image-6.6.15-686-pae-di, mmc-core-modules-6.6.15-686-pae-di, usb-modules-6.6.15-686-pae-di, crc-modules-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di, mmc-core-modules-6.7.7-686-pae-di, usb-modules-6.7.7-686-pae-di, crc-modules-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: MMC/SD card modules This package contains modules needed to support MMC (multimedia) and SD cards. -Package: nbd-modules-6.6.15-686-pae-di +Package: nbd-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nbd-modules -Depends: kernel-image-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: Network Block Device modules This package contains the modules required for support of the Network Block Device -Package: speakup-modules-6.6.15-686-pae-di +Package: speakup-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: speakup-modules -Depends: kernel-image-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: speakup modules This package contains speakup modules. -Package: uinput-modules-6.6.15-686-pae-di +Package: uinput-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: uinput-modules -Depends: kernel-image-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: uinput support This package contains the uinput module. -Package: sound-modules-6.6.15-686-pae-di +Package: sound-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sound-modules -Depends: kernel-image-6.6.15-686-pae-di, i2c-modules-6.6.15-686-pae-di, usb-modules-6.6.15-686-pae-di, pcmcia-modules-6.6.15-686-pae-di, firewire-core-modules-6.6.15-686-pae-di, crc-modules-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di, i2c-modules-6.7.7-686-pae-di, usb-modules-6.7.7-686-pae-di, pcmcia-modules-6.7.7-686-pae-di, firewire-core-modules-6.7.7-686-pae-di, crc-modules-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: sound support This package contains sound modules. -Package: mtd-core-modules-6.6.15-686-pae-di +Package: mtd-core-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mtd-core-modules -Depends: kernel-image-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: MTD core This package contains the MTD core. -Package: rfkill-modules-6.6.15-686-pae-di +Package: rfkill-modules-6.7.7-686-pae-di Package-Type: udeb Architecture: i386 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: rfkill-modules -Depends: kernel-image-6.6.15-686-pae-di -Kernel-Version: 6.6.15-686-pae +Depends: kernel-image-6.7.7-686-pae-di +Kernel-Version: 6.7.7-686-pae Description: rfkill modules This package contains the rfkill module. -Package: linux-headers-6.6.15-rt-686-pae +Package: linux-headers-6.7.7-rt-686-pae Architecture: i386 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Depends: linux-headers-6.6.15-common-rt (= ${source:Version}), linux-image-6.6.15-rt-686-pae (= ${binary:Version}) | linux-image-6.6.15-rt-686-pae-unsigned (= ${binary:Version}), linux-kbuild-6.6.15, ${misc:Depends}, gcc-13 -Description: Header files for Linux 6.6.15-rt-686-pae +Depends: linux-headers-6.7.7-common-rt (= ${source:Version}), linux-image-6.7.7-rt-686-pae (= ${binary:Version}) | linux-image-6.7.7-rt-686-pae-unsigned (= ${binary:Version}), linux-kbuild-6.7.7, ${misc:Depends}, gcc-13 +Description: Header files for Linux 6.7.7-rt-686-pae This package provides the architecture-specific kernel header files for - Linux kernel 6.6.15-rt-686-pae, generally used for building out-of-tree + Linux kernel 6.7.7-rt-686-pae, generally used for building out-of-tree kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-rt-686-pae, and can be used for building + /usr/src/linux-headers-6.7.7-rt-686-pae, and can be used for building modules that load into the kernel provided by the - linux-image-6.6.15-rt-686-pae package. + linux-image-6.7.7-rt-686-pae package. -Package: linux-image-6.6.15-rt-686-pae +Package: linux-image-6.7.7-rt-686-pae Architecture: i386 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [i386] | linux-initramfs-tool [i386] Recommends: firmware-linux-free, apparmor [i386] -Suggests: linux-doc-6.6, debian-kernel-handbook, grub-pc [i386] | grub-efi-ia32 [i386] | extlinux [i386] +Suggests: linux-doc-6.7, debian-kernel-handbook, grub-pc [i386] | grub-efi-ia32 [i386] | extlinux [i386] Breaks: fwupdate (<< 12-7) [i386], wireless-regdb (<< 2019.06.03-1~) [i386], initramfs-tools (<< 0.120+deb8u2) [i386] -Description: Linux 6.6 for modern PCs, PREEMPT_RT - The Linux kernel 6.6 and modules for use on PCs with one or more +Description: Linux 6.7 for modern PCs, PREEMPT_RT + The Linux kernel 6.7 and modules for use on PCs with one or more processors supporting PAE. . This kernel requires PAE (Physical Address Extension). This feature is @@ -5365,8 +5363,8 @@ Description: Linux 6.6 for modern PCs, PREEMPT_RT Package: linux-image-rt-686-pae Architecture: i386 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Provides: linux-latest-modules-6.6.15-rt-686-pae, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] -Depends: linux-image-6.6.15-rt-686-pae (= ${binary:Version}), ${misc:Depends} +Provides: linux-latest-modules-6.7.7-rt-686-pae, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] +Depends: linux-image-6.7.7-rt-686-pae (= ${binary:Version}), ${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. @@ -5374,673 +5372,674 @@ Description: Linux for modern PCs (meta-package) Package: linux-headers-rt-686-pae Architecture: i386 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Depends: linux-headers-6.6.15-rt-686-pae (= ${binary:Version}), ${misc:Depends} +Depends: linux-headers-6.7.7-rt-686-pae (= ${binary:Version}), ${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-6.6.15-rt-686-pae-dbg +Package: linux-image-6.7.7-rt-686-pae-dbg Architecture: i386 Section: debug Priority: optional Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.quick> Depends: ${misc:Depends} -Description: Debug symbols for linux-image-6.6.15-rt-686-pae +Description: Debug symbols for linux-image-6.7.7-rt-686-pae This package provides the detached debug symbols for the Linux kernel and - modules in linux-image-6.6.15-rt-686-pae. + modules in linux-image-6.7.7-rt-686-pae. Package: linux-image-rt-686-pae-dbg Architecture: i386 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.nometa !pkg.linux.quick> Provides: linux-latest-image-dbg -Depends: linux-image-6.6.15-rt-686-pae-dbg (= ${binary:Version}), ${misc:Depends} +Depends: linux-image-6.7.7-rt-686-pae-dbg (= ${binary:Version}), ${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-headers-6.6.15-itanium -Architecture: ia64 +Package: linux-headers-6.7.7-loong64 +Architecture: loong64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Depends: linux-headers-6.6.15-common (= ${source:Version}), linux-image-6.6.15-itanium (= ${binary:Version}) | linux-image-6.6.15-itanium-unsigned (= ${binary:Version}), linux-kbuild-6.6.15, ${misc:Depends}, gcc-12 -Description: Header files for Linux 6.6.15-itanium +Depends: linux-headers-6.7.7-common (= ${source:Version}), linux-image-6.7.7-loong64 (= ${binary:Version}) | linux-image-6.7.7-loong64-unsigned (= ${binary:Version}), linux-kbuild-6.7.7, ${misc:Depends}, gcc-13 +Description: Header files for Linux 6.7.7-loong64 This package provides the architecture-specific kernel header files for - Linux kernel 6.6.15-itanium, generally used for building out-of-tree - kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-itanium, and can be used for building - modules that load into the kernel provided by the - linux-image-6.6.15-itanium package. + Linux kernel 6.7.7-loong64, generally used for building out-of-tree kernel + modules. These files are going to be installed into + /usr/src/linux-headers-6.7.7-loong64, and can be used for building modules + that load into the kernel provided by the linux-image-6.7.7-loong64 + package. -Package: linux-image-6.6.15-itanium -Architecture: ia64 +Package: linux-image-6.7.7-loong64 +Architecture: loong64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [ia64] | linux-initramfs-tool [ia64] -Recommends: firmware-linux-free, apparmor [ia64] -Suggests: linux-doc-6.6, debian-kernel-handbook, grub-efi-ia64 [ia64] -Breaks: fwupdate (<< 12-7) [ia64], wireless-regdb (<< 2019.06.03-1~) [ia64], initramfs-tools (<< 0.120+deb8u2) [ia64] -Description: Linux 6.6 for Itanium (Merced) - The Linux kernel 6.6 and modules for use on systems with original Itanium - (Merced) processors. - -Package: linux-image-itanium -Architecture: ia64 +Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [loong64] | linux-initramfs-tool [loong64] +Recommends: firmware-linux-free, apparmor [loong64] +Suggests: linux-doc-6.7, debian-kernel-handbook +Breaks: fwupdate (<< 12-7) [loong64], wireless-regdb (<< 2019.06.03-1~) [loong64], initramfs-tools (<< 0.120+deb8u2) [loong64] +Description: Linux 6.7 for 64-bit LoongArch platforms + The Linux kernel 6.7 and modules for use on 64-bit LoongArch platforms. + +Package: linux-image-loong64 +Architecture: loong64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Provides: linux-latest-modules-6.6.15-itanium, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386], linux-image-generic -Depends: linux-image-6.6.15-itanium (= ${binary:Version}), ${misc:Depends} -Description: Linux for Itanium (Merced) (meta-package) +Provides: linux-latest-modules-6.7.7-loong64, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386], linux-image-generic +Depends: linux-image-6.7.7-loong64 (= ${binary:Version}), ${misc:Depends} +Description: Linux for 64-bit LoongArch platforms (meta-package) This package depends on the latest Linux kernel and modules for use on - systems with original Itanium (Merced) processors. + 64-bit LoongArch platforms. -Package: linux-headers-itanium -Architecture: ia64 +Package: linux-headers-loong64 +Architecture: loong64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> Provides: linux-headers-generic -Depends: linux-headers-6.6.15-itanium (= ${binary:Version}), ${misc:Depends} -Description: Header files for Linux itanium configuration (meta-package) +Depends: linux-headers-6.7.7-loong64 (= ${binary:Version}), ${misc:Depends} +Description: Header files for Linux loong64 configuration (meta-package) This package depends on the architecture-specific header files for the - latest Linux kernel itanium configuration. + latest Linux kernel loong64 configuration. -Package: linux-image-6.6.15-itanium-dbg -Architecture: ia64 +Package: linux-image-6.7.7-loong64-dbg +Architecture: loong64 Section: debug Priority: optional Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.quick> Depends: ${misc:Depends} -Description: Debug symbols for linux-image-6.6.15-itanium +Description: Debug symbols for linux-image-6.7.7-loong64 This package provides the detached debug symbols for the Linux kernel and - modules in linux-image-6.6.15-itanium. + modules in linux-image-6.7.7-loong64. -Package: linux-image-itanium-dbg -Architecture: ia64 +Package: linux-image-loong64-dbg +Architecture: loong64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.nometa !pkg.linux.quick> Provides: linux-latest-image-dbg -Depends: linux-image-6.6.15-itanium-dbg (= ${binary:Version}), ${misc:Depends} -Description: Debugging symbols for Linux itanium configuration (meta-package) +Depends: linux-image-6.7.7-loong64-dbg (= ${binary:Version}), ${misc:Depends} +Description: Debugging symbols for Linux loong64 configuration (meta-package) This package depends on the detached debugging symbols for the latest - Linux kernel itanium configuration. + Linux kernel loong64 configuration. -Package: kernel-image-6.6.15-itanium-di +Package: kernel-image-6.7.7-loong64-di Package-Type: udeb -Architecture: ia64 +Architecture: loong64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> -Provides: kernel-image, efi-modules -Kernel-Version: 6.6.15-itanium +Provides: kernel-image +Kernel-Version: 6.7.7-loong64 Description: Linux kernel image and core modules for the Debian installer This package contains the kernel image and core modules for the Debian installer boot images. It does _not_ provide a usable kernel for your full Debian system. -Package: nic-modules-6.6.15-itanium-di +Package: nic-modules-6.7.7-loong64-di Package-Type: udeb -Architecture: ia64 +Architecture: loong64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-modules, nic-extra-modules -Depends: kernel-image-6.6.15-itanium-di, nic-shared-modules-6.6.15-itanium-di, i2c-modules-6.6.15-itanium-di, crc-modules-6.6.15-itanium-di, mtd-core-modules-6.6.15-itanium-di -Kernel-Version: 6.6.15-itanium +Depends: kernel-image-6.7.7-loong64-di, nic-shared-modules-6.7.7-loong64-di, i2c-modules-6.7.7-loong64-di, crc-modules-6.7.7-loong64-di, mtd-core-modules-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 Description: NIC drivers This package contains Ethernet and some paravirtualised network drivers for the kernel. -Package: nic-shared-modules-6.6.15-itanium-di +Package: nic-wireless-modules-6.7.7-loong64-di Package-Type: udeb -Architecture: ia64 +Architecture: loong64 +Section: debian-installer +Priority: standard +Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> +Provides: nic-wireless-modules +Depends: kernel-image-6.7.7-loong64-di, nic-shared-modules-6.7.7-loong64-di, usb-modules-6.7.7-loong64-di, crc-modules-6.7.7-loong64-di, rfkill-modules-6.7.7-loong64-di, crypto-modules-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 +Description: Wireless NIC drivers + This package contains wireless NIC drivers for the kernel. Includes + crypto modules only needed for wireless (WEP, WPA). + +Package: nic-shared-modules-6.7.7-loong64-di +Package-Type: udeb +Architecture: loong64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-shared-modules -Depends: kernel-image-6.6.15-itanium-di, crc-modules-6.6.15-itanium-di, i2c-modules-6.6.15-itanium-di -Kernel-Version: 6.6.15-itanium +Depends: kernel-image-6.7.7-loong64-di, crc-modules-6.7.7-loong64-di, i2c-modules-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 Description: Shared NIC drivers This package contains NIC drivers needed by combinations of nic-modules, nic-pcmcia-modules, nic-usb-modules and nic-wireless-modules. -Package: serial-modules-6.6.15-itanium-di +Package: serial-modules-6.7.7-loong64-di Package-Type: udeb -Architecture: ia64 +Architecture: loong64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: serial-modules -Depends: kernel-image-6.6.15-itanium-di, pcmcia-modules-6.6.15-itanium-di -Kernel-Version: 6.6.15-itanium +Depends: kernel-image-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 Description: Serial drivers This package contains serial drivers for the kernel. -Package: usb-serial-modules-6.6.15-itanium-di +Package: usb-serial-modules-6.7.7-loong64-di Package-Type: udeb -Architecture: ia64 +Architecture: loong64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-serial-modules -Depends: kernel-image-6.6.15-itanium-di, usb-modules-6.6.15-itanium-di -Kernel-Version: 6.6.15-itanium +Depends: kernel-image-6.7.7-loong64-di, usb-modules-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 Description: USB serial drivers This package contains USB serial drivers for the kernel. -Package: ppp-modules-6.6.15-itanium-di +Package: ppp-modules-6.7.7-loong64-di Package-Type: udeb -Architecture: ia64 +Architecture: loong64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ppp-modules -Depends: kernel-image-6.6.15-itanium-di, serial-modules-6.6.15-itanium-di, crc-modules-6.6.15-itanium-di -Kernel-Version: 6.6.15-itanium +Depends: kernel-image-6.7.7-loong64-di, serial-modules-6.7.7-loong64-di, crc-modules-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 Description: PPP drivers This package contains PPP drivers for the kernel. -Package: pata-modules-6.6.15-itanium-di +Package: pata-modules-6.7.7-loong64-di Package-Type: udeb -Architecture: ia64 +Architecture: loong64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: pata-modules -Depends: kernel-image-6.6.15-itanium-di, ata-modules-6.6.15-itanium-di -Kernel-Version: 6.6.15-itanium +Depends: kernel-image-6.7.7-loong64-di, ata-modules-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 Description: PATA drivers This package contains PATA drivers for the kernel. -Package: cdrom-core-modules-6.6.15-itanium-di +Package: cdrom-core-modules-6.7.7-loong64-di Package-Type: udeb -Architecture: ia64 +Architecture: loong64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: cdrom-core-modules -Depends: kernel-image-6.6.15-itanium-di, scsi-core-modules-6.6.15-itanium-di -Kernel-Version: 6.6.15-itanium +Depends: kernel-image-6.7.7-loong64-di, scsi-core-modules-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 Description: CDROM support This package contains core CDROM support for the kernel. -Package: firewire-core-modules-6.6.15-itanium-di +Package: firewire-core-modules-6.7.7-loong64-di Package-Type: udeb -Architecture: ia64 +Architecture: loong64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: firewire-core-modules -Depends: kernel-image-6.6.15-itanium-di, scsi-core-modules-6.6.15-itanium-di, crc-modules-6.6.15-itanium-di -Kernel-Version: 6.6.15-itanium +Depends: kernel-image-6.7.7-loong64-di, scsi-core-modules-6.7.7-loong64-di, crc-modules-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 Description: Core FireWire drivers This package contains core FireWire drivers for the kernel. -Package: scsi-core-modules-6.6.15-itanium-di +Package: scsi-core-modules-6.7.7-loong64-di Package-Type: udeb -Architecture: ia64 +Architecture: loong64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-core-modules -Depends: kernel-image-6.6.15-itanium-di, crc-modules-6.6.15-itanium-di -Kernel-Version: 6.6.15-itanium +Depends: kernel-image-6.7.7-loong64-di, crc-modules-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 Description: Core SCSI subsystem This package contains the core SCSI subsystem for the kernel. -Package: scsi-modules-6.6.15-itanium-di +Package: scsi-modules-6.7.7-loong64-di Package-Type: udeb -Architecture: ia64 +Architecture: loong64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-modules -Depends: kernel-image-6.6.15-itanium-di, scsi-core-modules-6.6.15-itanium-di, cdrom-core-modules-6.6.15-itanium-di, ata-modules-6.6.15-itanium-di -Kernel-Version: 6.6.15-itanium +Depends: kernel-image-6.7.7-loong64-di, scsi-core-modules-6.7.7-loong64-di, cdrom-core-modules-6.7.7-loong64-di, ata-modules-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 Description: SCSI drivers This package contains SCSI drivers for the kernel. -Package: scsi-nic-modules-6.6.15-itanium-di +Package: scsi-nic-modules-6.7.7-loong64-di Package-Type: udeb -Architecture: ia64 +Architecture: loong64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-nic-modules -Depends: scsi-modules-6.6.15-itanium-di, nic-modules-6.6.15-itanium-di -Kernel-Version: 6.6.15-itanium +Depends: scsi-modules-6.7.7-loong64-di, nic-modules-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 Description: SCSI drivers for converged NICs This package contains SCSI drivers that depend on net drivers. -Package: loop-modules-6.6.15-itanium-di +Package: loop-modules-6.7.7-loong64-di Package-Type: udeb -Architecture: ia64 +Architecture: loong64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: loop-modules -Depends: kernel-image-6.6.15-itanium-di -Kernel-Version: 6.6.15-itanium +Depends: kernel-image-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 Description: Loopback filesystem support This package contains loopback filesystem support for the kernel. -Package: btrfs-modules-6.6.15-itanium-di +Package: btrfs-modules-6.7.7-loong64-di Package-Type: udeb -Architecture: ia64 +Architecture: loong64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: btrfs-modules -Depends: kernel-image-6.6.15-itanium-di, crc-modules-6.6.15-itanium-di, md-modules-6.6.15-itanium-di -Kernel-Version: 6.6.15-itanium +Depends: kernel-image-6.7.7-loong64-di, crc-modules-6.7.7-loong64-di, md-modules-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 Description: BTRFS filesystem support This package contains the BTRFS filesystem module for the kernel. -Package: ext4-modules-6.6.15-itanium-di +Package: ext4-modules-6.7.7-loong64-di Package-Type: udeb -Architecture: ia64 +Architecture: loong64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ext4-modules, ext2-modules, ext3-modules -Depends: kernel-image-6.6.15-itanium-di, crc-modules-6.6.15-itanium-di -Kernel-Version: 6.6.15-itanium +Depends: kernel-image-6.7.7-loong64-di, crc-modules-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 Description: ext2/ext3/ext4 filesystem support This package contains the ext4 filesystem module for the kernel, which also supports ext2 and ext3. -Package: isofs-modules-6.6.15-itanium-di +Package: isofs-modules-6.7.7-loong64-di Package-Type: udeb -Architecture: ia64 +Architecture: loong64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: isofs-modules -Depends: kernel-image-6.6.15-itanium-di, cdrom-core-modules-6.6.15-itanium-di -Kernel-Version: 6.6.15-itanium +Depends: kernel-image-6.7.7-loong64-di, cdrom-core-modules-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 Description: ISOFS filesystem support This package contains the ISOFS filesystem module for the kernel. -Package: jfs-modules-6.6.15-itanium-di +Package: jfs-modules-6.7.7-loong64-di Package-Type: udeb -Architecture: ia64 +Architecture: loong64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: jfs-modules -Depends: kernel-image-6.6.15-itanium-di -Kernel-Version: 6.6.15-itanium +Depends: kernel-image-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 Description: JFS filesystem support This package contains the JFS filesystem module for the kernel. -Package: xfs-modules-6.6.15-itanium-di +Package: xfs-modules-6.7.7-loong64-di Package-Type: udeb -Architecture: ia64 +Architecture: loong64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: xfs-modules -Depends: kernel-image-6.6.15-itanium-di, crc-modules-6.6.15-itanium-di -Kernel-Version: 6.6.15-itanium +Depends: kernel-image-6.7.7-loong64-di, crc-modules-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 Description: XFS filesystem support This package contains the XFS filesystem module for the kernel. -Package: fat-modules-6.6.15-itanium-di +Package: fat-modules-6.7.7-loong64-di Package-Type: udeb -Architecture: ia64 +Architecture: loong64 Section: debian-installer -Priority: standard +Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fat-modules -Depends: kernel-image-6.6.15-itanium-di -Kernel-Version: 6.6.15-itanium +Depends: kernel-image-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 Description: FAT filesystem support This package contains the FAT and VFAT filesystem modules for the kernel. -Package: squashfs-modules-6.6.15-itanium-di +Package: squashfs-modules-6.7.7-loong64-di Package-Type: udeb -Architecture: ia64 +Architecture: loong64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: squashfs-modules -Depends: kernel-image-6.6.15-itanium-di -Kernel-Version: 6.6.15-itanium +Depends: kernel-image-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 Description: squashfs modules This package contains squashfs modules. -Package: udf-modules-6.6.15-itanium-di +Package: udf-modules-6.7.7-loong64-di Package-Type: udeb -Architecture: ia64 +Architecture: loong64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: udf-modules -Depends: kernel-image-6.6.15-itanium-di, crc-modules-6.6.15-itanium-di, cdrom-core-modules-6.6.15-itanium-di -Kernel-Version: 6.6.15-itanium +Depends: kernel-image-6.7.7-loong64-di, crc-modules-6.7.7-loong64-di, cdrom-core-modules-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 Description: UDF modules This package contains the UDF filesystem module. -Package: f2fs-modules-6.6.15-itanium-di +Package: f2fs-modules-6.7.7-loong64-di Package-Type: udeb -Architecture: ia64 +Architecture: loong64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: f2fs-modules -Depends: kernel-image-6.6.15-itanium-di, crc-modules-6.6.15-itanium-di -Kernel-Version: 6.6.15-itanium +Depends: kernel-image-6.7.7-loong64-di, crc-modules-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 Description: f2fs filesystem support This package contains the f2fs (Flash-Friendly Filesystem) module. -Package: md-modules-6.6.15-itanium-di +Package: md-modules-6.7.7-loong64-di Package-Type: udeb -Architecture: ia64 +Architecture: loong64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: md-modules -Depends: kernel-image-6.6.15-itanium-di, crc-modules-6.6.15-itanium-di -Kernel-Version: 6.6.15-itanium +Depends: kernel-image-6.7.7-loong64-di, crc-modules-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 Description: RAID and LVM support This package contains RAID and LVM modules for the kernel. -Package: multipath-modules-6.6.15-itanium-di +Package: multipath-modules-6.7.7-loong64-di Package-Type: udeb -Architecture: ia64 +Architecture: loong64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: multipath-modules -Depends: kernel-image-6.6.15-itanium-di, md-modules-6.6.15-itanium-di, scsi-core-modules-6.6.15-itanium-di -Kernel-Version: 6.6.15-itanium +Depends: kernel-image-6.7.7-loong64-di, md-modules-6.7.7-loong64-di, scsi-core-modules-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 Description: Multipath support This package contains DM-Multipath modules for the kernel. -Package: usb-modules-6.6.15-itanium-di +Package: usb-modules-6.7.7-loong64-di Package-Type: udeb -Architecture: ia64 +Architecture: loong64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-modules -Depends: kernel-image-6.6.15-itanium-di -Kernel-Version: 6.6.15-itanium +Depends: kernel-image-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 Description: USB support This package contains core USB drivers for the kernel. -Package: usb-storage-modules-6.6.15-itanium-di +Package: usb-storage-modules-6.7.7-loong64-di Package-Type: udeb -Architecture: ia64 +Architecture: loong64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-storage-modules -Depends: kernel-image-6.6.15-itanium-di, scsi-core-modules-6.6.15-itanium-di, usb-modules-6.6.15-itanium-di -Kernel-Version: 6.6.15-itanium +Depends: kernel-image-6.7.7-loong64-di, scsi-core-modules-6.7.7-loong64-di, usb-modules-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 Description: USB storage support This package contains the USB storage driver for the kernel. -Package: fb-modules-6.6.15-itanium-di +Package: fb-modules-6.7.7-loong64-di Package-Type: udeb -Architecture: ia64 +Architecture: loong64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fb-modules -Depends: kernel-image-6.6.15-itanium-di, i2c-modules-6.6.15-itanium-di, input-modules-6.6.15-itanium-di -Kernel-Version: 6.6.15-itanium +Depends: kernel-image-6.7.7-loong64-di, i2c-modules-6.7.7-loong64-di, input-modules-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 Description: Frame buffer support This package contains Frame buffer drivers for the kernel. -Package: input-modules-6.6.15-itanium-di +Package: input-modules-6.7.7-loong64-di Package-Type: udeb -Architecture: ia64 +Architecture: loong64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: input-modules -Depends: kernel-image-6.6.15-itanium-di, usb-modules-6.6.15-itanium-di, i2c-modules-6.6.15-itanium-di, crc-modules-6.6.15-itanium-di -Kernel-Version: 6.6.15-itanium +Depends: kernel-image-6.7.7-loong64-di, usb-modules-6.7.7-loong64-di, i2c-modules-6.7.7-loong64-di, rfkill-modules-6.7.7-loong64-di, crc-modules-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 Description: Input devices support This package contains input device drivers for the kernel. -Package: event-modules-6.6.15-itanium-di +Package: event-modules-6.7.7-loong64-di Package-Type: udeb -Architecture: ia64 +Architecture: loong64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: event-modules -Depends: kernel-image-6.6.15-itanium-di -Kernel-Version: 6.6.15-itanium +Depends: kernel-image-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 Description: Event support This package contains event drivers for the kernel. -Package: mouse-modules-6.6.15-itanium-di +Package: mouse-modules-6.7.7-loong64-di Package-Type: udeb -Architecture: ia64 +Architecture: loong64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mouse-modules -Depends: kernel-image-6.6.15-itanium-di, event-modules-6.6.15-itanium-di, input-modules-6.6.15-itanium-di, usb-modules-6.6.15-itanium-di -Kernel-Version: 6.6.15-itanium +Depends: kernel-image-6.7.7-loong64-di, event-modules-6.7.7-loong64-di, input-modules-6.7.7-loong64-di, usb-modules-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 Description: Mouse support This package contains mouse drivers for the kernel. -Package: pcmcia-modules-6.6.15-itanium-di -Package-Type: udeb -Architecture: ia64 -Section: debian-installer -Priority: standard -Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> -Provides: pcmcia-modules -Depends: kernel-image-6.6.15-itanium-di -Kernel-Version: 6.6.15-itanium -Description: Common PCMCIA drivers - This package contains common PCMCIA drivers for the kernel. - -Package: nic-usb-modules-6.6.15-itanium-di +Package: nic-usb-modules-6.7.7-loong64-di Package-Type: udeb -Architecture: ia64 +Architecture: loong64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-usb-modules -Depends: kernel-image-6.6.15-itanium-di, nic-shared-modules-6.6.15-itanium-di, usb-modules-6.6.15-itanium-di, crc-modules-6.6.15-itanium-di -Kernel-Version: 6.6.15-itanium +Depends: kernel-image-6.7.7-loong64-di, nic-shared-modules-6.7.7-loong64-di, nic-wireless-modules-6.7.7-loong64-di, usb-modules-6.7.7-loong64-di, crc-modules-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 Description: USB NIC drivers This package contains USB network adapter drivers for the kernel. -Package: sata-modules-6.6.15-itanium-di +Package: sata-modules-6.7.7-loong64-di Package-Type: udeb -Architecture: ia64 +Architecture: loong64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sata-modules -Depends: kernel-image-6.6.15-itanium-di, scsi-core-modules-6.6.15-itanium-di, ata-modules-6.6.15-itanium-di -Kernel-Version: 6.6.15-itanium +Depends: kernel-image-6.7.7-loong64-di, scsi-core-modules-6.7.7-loong64-di, ata-modules-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 Description: SATA drivers This package contains SATA drivers for the kernel. -Package: i2c-modules-6.6.15-itanium-di +Package: i2c-modules-6.7.7-loong64-di Package-Type: udeb -Architecture: ia64 +Architecture: loong64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: i2c-modules -Depends: kernel-image-6.6.15-itanium-di -Kernel-Version: 6.6.15-itanium +Depends: kernel-image-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 Description: i2c support modules This package contains basic i2c support modules. -Package: crc-modules-6.6.15-itanium-di +Package: crc-modules-6.7.7-loong64-di Package-Type: udeb -Architecture: ia64 +Architecture: loong64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crc-modules -Depends: kernel-image-6.6.15-itanium-di -Kernel-Version: 6.6.15-itanium +Depends: kernel-image-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 Description: CRC modules This package contains CRC support modules. -Package: crypto-modules-6.6.15-itanium-di +Package: crypto-modules-6.7.7-loong64-di Package-Type: udeb -Architecture: ia64 +Architecture: loong64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-modules -Depends: kernel-image-6.6.15-itanium-di -Kernel-Version: 6.6.15-itanium +Depends: kernel-image-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 Description: crypto modules This package contains crypto modules. -Package: crypto-dm-modules-6.6.15-itanium-di +Package: crypto-dm-modules-6.7.7-loong64-di Package-Type: udeb -Architecture: ia64 +Architecture: loong64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-dm-modules -Depends: kernel-image-6.6.15-itanium-di, md-modules-6.6.15-itanium-di -Kernel-Version: 6.6.15-itanium +Depends: kernel-image-6.7.7-loong64-di, md-modules-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 Description: devicemapper crypto module This package contains the devicemapper crypto (dm-crypt) module. -Package: ata-modules-6.6.15-itanium-di +Package: efi-modules-6.7.7-loong64-di Package-Type: udeb -Architecture: ia64 +Architecture: loong64 +Section: debian-installer +Priority: optional +Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> +Provides: efi-modules +Depends: kernel-image-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 +Description: EFI modules + This package contains EFI modules. + +Package: ata-modules-6.7.7-loong64-di +Package-Type: udeb +Architecture: loong64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ata-modules -Depends: kernel-image-6.6.15-itanium-di, scsi-core-modules-6.6.15-itanium-di -Kernel-Version: 6.6.15-itanium +Depends: kernel-image-6.7.7-loong64-di, scsi-core-modules-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 Description: ATA disk modules This package contains core ATA disk modules used by both PATA and SATA disk drivers. -Package: nbd-modules-6.6.15-itanium-di +Package: nbd-modules-6.7.7-loong64-di Package-Type: udeb -Architecture: ia64 +Architecture: loong64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nbd-modules -Depends: kernel-image-6.6.15-itanium-di -Kernel-Version: 6.6.15-itanium +Depends: kernel-image-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 Description: Network Block Device modules This package contains the modules required for support of the Network Block Device -Package: uinput-modules-6.6.15-itanium-di +Package: speakup-modules-6.7.7-loong64-di +Package-Type: udeb +Architecture: loong64 +Section: debian-installer +Priority: optional +Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> +Provides: speakup-modules +Depends: kernel-image-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 +Description: speakup modules + This package contains speakup modules. + +Package: uinput-modules-6.7.7-loong64-di Package-Type: udeb -Architecture: ia64 +Architecture: loong64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: uinput-modules -Depends: kernel-image-6.6.15-itanium-di -Kernel-Version: 6.6.15-itanium +Depends: kernel-image-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 Description: uinput support This package contains the uinput module. -Package: mtd-core-modules-6.6.15-itanium-di +Package: sound-modules-6.7.7-loong64-di +Package-Type: udeb +Architecture: loong64 +Section: debian-installer +Priority: optional +Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> +Provides: sound-modules +Depends: kernel-image-6.7.7-loong64-di, i2c-modules-6.7.7-loong64-di, usb-modules-6.7.7-loong64-di, firewire-core-modules-6.7.7-loong64-di, crc-modules-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 +Description: sound support + This package contains sound modules. + +Package: mtd-modules-6.7.7-loong64-di +Package-Type: udeb +Architecture: loong64 +Section: debian-installer +Priority: optional +Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> +Provides: mtd-modules +Depends: kernel-image-6.7.7-loong64-di, mtd-core-modules-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 +Description: MTD driver modules + This package contains MTD driver modules. + +Package: mtd-core-modules-6.7.7-loong64-di Package-Type: udeb -Architecture: ia64 +Architecture: loong64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mtd-core-modules -Depends: kernel-image-6.6.15-itanium-di -Kernel-Version: 6.6.15-itanium +Depends: kernel-image-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 Description: MTD core This package contains the MTD core. -Package: linux-headers-6.6.15-mckinley -Architecture: ia64 -Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Depends: linux-headers-6.6.15-common (= ${source:Version}), linux-image-6.6.15-mckinley (= ${binary:Version}) | linux-image-6.6.15-mckinley-unsigned (= ${binary:Version}), linux-kbuild-6.6.15, ${misc:Depends}, gcc-12 -Description: Header files for Linux 6.6.15-mckinley - This package provides the architecture-specific kernel header files for - Linux kernel 6.6.15-mckinley, generally used for building out-of-tree - kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-mckinley, and can be used for building - modules that load into the kernel provided by the - linux-image-6.6.15-mckinley package. - -Package: linux-image-6.6.15-mckinley -Architecture: ia64 -Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [ia64] | linux-initramfs-tool [ia64] -Recommends: firmware-linux-free, apparmor [ia64] -Suggests: linux-doc-6.6, debian-kernel-handbook, grub-efi-ia64 [ia64] -Breaks: fwupdate (<< 12-7) [ia64], wireless-regdb (<< 2019.06.03-1~) [ia64], initramfs-tools (<< 0.120+deb8u2) [ia64] -Description: Linux 6.6 for Itanium 2+ - The Linux kernel 6.6 and modules for use on systems with Itanium 2 or - 9300/9500/9700-series processors. - -Package: linux-image-mckinley -Architecture: ia64 -Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Provides: linux-latest-modules-6.6.15-mckinley, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] -Depends: linux-image-6.6.15-mckinley (= ${binary:Version}), ${misc:Depends} -Description: Linux for Itanium 2+ (meta-package) - This package depends on the latest Linux kernel and modules for use on - systems with Itanium 2 or 9300/9500/9700-series processors. - -Package: linux-headers-mckinley -Architecture: ia64 -Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Depends: linux-headers-6.6.15-mckinley (= ${binary:Version}), ${misc:Depends} -Description: Header files for Linux mckinley configuration (meta-package) - This package depends on the architecture-specific header files for the - latest Linux kernel mckinley configuration. - -Package: linux-image-6.6.15-mckinley-dbg -Architecture: ia64 -Section: debug +Package: rfkill-modules-6.7.7-loong64-di +Package-Type: udeb +Architecture: loong64 +Section: debian-installer Priority: optional -Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.quick> -Depends: ${misc:Depends} -Description: Debug symbols for linux-image-6.6.15-mckinley - This package provides the detached debug symbols for the Linux kernel and - modules in linux-image-6.6.15-mckinley. - -Package: linux-image-mckinley-dbg -Architecture: ia64 -Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.nometa !pkg.linux.quick> -Provides: linux-latest-image-dbg -Depends: linux-image-6.6.15-mckinley-dbg (= ${binary:Version}), ${misc:Depends} -Description: Debugging symbols for Linux mckinley configuration (meta-package) - This package depends on the detached debugging symbols for the latest - Linux kernel mckinley configuration. +Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> +Provides: rfkill-modules +Depends: kernel-image-6.7.7-loong64-di +Kernel-Version: 6.7.7-loong64 +Description: rfkill modules + This package contains the rfkill module. -Package: linux-headers-6.6.15-m68k +Package: linux-headers-6.7.7-m68k Architecture: m68k Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Depends: linux-headers-6.6.15-common (= ${source:Version}), linux-image-6.6.15-m68k (= ${binary:Version}) | linux-image-6.6.15-m68k-unsigned (= ${binary:Version}), linux-kbuild-6.6.15, ${misc:Depends}, gcc-13 -Description: Header files for Linux 6.6.15-m68k +Depends: linux-headers-6.7.7-common (= ${source:Version}), linux-image-6.7.7-m68k (= ${binary:Version}) | linux-image-6.7.7-m68k-unsigned (= ${binary:Version}), linux-kbuild-6.7.7, ${misc:Depends}, gcc-13 +Description: Header files for Linux 6.7.7-m68k This package provides the architecture-specific kernel header files for - Linux kernel 6.6.15-m68k, generally used for building out-of-tree kernel + Linux kernel 6.7.7-m68k, generally used for building out-of-tree kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-m68k, and can be used for building modules - that load into the kernel provided by the linux-image-6.6.15-m68k package. + /usr/src/linux-headers-6.7.7-m68k, and can be used for building modules + that load into the kernel provided by the linux-image-6.7.7-m68k package. -Package: linux-image-6.6.15-m68k +Package: linux-image-6.7.7-m68k Architecture: m68k Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [m68k] | linux-initramfs-tool [m68k] Recommends: firmware-linux-free, apparmor [m68k] -Suggests: linux-doc-6.6, debian-kernel-handbook, vmelilo [m68k], fdutils [m68k] +Suggests: linux-doc-6.7, debian-kernel-handbook, vmelilo [m68k], fdutils [m68k] Breaks: fwupdate (<< 12-7) [m68k], wireless-regdb (<< 2019.06.03-1~) [m68k], initramfs-tools (<< 0.120+deb8u2) [m68k] -Description: Linux 6.6 for Motorola MC68020+ family - The Linux kernel 6.6 and modules for use on Motorola MC68020+ family. +Description: Linux 6.7 for Motorola MC68020+ family + The Linux kernel 6.7 and modules for use on Motorola MC68020+ family. Package: linux-image-m68k Architecture: m68k Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Provides: linux-latest-modules-6.6.15-m68k, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386], linux-image-generic -Depends: linux-image-6.6.15-m68k (= ${binary:Version}), ${misc:Depends} +Provides: linux-latest-modules-6.7.7-m68k, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386], linux-image-generic +Depends: linux-image-6.7.7-m68k (= ${binary:Version}), ${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. @@ -6049,327 +6048,327 @@ Package: linux-headers-m68k Architecture: m68k Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> Provides: linux-headers-generic -Depends: linux-headers-6.6.15-m68k (= ${binary:Version}), ${misc:Depends} +Depends: linux-headers-6.7.7-m68k (= ${binary:Version}), ${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-6.6.15-m68k-dbg +Package: linux-image-6.7.7-m68k-dbg Architecture: m68k Section: debug Priority: optional Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.quick> Depends: ${misc:Depends} -Description: Debug symbols for linux-image-6.6.15-m68k +Description: Debug symbols for linux-image-6.7.7-m68k This package provides the detached debug symbols for the Linux kernel and - modules in linux-image-6.6.15-m68k. + modules in linux-image-6.7.7-m68k. Package: linux-image-m68k-dbg Architecture: m68k Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.nometa !pkg.linux.quick> Provides: linux-latest-image-dbg -Depends: linux-image-6.6.15-m68k-dbg (= ${binary:Version}), ${misc:Depends} +Depends: linux-image-6.7.7-m68k-dbg (= ${binary:Version}), ${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: kernel-image-6.6.15-m68k-di +Package: kernel-image-6.7.7-m68k-di Package-Type: udeb Architecture: m68k Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: kernel-image -Kernel-Version: 6.6.15-m68k +Kernel-Version: 6.7.7-m68k Description: Linux kernel image and core modules for the Debian installer This package contains the kernel image and core modules for the Debian installer boot images. It does _not_ provide a usable kernel for your full Debian system. -Package: nic-modules-6.6.15-m68k-di +Package: nic-modules-6.7.7-m68k-di Package-Type: udeb Architecture: m68k Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-modules, nic-extra-modules -Depends: kernel-image-6.6.15-m68k-di, nic-shared-modules-6.6.15-m68k-di, crc-modules-6.6.15-m68k-di -Kernel-Version: 6.6.15-m68k +Depends: kernel-image-6.7.7-m68k-di, nic-shared-modules-6.7.7-m68k-di, crc-modules-6.7.7-m68k-di +Kernel-Version: 6.7.7-m68k Description: NIC drivers This package contains Ethernet and some paravirtualised network drivers for the kernel. -Package: nic-shared-modules-6.6.15-m68k-di +Package: nic-shared-modules-6.7.7-m68k-di Package-Type: udeb Architecture: m68k Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-shared-modules -Depends: kernel-image-6.6.15-m68k-di, crc-modules-6.6.15-m68k-di -Kernel-Version: 6.6.15-m68k +Depends: kernel-image-6.7.7-m68k-di, crc-modules-6.7.7-m68k-di +Kernel-Version: 6.7.7-m68k Description: Shared NIC drivers This package contains NIC drivers needed by combinations of nic-modules, nic-pcmcia-modules, nic-usb-modules and nic-wireless-modules. -Package: ppp-modules-6.6.15-m68k-di +Package: ppp-modules-6.7.7-m68k-di Package-Type: udeb Architecture: m68k Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ppp-modules -Depends: kernel-image-6.6.15-m68k-di, crc-modules-6.6.15-m68k-di -Kernel-Version: 6.6.15-m68k +Depends: kernel-image-6.7.7-m68k-di, crc-modules-6.7.7-m68k-di +Kernel-Version: 6.7.7-m68k Description: PPP drivers This package contains PPP drivers for the kernel. -Package: pata-modules-6.6.15-m68k-di +Package: pata-modules-6.7.7-m68k-di Package-Type: udeb Architecture: m68k Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: pata-modules -Depends: kernel-image-6.6.15-m68k-di, ata-modules-6.6.15-m68k-di -Kernel-Version: 6.6.15-m68k +Depends: kernel-image-6.7.7-m68k-di, ata-modules-6.7.7-m68k-di +Kernel-Version: 6.7.7-m68k Description: PATA drivers This package contains PATA drivers for the kernel. -Package: cdrom-core-modules-6.6.15-m68k-di +Package: cdrom-core-modules-6.7.7-m68k-di Package-Type: udeb Architecture: m68k Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: cdrom-core-modules -Depends: kernel-image-6.6.15-m68k-di, scsi-core-modules-6.6.15-m68k-di -Kernel-Version: 6.6.15-m68k +Depends: kernel-image-6.7.7-m68k-di, scsi-core-modules-6.7.7-m68k-di +Kernel-Version: 6.7.7-m68k Description: CDROM support This package contains core CDROM support for the kernel. -Package: scsi-core-modules-6.6.15-m68k-di +Package: scsi-core-modules-6.7.7-m68k-di Package-Type: udeb Architecture: m68k Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-core-modules -Depends: kernel-image-6.6.15-m68k-di, crc-modules-6.6.15-m68k-di -Kernel-Version: 6.6.15-m68k +Depends: kernel-image-6.7.7-m68k-di, crc-modules-6.7.7-m68k-di +Kernel-Version: 6.7.7-m68k Description: Core SCSI subsystem This package contains the core SCSI subsystem for the kernel. -Package: scsi-modules-6.6.15-m68k-di +Package: scsi-modules-6.7.7-m68k-di Package-Type: udeb Architecture: m68k Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-modules -Depends: kernel-image-6.6.15-m68k-di, scsi-core-modules-6.6.15-m68k-di, cdrom-core-modules-6.6.15-m68k-di, ata-modules-6.6.15-m68k-di -Kernel-Version: 6.6.15-m68k +Depends: kernel-image-6.7.7-m68k-di, scsi-core-modules-6.7.7-m68k-di, cdrom-core-modules-6.7.7-m68k-di, ata-modules-6.7.7-m68k-di +Kernel-Version: 6.7.7-m68k Description: SCSI drivers This package contains SCSI drivers for the kernel. -Package: loop-modules-6.6.15-m68k-di +Package: loop-modules-6.7.7-m68k-di Package-Type: udeb Architecture: m68k Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: loop-modules -Depends: kernel-image-6.6.15-m68k-di -Kernel-Version: 6.6.15-m68k +Depends: kernel-image-6.7.7-m68k-di +Kernel-Version: 6.7.7-m68k Description: Loopback filesystem support This package contains loopback filesystem support for the kernel. -Package: btrfs-modules-6.6.15-m68k-di +Package: btrfs-modules-6.7.7-m68k-di Package-Type: udeb Architecture: m68k Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: btrfs-modules -Depends: kernel-image-6.6.15-m68k-di, crc-modules-6.6.15-m68k-di, md-modules-6.6.15-m68k-di -Kernel-Version: 6.6.15-m68k +Depends: kernel-image-6.7.7-m68k-di, crc-modules-6.7.7-m68k-di, md-modules-6.7.7-m68k-di +Kernel-Version: 6.7.7-m68k Description: BTRFS filesystem support This package contains the BTRFS filesystem module for the kernel. -Package: ext4-modules-6.6.15-m68k-di +Package: ext4-modules-6.7.7-m68k-di Package-Type: udeb Architecture: m68k Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ext4-modules, ext2-modules, ext3-modules -Depends: kernel-image-6.6.15-m68k-di, crc-modules-6.6.15-m68k-di -Kernel-Version: 6.6.15-m68k +Depends: kernel-image-6.7.7-m68k-di, crc-modules-6.7.7-m68k-di +Kernel-Version: 6.7.7-m68k Description: ext2/ext3/ext4 filesystem support This package contains the ext4 filesystem module for the kernel, which also supports ext2 and ext3. -Package: isofs-modules-6.6.15-m68k-di +Package: isofs-modules-6.7.7-m68k-di Package-Type: udeb Architecture: m68k Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: isofs-modules -Depends: kernel-image-6.6.15-m68k-di, cdrom-core-modules-6.6.15-m68k-di -Kernel-Version: 6.6.15-m68k +Depends: kernel-image-6.7.7-m68k-di, cdrom-core-modules-6.7.7-m68k-di +Kernel-Version: 6.7.7-m68k Description: ISOFS filesystem support This package contains the ISOFS filesystem module for the kernel. -Package: fat-modules-6.6.15-m68k-di +Package: fat-modules-6.7.7-m68k-di Package-Type: udeb Architecture: m68k Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fat-modules -Depends: kernel-image-6.6.15-m68k-di -Kernel-Version: 6.6.15-m68k +Depends: kernel-image-6.7.7-m68k-di +Kernel-Version: 6.7.7-m68k Description: FAT filesystem support This package contains the FAT and VFAT filesystem modules for the kernel. -Package: hfs-modules-6.6.15-m68k-di +Package: hfs-modules-6.7.7-m68k-di Package-Type: udeb Architecture: m68k Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: hfs-modules -Depends: kernel-image-6.6.15-m68k-di, cdrom-core-modules-6.6.15-m68k-di -Kernel-Version: 6.6.15-m68k +Depends: kernel-image-6.7.7-m68k-di, cdrom-core-modules-6.7.7-m68k-di +Kernel-Version: 6.7.7-m68k Description: HFS filesystem support This package contains the HFS and HFS+ filesystem modules for the kernel. -Package: affs-modules-6.6.15-m68k-di +Package: affs-modules-6.7.7-m68k-di Package-Type: udeb Architecture: m68k Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: affs-modules -Depends: kernel-image-6.6.15-m68k-di -Kernel-Version: 6.6.15-m68k +Depends: kernel-image-6.7.7-m68k-di +Kernel-Version: 6.7.7-m68k Description: Amiga filesystem support This package contains the Amiga filesystem module for the kernel. -Package: squashfs-modules-6.6.15-m68k-di +Package: squashfs-modules-6.7.7-m68k-di Package-Type: udeb Architecture: m68k Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: squashfs-modules -Depends: kernel-image-6.6.15-m68k-di -Kernel-Version: 6.6.15-m68k +Depends: kernel-image-6.7.7-m68k-di +Kernel-Version: 6.7.7-m68k Description: squashfs modules This package contains squashfs modules. -Package: udf-modules-6.6.15-m68k-di +Package: udf-modules-6.7.7-m68k-di Package-Type: udeb Architecture: m68k Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: udf-modules -Depends: kernel-image-6.6.15-m68k-di, crc-modules-6.6.15-m68k-di, cdrom-core-modules-6.6.15-m68k-di -Kernel-Version: 6.6.15-m68k +Depends: kernel-image-6.7.7-m68k-di, crc-modules-6.7.7-m68k-di, cdrom-core-modules-6.7.7-m68k-di +Kernel-Version: 6.7.7-m68k Description: UDF modules This package contains the UDF filesystem module. -Package: md-modules-6.6.15-m68k-di +Package: md-modules-6.7.7-m68k-di Package-Type: udeb Architecture: m68k Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: md-modules -Depends: kernel-image-6.6.15-m68k-di, crc-modules-6.6.15-m68k-di -Kernel-Version: 6.6.15-m68k +Depends: kernel-image-6.7.7-m68k-di, crc-modules-6.7.7-m68k-di +Kernel-Version: 6.7.7-m68k Description: RAID and LVM support This package contains RAID and LVM modules for the kernel. -Package: crc-modules-6.6.15-m68k-di +Package: crc-modules-6.7.7-m68k-di Package-Type: udeb Architecture: m68k Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crc-modules -Depends: kernel-image-6.6.15-m68k-di -Kernel-Version: 6.6.15-m68k +Depends: kernel-image-6.7.7-m68k-di +Kernel-Version: 6.7.7-m68k Description: CRC modules This package contains CRC support modules. -Package: crypto-modules-6.6.15-m68k-di +Package: crypto-modules-6.7.7-m68k-di Package-Type: udeb Architecture: m68k Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-modules -Depends: kernel-image-6.6.15-m68k-di -Kernel-Version: 6.6.15-m68k +Depends: kernel-image-6.7.7-m68k-di +Kernel-Version: 6.7.7-m68k Description: crypto modules This package contains crypto modules. -Package: ata-modules-6.6.15-m68k-di +Package: ata-modules-6.7.7-m68k-di Package-Type: udeb Architecture: m68k Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ata-modules -Depends: kernel-image-6.6.15-m68k-di, scsi-core-modules-6.6.15-m68k-di -Kernel-Version: 6.6.15-m68k +Depends: kernel-image-6.7.7-m68k-di, scsi-core-modules-6.7.7-m68k-di +Kernel-Version: 6.7.7-m68k Description: ATA disk modules This package contains core ATA disk modules used by both PATA and SATA disk drivers. -Package: nbd-modules-6.6.15-m68k-di +Package: nbd-modules-6.7.7-m68k-di Package-Type: udeb Architecture: m68k Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nbd-modules -Depends: kernel-image-6.6.15-m68k-di -Kernel-Version: 6.6.15-m68k +Depends: kernel-image-6.7.7-m68k-di +Kernel-Version: 6.7.7-m68k Description: Network Block Device modules This package contains the modules required for support of the Network Block Device -Package: linux-headers-6.6.15-4kc-malta +Package: linux-headers-6.7.7-4kc-malta Architecture: mips mipsel Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Depends: linux-headers-6.6.15-common (= ${source:Version}), linux-image-6.6.15-4kc-malta (= ${binary:Version}) | linux-image-6.6.15-4kc-malta-unsigned (= ${binary:Version}), linux-kbuild-6.6.15, ${misc:Depends}, gcc-13 -Description: Header files for Linux 6.6.15-4kc-malta +Depends: linux-headers-6.7.7-common (= ${source:Version}), linux-image-6.7.7-4kc-malta (= ${binary:Version}) | linux-image-6.7.7-4kc-malta-unsigned (= ${binary:Version}), linux-kbuild-6.7.7, ${misc:Depends}, gcc-13 +Description: Header files for Linux 6.7.7-4kc-malta This package provides the architecture-specific kernel header files for - Linux kernel 6.6.15-4kc-malta, generally used for building out-of-tree + Linux kernel 6.7.7-4kc-malta, generally used for building out-of-tree kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-4kc-malta, and can be used for building + /usr/src/linux-headers-6.7.7-4kc-malta, and can be used for building modules that load into the kernel provided by the - linux-image-6.6.15-4kc-malta package. + linux-image-6.7.7-4kc-malta package. -Package: linux-image-6.6.15-4kc-malta +Package: linux-image-6.7.7-4kc-malta Architecture: mips mipsel Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [mips mipsel] | linux-initramfs-tool [mips mipsel] Recommends: firmware-linux-free, apparmor [mips mipsel] -Suggests: linux-doc-6.6, debian-kernel-handbook +Suggests: linux-doc-6.7, debian-kernel-handbook Breaks: fwupdate (<< 12-7) [mips mipsel], wireless-regdb (<< 2019.06.03-1~) [mips mipsel], initramfs-tools (<< 0.120+deb8u2) [mips], initramfs-tools (<< 0.120+deb8u2) [mipsel] -Description: Linux 6.6 for MIPS Malta - The Linux kernel 6.6 and modules for use on MIPS Malta boards. +Description: Linux 6.7 for MIPS Malta + The Linux kernel 6.7 and modules for use on MIPS Malta boards. Package: linux-image-4kc-malta Architecture: mips mipsel Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Provides: linux-latest-modules-6.6.15-4kc-malta, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] -Depends: linux-image-6.6.15-4kc-malta (= ${binary:Version}), ${misc:Depends} +Provides: linux-latest-modules-6.7.7-4kc-malta, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] +Depends: linux-image-6.7.7-4kc-malta (= ${binary:Version}), ${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. @@ -6377,594 +6376,594 @@ Description: Linux for MIPS Malta (meta-package) Package: linux-headers-4kc-malta Architecture: mips mipsel Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Depends: linux-headers-6.6.15-4kc-malta (= ${binary:Version}), ${misc:Depends} +Depends: linux-headers-6.7.7-4kc-malta (= ${binary:Version}), ${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-6.6.15-4kc-malta-dbg +Package: linux-image-6.7.7-4kc-malta-dbg Architecture: mips mipsel Section: debug Priority: optional Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.quick> Depends: ${misc:Depends} -Description: Debug symbols for linux-image-6.6.15-4kc-malta +Description: Debug symbols for linux-image-6.7.7-4kc-malta This package provides the detached debug symbols for the Linux kernel and - modules in linux-image-6.6.15-4kc-malta. + modules in linux-image-6.7.7-4kc-malta. Package: linux-image-4kc-malta-dbg Architecture: mips mipsel Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.nometa !pkg.linux.quick> Provides: linux-latest-image-dbg -Depends: linux-image-6.6.15-4kc-malta-dbg (= ${binary:Version}), ${misc:Depends} +Depends: linux-image-6.7.7-4kc-malta-dbg (= ${binary:Version}), ${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: kernel-image-6.6.15-4kc-malta-di +Package: kernel-image-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: kernel-image, i2c-modules, rtc-modules, mtd-core-modules, mtd-modules -Kernel-Version: 6.6.15-4kc-malta +Kernel-Version: 6.7.7-4kc-malta Description: Linux kernel image and core modules for the Debian installer This package contains the kernel image and core modules for the Debian installer boot images. It does _not_ provide a usable kernel for your full Debian system. -Package: nic-modules-6.6.15-4kc-malta-di +Package: nic-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-modules, nic-extra-modules -Depends: kernel-image-6.6.15-4kc-malta-di, nic-shared-modules-6.6.15-4kc-malta-di, crc-modules-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di, nic-shared-modules-6.7.7-4kc-malta-di, crc-modules-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: NIC drivers This package contains Ethernet and some paravirtualised network drivers for the kernel. -Package: nic-wireless-modules-6.6.15-4kc-malta-di +Package: nic-wireless-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-wireless-modules -Depends: kernel-image-6.6.15-4kc-malta-di, nic-shared-modules-6.6.15-4kc-malta-di, usb-modules-6.6.15-4kc-malta-di, mmc-core-modules-6.6.15-4kc-malta-di, crc-modules-6.6.15-4kc-malta-di, crypto-modules-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di, nic-shared-modules-6.7.7-4kc-malta-di, usb-modules-6.7.7-4kc-malta-di, mmc-core-modules-6.7.7-4kc-malta-di, crc-modules-6.7.7-4kc-malta-di, crypto-modules-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: Wireless NIC drivers This package contains wireless NIC drivers for the kernel. Includes crypto modules only needed for wireless (WEP, WPA). -Package: nic-shared-modules-6.6.15-4kc-malta-di +Package: nic-shared-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-shared-modules -Depends: kernel-image-6.6.15-4kc-malta-di, crc-modules-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di, crc-modules-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: Shared NIC drivers This package contains NIC drivers needed by combinations of nic-modules, nic-pcmcia-modules, nic-usb-modules and nic-wireless-modules. -Package: usb-serial-modules-6.6.15-4kc-malta-di +Package: usb-serial-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-serial-modules -Depends: kernel-image-6.6.15-4kc-malta-di, usb-modules-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di, usb-modules-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: USB serial drivers This package contains USB serial drivers for the kernel. -Package: ppp-modules-6.6.15-4kc-malta-di +Package: ppp-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ppp-modules -Depends: kernel-image-6.6.15-4kc-malta-di, crc-modules-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di, crc-modules-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: PPP drivers This package contains PPP drivers for the kernel. -Package: pata-modules-6.6.15-4kc-malta-di +Package: pata-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: pata-modules -Depends: kernel-image-6.6.15-4kc-malta-di, ata-modules-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di, ata-modules-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: PATA drivers This package contains PATA drivers for the kernel. -Package: cdrom-core-modules-6.6.15-4kc-malta-di +Package: cdrom-core-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: cdrom-core-modules -Depends: kernel-image-6.6.15-4kc-malta-di, scsi-core-modules-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di, scsi-core-modules-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: CDROM support This package contains core CDROM support for the kernel. -Package: firewire-core-modules-6.6.15-4kc-malta-di +Package: firewire-core-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: firewire-core-modules -Depends: kernel-image-6.6.15-4kc-malta-di, scsi-core-modules-6.6.15-4kc-malta-di, crc-modules-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di, scsi-core-modules-6.7.7-4kc-malta-di, crc-modules-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: Core FireWire drivers This package contains core FireWire drivers for the kernel. -Package: scsi-core-modules-6.6.15-4kc-malta-di +Package: scsi-core-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-core-modules -Depends: kernel-image-6.6.15-4kc-malta-di, crc-modules-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di, crc-modules-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: Core SCSI subsystem This package contains the core SCSI subsystem for the kernel. -Package: scsi-modules-6.6.15-4kc-malta-di +Package: scsi-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-modules -Depends: kernel-image-6.6.15-4kc-malta-di, scsi-core-modules-6.6.15-4kc-malta-di, cdrom-core-modules-6.6.15-4kc-malta-di, ata-modules-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di, scsi-core-modules-6.7.7-4kc-malta-di, cdrom-core-modules-6.7.7-4kc-malta-di, ata-modules-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: SCSI drivers This package contains SCSI drivers for the kernel. -Package: scsi-nic-modules-6.6.15-4kc-malta-di +Package: scsi-nic-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-nic-modules -Depends: scsi-modules-6.6.15-4kc-malta-di, nic-modules-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: scsi-modules-6.7.7-4kc-malta-di, nic-modules-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: SCSI drivers for converged NICs This package contains SCSI drivers that depend on net drivers. -Package: loop-modules-6.6.15-4kc-malta-di +Package: loop-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: loop-modules -Depends: kernel-image-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: Loopback filesystem support This package contains loopback filesystem support for the kernel. -Package: btrfs-modules-6.6.15-4kc-malta-di +Package: btrfs-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: btrfs-modules -Depends: kernel-image-6.6.15-4kc-malta-di, crc-modules-6.6.15-4kc-malta-di, md-modules-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di, crc-modules-6.7.7-4kc-malta-di, md-modules-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: BTRFS filesystem support This package contains the BTRFS filesystem module for the kernel. -Package: ext4-modules-6.6.15-4kc-malta-di +Package: ext4-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ext4-modules, ext2-modules, ext3-modules -Depends: kernel-image-6.6.15-4kc-malta-di, crc-modules-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di, crc-modules-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: ext2/ext3/ext4 filesystem support This package contains the ext4 filesystem module for the kernel, which also supports ext2 and ext3. -Package: isofs-modules-6.6.15-4kc-malta-di +Package: isofs-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: isofs-modules -Depends: kernel-image-6.6.15-4kc-malta-di, cdrom-core-modules-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di, cdrom-core-modules-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: ISOFS filesystem support This package contains the ISOFS filesystem module for the kernel. -Package: jfs-modules-6.6.15-4kc-malta-di +Package: jfs-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: jfs-modules -Depends: kernel-image-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: JFS filesystem support This package contains the JFS filesystem module for the kernel. -Package: xfs-modules-6.6.15-4kc-malta-di +Package: xfs-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: xfs-modules -Depends: kernel-image-6.6.15-4kc-malta-di, crc-modules-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di, crc-modules-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: XFS filesystem support This package contains the XFS filesystem module for the kernel. -Package: fat-modules-6.6.15-4kc-malta-di +Package: fat-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fat-modules -Depends: kernel-image-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: FAT filesystem support This package contains the FAT and VFAT filesystem modules for the kernel. -Package: affs-modules-6.6.15-4kc-malta-di +Package: affs-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: affs-modules -Depends: kernel-image-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: Amiga filesystem support This package contains the Amiga filesystem module for the kernel. -Package: minix-modules-6.6.15-4kc-malta-di +Package: minix-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: minix-modules -Depends: kernel-image-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: Minix filesystem support This package contains the Minix filesystem module for the kernel. -Package: nfs-modules-6.6.15-4kc-malta-di +Package: nfs-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nfs-modules -Depends: kernel-image-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: NFS filesystem support This package contains the NFS filesystem module for the kernel. -Package: squashfs-modules-6.6.15-4kc-malta-di +Package: squashfs-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: squashfs-modules -Depends: kernel-image-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: squashfs modules This package contains squashfs modules. -Package: udf-modules-6.6.15-4kc-malta-di +Package: udf-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: udf-modules -Depends: kernel-image-6.6.15-4kc-malta-di, crc-modules-6.6.15-4kc-malta-di, cdrom-core-modules-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di, crc-modules-6.7.7-4kc-malta-di, cdrom-core-modules-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: UDF modules This package contains the UDF filesystem module. -Package: f2fs-modules-6.6.15-4kc-malta-di +Package: f2fs-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: f2fs-modules -Depends: kernel-image-6.6.15-4kc-malta-di, crc-modules-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di, crc-modules-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: f2fs filesystem support This package contains the f2fs (Flash-Friendly Filesystem) module. -Package: md-modules-6.6.15-4kc-malta-di +Package: md-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: md-modules -Depends: kernel-image-6.6.15-4kc-malta-di, crc-modules-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di, crc-modules-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: RAID and LVM support This package contains RAID and LVM modules for the kernel. -Package: multipath-modules-6.6.15-4kc-malta-di +Package: multipath-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: multipath-modules -Depends: kernel-image-6.6.15-4kc-malta-di, md-modules-6.6.15-4kc-malta-di, scsi-core-modules-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di, md-modules-6.7.7-4kc-malta-di, scsi-core-modules-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: Multipath support This package contains DM-Multipath modules for the kernel. -Package: usb-modules-6.6.15-4kc-malta-di +Package: usb-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-modules -Depends: kernel-image-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: USB support This package contains core USB drivers for the kernel. -Package: usb-storage-modules-6.6.15-4kc-malta-di +Package: usb-storage-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-storage-modules -Depends: kernel-image-6.6.15-4kc-malta-di, scsi-core-modules-6.6.15-4kc-malta-di, usb-modules-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di, scsi-core-modules-6.7.7-4kc-malta-di, usb-modules-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: USB storage support This package contains the USB storage driver for the kernel. -Package: fb-modules-6.6.15-4kc-malta-di +Package: fb-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fb-modules -Depends: kernel-image-6.6.15-4kc-malta-di, input-modules-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di, input-modules-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: Frame buffer support This package contains Frame buffer drivers for the kernel. -Package: input-modules-6.6.15-4kc-malta-di +Package: input-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: input-modules -Depends: kernel-image-6.6.15-4kc-malta-di, usb-modules-6.6.15-4kc-malta-di, crc-modules-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di, usb-modules-6.7.7-4kc-malta-di, crc-modules-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: Input devices support This package contains input device drivers for the kernel. -Package: event-modules-6.6.15-4kc-malta-di +Package: event-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: event-modules -Depends: kernel-image-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: Event support This package contains event drivers for the kernel. -Package: mouse-modules-6.6.15-4kc-malta-di +Package: mouse-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mouse-modules -Depends: kernel-image-6.6.15-4kc-malta-di, event-modules-6.6.15-4kc-malta-di, input-modules-6.6.15-4kc-malta-di, usb-modules-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di, event-modules-6.7.7-4kc-malta-di, input-modules-6.7.7-4kc-malta-di, usb-modules-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: Mouse support This package contains mouse drivers for the kernel. -Package: nic-usb-modules-6.6.15-4kc-malta-di +Package: nic-usb-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-usb-modules -Depends: kernel-image-6.6.15-4kc-malta-di, nic-shared-modules-6.6.15-4kc-malta-di, nic-wireless-modules-6.6.15-4kc-malta-di, usb-modules-6.6.15-4kc-malta-di, crc-modules-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di, nic-shared-modules-6.7.7-4kc-malta-di, nic-wireless-modules-6.7.7-4kc-malta-di, usb-modules-6.7.7-4kc-malta-di, crc-modules-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: USB NIC drivers This package contains USB network adapter drivers for the kernel. -Package: sata-modules-6.6.15-4kc-malta-di +Package: sata-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sata-modules -Depends: kernel-image-6.6.15-4kc-malta-di, scsi-core-modules-6.6.15-4kc-malta-di, ata-modules-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di, scsi-core-modules-6.7.7-4kc-malta-di, ata-modules-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: SATA drivers This package contains SATA drivers for the kernel. -Package: crc-modules-6.6.15-4kc-malta-di +Package: crc-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crc-modules -Depends: kernel-image-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: CRC modules This package contains CRC support modules. -Package: crypto-modules-6.6.15-4kc-malta-di +Package: crypto-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-modules -Depends: kernel-image-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: crypto modules This package contains crypto modules. -Package: crypto-dm-modules-6.6.15-4kc-malta-di +Package: crypto-dm-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-dm-modules -Depends: kernel-image-6.6.15-4kc-malta-di, md-modules-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di, md-modules-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: devicemapper crypto module This package contains the devicemapper crypto (dm-crypt) module. -Package: ata-modules-6.6.15-4kc-malta-di +Package: ata-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ata-modules -Depends: kernel-image-6.6.15-4kc-malta-di, scsi-core-modules-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di, scsi-core-modules-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: ATA disk modules This package contains core ATA disk modules used by both PATA and SATA disk drivers. -Package: mmc-core-modules-6.6.15-4kc-malta-di +Package: mmc-core-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mmc-core-modules -Depends: kernel-image-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: MMC/SD/SDIO core modules This package contains core modules for MMC/SD/SDIO support. -Package: mmc-modules-6.6.15-4kc-malta-di +Package: mmc-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mmc-modules -Depends: kernel-image-6.6.15-4kc-malta-di, mmc-core-modules-6.6.15-4kc-malta-di, usb-modules-6.6.15-4kc-malta-di, crc-modules-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di, mmc-core-modules-6.7.7-4kc-malta-di, usb-modules-6.7.7-4kc-malta-di, crc-modules-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: MMC/SD card modules This package contains modules needed to support MMC (multimedia) and SD cards. -Package: nbd-modules-6.6.15-4kc-malta-di +Package: nbd-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nbd-modules -Depends: kernel-image-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: Network Block Device modules This package contains the modules required for support of the Network Block Device -Package: speakup-modules-6.6.15-4kc-malta-di +Package: speakup-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: speakup-modules -Depends: kernel-image-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: speakup modules This package contains speakup modules. -Package: sound-modules-6.6.15-4kc-malta-di +Package: sound-modules-6.7.7-4kc-malta-di Package-Type: udeb Architecture: mips mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sound-modules -Depends: kernel-image-6.6.15-4kc-malta-di, usb-modules-6.6.15-4kc-malta-di, firewire-core-modules-6.6.15-4kc-malta-di, crc-modules-6.6.15-4kc-malta-di -Kernel-Version: 6.6.15-4kc-malta +Depends: kernel-image-6.7.7-4kc-malta-di, usb-modules-6.7.7-4kc-malta-di, firewire-core-modules-6.7.7-4kc-malta-di, crc-modules-6.7.7-4kc-malta-di +Kernel-Version: 6.7.7-4kc-malta Description: sound support This package contains sound modules. -Package: linux-headers-6.6.15-mips32r2eb +Package: linux-headers-6.7.7-mips32r2eb Architecture: mips Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Depends: linux-headers-6.6.15-common (= ${source:Version}), linux-image-6.6.15-mips32r2eb (= ${binary:Version}) | linux-image-6.6.15-mips32r2eb-unsigned (= ${binary:Version}), linux-kbuild-6.6.15, ${misc:Depends}, gcc-13 -Description: Header files for Linux 6.6.15-mips32r2eb +Depends: linux-headers-6.7.7-common (= ${source:Version}), linux-image-6.7.7-mips32r2eb (= ${binary:Version}) | linux-image-6.7.7-mips32r2eb-unsigned (= ${binary:Version}), linux-kbuild-6.7.7, ${misc:Depends}, gcc-13 +Description: Header files for Linux 6.7.7-mips32r2eb This package provides the architecture-specific kernel header files for - Linux kernel 6.6.15-mips32r2eb, generally used for building out-of-tree + Linux kernel 6.7.7-mips32r2eb, generally used for building out-of-tree kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-mips32r2eb, and can be used for building + /usr/src/linux-headers-6.7.7-mips32r2eb, and can be used for building modules that load into the kernel provided by the - linux-image-6.6.15-mips32r2eb package. + linux-image-6.7.7-mips32r2eb package. -Package: linux-image-6.6.15-mips32r2eb +Package: linux-image-6.7.7-mips32r2eb Architecture: mips Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [mips] | linux-initramfs-tool [mips] Recommends: firmware-linux-free, apparmor [mips] -Suggests: linux-doc-6.6, debian-kernel-handbook +Suggests: linux-doc-6.7, debian-kernel-handbook Breaks: fwupdate (<< 12-7) [mips], wireless-regdb (<< 2019.06.03-1~) [mips], initramfs-tools (<< 0.120+deb8u2) [mips] -Description: Linux 6.6 for MIPS Generic (mips32r2eb) - The Linux kernel 6.6 and modules for use on MIPS Generic platform +Description: Linux 6.7 for MIPS Generic (mips32r2eb) + The Linux kernel 6.7 and modules for use on MIPS Generic platform (mips32r2eb). Package: linux-image-mips32r2eb Architecture: mips Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Provides: linux-latest-modules-6.6.15-mips32r2eb, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] -Depends: linux-image-6.6.15-mips32r2eb (= ${binary:Version}), ${misc:Depends} +Provides: linux-latest-modules-6.7.7-mips32r2eb, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] +Depends: linux-image-6.7.7-mips32r2eb (= ${binary:Version}), ${misc:Depends} Description: Linux for MIPS Generic (mips32r2eb) (meta-package) This package depends on the latest Linux kernel and modules for use on MIPS Generic platform (mips32r2eb). @@ -6972,593 +6971,593 @@ Description: Linux for MIPS Generic (mips32r2eb) (meta-package) Package: linux-headers-mips32r2eb Architecture: mips Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Depends: linux-headers-6.6.15-mips32r2eb (= ${binary:Version}), ${misc:Depends} +Depends: linux-headers-6.7.7-mips32r2eb (= ${binary:Version}), ${misc:Depends} Description: Header files for Linux mips32r2eb configuration (meta-package) This package depends on the architecture-specific header files for the latest Linux kernel mips32r2eb configuration. -Package: linux-image-6.6.15-mips32r2eb-dbg +Package: linux-image-6.7.7-mips32r2eb-dbg Architecture: mips Section: debug Priority: optional Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.quick> Depends: ${misc:Depends} -Description: Debug symbols for linux-image-6.6.15-mips32r2eb +Description: Debug symbols for linux-image-6.7.7-mips32r2eb This package provides the detached debug symbols for the Linux kernel and - modules in linux-image-6.6.15-mips32r2eb. + modules in linux-image-6.7.7-mips32r2eb. Package: linux-image-mips32r2eb-dbg Architecture: mips Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.nometa !pkg.linux.quick> Provides: linux-latest-image-dbg -Depends: linux-image-6.6.15-mips32r2eb-dbg (= ${binary:Version}), ${misc:Depends} +Depends: linux-image-6.7.7-mips32r2eb-dbg (= ${binary:Version}), ${misc:Depends} Description: Debugging symbols for Linux mips32r2eb configuration (meta-package) This package depends on the detached debugging symbols for the latest Linux kernel mips32r2eb configuration. -Package: kernel-image-6.6.15-mips32r2eb-di +Package: kernel-image-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: kernel-image, i2c-modules, rtc-modules, mtd-core-modules, mtd-modules -Kernel-Version: 6.6.15-mips32r2eb +Kernel-Version: 6.7.7-mips32r2eb Description: Linux kernel image and core modules for the Debian installer This package contains the kernel image and core modules for the Debian installer boot images. It does _not_ provide a usable kernel for your full Debian system. -Package: nic-modules-6.6.15-mips32r2eb-di +Package: nic-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-modules, nic-extra-modules -Depends: kernel-image-6.6.15-mips32r2eb-di, nic-shared-modules-6.6.15-mips32r2eb-di, crc-modules-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di, nic-shared-modules-6.7.7-mips32r2eb-di, crc-modules-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: NIC drivers This package contains Ethernet and some paravirtualised network drivers for the kernel. -Package: nic-wireless-modules-6.6.15-mips32r2eb-di +Package: nic-wireless-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-wireless-modules -Depends: kernel-image-6.6.15-mips32r2eb-di, nic-shared-modules-6.6.15-mips32r2eb-di, usb-modules-6.6.15-mips32r2eb-di, mmc-core-modules-6.6.15-mips32r2eb-di, crc-modules-6.6.15-mips32r2eb-di, crypto-modules-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di, nic-shared-modules-6.7.7-mips32r2eb-di, usb-modules-6.7.7-mips32r2eb-di, mmc-core-modules-6.7.7-mips32r2eb-di, crc-modules-6.7.7-mips32r2eb-di, crypto-modules-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: Wireless NIC drivers This package contains wireless NIC drivers for the kernel. Includes crypto modules only needed for wireless (WEP, WPA). -Package: nic-shared-modules-6.6.15-mips32r2eb-di +Package: nic-shared-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-shared-modules -Depends: kernel-image-6.6.15-mips32r2eb-di, crc-modules-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di, crc-modules-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: Shared NIC drivers This package contains NIC drivers needed by combinations of nic-modules, nic-pcmcia-modules, nic-usb-modules and nic-wireless-modules. -Package: usb-serial-modules-6.6.15-mips32r2eb-di +Package: usb-serial-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-serial-modules -Depends: kernel-image-6.6.15-mips32r2eb-di, usb-modules-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di, usb-modules-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: USB serial drivers This package contains USB serial drivers for the kernel. -Package: ppp-modules-6.6.15-mips32r2eb-di +Package: ppp-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ppp-modules -Depends: kernel-image-6.6.15-mips32r2eb-di, crc-modules-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di, crc-modules-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: PPP drivers This package contains PPP drivers for the kernel. -Package: pata-modules-6.6.15-mips32r2eb-di +Package: pata-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: pata-modules -Depends: kernel-image-6.6.15-mips32r2eb-di, ata-modules-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di, ata-modules-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: PATA drivers This package contains PATA drivers for the kernel. -Package: cdrom-core-modules-6.6.15-mips32r2eb-di +Package: cdrom-core-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: cdrom-core-modules -Depends: kernel-image-6.6.15-mips32r2eb-di, scsi-core-modules-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di, scsi-core-modules-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: CDROM support This package contains core CDROM support for the kernel. -Package: firewire-core-modules-6.6.15-mips32r2eb-di +Package: firewire-core-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: firewire-core-modules -Depends: kernel-image-6.6.15-mips32r2eb-di, scsi-core-modules-6.6.15-mips32r2eb-di, crc-modules-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di, scsi-core-modules-6.7.7-mips32r2eb-di, crc-modules-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: Core FireWire drivers This package contains core FireWire drivers for the kernel. -Package: scsi-core-modules-6.6.15-mips32r2eb-di +Package: scsi-core-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-core-modules -Depends: kernel-image-6.6.15-mips32r2eb-di, crc-modules-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di, crc-modules-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: Core SCSI subsystem This package contains the core SCSI subsystem for the kernel. -Package: scsi-modules-6.6.15-mips32r2eb-di +Package: scsi-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-modules -Depends: kernel-image-6.6.15-mips32r2eb-di, scsi-core-modules-6.6.15-mips32r2eb-di, cdrom-core-modules-6.6.15-mips32r2eb-di, ata-modules-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di, scsi-core-modules-6.7.7-mips32r2eb-di, cdrom-core-modules-6.7.7-mips32r2eb-di, ata-modules-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: SCSI drivers This package contains SCSI drivers for the kernel. -Package: scsi-nic-modules-6.6.15-mips32r2eb-di +Package: scsi-nic-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-nic-modules -Depends: scsi-modules-6.6.15-mips32r2eb-di, nic-modules-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: scsi-modules-6.7.7-mips32r2eb-di, nic-modules-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: SCSI drivers for converged NICs This package contains SCSI drivers that depend on net drivers. -Package: loop-modules-6.6.15-mips32r2eb-di +Package: loop-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: loop-modules -Depends: kernel-image-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: Loopback filesystem support This package contains loopback filesystem support for the kernel. -Package: btrfs-modules-6.6.15-mips32r2eb-di +Package: btrfs-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: btrfs-modules -Depends: kernel-image-6.6.15-mips32r2eb-di, crc-modules-6.6.15-mips32r2eb-di, md-modules-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di, crc-modules-6.7.7-mips32r2eb-di, md-modules-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: BTRFS filesystem support This package contains the BTRFS filesystem module for the kernel. -Package: ext4-modules-6.6.15-mips32r2eb-di +Package: ext4-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ext4-modules, ext2-modules, ext3-modules -Depends: kernel-image-6.6.15-mips32r2eb-di, crc-modules-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di, crc-modules-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: ext2/ext3/ext4 filesystem support This package contains the ext4 filesystem module for the kernel, which also supports ext2 and ext3. -Package: isofs-modules-6.6.15-mips32r2eb-di +Package: isofs-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: isofs-modules -Depends: kernel-image-6.6.15-mips32r2eb-di, cdrom-core-modules-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di, cdrom-core-modules-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: ISOFS filesystem support This package contains the ISOFS filesystem module for the kernel. -Package: jfs-modules-6.6.15-mips32r2eb-di +Package: jfs-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: jfs-modules -Depends: kernel-image-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: JFS filesystem support This package contains the JFS filesystem module for the kernel. -Package: xfs-modules-6.6.15-mips32r2eb-di +Package: xfs-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: xfs-modules -Depends: kernel-image-6.6.15-mips32r2eb-di, crc-modules-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di, crc-modules-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: XFS filesystem support This package contains the XFS filesystem module for the kernel. -Package: fat-modules-6.6.15-mips32r2eb-di +Package: fat-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fat-modules -Depends: kernel-image-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: FAT filesystem support This package contains the FAT and VFAT filesystem modules for the kernel. -Package: affs-modules-6.6.15-mips32r2eb-di +Package: affs-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: affs-modules -Depends: kernel-image-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: Amiga filesystem support This package contains the Amiga filesystem module for the kernel. -Package: minix-modules-6.6.15-mips32r2eb-di +Package: minix-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: minix-modules -Depends: kernel-image-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: Minix filesystem support This package contains the Minix filesystem module for the kernel. -Package: nfs-modules-6.6.15-mips32r2eb-di +Package: nfs-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nfs-modules -Depends: kernel-image-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: NFS filesystem support This package contains the NFS filesystem module for the kernel. -Package: squashfs-modules-6.6.15-mips32r2eb-di +Package: squashfs-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: squashfs-modules -Depends: kernel-image-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: squashfs modules This package contains squashfs modules. -Package: udf-modules-6.6.15-mips32r2eb-di +Package: udf-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: udf-modules -Depends: kernel-image-6.6.15-mips32r2eb-di, crc-modules-6.6.15-mips32r2eb-di, cdrom-core-modules-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di, crc-modules-6.7.7-mips32r2eb-di, cdrom-core-modules-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: UDF modules This package contains the UDF filesystem module. -Package: f2fs-modules-6.6.15-mips32r2eb-di +Package: f2fs-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: f2fs-modules -Depends: kernel-image-6.6.15-mips32r2eb-di, crc-modules-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di, crc-modules-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: f2fs filesystem support This package contains the f2fs (Flash-Friendly Filesystem) module. -Package: md-modules-6.6.15-mips32r2eb-di +Package: md-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: md-modules -Depends: kernel-image-6.6.15-mips32r2eb-di, crc-modules-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di, crc-modules-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: RAID and LVM support This package contains RAID and LVM modules for the kernel. -Package: multipath-modules-6.6.15-mips32r2eb-di +Package: multipath-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: multipath-modules -Depends: kernel-image-6.6.15-mips32r2eb-di, md-modules-6.6.15-mips32r2eb-di, scsi-core-modules-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di, md-modules-6.7.7-mips32r2eb-di, scsi-core-modules-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: Multipath support This package contains DM-Multipath modules for the kernel. -Package: usb-modules-6.6.15-mips32r2eb-di +Package: usb-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-modules -Depends: kernel-image-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: USB support This package contains core USB drivers for the kernel. -Package: usb-storage-modules-6.6.15-mips32r2eb-di +Package: usb-storage-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-storage-modules -Depends: kernel-image-6.6.15-mips32r2eb-di, scsi-core-modules-6.6.15-mips32r2eb-di, usb-modules-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di, scsi-core-modules-6.7.7-mips32r2eb-di, usb-modules-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: USB storage support This package contains the USB storage driver for the kernel. -Package: fb-modules-6.6.15-mips32r2eb-di +Package: fb-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fb-modules -Depends: kernel-image-6.6.15-mips32r2eb-di, input-modules-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di, input-modules-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: Frame buffer support This package contains Frame buffer drivers for the kernel. -Package: input-modules-6.6.15-mips32r2eb-di +Package: input-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: input-modules -Depends: kernel-image-6.6.15-mips32r2eb-di, usb-modules-6.6.15-mips32r2eb-di, crc-modules-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di, usb-modules-6.7.7-mips32r2eb-di, crc-modules-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: Input devices support This package contains input device drivers for the kernel. -Package: event-modules-6.6.15-mips32r2eb-di +Package: event-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: event-modules -Depends: kernel-image-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: Event support This package contains event drivers for the kernel. -Package: mouse-modules-6.6.15-mips32r2eb-di +Package: mouse-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mouse-modules -Depends: kernel-image-6.6.15-mips32r2eb-di, event-modules-6.6.15-mips32r2eb-di, input-modules-6.6.15-mips32r2eb-di, usb-modules-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di, event-modules-6.7.7-mips32r2eb-di, input-modules-6.7.7-mips32r2eb-di, usb-modules-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: Mouse support This package contains mouse drivers for the kernel. -Package: nic-usb-modules-6.6.15-mips32r2eb-di +Package: nic-usb-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-usb-modules -Depends: kernel-image-6.6.15-mips32r2eb-di, nic-shared-modules-6.6.15-mips32r2eb-di, nic-wireless-modules-6.6.15-mips32r2eb-di, usb-modules-6.6.15-mips32r2eb-di, crc-modules-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di, nic-shared-modules-6.7.7-mips32r2eb-di, nic-wireless-modules-6.7.7-mips32r2eb-di, usb-modules-6.7.7-mips32r2eb-di, crc-modules-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: USB NIC drivers This package contains USB network adapter drivers for the kernel. -Package: sata-modules-6.6.15-mips32r2eb-di +Package: sata-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sata-modules -Depends: kernel-image-6.6.15-mips32r2eb-di, scsi-core-modules-6.6.15-mips32r2eb-di, ata-modules-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di, scsi-core-modules-6.7.7-mips32r2eb-di, ata-modules-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: SATA drivers This package contains SATA drivers for the kernel. -Package: crc-modules-6.6.15-mips32r2eb-di +Package: crc-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crc-modules -Depends: kernel-image-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: CRC modules This package contains CRC support modules. -Package: crypto-modules-6.6.15-mips32r2eb-di +Package: crypto-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-modules -Depends: kernel-image-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: crypto modules This package contains crypto modules. -Package: crypto-dm-modules-6.6.15-mips32r2eb-di +Package: crypto-dm-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-dm-modules -Depends: kernel-image-6.6.15-mips32r2eb-di, md-modules-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di, md-modules-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: devicemapper crypto module This package contains the devicemapper crypto (dm-crypt) module. -Package: ata-modules-6.6.15-mips32r2eb-di +Package: ata-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ata-modules -Depends: kernel-image-6.6.15-mips32r2eb-di, scsi-core-modules-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di, scsi-core-modules-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: ATA disk modules This package contains core ATA disk modules used by both PATA and SATA disk drivers. -Package: mmc-core-modules-6.6.15-mips32r2eb-di +Package: mmc-core-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mmc-core-modules -Depends: kernel-image-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: MMC/SD/SDIO core modules This package contains core modules for MMC/SD/SDIO support. -Package: mmc-modules-6.6.15-mips32r2eb-di +Package: mmc-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mmc-modules -Depends: kernel-image-6.6.15-mips32r2eb-di, mmc-core-modules-6.6.15-mips32r2eb-di, usb-modules-6.6.15-mips32r2eb-di, crc-modules-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di, mmc-core-modules-6.7.7-mips32r2eb-di, usb-modules-6.7.7-mips32r2eb-di, crc-modules-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: MMC/SD card modules This package contains modules needed to support MMC (multimedia) and SD cards. -Package: nbd-modules-6.6.15-mips32r2eb-di +Package: nbd-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nbd-modules -Depends: kernel-image-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: Network Block Device modules This package contains the modules required for support of the Network Block Device -Package: speakup-modules-6.6.15-mips32r2eb-di +Package: speakup-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: speakup-modules -Depends: kernel-image-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: speakup modules This package contains speakup modules. -Package: sound-modules-6.6.15-mips32r2eb-di +Package: sound-modules-6.7.7-mips32r2eb-di Package-Type: udeb Architecture: mips Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sound-modules -Depends: kernel-image-6.6.15-mips32r2eb-di, usb-modules-6.6.15-mips32r2eb-di, firewire-core-modules-6.6.15-mips32r2eb-di, crc-modules-6.6.15-mips32r2eb-di -Kernel-Version: 6.6.15-mips32r2eb +Depends: kernel-image-6.7.7-mips32r2eb-di, usb-modules-6.7.7-mips32r2eb-di, firewire-core-modules-6.7.7-mips32r2eb-di, crc-modules-6.7.7-mips32r2eb-di +Kernel-Version: 6.7.7-mips32r2eb Description: sound support This package contains sound modules. -Package: linux-headers-6.6.15-octeon +Package: linux-headers-6.7.7-octeon Architecture: mips mips64 mips64el mipsel Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Depends: linux-headers-6.6.15-common (= ${source:Version}), linux-image-6.6.15-octeon (= ${binary:Version}) | linux-image-6.6.15-octeon-unsigned (= ${binary:Version}), linux-kbuild-6.6.15, ${misc:Depends}, gcc-13 -Description: Header files for Linux 6.6.15-octeon +Depends: linux-headers-6.7.7-common (= ${source:Version}), linux-image-6.7.7-octeon (= ${binary:Version}) | linux-image-6.7.7-octeon-unsigned (= ${binary:Version}), linux-kbuild-6.7.7, ${misc:Depends}, gcc-13 +Description: Header files for Linux 6.7.7-octeon This package provides the architecture-specific kernel header files for - Linux kernel 6.6.15-octeon, generally used for building out-of-tree kernel + Linux kernel 6.7.7-octeon, generally used for building out-of-tree kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-octeon, and can be used for building modules - that load into the kernel provided by the linux-image-6.6.15-octeon + /usr/src/linux-headers-6.7.7-octeon, and can be used for building modules + that load into the kernel provided by the linux-image-6.7.7-octeon package. -Package: linux-image-6.6.15-octeon +Package: linux-image-6.7.7-octeon Architecture: mips mips64 mips64el mipsel Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [mips mips64 mips64el mipsel] | linux-initramfs-tool [mips mips64 mips64el mipsel] Recommends: firmware-linux-free, apparmor [mips mips64 mips64el mipsel] -Suggests: linux-doc-6.6, debian-kernel-handbook +Suggests: linux-doc-6.7, debian-kernel-handbook Breaks: fwupdate (<< 12-7) [mips mips64 mips64el mipsel], wireless-regdb (<< 2019.06.03-1~) [mips mips64 mips64el mipsel], initramfs-tools (<< 0.120+deb8u2) [mips], initramfs-tools (<< 0.120+deb8u2) [mips64], initramfs-tools (<< 0.120+deb8u2) [mips64el], initramfs-tools (<< 0.120+deb8u2) [mipsel] -Description: Linux 6.6 for Octeon - The Linux kernel 6.6 and modules for use on Cavium Networks Octeon. +Description: Linux 6.7 for Octeon + The Linux kernel 6.7 and modules for use on Cavium Networks Octeon. Package: linux-image-octeon Architecture: mips mips64 mips64el mipsel Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Provides: linux-latest-modules-6.6.15-octeon, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] -Depends: linux-image-6.6.15-octeon (= ${binary:Version}), ${misc:Depends} +Provides: linux-latest-modules-6.7.7-octeon, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] +Depends: linux-image-6.7.7-octeon (= ${binary:Version}), ${misc:Depends} Description: Linux for Octeon (meta-package) This package depends on the latest Linux kernel and modules for use on Cavium Networks Octeon. @@ -7566,593 +7565,593 @@ Description: Linux for Octeon (meta-package) Package: linux-headers-octeon Architecture: mips mips64 mips64el mipsel Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Depends: linux-headers-6.6.15-octeon (= ${binary:Version}), ${misc:Depends} +Depends: linux-headers-6.7.7-octeon (= ${binary:Version}), ${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-6.6.15-octeon-dbg +Package: linux-image-6.7.7-octeon-dbg Architecture: mips mips64 mips64el mipsel Section: debug Priority: optional Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.quick> Depends: ${misc:Depends} -Description: Debug symbols for linux-image-6.6.15-octeon +Description: Debug symbols for linux-image-6.7.7-octeon This package provides the detached debug symbols for the Linux kernel and - modules in linux-image-6.6.15-octeon. + modules in linux-image-6.7.7-octeon. Package: linux-image-octeon-dbg Architecture: mips mips64 mips64el mipsel Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.nometa !pkg.linux.quick> Provides: linux-latest-image-dbg -Depends: linux-image-6.6.15-octeon-dbg (= ${binary:Version}), ${misc:Depends} +Depends: linux-image-6.7.7-octeon-dbg (= ${binary:Version}), ${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: kernel-image-6.6.15-octeon-di +Package: kernel-image-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: kernel-image, i2c-modules, rtc-modules, mtd-core-modules, mtd-modules -Kernel-Version: 6.6.15-octeon +Kernel-Version: 6.7.7-octeon Description: Linux kernel image and core modules for the Debian installer This package contains the kernel image and core modules for the Debian installer boot images. It does _not_ provide a usable kernel for your full Debian system. -Package: nic-modules-6.6.15-octeon-di +Package: nic-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-modules, nic-extra-modules -Depends: kernel-image-6.6.15-octeon-di, nic-shared-modules-6.6.15-octeon-di, crc-modules-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di, nic-shared-modules-6.7.7-octeon-di, crc-modules-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: NIC drivers This package contains Ethernet and some paravirtualised network drivers for the kernel. -Package: nic-wireless-modules-6.6.15-octeon-di +Package: nic-wireless-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-wireless-modules -Depends: kernel-image-6.6.15-octeon-di, nic-shared-modules-6.6.15-octeon-di, usb-modules-6.6.15-octeon-di, mmc-core-modules-6.6.15-octeon-di, crc-modules-6.6.15-octeon-di, crypto-modules-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di, nic-shared-modules-6.7.7-octeon-di, usb-modules-6.7.7-octeon-di, mmc-core-modules-6.7.7-octeon-di, crc-modules-6.7.7-octeon-di, crypto-modules-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: Wireless NIC drivers This package contains wireless NIC drivers for the kernel. Includes crypto modules only needed for wireless (WEP, WPA). -Package: nic-shared-modules-6.6.15-octeon-di +Package: nic-shared-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-shared-modules -Depends: kernel-image-6.6.15-octeon-di, crc-modules-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di, crc-modules-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: Shared NIC drivers This package contains NIC drivers needed by combinations of nic-modules, nic-pcmcia-modules, nic-usb-modules and nic-wireless-modules. -Package: usb-serial-modules-6.6.15-octeon-di +Package: usb-serial-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-serial-modules -Depends: kernel-image-6.6.15-octeon-di, usb-modules-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di, usb-modules-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: USB serial drivers This package contains USB serial drivers for the kernel. -Package: ppp-modules-6.6.15-octeon-di +Package: ppp-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ppp-modules -Depends: kernel-image-6.6.15-octeon-di, crc-modules-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di, crc-modules-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: PPP drivers This package contains PPP drivers for the kernel. -Package: pata-modules-6.6.15-octeon-di +Package: pata-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: pata-modules -Depends: kernel-image-6.6.15-octeon-di, ata-modules-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di, ata-modules-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: PATA drivers This package contains PATA drivers for the kernel. -Package: cdrom-core-modules-6.6.15-octeon-di +Package: cdrom-core-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: cdrom-core-modules -Depends: kernel-image-6.6.15-octeon-di, scsi-core-modules-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di, scsi-core-modules-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: CDROM support This package contains core CDROM support for the kernel. -Package: firewire-core-modules-6.6.15-octeon-di +Package: firewire-core-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: firewire-core-modules -Depends: kernel-image-6.6.15-octeon-di, scsi-core-modules-6.6.15-octeon-di, crc-modules-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di, scsi-core-modules-6.7.7-octeon-di, crc-modules-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: Core FireWire drivers This package contains core FireWire drivers for the kernel. -Package: scsi-core-modules-6.6.15-octeon-di +Package: scsi-core-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-core-modules -Depends: kernel-image-6.6.15-octeon-di, crc-modules-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di, crc-modules-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: Core SCSI subsystem This package contains the core SCSI subsystem for the kernel. -Package: scsi-modules-6.6.15-octeon-di +Package: scsi-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-modules -Depends: kernel-image-6.6.15-octeon-di, scsi-core-modules-6.6.15-octeon-di, cdrom-core-modules-6.6.15-octeon-di, ata-modules-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di, scsi-core-modules-6.7.7-octeon-di, cdrom-core-modules-6.7.7-octeon-di, ata-modules-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: SCSI drivers This package contains SCSI drivers for the kernel. -Package: scsi-nic-modules-6.6.15-octeon-di +Package: scsi-nic-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-nic-modules -Depends: scsi-modules-6.6.15-octeon-di, nic-modules-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: scsi-modules-6.7.7-octeon-di, nic-modules-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: SCSI drivers for converged NICs This package contains SCSI drivers that depend on net drivers. -Package: loop-modules-6.6.15-octeon-di +Package: loop-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: loop-modules -Depends: kernel-image-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: Loopback filesystem support This package contains loopback filesystem support for the kernel. -Package: btrfs-modules-6.6.15-octeon-di +Package: btrfs-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: btrfs-modules -Depends: kernel-image-6.6.15-octeon-di, crc-modules-6.6.15-octeon-di, md-modules-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di, crc-modules-6.7.7-octeon-di, md-modules-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: BTRFS filesystem support This package contains the BTRFS filesystem module for the kernel. -Package: ext4-modules-6.6.15-octeon-di +Package: ext4-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ext4-modules, ext2-modules, ext3-modules -Depends: kernel-image-6.6.15-octeon-di, crc-modules-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di, crc-modules-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: ext2/ext3/ext4 filesystem support This package contains the ext4 filesystem module for the kernel, which also supports ext2 and ext3. -Package: isofs-modules-6.6.15-octeon-di +Package: isofs-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: isofs-modules -Depends: kernel-image-6.6.15-octeon-di, cdrom-core-modules-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di, cdrom-core-modules-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: ISOFS filesystem support This package contains the ISOFS filesystem module for the kernel. -Package: jfs-modules-6.6.15-octeon-di +Package: jfs-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: jfs-modules -Depends: kernel-image-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: JFS filesystem support This package contains the JFS filesystem module for the kernel. -Package: xfs-modules-6.6.15-octeon-di +Package: xfs-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: xfs-modules -Depends: kernel-image-6.6.15-octeon-di, crc-modules-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di, crc-modules-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: XFS filesystem support This package contains the XFS filesystem module for the kernel. -Package: fat-modules-6.6.15-octeon-di +Package: fat-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fat-modules -Depends: kernel-image-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: FAT filesystem support This package contains the FAT and VFAT filesystem modules for the kernel. -Package: affs-modules-6.6.15-octeon-di +Package: affs-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: affs-modules -Depends: kernel-image-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: Amiga filesystem support This package contains the Amiga filesystem module for the kernel. -Package: minix-modules-6.6.15-octeon-di +Package: minix-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: minix-modules -Depends: kernel-image-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: Minix filesystem support This package contains the Minix filesystem module for the kernel. -Package: nfs-modules-6.6.15-octeon-di +Package: nfs-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nfs-modules -Depends: kernel-image-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: NFS filesystem support This package contains the NFS filesystem module for the kernel. -Package: squashfs-modules-6.6.15-octeon-di +Package: squashfs-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: squashfs-modules -Depends: kernel-image-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: squashfs modules This package contains squashfs modules. -Package: udf-modules-6.6.15-octeon-di +Package: udf-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: udf-modules -Depends: kernel-image-6.6.15-octeon-di, crc-modules-6.6.15-octeon-di, cdrom-core-modules-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di, crc-modules-6.7.7-octeon-di, cdrom-core-modules-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: UDF modules This package contains the UDF filesystem module. -Package: f2fs-modules-6.6.15-octeon-di +Package: f2fs-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: f2fs-modules -Depends: kernel-image-6.6.15-octeon-di, crc-modules-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di, crc-modules-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: f2fs filesystem support This package contains the f2fs (Flash-Friendly Filesystem) module. -Package: md-modules-6.6.15-octeon-di +Package: md-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: md-modules -Depends: kernel-image-6.6.15-octeon-di, crc-modules-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di, crc-modules-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: RAID and LVM support This package contains RAID and LVM modules for the kernel. -Package: multipath-modules-6.6.15-octeon-di +Package: multipath-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: multipath-modules -Depends: kernel-image-6.6.15-octeon-di, md-modules-6.6.15-octeon-di, scsi-core-modules-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di, md-modules-6.7.7-octeon-di, scsi-core-modules-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: Multipath support This package contains DM-Multipath modules for the kernel. -Package: usb-modules-6.6.15-octeon-di +Package: usb-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-modules -Depends: kernel-image-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: USB support This package contains core USB drivers for the kernel. -Package: usb-storage-modules-6.6.15-octeon-di +Package: usb-storage-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-storage-modules -Depends: kernel-image-6.6.15-octeon-di, scsi-core-modules-6.6.15-octeon-di, usb-modules-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di, scsi-core-modules-6.7.7-octeon-di, usb-modules-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: USB storage support This package contains the USB storage driver for the kernel. -Package: fb-modules-6.6.15-octeon-di +Package: fb-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fb-modules -Depends: kernel-image-6.6.15-octeon-di, input-modules-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di, input-modules-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: Frame buffer support This package contains Frame buffer drivers for the kernel. -Package: input-modules-6.6.15-octeon-di +Package: input-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: input-modules -Depends: kernel-image-6.6.15-octeon-di, usb-modules-6.6.15-octeon-di, crc-modules-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di, usb-modules-6.7.7-octeon-di, crc-modules-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: Input devices support This package contains input device drivers for the kernel. -Package: event-modules-6.6.15-octeon-di +Package: event-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: event-modules -Depends: kernel-image-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: Event support This package contains event drivers for the kernel. -Package: mouse-modules-6.6.15-octeon-di +Package: mouse-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mouse-modules -Depends: kernel-image-6.6.15-octeon-di, event-modules-6.6.15-octeon-di, input-modules-6.6.15-octeon-di, usb-modules-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di, event-modules-6.7.7-octeon-di, input-modules-6.7.7-octeon-di, usb-modules-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: Mouse support This package contains mouse drivers for the kernel. -Package: nic-usb-modules-6.6.15-octeon-di +Package: nic-usb-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-usb-modules -Depends: kernel-image-6.6.15-octeon-di, nic-shared-modules-6.6.15-octeon-di, nic-wireless-modules-6.6.15-octeon-di, usb-modules-6.6.15-octeon-di, crc-modules-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di, nic-shared-modules-6.7.7-octeon-di, nic-wireless-modules-6.7.7-octeon-di, usb-modules-6.7.7-octeon-di, crc-modules-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: USB NIC drivers This package contains USB network adapter drivers for the kernel. -Package: sata-modules-6.6.15-octeon-di +Package: sata-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sata-modules -Depends: kernel-image-6.6.15-octeon-di, scsi-core-modules-6.6.15-octeon-di, ata-modules-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di, scsi-core-modules-6.7.7-octeon-di, ata-modules-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: SATA drivers This package contains SATA drivers for the kernel. -Package: crc-modules-6.6.15-octeon-di +Package: crc-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crc-modules -Depends: kernel-image-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: CRC modules This package contains CRC support modules. -Package: crypto-modules-6.6.15-octeon-di +Package: crypto-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-modules -Depends: kernel-image-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: crypto modules This package contains crypto modules. -Package: crypto-dm-modules-6.6.15-octeon-di +Package: crypto-dm-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-dm-modules -Depends: kernel-image-6.6.15-octeon-di, md-modules-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di, md-modules-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: devicemapper crypto module This package contains the devicemapper crypto (dm-crypt) module. -Package: ata-modules-6.6.15-octeon-di +Package: ata-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ata-modules -Depends: kernel-image-6.6.15-octeon-di, scsi-core-modules-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di, scsi-core-modules-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: ATA disk modules This package contains core ATA disk modules used by both PATA and SATA disk drivers. -Package: mmc-core-modules-6.6.15-octeon-di +Package: mmc-core-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mmc-core-modules -Depends: kernel-image-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: MMC/SD/SDIO core modules This package contains core modules for MMC/SD/SDIO support. -Package: mmc-modules-6.6.15-octeon-di +Package: mmc-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mmc-modules -Depends: kernel-image-6.6.15-octeon-di, mmc-core-modules-6.6.15-octeon-di, usb-modules-6.6.15-octeon-di, crc-modules-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di, mmc-core-modules-6.7.7-octeon-di, usb-modules-6.7.7-octeon-di, crc-modules-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: MMC/SD card modules This package contains modules needed to support MMC (multimedia) and SD cards. -Package: nbd-modules-6.6.15-octeon-di +Package: nbd-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nbd-modules -Depends: kernel-image-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: Network Block Device modules This package contains the modules required for support of the Network Block Device -Package: speakup-modules-6.6.15-octeon-di +Package: speakup-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: speakup-modules -Depends: kernel-image-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: speakup modules This package contains speakup modules. -Package: sound-modules-6.6.15-octeon-di +Package: sound-modules-6.7.7-octeon-di Package-Type: udeb Architecture: mips mips64 mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sound-modules -Depends: kernel-image-6.6.15-octeon-di, usb-modules-6.6.15-octeon-di, firewire-core-modules-6.6.15-octeon-di, crc-modules-6.6.15-octeon-di -Kernel-Version: 6.6.15-octeon +Depends: kernel-image-6.7.7-octeon-di, usb-modules-6.7.7-octeon-di, firewire-core-modules-6.7.7-octeon-di, crc-modules-6.7.7-octeon-di +Kernel-Version: 6.7.7-octeon Description: sound support This package contains sound modules. -Package: linux-headers-6.6.15-5kc-malta +Package: linux-headers-6.7.7-5kc-malta Architecture: mips64 mips64el Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Depends: linux-headers-6.6.15-common (= ${source:Version}), linux-image-6.6.15-5kc-malta (= ${binary:Version}) | linux-image-6.6.15-5kc-malta-unsigned (= ${binary:Version}), linux-kbuild-6.6.15, ${misc:Depends}, gcc-13 -Description: Header files for Linux 6.6.15-5kc-malta +Depends: linux-headers-6.7.7-common (= ${source:Version}), linux-image-6.7.7-5kc-malta (= ${binary:Version}) | linux-image-6.7.7-5kc-malta-unsigned (= ${binary:Version}), linux-kbuild-6.7.7, ${misc:Depends}, gcc-13 +Description: Header files for Linux 6.7.7-5kc-malta This package provides the architecture-specific kernel header files for - Linux kernel 6.6.15-5kc-malta, generally used for building out-of-tree + Linux kernel 6.7.7-5kc-malta, generally used for building out-of-tree kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-5kc-malta, and can be used for building + /usr/src/linux-headers-6.7.7-5kc-malta, and can be used for building modules that load into the kernel provided by the - linux-image-6.6.15-5kc-malta package. + linux-image-6.7.7-5kc-malta package. -Package: linux-image-6.6.15-5kc-malta +Package: linux-image-6.7.7-5kc-malta Architecture: mips64 mips64el Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [mips64 mips64el] | linux-initramfs-tool [mips64 mips64el] Recommends: firmware-linux-free, apparmor [mips64 mips64el] -Suggests: linux-doc-6.6, debian-kernel-handbook +Suggests: linux-doc-6.7, debian-kernel-handbook Breaks: fwupdate (<< 12-7) [mips64 mips64el], wireless-regdb (<< 2019.06.03-1~) [mips64 mips64el], initramfs-tools (<< 0.120+deb8u2) [mips64], initramfs-tools (<< 0.120+deb8u2) [mips64el] -Description: Linux 6.6 for MIPS Malta - The Linux kernel 6.6 and modules for use on MIPS Malta boards. +Description: Linux 6.7 for MIPS Malta + The Linux kernel 6.7 and modules for use on MIPS Malta boards. Package: linux-image-5kc-malta Architecture: mips64 mips64el Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Provides: linux-latest-modules-6.6.15-5kc-malta, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] -Depends: linux-image-6.6.15-5kc-malta (= ${binary:Version}), ${misc:Depends} +Provides: linux-latest-modules-6.7.7-5kc-malta, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] +Depends: linux-image-6.7.7-5kc-malta (= ${binary:Version}), ${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. @@ -8160,594 +8159,594 @@ Description: Linux for MIPS Malta (meta-package) Package: linux-headers-5kc-malta Architecture: mips64 mips64el Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Depends: linux-headers-6.6.15-5kc-malta (= ${binary:Version}), ${misc:Depends} +Depends: linux-headers-6.7.7-5kc-malta (= ${binary:Version}), ${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-6.6.15-5kc-malta-dbg +Package: linux-image-6.7.7-5kc-malta-dbg Architecture: mips64 mips64el Section: debug Priority: optional Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.quick> Depends: ${misc:Depends} -Description: Debug symbols for linux-image-6.6.15-5kc-malta +Description: Debug symbols for linux-image-6.7.7-5kc-malta This package provides the detached debug symbols for the Linux kernel and - modules in linux-image-6.6.15-5kc-malta. + modules in linux-image-6.7.7-5kc-malta. Package: linux-image-5kc-malta-dbg Architecture: mips64 mips64el Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.nometa !pkg.linux.quick> Provides: linux-latest-image-dbg -Depends: linux-image-6.6.15-5kc-malta-dbg (= ${binary:Version}), ${misc:Depends} +Depends: linux-image-6.7.7-5kc-malta-dbg (= ${binary:Version}), ${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: kernel-image-6.6.15-5kc-malta-di +Package: kernel-image-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: kernel-image, i2c-modules, rtc-modules, mtd-core-modules, mtd-modules -Kernel-Version: 6.6.15-5kc-malta +Kernel-Version: 6.7.7-5kc-malta Description: Linux kernel image and core modules for the Debian installer This package contains the kernel image and core modules for the Debian installer boot images. It does _not_ provide a usable kernel for your full Debian system. -Package: nic-modules-6.6.15-5kc-malta-di +Package: nic-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-modules, nic-extra-modules -Depends: kernel-image-6.6.15-5kc-malta-di, nic-shared-modules-6.6.15-5kc-malta-di, crc-modules-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di, nic-shared-modules-6.7.7-5kc-malta-di, crc-modules-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: NIC drivers This package contains Ethernet and some paravirtualised network drivers for the kernel. -Package: nic-wireless-modules-6.6.15-5kc-malta-di +Package: nic-wireless-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-wireless-modules -Depends: kernel-image-6.6.15-5kc-malta-di, nic-shared-modules-6.6.15-5kc-malta-di, usb-modules-6.6.15-5kc-malta-di, mmc-core-modules-6.6.15-5kc-malta-di, crc-modules-6.6.15-5kc-malta-di, crypto-modules-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di, nic-shared-modules-6.7.7-5kc-malta-di, usb-modules-6.7.7-5kc-malta-di, mmc-core-modules-6.7.7-5kc-malta-di, crc-modules-6.7.7-5kc-malta-di, crypto-modules-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: Wireless NIC drivers This package contains wireless NIC drivers for the kernel. Includes crypto modules only needed for wireless (WEP, WPA). -Package: nic-shared-modules-6.6.15-5kc-malta-di +Package: nic-shared-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-shared-modules -Depends: kernel-image-6.6.15-5kc-malta-di, crc-modules-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di, crc-modules-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: Shared NIC drivers This package contains NIC drivers needed by combinations of nic-modules, nic-pcmcia-modules, nic-usb-modules and nic-wireless-modules. -Package: usb-serial-modules-6.6.15-5kc-malta-di +Package: usb-serial-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-serial-modules -Depends: kernel-image-6.6.15-5kc-malta-di, usb-modules-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di, usb-modules-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: USB serial drivers This package contains USB serial drivers for the kernel. -Package: ppp-modules-6.6.15-5kc-malta-di +Package: ppp-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ppp-modules -Depends: kernel-image-6.6.15-5kc-malta-di, crc-modules-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di, crc-modules-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: PPP drivers This package contains PPP drivers for the kernel. -Package: pata-modules-6.6.15-5kc-malta-di +Package: pata-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: pata-modules -Depends: kernel-image-6.6.15-5kc-malta-di, ata-modules-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di, ata-modules-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: PATA drivers This package contains PATA drivers for the kernel. -Package: cdrom-core-modules-6.6.15-5kc-malta-di +Package: cdrom-core-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: cdrom-core-modules -Depends: kernel-image-6.6.15-5kc-malta-di, scsi-core-modules-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di, scsi-core-modules-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: CDROM support This package contains core CDROM support for the kernel. -Package: firewire-core-modules-6.6.15-5kc-malta-di +Package: firewire-core-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: firewire-core-modules -Depends: kernel-image-6.6.15-5kc-malta-di, scsi-core-modules-6.6.15-5kc-malta-di, crc-modules-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di, scsi-core-modules-6.7.7-5kc-malta-di, crc-modules-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: Core FireWire drivers This package contains core FireWire drivers for the kernel. -Package: scsi-core-modules-6.6.15-5kc-malta-di +Package: scsi-core-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-core-modules -Depends: kernel-image-6.6.15-5kc-malta-di, crc-modules-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di, crc-modules-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: Core SCSI subsystem This package contains the core SCSI subsystem for the kernel. -Package: scsi-modules-6.6.15-5kc-malta-di +Package: scsi-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-modules -Depends: kernel-image-6.6.15-5kc-malta-di, scsi-core-modules-6.6.15-5kc-malta-di, cdrom-core-modules-6.6.15-5kc-malta-di, ata-modules-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di, scsi-core-modules-6.7.7-5kc-malta-di, cdrom-core-modules-6.7.7-5kc-malta-di, ata-modules-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: SCSI drivers This package contains SCSI drivers for the kernel. -Package: scsi-nic-modules-6.6.15-5kc-malta-di +Package: scsi-nic-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-nic-modules -Depends: scsi-modules-6.6.15-5kc-malta-di, nic-modules-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: scsi-modules-6.7.7-5kc-malta-di, nic-modules-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: SCSI drivers for converged NICs This package contains SCSI drivers that depend on net drivers. -Package: loop-modules-6.6.15-5kc-malta-di +Package: loop-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: loop-modules -Depends: kernel-image-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: Loopback filesystem support This package contains loopback filesystem support for the kernel. -Package: btrfs-modules-6.6.15-5kc-malta-di +Package: btrfs-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: btrfs-modules -Depends: kernel-image-6.6.15-5kc-malta-di, crc-modules-6.6.15-5kc-malta-di, md-modules-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di, crc-modules-6.7.7-5kc-malta-di, md-modules-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: BTRFS filesystem support This package contains the BTRFS filesystem module for the kernel. -Package: ext4-modules-6.6.15-5kc-malta-di +Package: ext4-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ext4-modules, ext2-modules, ext3-modules -Depends: kernel-image-6.6.15-5kc-malta-di, crc-modules-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di, crc-modules-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: ext2/ext3/ext4 filesystem support This package contains the ext4 filesystem module for the kernel, which also supports ext2 and ext3. -Package: isofs-modules-6.6.15-5kc-malta-di +Package: isofs-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: isofs-modules -Depends: kernel-image-6.6.15-5kc-malta-di, cdrom-core-modules-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di, cdrom-core-modules-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: ISOFS filesystem support This package contains the ISOFS filesystem module for the kernel. -Package: jfs-modules-6.6.15-5kc-malta-di +Package: jfs-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: jfs-modules -Depends: kernel-image-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: JFS filesystem support This package contains the JFS filesystem module for the kernel. -Package: xfs-modules-6.6.15-5kc-malta-di +Package: xfs-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: xfs-modules -Depends: kernel-image-6.6.15-5kc-malta-di, crc-modules-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di, crc-modules-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: XFS filesystem support This package contains the XFS filesystem module for the kernel. -Package: fat-modules-6.6.15-5kc-malta-di +Package: fat-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fat-modules -Depends: kernel-image-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: FAT filesystem support This package contains the FAT and VFAT filesystem modules for the kernel. -Package: affs-modules-6.6.15-5kc-malta-di +Package: affs-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: affs-modules -Depends: kernel-image-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: Amiga filesystem support This package contains the Amiga filesystem module for the kernel. -Package: minix-modules-6.6.15-5kc-malta-di +Package: minix-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: minix-modules -Depends: kernel-image-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: Minix filesystem support This package contains the Minix filesystem module for the kernel. -Package: nfs-modules-6.6.15-5kc-malta-di +Package: nfs-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nfs-modules -Depends: kernel-image-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: NFS filesystem support This package contains the NFS filesystem module for the kernel. -Package: squashfs-modules-6.6.15-5kc-malta-di +Package: squashfs-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: squashfs-modules -Depends: kernel-image-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: squashfs modules This package contains squashfs modules. -Package: udf-modules-6.6.15-5kc-malta-di +Package: udf-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: udf-modules -Depends: kernel-image-6.6.15-5kc-malta-di, crc-modules-6.6.15-5kc-malta-di, cdrom-core-modules-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di, crc-modules-6.7.7-5kc-malta-di, cdrom-core-modules-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: UDF modules This package contains the UDF filesystem module. -Package: f2fs-modules-6.6.15-5kc-malta-di +Package: f2fs-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: f2fs-modules -Depends: kernel-image-6.6.15-5kc-malta-di, crc-modules-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di, crc-modules-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: f2fs filesystem support This package contains the f2fs (Flash-Friendly Filesystem) module. -Package: md-modules-6.6.15-5kc-malta-di +Package: md-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: md-modules -Depends: kernel-image-6.6.15-5kc-malta-di, crc-modules-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di, crc-modules-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: RAID and LVM support This package contains RAID and LVM modules for the kernel. -Package: multipath-modules-6.6.15-5kc-malta-di +Package: multipath-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: multipath-modules -Depends: kernel-image-6.6.15-5kc-malta-di, md-modules-6.6.15-5kc-malta-di, scsi-core-modules-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di, md-modules-6.7.7-5kc-malta-di, scsi-core-modules-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: Multipath support This package contains DM-Multipath modules for the kernel. -Package: usb-modules-6.6.15-5kc-malta-di +Package: usb-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-modules -Depends: kernel-image-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: USB support This package contains core USB drivers for the kernel. -Package: usb-storage-modules-6.6.15-5kc-malta-di +Package: usb-storage-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-storage-modules -Depends: kernel-image-6.6.15-5kc-malta-di, scsi-core-modules-6.6.15-5kc-malta-di, usb-modules-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di, scsi-core-modules-6.7.7-5kc-malta-di, usb-modules-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: USB storage support This package contains the USB storage driver for the kernel. -Package: fb-modules-6.6.15-5kc-malta-di +Package: fb-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fb-modules -Depends: kernel-image-6.6.15-5kc-malta-di, input-modules-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di, input-modules-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: Frame buffer support This package contains Frame buffer drivers for the kernel. -Package: input-modules-6.6.15-5kc-malta-di +Package: input-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: input-modules -Depends: kernel-image-6.6.15-5kc-malta-di, usb-modules-6.6.15-5kc-malta-di, crc-modules-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di, usb-modules-6.7.7-5kc-malta-di, crc-modules-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: Input devices support This package contains input device drivers for the kernel. -Package: event-modules-6.6.15-5kc-malta-di +Package: event-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: event-modules -Depends: kernel-image-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: Event support This package contains event drivers for the kernel. -Package: mouse-modules-6.6.15-5kc-malta-di +Package: mouse-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mouse-modules -Depends: kernel-image-6.6.15-5kc-malta-di, event-modules-6.6.15-5kc-malta-di, input-modules-6.6.15-5kc-malta-di, usb-modules-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di, event-modules-6.7.7-5kc-malta-di, input-modules-6.7.7-5kc-malta-di, usb-modules-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: Mouse support This package contains mouse drivers for the kernel. -Package: nic-usb-modules-6.6.15-5kc-malta-di +Package: nic-usb-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-usb-modules -Depends: kernel-image-6.6.15-5kc-malta-di, nic-shared-modules-6.6.15-5kc-malta-di, nic-wireless-modules-6.6.15-5kc-malta-di, usb-modules-6.6.15-5kc-malta-di, crc-modules-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di, nic-shared-modules-6.7.7-5kc-malta-di, nic-wireless-modules-6.7.7-5kc-malta-di, usb-modules-6.7.7-5kc-malta-di, crc-modules-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: USB NIC drivers This package contains USB network adapter drivers for the kernel. -Package: sata-modules-6.6.15-5kc-malta-di +Package: sata-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sata-modules -Depends: kernel-image-6.6.15-5kc-malta-di, scsi-core-modules-6.6.15-5kc-malta-di, ata-modules-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di, scsi-core-modules-6.7.7-5kc-malta-di, ata-modules-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: SATA drivers This package contains SATA drivers for the kernel. -Package: crc-modules-6.6.15-5kc-malta-di +Package: crc-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crc-modules -Depends: kernel-image-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: CRC modules This package contains CRC support modules. -Package: crypto-modules-6.6.15-5kc-malta-di +Package: crypto-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-modules -Depends: kernel-image-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: crypto modules This package contains crypto modules. -Package: crypto-dm-modules-6.6.15-5kc-malta-di +Package: crypto-dm-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-dm-modules -Depends: kernel-image-6.6.15-5kc-malta-di, md-modules-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di, md-modules-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: devicemapper crypto module This package contains the devicemapper crypto (dm-crypt) module. -Package: ata-modules-6.6.15-5kc-malta-di +Package: ata-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ata-modules -Depends: kernel-image-6.6.15-5kc-malta-di, scsi-core-modules-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di, scsi-core-modules-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: ATA disk modules This package contains core ATA disk modules used by both PATA and SATA disk drivers. -Package: mmc-core-modules-6.6.15-5kc-malta-di +Package: mmc-core-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mmc-core-modules -Depends: kernel-image-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: MMC/SD/SDIO core modules This package contains core modules for MMC/SD/SDIO support. -Package: mmc-modules-6.6.15-5kc-malta-di +Package: mmc-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mmc-modules -Depends: kernel-image-6.6.15-5kc-malta-di, mmc-core-modules-6.6.15-5kc-malta-di, usb-modules-6.6.15-5kc-malta-di, crc-modules-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di, mmc-core-modules-6.7.7-5kc-malta-di, usb-modules-6.7.7-5kc-malta-di, crc-modules-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: MMC/SD card modules This package contains modules needed to support MMC (multimedia) and SD cards. -Package: nbd-modules-6.6.15-5kc-malta-di +Package: nbd-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nbd-modules -Depends: kernel-image-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: Network Block Device modules This package contains the modules required for support of the Network Block Device -Package: speakup-modules-6.6.15-5kc-malta-di +Package: speakup-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: speakup-modules -Depends: kernel-image-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: speakup modules This package contains speakup modules. -Package: sound-modules-6.6.15-5kc-malta-di +Package: sound-modules-6.7.7-5kc-malta-di Package-Type: udeb Architecture: mips64 mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sound-modules -Depends: kernel-image-6.6.15-5kc-malta-di, usb-modules-6.6.15-5kc-malta-di, firewire-core-modules-6.6.15-5kc-malta-di, crc-modules-6.6.15-5kc-malta-di -Kernel-Version: 6.6.15-5kc-malta +Depends: kernel-image-6.7.7-5kc-malta-di, usb-modules-6.7.7-5kc-malta-di, firewire-core-modules-6.7.7-5kc-malta-di, crc-modules-6.7.7-5kc-malta-di +Kernel-Version: 6.7.7-5kc-malta Description: sound support This package contains sound modules. -Package: linux-headers-6.6.15-mips64r2eb +Package: linux-headers-6.7.7-mips64r2eb Architecture: mips64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Depends: linux-headers-6.6.15-common (= ${source:Version}), linux-image-6.6.15-mips64r2eb (= ${binary:Version}) | linux-image-6.6.15-mips64r2eb-unsigned (= ${binary:Version}), linux-kbuild-6.6.15, ${misc:Depends}, gcc-13 -Description: Header files for Linux 6.6.15-mips64r2eb +Depends: linux-headers-6.7.7-common (= ${source:Version}), linux-image-6.7.7-mips64r2eb (= ${binary:Version}) | linux-image-6.7.7-mips64r2eb-unsigned (= ${binary:Version}), linux-kbuild-6.7.7, ${misc:Depends}, gcc-13 +Description: Header files for Linux 6.7.7-mips64r2eb This package provides the architecture-specific kernel header files for - Linux kernel 6.6.15-mips64r2eb, generally used for building out-of-tree + Linux kernel 6.7.7-mips64r2eb, generally used for building out-of-tree kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-mips64r2eb, and can be used for building + /usr/src/linux-headers-6.7.7-mips64r2eb, and can be used for building modules that load into the kernel provided by the - linux-image-6.6.15-mips64r2eb package. + linux-image-6.7.7-mips64r2eb package. -Package: linux-image-6.6.15-mips64r2eb +Package: linux-image-6.7.7-mips64r2eb Architecture: mips64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [mips64] | linux-initramfs-tool [mips64] Recommends: firmware-linux-free, apparmor [mips64] -Suggests: linux-doc-6.6, debian-kernel-handbook +Suggests: linux-doc-6.7, debian-kernel-handbook Breaks: fwupdate (<< 12-7) [mips64], wireless-regdb (<< 2019.06.03-1~) [mips64], initramfs-tools (<< 0.120+deb8u2) [mips64] -Description: Linux 6.6 for MIPS Generic (mips64r2eb) - The Linux kernel 6.6 and modules for use on MIPS Generic platform +Description: Linux 6.7 for MIPS Generic (mips64r2eb) + The Linux kernel 6.7 and modules for use on MIPS Generic platform (mips64r2eb). Package: linux-image-mips64r2eb Architecture: mips64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Provides: linux-latest-modules-6.6.15-mips64r2eb, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] -Depends: linux-image-6.6.15-mips64r2eb (= ${binary:Version}), ${misc:Depends} +Provides: linux-latest-modules-6.7.7-mips64r2eb, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] +Depends: linux-image-6.7.7-mips64r2eb (= ${binary:Version}), ${misc:Depends} Description: Linux for MIPS Generic (mips64r2eb) (meta-package) This package depends on the latest Linux kernel and modules for use on MIPS Generic platform (mips64r2eb). @@ -8755,594 +8754,594 @@ Description: Linux for MIPS Generic (mips64r2eb) (meta-package) Package: linux-headers-mips64r2eb Architecture: mips64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Depends: linux-headers-6.6.15-mips64r2eb (= ${binary:Version}), ${misc:Depends} +Depends: linux-headers-6.7.7-mips64r2eb (= ${binary:Version}), ${misc:Depends} Description: Header files for Linux mips64r2eb configuration (meta-package) This package depends on the architecture-specific header files for the latest Linux kernel mips64r2eb configuration. -Package: linux-image-6.6.15-mips64r2eb-dbg +Package: linux-image-6.7.7-mips64r2eb-dbg Architecture: mips64 Section: debug Priority: optional Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.quick> Depends: ${misc:Depends} -Description: Debug symbols for linux-image-6.6.15-mips64r2eb +Description: Debug symbols for linux-image-6.7.7-mips64r2eb This package provides the detached debug symbols for the Linux kernel and - modules in linux-image-6.6.15-mips64r2eb. + modules in linux-image-6.7.7-mips64r2eb. Package: linux-image-mips64r2eb-dbg Architecture: mips64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.nometa !pkg.linux.quick> Provides: linux-latest-image-dbg -Depends: linux-image-6.6.15-mips64r2eb-dbg (= ${binary:Version}), ${misc:Depends} +Depends: linux-image-6.7.7-mips64r2eb-dbg (= ${binary:Version}), ${misc:Depends} Description: Debugging symbols for Linux mips64r2eb configuration (meta-package) This package depends on the detached debugging symbols for the latest Linux kernel mips64r2eb configuration. -Package: kernel-image-6.6.15-mips64r2eb-di +Package: kernel-image-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: kernel-image, i2c-modules, rtc-modules, mtd-core-modules, mtd-modules -Kernel-Version: 6.6.15-mips64r2eb +Kernel-Version: 6.7.7-mips64r2eb Description: Linux kernel image and core modules for the Debian installer This package contains the kernel image and core modules for the Debian installer boot images. It does _not_ provide a usable kernel for your full Debian system. -Package: nic-modules-6.6.15-mips64r2eb-di +Package: nic-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-modules, nic-extra-modules -Depends: kernel-image-6.6.15-mips64r2eb-di, nic-shared-modules-6.6.15-mips64r2eb-di, crc-modules-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di, nic-shared-modules-6.7.7-mips64r2eb-di, crc-modules-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: NIC drivers This package contains Ethernet and some paravirtualised network drivers for the kernel. -Package: nic-wireless-modules-6.6.15-mips64r2eb-di +Package: nic-wireless-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-wireless-modules -Depends: kernel-image-6.6.15-mips64r2eb-di, nic-shared-modules-6.6.15-mips64r2eb-di, usb-modules-6.6.15-mips64r2eb-di, mmc-core-modules-6.6.15-mips64r2eb-di, crc-modules-6.6.15-mips64r2eb-di, crypto-modules-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di, nic-shared-modules-6.7.7-mips64r2eb-di, usb-modules-6.7.7-mips64r2eb-di, mmc-core-modules-6.7.7-mips64r2eb-di, crc-modules-6.7.7-mips64r2eb-di, crypto-modules-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: Wireless NIC drivers This package contains wireless NIC drivers for the kernel. Includes crypto modules only needed for wireless (WEP, WPA). -Package: nic-shared-modules-6.6.15-mips64r2eb-di +Package: nic-shared-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-shared-modules -Depends: kernel-image-6.6.15-mips64r2eb-di, crc-modules-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di, crc-modules-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: Shared NIC drivers This package contains NIC drivers needed by combinations of nic-modules, nic-pcmcia-modules, nic-usb-modules and nic-wireless-modules. -Package: usb-serial-modules-6.6.15-mips64r2eb-di +Package: usb-serial-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-serial-modules -Depends: kernel-image-6.6.15-mips64r2eb-di, usb-modules-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di, usb-modules-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: USB serial drivers This package contains USB serial drivers for the kernel. -Package: ppp-modules-6.6.15-mips64r2eb-di +Package: ppp-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ppp-modules -Depends: kernel-image-6.6.15-mips64r2eb-di, crc-modules-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di, crc-modules-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: PPP drivers This package contains PPP drivers for the kernel. -Package: pata-modules-6.6.15-mips64r2eb-di +Package: pata-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: pata-modules -Depends: kernel-image-6.6.15-mips64r2eb-di, ata-modules-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di, ata-modules-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: PATA drivers This package contains PATA drivers for the kernel. -Package: cdrom-core-modules-6.6.15-mips64r2eb-di +Package: cdrom-core-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: cdrom-core-modules -Depends: kernel-image-6.6.15-mips64r2eb-di, scsi-core-modules-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di, scsi-core-modules-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: CDROM support This package contains core CDROM support for the kernel. -Package: firewire-core-modules-6.6.15-mips64r2eb-di +Package: firewire-core-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: firewire-core-modules -Depends: kernel-image-6.6.15-mips64r2eb-di, scsi-core-modules-6.6.15-mips64r2eb-di, crc-modules-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di, scsi-core-modules-6.7.7-mips64r2eb-di, crc-modules-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: Core FireWire drivers This package contains core FireWire drivers for the kernel. -Package: scsi-core-modules-6.6.15-mips64r2eb-di +Package: scsi-core-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-core-modules -Depends: kernel-image-6.6.15-mips64r2eb-di, crc-modules-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di, crc-modules-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: Core SCSI subsystem This package contains the core SCSI subsystem for the kernel. -Package: scsi-modules-6.6.15-mips64r2eb-di +Package: scsi-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-modules -Depends: kernel-image-6.6.15-mips64r2eb-di, scsi-core-modules-6.6.15-mips64r2eb-di, cdrom-core-modules-6.6.15-mips64r2eb-di, ata-modules-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di, scsi-core-modules-6.7.7-mips64r2eb-di, cdrom-core-modules-6.7.7-mips64r2eb-di, ata-modules-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: SCSI drivers This package contains SCSI drivers for the kernel. -Package: scsi-nic-modules-6.6.15-mips64r2eb-di +Package: scsi-nic-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-nic-modules -Depends: scsi-modules-6.6.15-mips64r2eb-di, nic-modules-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: scsi-modules-6.7.7-mips64r2eb-di, nic-modules-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: SCSI drivers for converged NICs This package contains SCSI drivers that depend on net drivers. -Package: loop-modules-6.6.15-mips64r2eb-di +Package: loop-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: loop-modules -Depends: kernel-image-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: Loopback filesystem support This package contains loopback filesystem support for the kernel. -Package: btrfs-modules-6.6.15-mips64r2eb-di +Package: btrfs-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: btrfs-modules -Depends: kernel-image-6.6.15-mips64r2eb-di, crc-modules-6.6.15-mips64r2eb-di, md-modules-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di, crc-modules-6.7.7-mips64r2eb-di, md-modules-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: BTRFS filesystem support This package contains the BTRFS filesystem module for the kernel. -Package: ext4-modules-6.6.15-mips64r2eb-di +Package: ext4-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ext4-modules, ext2-modules, ext3-modules -Depends: kernel-image-6.6.15-mips64r2eb-di, crc-modules-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di, crc-modules-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: ext2/ext3/ext4 filesystem support This package contains the ext4 filesystem module for the kernel, which also supports ext2 and ext3. -Package: isofs-modules-6.6.15-mips64r2eb-di +Package: isofs-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: isofs-modules -Depends: kernel-image-6.6.15-mips64r2eb-di, cdrom-core-modules-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di, cdrom-core-modules-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: ISOFS filesystem support This package contains the ISOFS filesystem module for the kernel. -Package: jfs-modules-6.6.15-mips64r2eb-di +Package: jfs-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: jfs-modules -Depends: kernel-image-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: JFS filesystem support This package contains the JFS filesystem module for the kernel. -Package: xfs-modules-6.6.15-mips64r2eb-di +Package: xfs-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: xfs-modules -Depends: kernel-image-6.6.15-mips64r2eb-di, crc-modules-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di, crc-modules-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: XFS filesystem support This package contains the XFS filesystem module for the kernel. -Package: fat-modules-6.6.15-mips64r2eb-di +Package: fat-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fat-modules -Depends: kernel-image-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: FAT filesystem support This package contains the FAT and VFAT filesystem modules for the kernel. -Package: affs-modules-6.6.15-mips64r2eb-di +Package: affs-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: affs-modules -Depends: kernel-image-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: Amiga filesystem support This package contains the Amiga filesystem module for the kernel. -Package: minix-modules-6.6.15-mips64r2eb-di +Package: minix-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: minix-modules -Depends: kernel-image-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: Minix filesystem support This package contains the Minix filesystem module for the kernel. -Package: nfs-modules-6.6.15-mips64r2eb-di +Package: nfs-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nfs-modules -Depends: kernel-image-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: NFS filesystem support This package contains the NFS filesystem module for the kernel. -Package: squashfs-modules-6.6.15-mips64r2eb-di +Package: squashfs-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: squashfs-modules -Depends: kernel-image-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: squashfs modules This package contains squashfs modules. -Package: udf-modules-6.6.15-mips64r2eb-di +Package: udf-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: udf-modules -Depends: kernel-image-6.6.15-mips64r2eb-di, crc-modules-6.6.15-mips64r2eb-di, cdrom-core-modules-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di, crc-modules-6.7.7-mips64r2eb-di, cdrom-core-modules-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: UDF modules This package contains the UDF filesystem module. -Package: f2fs-modules-6.6.15-mips64r2eb-di +Package: f2fs-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: f2fs-modules -Depends: kernel-image-6.6.15-mips64r2eb-di, crc-modules-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di, crc-modules-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: f2fs filesystem support This package contains the f2fs (Flash-Friendly Filesystem) module. -Package: md-modules-6.6.15-mips64r2eb-di +Package: md-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: md-modules -Depends: kernel-image-6.6.15-mips64r2eb-di, crc-modules-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di, crc-modules-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: RAID and LVM support This package contains RAID and LVM modules for the kernel. -Package: multipath-modules-6.6.15-mips64r2eb-di +Package: multipath-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: multipath-modules -Depends: kernel-image-6.6.15-mips64r2eb-di, md-modules-6.6.15-mips64r2eb-di, scsi-core-modules-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di, md-modules-6.7.7-mips64r2eb-di, scsi-core-modules-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: Multipath support This package contains DM-Multipath modules for the kernel. -Package: usb-modules-6.6.15-mips64r2eb-di +Package: usb-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-modules -Depends: kernel-image-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: USB support This package contains core USB drivers for the kernel. -Package: usb-storage-modules-6.6.15-mips64r2eb-di +Package: usb-storage-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-storage-modules -Depends: kernel-image-6.6.15-mips64r2eb-di, scsi-core-modules-6.6.15-mips64r2eb-di, usb-modules-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di, scsi-core-modules-6.7.7-mips64r2eb-di, usb-modules-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: USB storage support This package contains the USB storage driver for the kernel. -Package: fb-modules-6.6.15-mips64r2eb-di +Package: fb-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fb-modules -Depends: kernel-image-6.6.15-mips64r2eb-di, input-modules-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di, input-modules-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: Frame buffer support This package contains Frame buffer drivers for the kernel. -Package: input-modules-6.6.15-mips64r2eb-di +Package: input-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: input-modules -Depends: kernel-image-6.6.15-mips64r2eb-di, usb-modules-6.6.15-mips64r2eb-di, crc-modules-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di, usb-modules-6.7.7-mips64r2eb-di, crc-modules-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: Input devices support This package contains input device drivers for the kernel. -Package: event-modules-6.6.15-mips64r2eb-di +Package: event-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: event-modules -Depends: kernel-image-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: Event support This package contains event drivers for the kernel. -Package: mouse-modules-6.6.15-mips64r2eb-di +Package: mouse-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mouse-modules -Depends: kernel-image-6.6.15-mips64r2eb-di, event-modules-6.6.15-mips64r2eb-di, input-modules-6.6.15-mips64r2eb-di, usb-modules-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di, event-modules-6.7.7-mips64r2eb-di, input-modules-6.7.7-mips64r2eb-di, usb-modules-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: Mouse support This package contains mouse drivers for the kernel. -Package: nic-usb-modules-6.6.15-mips64r2eb-di +Package: nic-usb-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-usb-modules -Depends: kernel-image-6.6.15-mips64r2eb-di, nic-shared-modules-6.6.15-mips64r2eb-di, nic-wireless-modules-6.6.15-mips64r2eb-di, usb-modules-6.6.15-mips64r2eb-di, crc-modules-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di, nic-shared-modules-6.7.7-mips64r2eb-di, nic-wireless-modules-6.7.7-mips64r2eb-di, usb-modules-6.7.7-mips64r2eb-di, crc-modules-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: USB NIC drivers This package contains USB network adapter drivers for the kernel. -Package: sata-modules-6.6.15-mips64r2eb-di +Package: sata-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sata-modules -Depends: kernel-image-6.6.15-mips64r2eb-di, scsi-core-modules-6.6.15-mips64r2eb-di, ata-modules-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di, scsi-core-modules-6.7.7-mips64r2eb-di, ata-modules-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: SATA drivers This package contains SATA drivers for the kernel. -Package: crc-modules-6.6.15-mips64r2eb-di +Package: crc-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crc-modules -Depends: kernel-image-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: CRC modules This package contains CRC support modules. -Package: crypto-modules-6.6.15-mips64r2eb-di +Package: crypto-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-modules -Depends: kernel-image-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: crypto modules This package contains crypto modules. -Package: crypto-dm-modules-6.6.15-mips64r2eb-di +Package: crypto-dm-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-dm-modules -Depends: kernel-image-6.6.15-mips64r2eb-di, md-modules-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di, md-modules-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: devicemapper crypto module This package contains the devicemapper crypto (dm-crypt) module. -Package: ata-modules-6.6.15-mips64r2eb-di +Package: ata-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ata-modules -Depends: kernel-image-6.6.15-mips64r2eb-di, scsi-core-modules-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di, scsi-core-modules-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: ATA disk modules This package contains core ATA disk modules used by both PATA and SATA disk drivers. -Package: mmc-core-modules-6.6.15-mips64r2eb-di +Package: mmc-core-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mmc-core-modules -Depends: kernel-image-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: MMC/SD/SDIO core modules This package contains core modules for MMC/SD/SDIO support. -Package: mmc-modules-6.6.15-mips64r2eb-di +Package: mmc-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mmc-modules -Depends: kernel-image-6.6.15-mips64r2eb-di, mmc-core-modules-6.6.15-mips64r2eb-di, usb-modules-6.6.15-mips64r2eb-di, crc-modules-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di, mmc-core-modules-6.7.7-mips64r2eb-di, usb-modules-6.7.7-mips64r2eb-di, crc-modules-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: MMC/SD card modules This package contains modules needed to support MMC (multimedia) and SD cards. -Package: nbd-modules-6.6.15-mips64r2eb-di +Package: nbd-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nbd-modules -Depends: kernel-image-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: Network Block Device modules This package contains the modules required for support of the Network Block Device -Package: speakup-modules-6.6.15-mips64r2eb-di +Package: speakup-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: speakup-modules -Depends: kernel-image-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: speakup modules This package contains speakup modules. -Package: sound-modules-6.6.15-mips64r2eb-di +Package: sound-modules-6.7.7-mips64r2eb-di Package-Type: udeb Architecture: mips64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sound-modules -Depends: kernel-image-6.6.15-mips64r2eb-di, usb-modules-6.6.15-mips64r2eb-di, firewire-core-modules-6.6.15-mips64r2eb-di, crc-modules-6.6.15-mips64r2eb-di -Kernel-Version: 6.6.15-mips64r2eb +Depends: kernel-image-6.7.7-mips64r2eb-di, usb-modules-6.7.7-mips64r2eb-di, firewire-core-modules-6.7.7-mips64r2eb-di, crc-modules-6.7.7-mips64r2eb-di +Kernel-Version: 6.7.7-mips64r2eb Description: sound support This package contains sound modules. -Package: linux-headers-6.6.15-mips64r2el +Package: linux-headers-6.7.7-mips64r2el Architecture: mips64el Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Depends: linux-headers-6.6.15-common (= ${source:Version}), linux-image-6.6.15-mips64r2el (= ${binary:Version}) | linux-image-6.6.15-mips64r2el-unsigned (= ${binary:Version}), linux-kbuild-6.6.15, ${misc:Depends}, gcc-13 -Description: Header files for Linux 6.6.15-mips64r2el +Depends: linux-headers-6.7.7-common (= ${source:Version}), linux-image-6.7.7-mips64r2el (= ${binary:Version}) | linux-image-6.7.7-mips64r2el-unsigned (= ${binary:Version}), linux-kbuild-6.7.7, ${misc:Depends}, gcc-13 +Description: Header files for Linux 6.7.7-mips64r2el This package provides the architecture-specific kernel header files for - Linux kernel 6.6.15-mips64r2el, generally used for building out-of-tree + Linux kernel 6.7.7-mips64r2el, generally used for building out-of-tree kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-mips64r2el, and can be used for building + /usr/src/linux-headers-6.7.7-mips64r2el, and can be used for building modules that load into the kernel provided by the - linux-image-6.6.15-mips64r2el package. + linux-image-6.7.7-mips64r2el package. -Package: linux-image-6.6.15-mips64r2el +Package: linux-image-6.7.7-mips64r2el Architecture: mips64el Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [mips64el] | linux-initramfs-tool [mips64el] Recommends: firmware-linux-free, apparmor [mips64el] -Suggests: linux-doc-6.6, debian-kernel-handbook +Suggests: linux-doc-6.7, debian-kernel-handbook Breaks: fwupdate (<< 12-7) [mips64el], wireless-regdb (<< 2019.06.03-1~) [mips64el], initramfs-tools (<< 0.120+deb8u2) [mips64el] -Description: Linux 6.6 for MIPS Generic (mips64r2el) - The Linux kernel 6.6 and modules for use on MIPS Generic platform +Description: Linux 6.7 for MIPS Generic (mips64r2el) + The Linux kernel 6.7 and modules for use on MIPS Generic platform (mips64r2el). Package: linux-image-mips64r2el Architecture: mips64el Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Provides: linux-latest-modules-6.6.15-mips64r2el, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] -Depends: linux-image-6.6.15-mips64r2el (= ${binary:Version}), ${misc:Depends} +Provides: linux-latest-modules-6.7.7-mips64r2el, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] +Depends: linux-image-6.7.7-mips64r2el (= ${binary:Version}), ${misc:Depends} Description: Linux for MIPS Generic (mips64r2el) (meta-package) This package depends on the latest Linux kernel and modules for use on MIPS Generic platform (mips64r2el). @@ -9350,594 +9349,594 @@ Description: Linux for MIPS Generic (mips64r2el) (meta-package) Package: linux-headers-mips64r2el Architecture: mips64el Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Depends: linux-headers-6.6.15-mips64r2el (= ${binary:Version}), ${misc:Depends} +Depends: linux-headers-6.7.7-mips64r2el (= ${binary:Version}), ${misc:Depends} Description: Header files for Linux mips64r2el configuration (meta-package) This package depends on the architecture-specific header files for the latest Linux kernel mips64r2el configuration. -Package: linux-image-6.6.15-mips64r2el-dbg +Package: linux-image-6.7.7-mips64r2el-dbg Architecture: mips64el Section: debug Priority: optional Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.quick> Depends: ${misc:Depends} -Description: Debug symbols for linux-image-6.6.15-mips64r2el +Description: Debug symbols for linux-image-6.7.7-mips64r2el This package provides the detached debug symbols for the Linux kernel and - modules in linux-image-6.6.15-mips64r2el. + modules in linux-image-6.7.7-mips64r2el. Package: linux-image-mips64r2el-dbg Architecture: mips64el Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.nometa !pkg.linux.quick> Provides: linux-latest-image-dbg -Depends: linux-image-6.6.15-mips64r2el-dbg (= ${binary:Version}), ${misc:Depends} +Depends: linux-image-6.7.7-mips64r2el-dbg (= ${binary:Version}), ${misc:Depends} Description: Debugging symbols for Linux mips64r2el configuration (meta-package) This package depends on the detached debugging symbols for the latest Linux kernel mips64r2el configuration. -Package: kernel-image-6.6.15-mips64r2el-di +Package: kernel-image-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: kernel-image, i2c-modules, rtc-modules, mtd-core-modules, mtd-modules -Kernel-Version: 6.6.15-mips64r2el +Kernel-Version: 6.7.7-mips64r2el Description: Linux kernel image and core modules for the Debian installer This package contains the kernel image and core modules for the Debian installer boot images. It does _not_ provide a usable kernel for your full Debian system. -Package: nic-modules-6.6.15-mips64r2el-di +Package: nic-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-modules, nic-extra-modules -Depends: kernel-image-6.6.15-mips64r2el-di, nic-shared-modules-6.6.15-mips64r2el-di, crc-modules-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di, nic-shared-modules-6.7.7-mips64r2el-di, crc-modules-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: NIC drivers This package contains Ethernet and some paravirtualised network drivers for the kernel. -Package: nic-wireless-modules-6.6.15-mips64r2el-di +Package: nic-wireless-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-wireless-modules -Depends: kernel-image-6.6.15-mips64r2el-di, nic-shared-modules-6.6.15-mips64r2el-di, usb-modules-6.6.15-mips64r2el-di, mmc-core-modules-6.6.15-mips64r2el-di, crc-modules-6.6.15-mips64r2el-di, crypto-modules-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di, nic-shared-modules-6.7.7-mips64r2el-di, usb-modules-6.7.7-mips64r2el-di, mmc-core-modules-6.7.7-mips64r2el-di, crc-modules-6.7.7-mips64r2el-di, crypto-modules-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: Wireless NIC drivers This package contains wireless NIC drivers for the kernel. Includes crypto modules only needed for wireless (WEP, WPA). -Package: nic-shared-modules-6.6.15-mips64r2el-di +Package: nic-shared-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-shared-modules -Depends: kernel-image-6.6.15-mips64r2el-di, crc-modules-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di, crc-modules-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: Shared NIC drivers This package contains NIC drivers needed by combinations of nic-modules, nic-pcmcia-modules, nic-usb-modules and nic-wireless-modules. -Package: usb-serial-modules-6.6.15-mips64r2el-di +Package: usb-serial-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-serial-modules -Depends: kernel-image-6.6.15-mips64r2el-di, usb-modules-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di, usb-modules-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: USB serial drivers This package contains USB serial drivers for the kernel. -Package: ppp-modules-6.6.15-mips64r2el-di +Package: ppp-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ppp-modules -Depends: kernel-image-6.6.15-mips64r2el-di, crc-modules-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di, crc-modules-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: PPP drivers This package contains PPP drivers for the kernel. -Package: pata-modules-6.6.15-mips64r2el-di +Package: pata-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: pata-modules -Depends: kernel-image-6.6.15-mips64r2el-di, ata-modules-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di, ata-modules-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: PATA drivers This package contains PATA drivers for the kernel. -Package: cdrom-core-modules-6.6.15-mips64r2el-di +Package: cdrom-core-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: cdrom-core-modules -Depends: kernel-image-6.6.15-mips64r2el-di, scsi-core-modules-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di, scsi-core-modules-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: CDROM support This package contains core CDROM support for the kernel. -Package: firewire-core-modules-6.6.15-mips64r2el-di +Package: firewire-core-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: firewire-core-modules -Depends: kernel-image-6.6.15-mips64r2el-di, scsi-core-modules-6.6.15-mips64r2el-di, crc-modules-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di, scsi-core-modules-6.7.7-mips64r2el-di, crc-modules-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: Core FireWire drivers This package contains core FireWire drivers for the kernel. -Package: scsi-core-modules-6.6.15-mips64r2el-di +Package: scsi-core-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-core-modules -Depends: kernel-image-6.6.15-mips64r2el-di, crc-modules-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di, crc-modules-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: Core SCSI subsystem This package contains the core SCSI subsystem for the kernel. -Package: scsi-modules-6.6.15-mips64r2el-di +Package: scsi-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-modules -Depends: kernel-image-6.6.15-mips64r2el-di, scsi-core-modules-6.6.15-mips64r2el-di, cdrom-core-modules-6.6.15-mips64r2el-di, ata-modules-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di, scsi-core-modules-6.7.7-mips64r2el-di, cdrom-core-modules-6.7.7-mips64r2el-di, ata-modules-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: SCSI drivers This package contains SCSI drivers for the kernel. -Package: scsi-nic-modules-6.6.15-mips64r2el-di +Package: scsi-nic-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-nic-modules -Depends: scsi-modules-6.6.15-mips64r2el-di, nic-modules-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: scsi-modules-6.7.7-mips64r2el-di, nic-modules-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: SCSI drivers for converged NICs This package contains SCSI drivers that depend on net drivers. -Package: loop-modules-6.6.15-mips64r2el-di +Package: loop-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: loop-modules -Depends: kernel-image-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: Loopback filesystem support This package contains loopback filesystem support for the kernel. -Package: btrfs-modules-6.6.15-mips64r2el-di +Package: btrfs-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: btrfs-modules -Depends: kernel-image-6.6.15-mips64r2el-di, crc-modules-6.6.15-mips64r2el-di, md-modules-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di, crc-modules-6.7.7-mips64r2el-di, md-modules-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: BTRFS filesystem support This package contains the BTRFS filesystem module for the kernel. -Package: ext4-modules-6.6.15-mips64r2el-di +Package: ext4-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ext4-modules, ext2-modules, ext3-modules -Depends: kernel-image-6.6.15-mips64r2el-di, crc-modules-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di, crc-modules-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: ext2/ext3/ext4 filesystem support This package contains the ext4 filesystem module for the kernel, which also supports ext2 and ext3. -Package: isofs-modules-6.6.15-mips64r2el-di +Package: isofs-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: isofs-modules -Depends: kernel-image-6.6.15-mips64r2el-di, cdrom-core-modules-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di, cdrom-core-modules-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: ISOFS filesystem support This package contains the ISOFS filesystem module for the kernel. -Package: jfs-modules-6.6.15-mips64r2el-di +Package: jfs-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: jfs-modules -Depends: kernel-image-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: JFS filesystem support This package contains the JFS filesystem module for the kernel. -Package: xfs-modules-6.6.15-mips64r2el-di +Package: xfs-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: xfs-modules -Depends: kernel-image-6.6.15-mips64r2el-di, crc-modules-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di, crc-modules-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: XFS filesystem support This package contains the XFS filesystem module for the kernel. -Package: fat-modules-6.6.15-mips64r2el-di +Package: fat-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fat-modules -Depends: kernel-image-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: FAT filesystem support This package contains the FAT and VFAT filesystem modules for the kernel. -Package: affs-modules-6.6.15-mips64r2el-di +Package: affs-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: affs-modules -Depends: kernel-image-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: Amiga filesystem support This package contains the Amiga filesystem module for the kernel. -Package: minix-modules-6.6.15-mips64r2el-di +Package: minix-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: minix-modules -Depends: kernel-image-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: Minix filesystem support This package contains the Minix filesystem module for the kernel. -Package: nfs-modules-6.6.15-mips64r2el-di +Package: nfs-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nfs-modules -Depends: kernel-image-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: NFS filesystem support This package contains the NFS filesystem module for the kernel. -Package: squashfs-modules-6.6.15-mips64r2el-di +Package: squashfs-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: squashfs-modules -Depends: kernel-image-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: squashfs modules This package contains squashfs modules. -Package: udf-modules-6.6.15-mips64r2el-di +Package: udf-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: udf-modules -Depends: kernel-image-6.6.15-mips64r2el-di, crc-modules-6.6.15-mips64r2el-di, cdrom-core-modules-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di, crc-modules-6.7.7-mips64r2el-di, cdrom-core-modules-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: UDF modules This package contains the UDF filesystem module. -Package: f2fs-modules-6.6.15-mips64r2el-di +Package: f2fs-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: f2fs-modules -Depends: kernel-image-6.6.15-mips64r2el-di, crc-modules-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di, crc-modules-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: f2fs filesystem support This package contains the f2fs (Flash-Friendly Filesystem) module. -Package: md-modules-6.6.15-mips64r2el-di +Package: md-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: md-modules -Depends: kernel-image-6.6.15-mips64r2el-di, crc-modules-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di, crc-modules-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: RAID and LVM support This package contains RAID and LVM modules for the kernel. -Package: multipath-modules-6.6.15-mips64r2el-di +Package: multipath-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: multipath-modules -Depends: kernel-image-6.6.15-mips64r2el-di, md-modules-6.6.15-mips64r2el-di, scsi-core-modules-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di, md-modules-6.7.7-mips64r2el-di, scsi-core-modules-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: Multipath support This package contains DM-Multipath modules for the kernel. -Package: usb-modules-6.6.15-mips64r2el-di +Package: usb-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-modules -Depends: kernel-image-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: USB support This package contains core USB drivers for the kernel. -Package: usb-storage-modules-6.6.15-mips64r2el-di +Package: usb-storage-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-storage-modules -Depends: kernel-image-6.6.15-mips64r2el-di, scsi-core-modules-6.6.15-mips64r2el-di, usb-modules-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di, scsi-core-modules-6.7.7-mips64r2el-di, usb-modules-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: USB storage support This package contains the USB storage driver for the kernel. -Package: fb-modules-6.6.15-mips64r2el-di +Package: fb-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fb-modules -Depends: kernel-image-6.6.15-mips64r2el-di, input-modules-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di, input-modules-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: Frame buffer support This package contains Frame buffer drivers for the kernel. -Package: input-modules-6.6.15-mips64r2el-di +Package: input-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: input-modules -Depends: kernel-image-6.6.15-mips64r2el-di, usb-modules-6.6.15-mips64r2el-di, crc-modules-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di, usb-modules-6.7.7-mips64r2el-di, crc-modules-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: Input devices support This package contains input device drivers for the kernel. -Package: event-modules-6.6.15-mips64r2el-di +Package: event-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: event-modules -Depends: kernel-image-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: Event support This package contains event drivers for the kernel. -Package: mouse-modules-6.6.15-mips64r2el-di +Package: mouse-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mouse-modules -Depends: kernel-image-6.6.15-mips64r2el-di, event-modules-6.6.15-mips64r2el-di, input-modules-6.6.15-mips64r2el-di, usb-modules-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di, event-modules-6.7.7-mips64r2el-di, input-modules-6.7.7-mips64r2el-di, usb-modules-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: Mouse support This package contains mouse drivers for the kernel. -Package: nic-usb-modules-6.6.15-mips64r2el-di +Package: nic-usb-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-usb-modules -Depends: kernel-image-6.6.15-mips64r2el-di, nic-shared-modules-6.6.15-mips64r2el-di, nic-wireless-modules-6.6.15-mips64r2el-di, usb-modules-6.6.15-mips64r2el-di, crc-modules-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di, nic-shared-modules-6.7.7-mips64r2el-di, nic-wireless-modules-6.7.7-mips64r2el-di, usb-modules-6.7.7-mips64r2el-di, crc-modules-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: USB NIC drivers This package contains USB network adapter drivers for the kernel. -Package: sata-modules-6.6.15-mips64r2el-di +Package: sata-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sata-modules -Depends: kernel-image-6.6.15-mips64r2el-di, scsi-core-modules-6.6.15-mips64r2el-di, ata-modules-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di, scsi-core-modules-6.7.7-mips64r2el-di, ata-modules-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: SATA drivers This package contains SATA drivers for the kernel. -Package: crc-modules-6.6.15-mips64r2el-di +Package: crc-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crc-modules -Depends: kernel-image-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: CRC modules This package contains CRC support modules. -Package: crypto-modules-6.6.15-mips64r2el-di +Package: crypto-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-modules -Depends: kernel-image-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: crypto modules This package contains crypto modules. -Package: crypto-dm-modules-6.6.15-mips64r2el-di +Package: crypto-dm-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-dm-modules -Depends: kernel-image-6.6.15-mips64r2el-di, md-modules-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di, md-modules-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: devicemapper crypto module This package contains the devicemapper crypto (dm-crypt) module. -Package: ata-modules-6.6.15-mips64r2el-di +Package: ata-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ata-modules -Depends: kernel-image-6.6.15-mips64r2el-di, scsi-core-modules-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di, scsi-core-modules-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: ATA disk modules This package contains core ATA disk modules used by both PATA and SATA disk drivers. -Package: mmc-core-modules-6.6.15-mips64r2el-di +Package: mmc-core-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mmc-core-modules -Depends: kernel-image-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: MMC/SD/SDIO core modules This package contains core modules for MMC/SD/SDIO support. -Package: mmc-modules-6.6.15-mips64r2el-di +Package: mmc-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mmc-modules -Depends: kernel-image-6.6.15-mips64r2el-di, mmc-core-modules-6.6.15-mips64r2el-di, usb-modules-6.6.15-mips64r2el-di, crc-modules-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di, mmc-core-modules-6.7.7-mips64r2el-di, usb-modules-6.7.7-mips64r2el-di, crc-modules-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: MMC/SD card modules This package contains modules needed to support MMC (multimedia) and SD cards. -Package: nbd-modules-6.6.15-mips64r2el-di +Package: nbd-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nbd-modules -Depends: kernel-image-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: Network Block Device modules This package contains the modules required for support of the Network Block Device -Package: speakup-modules-6.6.15-mips64r2el-di +Package: speakup-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: speakup-modules -Depends: kernel-image-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: speakup modules This package contains speakup modules. -Package: sound-modules-6.6.15-mips64r2el-di +Package: sound-modules-6.7.7-mips64r2el-di Package-Type: udeb Architecture: mips64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sound-modules -Depends: kernel-image-6.6.15-mips64r2el-di, usb-modules-6.6.15-mips64r2el-di, firewire-core-modules-6.6.15-mips64r2el-di, crc-modules-6.6.15-mips64r2el-di -Kernel-Version: 6.6.15-mips64r2el +Depends: kernel-image-6.7.7-mips64r2el-di, usb-modules-6.7.7-mips64r2el-di, firewire-core-modules-6.7.7-mips64r2el-di, crc-modules-6.7.7-mips64r2el-di +Kernel-Version: 6.7.7-mips64r2el Description: sound support This package contains sound modules. -Package: linux-headers-6.6.15-loongson-3 +Package: linux-headers-6.7.7-loongson-3 Architecture: mips64el mipsel Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Depends: linux-headers-6.6.15-common (= ${source:Version}), linux-image-6.6.15-loongson-3 (= ${binary:Version}) | linux-image-6.6.15-loongson-3-unsigned (= ${binary:Version}), linux-kbuild-6.6.15, ${misc:Depends}, gcc-13 -Description: Header files for Linux 6.6.15-loongson-3 +Depends: linux-headers-6.7.7-common (= ${source:Version}), linux-image-6.7.7-loongson-3 (= ${binary:Version}) | linux-image-6.7.7-loongson-3-unsigned (= ${binary:Version}), linux-kbuild-6.7.7, ${misc:Depends}, gcc-13 +Description: Header files for Linux 6.7.7-loongson-3 This package provides the architecture-specific kernel header files for - Linux kernel 6.6.15-loongson-3, generally used for building out-of-tree + Linux kernel 6.7.7-loongson-3, generally used for building out-of-tree kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-loongson-3, and can be used for building + /usr/src/linux-headers-6.7.7-loongson-3, and can be used for building modules that load into the kernel provided by the - linux-image-6.6.15-loongson-3 package. + linux-image-6.7.7-loongson-3 package. -Package: linux-image-6.6.15-loongson-3 +Package: linux-image-6.7.7-loongson-3 Architecture: mips64el mipsel Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [mips64el mipsel] | linux-initramfs-tool [mips64el mipsel] -Recommends: firmware-linux-free, pmon-update [mips64el mipsel], apparmor [mips64el mipsel] -Suggests: linux-doc-6.6, debian-kernel-handbook +Recommends: firmware-linux-free, apparmor [mips64el mipsel], pmon-update [mips64el mipsel] +Suggests: linux-doc-6.7, debian-kernel-handbook Breaks: fwupdate (<< 12-7) [mips64el mipsel], wireless-regdb (<< 2019.06.03-1~) [mips64el mipsel], initramfs-tools (<< 0.120+deb8u2) [mips64el], initramfs-tools (<< 0.120+deb8u2) [mipsel] -Description: Linux 6.6 for Loongson 3A/3B - The Linux kernel 6.6 and modules for use on Loongson 3A or 3B based +Description: Linux 6.7 for Loongson 3A/3B + The Linux kernel 6.7 and modules for use on Loongson 3A or 3B based systems (e.g. from Loongson or Lemote). Package: linux-image-loongson-3 Architecture: mips64el mipsel Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Provides: linux-latest-modules-6.6.15-loongson-3, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] -Depends: linux-image-6.6.15-loongson-3 (= ${binary:Version}), ${misc:Depends} +Provides: linux-latest-modules-6.7.7-loongson-3, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] +Depends: linux-image-6.7.7-loongson-3 (= ${binary:Version}), ${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). @@ -9945,594 +9944,594 @@ Description: Linux for Loongson 3A/3B (meta-package) Package: linux-headers-loongson-3 Architecture: mips64el mipsel Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Depends: linux-headers-6.6.15-loongson-3 (= ${binary:Version}), ${misc:Depends} +Depends: linux-headers-6.7.7-loongson-3 (= ${binary:Version}), ${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-6.6.15-loongson-3-dbg +Package: linux-image-6.7.7-loongson-3-dbg Architecture: mips64el mipsel Section: debug Priority: optional Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.quick> Depends: ${misc:Depends} -Description: Debug symbols for linux-image-6.6.15-loongson-3 +Description: Debug symbols for linux-image-6.7.7-loongson-3 This package provides the detached debug symbols for the Linux kernel and - modules in linux-image-6.6.15-loongson-3. + modules in linux-image-6.7.7-loongson-3. Package: linux-image-loongson-3-dbg Architecture: mips64el mipsel Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.nometa !pkg.linux.quick> Provides: linux-latest-image-dbg -Depends: linux-image-6.6.15-loongson-3-dbg (= ${binary:Version}), ${misc:Depends} +Depends: linux-image-6.7.7-loongson-3-dbg (= ${binary:Version}), ${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: kernel-image-6.6.15-loongson-3-di +Package: kernel-image-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: kernel-image, i2c-modules, rtc-modules, mtd-core-modules, mtd-modules -Kernel-Version: 6.6.15-loongson-3 +Kernel-Version: 6.7.7-loongson-3 Description: Linux kernel image and core modules for the Debian installer This package contains the kernel image and core modules for the Debian installer boot images. It does _not_ provide a usable kernel for your full Debian system. -Package: nic-modules-6.6.15-loongson-3-di +Package: nic-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-modules, nic-extra-modules -Depends: kernel-image-6.6.15-loongson-3-di, nic-shared-modules-6.6.15-loongson-3-di, crc-modules-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di, nic-shared-modules-6.7.7-loongson-3-di, crc-modules-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: NIC drivers This package contains Ethernet and some paravirtualised network drivers for the kernel. -Package: nic-wireless-modules-6.6.15-loongson-3-di +Package: nic-wireless-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-wireless-modules -Depends: kernel-image-6.6.15-loongson-3-di, nic-shared-modules-6.6.15-loongson-3-di, usb-modules-6.6.15-loongson-3-di, mmc-core-modules-6.6.15-loongson-3-di, crc-modules-6.6.15-loongson-3-di, crypto-modules-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di, nic-shared-modules-6.7.7-loongson-3-di, usb-modules-6.7.7-loongson-3-di, mmc-core-modules-6.7.7-loongson-3-di, crc-modules-6.7.7-loongson-3-di, crypto-modules-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: Wireless NIC drivers This package contains wireless NIC drivers for the kernel. Includes crypto modules only needed for wireless (WEP, WPA). -Package: nic-shared-modules-6.6.15-loongson-3-di +Package: nic-shared-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-shared-modules -Depends: kernel-image-6.6.15-loongson-3-di, crc-modules-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di, crc-modules-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: Shared NIC drivers This package contains NIC drivers needed by combinations of nic-modules, nic-pcmcia-modules, nic-usb-modules and nic-wireless-modules. -Package: usb-serial-modules-6.6.15-loongson-3-di +Package: usb-serial-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-serial-modules -Depends: kernel-image-6.6.15-loongson-3-di, usb-modules-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di, usb-modules-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: USB serial drivers This package contains USB serial drivers for the kernel. -Package: ppp-modules-6.6.15-loongson-3-di +Package: ppp-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ppp-modules -Depends: kernel-image-6.6.15-loongson-3-di, crc-modules-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di, crc-modules-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: PPP drivers This package contains PPP drivers for the kernel. -Package: pata-modules-6.6.15-loongson-3-di +Package: pata-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: pata-modules -Depends: kernel-image-6.6.15-loongson-3-di, ata-modules-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di, ata-modules-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: PATA drivers This package contains PATA drivers for the kernel. -Package: cdrom-core-modules-6.6.15-loongson-3-di +Package: cdrom-core-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: cdrom-core-modules -Depends: kernel-image-6.6.15-loongson-3-di, scsi-core-modules-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di, scsi-core-modules-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: CDROM support This package contains core CDROM support for the kernel. -Package: firewire-core-modules-6.6.15-loongson-3-di +Package: firewire-core-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: firewire-core-modules -Depends: kernel-image-6.6.15-loongson-3-di, scsi-core-modules-6.6.15-loongson-3-di, crc-modules-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di, scsi-core-modules-6.7.7-loongson-3-di, crc-modules-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: Core FireWire drivers This package contains core FireWire drivers for the kernel. -Package: scsi-core-modules-6.6.15-loongson-3-di +Package: scsi-core-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-core-modules -Depends: kernel-image-6.6.15-loongson-3-di, crc-modules-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di, crc-modules-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: Core SCSI subsystem This package contains the core SCSI subsystem for the kernel. -Package: scsi-modules-6.6.15-loongson-3-di +Package: scsi-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-modules -Depends: kernel-image-6.6.15-loongson-3-di, scsi-core-modules-6.6.15-loongson-3-di, cdrom-core-modules-6.6.15-loongson-3-di, ata-modules-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di, scsi-core-modules-6.7.7-loongson-3-di, cdrom-core-modules-6.7.7-loongson-3-di, ata-modules-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: SCSI drivers This package contains SCSI drivers for the kernel. -Package: scsi-nic-modules-6.6.15-loongson-3-di +Package: scsi-nic-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-nic-modules -Depends: scsi-modules-6.6.15-loongson-3-di, nic-modules-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: scsi-modules-6.7.7-loongson-3-di, nic-modules-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: SCSI drivers for converged NICs This package contains SCSI drivers that depend on net drivers. -Package: loop-modules-6.6.15-loongson-3-di +Package: loop-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: loop-modules -Depends: kernel-image-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: Loopback filesystem support This package contains loopback filesystem support for the kernel. -Package: btrfs-modules-6.6.15-loongson-3-di +Package: btrfs-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: btrfs-modules -Depends: kernel-image-6.6.15-loongson-3-di, crc-modules-6.6.15-loongson-3-di, md-modules-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di, crc-modules-6.7.7-loongson-3-di, md-modules-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: BTRFS filesystem support This package contains the BTRFS filesystem module for the kernel. -Package: ext4-modules-6.6.15-loongson-3-di +Package: ext4-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ext4-modules, ext2-modules, ext3-modules -Depends: kernel-image-6.6.15-loongson-3-di, crc-modules-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di, crc-modules-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: ext2/ext3/ext4 filesystem support This package contains the ext4 filesystem module for the kernel, which also supports ext2 and ext3. -Package: isofs-modules-6.6.15-loongson-3-di +Package: isofs-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: isofs-modules -Depends: kernel-image-6.6.15-loongson-3-di, cdrom-core-modules-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di, cdrom-core-modules-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: ISOFS filesystem support This package contains the ISOFS filesystem module for the kernel. -Package: jfs-modules-6.6.15-loongson-3-di +Package: jfs-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: jfs-modules -Depends: kernel-image-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: JFS filesystem support This package contains the JFS filesystem module for the kernel. -Package: xfs-modules-6.6.15-loongson-3-di +Package: xfs-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: xfs-modules -Depends: kernel-image-6.6.15-loongson-3-di, crc-modules-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di, crc-modules-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: XFS filesystem support This package contains the XFS filesystem module for the kernel. -Package: fat-modules-6.6.15-loongson-3-di +Package: fat-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fat-modules -Depends: kernel-image-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: FAT filesystem support This package contains the FAT and VFAT filesystem modules for the kernel. -Package: affs-modules-6.6.15-loongson-3-di +Package: affs-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: affs-modules -Depends: kernel-image-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: Amiga filesystem support This package contains the Amiga filesystem module for the kernel. -Package: minix-modules-6.6.15-loongson-3-di +Package: minix-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: minix-modules -Depends: kernel-image-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: Minix filesystem support This package contains the Minix filesystem module for the kernel. -Package: nfs-modules-6.6.15-loongson-3-di +Package: nfs-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nfs-modules -Depends: kernel-image-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: NFS filesystem support This package contains the NFS filesystem module for the kernel. -Package: squashfs-modules-6.6.15-loongson-3-di +Package: squashfs-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: squashfs-modules -Depends: kernel-image-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: squashfs modules This package contains squashfs modules. -Package: udf-modules-6.6.15-loongson-3-di +Package: udf-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: udf-modules -Depends: kernel-image-6.6.15-loongson-3-di, crc-modules-6.6.15-loongson-3-di, cdrom-core-modules-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di, crc-modules-6.7.7-loongson-3-di, cdrom-core-modules-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: UDF modules This package contains the UDF filesystem module. -Package: f2fs-modules-6.6.15-loongson-3-di +Package: f2fs-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: f2fs-modules -Depends: kernel-image-6.6.15-loongson-3-di, crc-modules-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di, crc-modules-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: f2fs filesystem support This package contains the f2fs (Flash-Friendly Filesystem) module. -Package: md-modules-6.6.15-loongson-3-di +Package: md-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: md-modules -Depends: kernel-image-6.6.15-loongson-3-di, crc-modules-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di, crc-modules-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: RAID and LVM support This package contains RAID and LVM modules for the kernel. -Package: multipath-modules-6.6.15-loongson-3-di +Package: multipath-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: multipath-modules -Depends: kernel-image-6.6.15-loongson-3-di, md-modules-6.6.15-loongson-3-di, scsi-core-modules-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di, md-modules-6.7.7-loongson-3-di, scsi-core-modules-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: Multipath support This package contains DM-Multipath modules for the kernel. -Package: usb-modules-6.6.15-loongson-3-di +Package: usb-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-modules -Depends: kernel-image-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: USB support This package contains core USB drivers for the kernel. -Package: usb-storage-modules-6.6.15-loongson-3-di +Package: usb-storage-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-storage-modules -Depends: kernel-image-6.6.15-loongson-3-di, scsi-core-modules-6.6.15-loongson-3-di, usb-modules-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di, scsi-core-modules-6.7.7-loongson-3-di, usb-modules-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: USB storage support This package contains the USB storage driver for the kernel. -Package: fb-modules-6.6.15-loongson-3-di +Package: fb-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fb-modules -Depends: kernel-image-6.6.15-loongson-3-di, input-modules-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di, input-modules-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: Frame buffer support This package contains Frame buffer drivers for the kernel. -Package: input-modules-6.6.15-loongson-3-di +Package: input-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: input-modules -Depends: kernel-image-6.6.15-loongson-3-di, usb-modules-6.6.15-loongson-3-di, crc-modules-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di, usb-modules-6.7.7-loongson-3-di, crc-modules-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: Input devices support This package contains input device drivers for the kernel. -Package: event-modules-6.6.15-loongson-3-di +Package: event-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: event-modules -Depends: kernel-image-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: Event support This package contains event drivers for the kernel. -Package: mouse-modules-6.6.15-loongson-3-di +Package: mouse-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mouse-modules -Depends: kernel-image-6.6.15-loongson-3-di, event-modules-6.6.15-loongson-3-di, input-modules-6.6.15-loongson-3-di, usb-modules-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di, event-modules-6.7.7-loongson-3-di, input-modules-6.7.7-loongson-3-di, usb-modules-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: Mouse support This package contains mouse drivers for the kernel. -Package: nic-usb-modules-6.6.15-loongson-3-di +Package: nic-usb-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-usb-modules -Depends: kernel-image-6.6.15-loongson-3-di, nic-shared-modules-6.6.15-loongson-3-di, nic-wireless-modules-6.6.15-loongson-3-di, usb-modules-6.6.15-loongson-3-di, crc-modules-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di, nic-shared-modules-6.7.7-loongson-3-di, nic-wireless-modules-6.7.7-loongson-3-di, usb-modules-6.7.7-loongson-3-di, crc-modules-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: USB NIC drivers This package contains USB network adapter drivers for the kernel. -Package: sata-modules-6.6.15-loongson-3-di +Package: sata-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sata-modules -Depends: kernel-image-6.6.15-loongson-3-di, scsi-core-modules-6.6.15-loongson-3-di, ata-modules-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di, scsi-core-modules-6.7.7-loongson-3-di, ata-modules-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: SATA drivers This package contains SATA drivers for the kernel. -Package: crc-modules-6.6.15-loongson-3-di +Package: crc-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crc-modules -Depends: kernel-image-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: CRC modules This package contains CRC support modules. -Package: crypto-modules-6.6.15-loongson-3-di +Package: crypto-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-modules -Depends: kernel-image-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: crypto modules This package contains crypto modules. -Package: crypto-dm-modules-6.6.15-loongson-3-di +Package: crypto-dm-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-dm-modules -Depends: kernel-image-6.6.15-loongson-3-di, md-modules-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di, md-modules-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: devicemapper crypto module This package contains the devicemapper crypto (dm-crypt) module. -Package: ata-modules-6.6.15-loongson-3-di +Package: ata-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ata-modules -Depends: kernel-image-6.6.15-loongson-3-di, scsi-core-modules-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di, scsi-core-modules-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: ATA disk modules This package contains core ATA disk modules used by both PATA and SATA disk drivers. -Package: mmc-core-modules-6.6.15-loongson-3-di +Package: mmc-core-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mmc-core-modules -Depends: kernel-image-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: MMC/SD/SDIO core modules This package contains core modules for MMC/SD/SDIO support. -Package: mmc-modules-6.6.15-loongson-3-di +Package: mmc-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mmc-modules -Depends: kernel-image-6.6.15-loongson-3-di, mmc-core-modules-6.6.15-loongson-3-di, usb-modules-6.6.15-loongson-3-di, crc-modules-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di, mmc-core-modules-6.7.7-loongson-3-di, usb-modules-6.7.7-loongson-3-di, crc-modules-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: MMC/SD card modules This package contains modules needed to support MMC (multimedia) and SD cards. -Package: nbd-modules-6.6.15-loongson-3-di +Package: nbd-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nbd-modules -Depends: kernel-image-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: Network Block Device modules This package contains the modules required for support of the Network Block Device -Package: speakup-modules-6.6.15-loongson-3-di +Package: speakup-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: speakup-modules -Depends: kernel-image-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: speakup modules This package contains speakup modules. -Package: sound-modules-6.6.15-loongson-3-di +Package: sound-modules-6.7.7-loongson-3-di Package-Type: udeb Architecture: mips64el mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sound-modules -Depends: kernel-image-6.6.15-loongson-3-di, usb-modules-6.6.15-loongson-3-di, firewire-core-modules-6.6.15-loongson-3-di, crc-modules-6.6.15-loongson-3-di -Kernel-Version: 6.6.15-loongson-3 +Depends: kernel-image-6.7.7-loongson-3-di, usb-modules-6.7.7-loongson-3-di, firewire-core-modules-6.7.7-loongson-3-di, crc-modules-6.7.7-loongson-3-di +Kernel-Version: 6.7.7-loongson-3 Description: sound support This package contains sound modules. -Package: linux-headers-6.6.15-mips64r6el +Package: linux-headers-6.7.7-mips64r6el Architecture: mips64r6el Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Depends: linux-headers-6.6.15-common (= ${source:Version}), linux-image-6.6.15-mips64r6el (= ${binary:Version}) | linux-image-6.6.15-mips64r6el-unsigned (= ${binary:Version}), linux-kbuild-6.6.15, ${misc:Depends}, gcc-13 -Description: Header files for Linux 6.6.15-mips64r6el +Depends: linux-headers-6.7.7-common (= ${source:Version}), linux-image-6.7.7-mips64r6el (= ${binary:Version}) | linux-image-6.7.7-mips64r6el-unsigned (= ${binary:Version}), linux-kbuild-6.7.7, ${misc:Depends}, gcc-13 +Description: Header files for Linux 6.7.7-mips64r6el This package provides the architecture-specific kernel header files for - Linux kernel 6.6.15-mips64r6el, generally used for building out-of-tree + Linux kernel 6.7.7-mips64r6el, generally used for building out-of-tree kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-mips64r6el, and can be used for building + /usr/src/linux-headers-6.7.7-mips64r6el, and can be used for building modules that load into the kernel provided by the - linux-image-6.6.15-mips64r6el package. + linux-image-6.7.7-mips64r6el package. -Package: linux-image-6.6.15-mips64r6el +Package: linux-image-6.7.7-mips64r6el Architecture: mips64r6el Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [mips64r6el] | linux-initramfs-tool [mips64r6el] Recommends: firmware-linux-free, apparmor [mips64r6el] -Suggests: linux-doc-6.6, debian-kernel-handbook +Suggests: linux-doc-6.7, debian-kernel-handbook Breaks: fwupdate (<< 12-7) [mips64r6el], wireless-regdb (<< 2019.06.03-1~) [mips64r6el], initramfs-tools (<< 0.120+deb8u2) [mips64r6el] -Description: Linux 6.6 for MIPS Generic (mips64r6el) - The Linux kernel 6.6 and modules for use on MIPS Generic platform +Description: Linux 6.7 for MIPS Generic (mips64r6el) + The Linux kernel 6.7 and modules for use on MIPS Generic platform (mips64r6el). Package: linux-image-mips64r6el Architecture: mips64r6el Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Provides: linux-latest-modules-6.6.15-mips64r6el, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] -Depends: linux-image-6.6.15-mips64r6el (= ${binary:Version}), ${misc:Depends} +Provides: linux-latest-modules-6.7.7-mips64r6el, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] +Depends: linux-image-6.7.7-mips64r6el (= ${binary:Version}), ${misc:Depends} Description: Linux for MIPS Generic (mips64r6el) (meta-package) This package depends on the latest Linux kernel and modules for use on MIPS Generic platform (mips64r6el). @@ -10540,594 +10539,594 @@ Description: Linux for MIPS Generic (mips64r6el) (meta-package) Package: linux-headers-mips64r6el Architecture: mips64r6el Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Depends: linux-headers-6.6.15-mips64r6el (= ${binary:Version}), ${misc:Depends} +Depends: linux-headers-6.7.7-mips64r6el (= ${binary:Version}), ${misc:Depends} Description: Header files for Linux mips64r6el configuration (meta-package) This package depends on the architecture-specific header files for the latest Linux kernel mips64r6el configuration. -Package: linux-image-6.6.15-mips64r6el-dbg +Package: linux-image-6.7.7-mips64r6el-dbg Architecture: mips64r6el Section: debug Priority: optional Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.quick> Depends: ${misc:Depends} -Description: Debug symbols for linux-image-6.6.15-mips64r6el +Description: Debug symbols for linux-image-6.7.7-mips64r6el This package provides the detached debug symbols for the Linux kernel and - modules in linux-image-6.6.15-mips64r6el. + modules in linux-image-6.7.7-mips64r6el. Package: linux-image-mips64r6el-dbg Architecture: mips64r6el Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.nometa !pkg.linux.quick> Provides: linux-latest-image-dbg -Depends: linux-image-6.6.15-mips64r6el-dbg (= ${binary:Version}), ${misc:Depends} +Depends: linux-image-6.7.7-mips64r6el-dbg (= ${binary:Version}), ${misc:Depends} Description: Debugging symbols for Linux mips64r6el configuration (meta-package) This package depends on the detached debugging symbols for the latest Linux kernel mips64r6el configuration. -Package: kernel-image-6.6.15-mips64r6el-di +Package: kernel-image-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: kernel-image, i2c-modules, rtc-modules, mtd-core-modules, mtd-modules -Kernel-Version: 6.6.15-mips64r6el +Kernel-Version: 6.7.7-mips64r6el Description: Linux kernel image and core modules for the Debian installer This package contains the kernel image and core modules for the Debian installer boot images. It does _not_ provide a usable kernel for your full Debian system. -Package: nic-modules-6.6.15-mips64r6el-di +Package: nic-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-modules, nic-extra-modules -Depends: kernel-image-6.6.15-mips64r6el-di, nic-shared-modules-6.6.15-mips64r6el-di, crc-modules-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di, nic-shared-modules-6.7.7-mips64r6el-di, crc-modules-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: NIC drivers This package contains Ethernet and some paravirtualised network drivers for the kernel. -Package: nic-wireless-modules-6.6.15-mips64r6el-di +Package: nic-wireless-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-wireless-modules -Depends: kernel-image-6.6.15-mips64r6el-di, nic-shared-modules-6.6.15-mips64r6el-di, usb-modules-6.6.15-mips64r6el-di, mmc-core-modules-6.6.15-mips64r6el-di, crc-modules-6.6.15-mips64r6el-di, crypto-modules-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di, nic-shared-modules-6.7.7-mips64r6el-di, usb-modules-6.7.7-mips64r6el-di, mmc-core-modules-6.7.7-mips64r6el-di, crc-modules-6.7.7-mips64r6el-di, crypto-modules-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: Wireless NIC drivers This package contains wireless NIC drivers for the kernel. Includes crypto modules only needed for wireless (WEP, WPA). -Package: nic-shared-modules-6.6.15-mips64r6el-di +Package: nic-shared-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-shared-modules -Depends: kernel-image-6.6.15-mips64r6el-di, crc-modules-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di, crc-modules-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: Shared NIC drivers This package contains NIC drivers needed by combinations of nic-modules, nic-pcmcia-modules, nic-usb-modules and nic-wireless-modules. -Package: usb-serial-modules-6.6.15-mips64r6el-di +Package: usb-serial-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-serial-modules -Depends: kernel-image-6.6.15-mips64r6el-di, usb-modules-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di, usb-modules-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: USB serial drivers This package contains USB serial drivers for the kernel. -Package: ppp-modules-6.6.15-mips64r6el-di +Package: ppp-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ppp-modules -Depends: kernel-image-6.6.15-mips64r6el-di, crc-modules-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di, crc-modules-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: PPP drivers This package contains PPP drivers for the kernel. -Package: pata-modules-6.6.15-mips64r6el-di +Package: pata-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: pata-modules -Depends: kernel-image-6.6.15-mips64r6el-di, ata-modules-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di, ata-modules-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: PATA drivers This package contains PATA drivers for the kernel. -Package: cdrom-core-modules-6.6.15-mips64r6el-di +Package: cdrom-core-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: cdrom-core-modules -Depends: kernel-image-6.6.15-mips64r6el-di, scsi-core-modules-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di, scsi-core-modules-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: CDROM support This package contains core CDROM support for the kernel. -Package: firewire-core-modules-6.6.15-mips64r6el-di +Package: firewire-core-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: firewire-core-modules -Depends: kernel-image-6.6.15-mips64r6el-di, scsi-core-modules-6.6.15-mips64r6el-di, crc-modules-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di, scsi-core-modules-6.7.7-mips64r6el-di, crc-modules-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: Core FireWire drivers This package contains core FireWire drivers for the kernel. -Package: scsi-core-modules-6.6.15-mips64r6el-di +Package: scsi-core-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-core-modules -Depends: kernel-image-6.6.15-mips64r6el-di, crc-modules-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di, crc-modules-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: Core SCSI subsystem This package contains the core SCSI subsystem for the kernel. -Package: scsi-modules-6.6.15-mips64r6el-di +Package: scsi-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-modules -Depends: kernel-image-6.6.15-mips64r6el-di, scsi-core-modules-6.6.15-mips64r6el-di, cdrom-core-modules-6.6.15-mips64r6el-di, ata-modules-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di, scsi-core-modules-6.7.7-mips64r6el-di, cdrom-core-modules-6.7.7-mips64r6el-di, ata-modules-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: SCSI drivers This package contains SCSI drivers for the kernel. -Package: scsi-nic-modules-6.6.15-mips64r6el-di +Package: scsi-nic-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-nic-modules -Depends: scsi-modules-6.6.15-mips64r6el-di, nic-modules-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: scsi-modules-6.7.7-mips64r6el-di, nic-modules-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: SCSI drivers for converged NICs This package contains SCSI drivers that depend on net drivers. -Package: loop-modules-6.6.15-mips64r6el-di +Package: loop-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: loop-modules -Depends: kernel-image-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: Loopback filesystem support This package contains loopback filesystem support for the kernel. -Package: btrfs-modules-6.6.15-mips64r6el-di +Package: btrfs-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: btrfs-modules -Depends: kernel-image-6.6.15-mips64r6el-di, crc-modules-6.6.15-mips64r6el-di, md-modules-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di, crc-modules-6.7.7-mips64r6el-di, md-modules-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: BTRFS filesystem support This package contains the BTRFS filesystem module for the kernel. -Package: ext4-modules-6.6.15-mips64r6el-di +Package: ext4-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ext4-modules, ext2-modules, ext3-modules -Depends: kernel-image-6.6.15-mips64r6el-di, crc-modules-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di, crc-modules-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: ext2/ext3/ext4 filesystem support This package contains the ext4 filesystem module for the kernel, which also supports ext2 and ext3. -Package: isofs-modules-6.6.15-mips64r6el-di +Package: isofs-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: isofs-modules -Depends: kernel-image-6.6.15-mips64r6el-di, cdrom-core-modules-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di, cdrom-core-modules-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: ISOFS filesystem support This package contains the ISOFS filesystem module for the kernel. -Package: jfs-modules-6.6.15-mips64r6el-di +Package: jfs-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: jfs-modules -Depends: kernel-image-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: JFS filesystem support This package contains the JFS filesystem module for the kernel. -Package: xfs-modules-6.6.15-mips64r6el-di +Package: xfs-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: xfs-modules -Depends: kernel-image-6.6.15-mips64r6el-di, crc-modules-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di, crc-modules-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: XFS filesystem support This package contains the XFS filesystem module for the kernel. -Package: fat-modules-6.6.15-mips64r6el-di +Package: fat-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fat-modules -Depends: kernel-image-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: FAT filesystem support This package contains the FAT and VFAT filesystem modules for the kernel. -Package: affs-modules-6.6.15-mips64r6el-di +Package: affs-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: affs-modules -Depends: kernel-image-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: Amiga filesystem support This package contains the Amiga filesystem module for the kernel. -Package: minix-modules-6.6.15-mips64r6el-di +Package: minix-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: minix-modules -Depends: kernel-image-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: Minix filesystem support This package contains the Minix filesystem module for the kernel. -Package: nfs-modules-6.6.15-mips64r6el-di +Package: nfs-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nfs-modules -Depends: kernel-image-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: NFS filesystem support This package contains the NFS filesystem module for the kernel. -Package: squashfs-modules-6.6.15-mips64r6el-di +Package: squashfs-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: squashfs-modules -Depends: kernel-image-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: squashfs modules This package contains squashfs modules. -Package: udf-modules-6.6.15-mips64r6el-di +Package: udf-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: udf-modules -Depends: kernel-image-6.6.15-mips64r6el-di, crc-modules-6.6.15-mips64r6el-di, cdrom-core-modules-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di, crc-modules-6.7.7-mips64r6el-di, cdrom-core-modules-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: UDF modules This package contains the UDF filesystem module. -Package: f2fs-modules-6.6.15-mips64r6el-di +Package: f2fs-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: f2fs-modules -Depends: kernel-image-6.6.15-mips64r6el-di, crc-modules-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di, crc-modules-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: f2fs filesystem support This package contains the f2fs (Flash-Friendly Filesystem) module. -Package: md-modules-6.6.15-mips64r6el-di +Package: md-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: md-modules -Depends: kernel-image-6.6.15-mips64r6el-di, crc-modules-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di, crc-modules-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: RAID and LVM support This package contains RAID and LVM modules for the kernel. -Package: multipath-modules-6.6.15-mips64r6el-di +Package: multipath-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: multipath-modules -Depends: kernel-image-6.6.15-mips64r6el-di, md-modules-6.6.15-mips64r6el-di, scsi-core-modules-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di, md-modules-6.7.7-mips64r6el-di, scsi-core-modules-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: Multipath support This package contains DM-Multipath modules for the kernel. -Package: usb-modules-6.6.15-mips64r6el-di +Package: usb-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-modules -Depends: kernel-image-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: USB support This package contains core USB drivers for the kernel. -Package: usb-storage-modules-6.6.15-mips64r6el-di +Package: usb-storage-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-storage-modules -Depends: kernel-image-6.6.15-mips64r6el-di, scsi-core-modules-6.6.15-mips64r6el-di, usb-modules-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di, scsi-core-modules-6.7.7-mips64r6el-di, usb-modules-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: USB storage support This package contains the USB storage driver for the kernel. -Package: fb-modules-6.6.15-mips64r6el-di +Package: fb-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fb-modules -Depends: kernel-image-6.6.15-mips64r6el-di, input-modules-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di, input-modules-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: Frame buffer support This package contains Frame buffer drivers for the kernel. -Package: input-modules-6.6.15-mips64r6el-di +Package: input-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: input-modules -Depends: kernel-image-6.6.15-mips64r6el-di, usb-modules-6.6.15-mips64r6el-di, crc-modules-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di, usb-modules-6.7.7-mips64r6el-di, crc-modules-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: Input devices support This package contains input device drivers for the kernel. -Package: event-modules-6.6.15-mips64r6el-di +Package: event-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: event-modules -Depends: kernel-image-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: Event support This package contains event drivers for the kernel. -Package: mouse-modules-6.6.15-mips64r6el-di +Package: mouse-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mouse-modules -Depends: kernel-image-6.6.15-mips64r6el-di, event-modules-6.6.15-mips64r6el-di, input-modules-6.6.15-mips64r6el-di, usb-modules-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di, event-modules-6.7.7-mips64r6el-di, input-modules-6.7.7-mips64r6el-di, usb-modules-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: Mouse support This package contains mouse drivers for the kernel. -Package: nic-usb-modules-6.6.15-mips64r6el-di +Package: nic-usb-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-usb-modules -Depends: kernel-image-6.6.15-mips64r6el-di, nic-shared-modules-6.6.15-mips64r6el-di, nic-wireless-modules-6.6.15-mips64r6el-di, usb-modules-6.6.15-mips64r6el-di, crc-modules-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di, nic-shared-modules-6.7.7-mips64r6el-di, nic-wireless-modules-6.7.7-mips64r6el-di, usb-modules-6.7.7-mips64r6el-di, crc-modules-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: USB NIC drivers This package contains USB network adapter drivers for the kernel. -Package: sata-modules-6.6.15-mips64r6el-di +Package: sata-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sata-modules -Depends: kernel-image-6.6.15-mips64r6el-di, scsi-core-modules-6.6.15-mips64r6el-di, ata-modules-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di, scsi-core-modules-6.7.7-mips64r6el-di, ata-modules-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: SATA drivers This package contains SATA drivers for the kernel. -Package: crc-modules-6.6.15-mips64r6el-di +Package: crc-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crc-modules -Depends: kernel-image-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: CRC modules This package contains CRC support modules. -Package: crypto-modules-6.6.15-mips64r6el-di +Package: crypto-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-modules -Depends: kernel-image-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: crypto modules This package contains crypto modules. -Package: crypto-dm-modules-6.6.15-mips64r6el-di +Package: crypto-dm-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-dm-modules -Depends: kernel-image-6.6.15-mips64r6el-di, md-modules-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di, md-modules-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: devicemapper crypto module This package contains the devicemapper crypto (dm-crypt) module. -Package: ata-modules-6.6.15-mips64r6el-di +Package: ata-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ata-modules -Depends: kernel-image-6.6.15-mips64r6el-di, scsi-core-modules-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di, scsi-core-modules-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: ATA disk modules This package contains core ATA disk modules used by both PATA and SATA disk drivers. -Package: mmc-core-modules-6.6.15-mips64r6el-di +Package: mmc-core-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mmc-core-modules -Depends: kernel-image-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: MMC/SD/SDIO core modules This package contains core modules for MMC/SD/SDIO support. -Package: mmc-modules-6.6.15-mips64r6el-di +Package: mmc-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mmc-modules -Depends: kernel-image-6.6.15-mips64r6el-di, mmc-core-modules-6.6.15-mips64r6el-di, usb-modules-6.6.15-mips64r6el-di, crc-modules-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di, mmc-core-modules-6.7.7-mips64r6el-di, usb-modules-6.7.7-mips64r6el-di, crc-modules-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: MMC/SD card modules This package contains modules needed to support MMC (multimedia) and SD cards. -Package: nbd-modules-6.6.15-mips64r6el-di +Package: nbd-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nbd-modules -Depends: kernel-image-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: Network Block Device modules This package contains the modules required for support of the Network Block Device -Package: speakup-modules-6.6.15-mips64r6el-di +Package: speakup-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: speakup-modules -Depends: kernel-image-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: speakup modules This package contains speakup modules. -Package: sound-modules-6.6.15-mips64r6el-di +Package: sound-modules-6.7.7-mips64r6el-di Package-Type: udeb Architecture: mips64r6el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sound-modules -Depends: kernel-image-6.6.15-mips64r6el-di, usb-modules-6.6.15-mips64r6el-di, firewire-core-modules-6.6.15-mips64r6el-di, crc-modules-6.6.15-mips64r6el-di -Kernel-Version: 6.6.15-mips64r6el +Depends: kernel-image-6.7.7-mips64r6el-di, usb-modules-6.7.7-mips64r6el-di, firewire-core-modules-6.7.7-mips64r6el-di, crc-modules-6.7.7-mips64r6el-di +Kernel-Version: 6.7.7-mips64r6el Description: sound support This package contains sound modules. -Package: linux-headers-6.6.15-mips32r2el +Package: linux-headers-6.7.7-mips32r2el Architecture: mipsel Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Depends: linux-headers-6.6.15-common (= ${source:Version}), linux-image-6.6.15-mips32r2el (= ${binary:Version}) | linux-image-6.6.15-mips32r2el-unsigned (= ${binary:Version}), linux-kbuild-6.6.15, ${misc:Depends}, gcc-13 -Description: Header files for Linux 6.6.15-mips32r2el +Depends: linux-headers-6.7.7-common (= ${source:Version}), linux-image-6.7.7-mips32r2el (= ${binary:Version}) | linux-image-6.7.7-mips32r2el-unsigned (= ${binary:Version}), linux-kbuild-6.7.7, ${misc:Depends}, gcc-13 +Description: Header files for Linux 6.7.7-mips32r2el This package provides the architecture-specific kernel header files for - Linux kernel 6.6.15-mips32r2el, generally used for building out-of-tree + Linux kernel 6.7.7-mips32r2el, generally used for building out-of-tree kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-mips32r2el, and can be used for building + /usr/src/linux-headers-6.7.7-mips32r2el, and can be used for building modules that load into the kernel provided by the - linux-image-6.6.15-mips32r2el package. + linux-image-6.7.7-mips32r2el package. -Package: linux-image-6.6.15-mips32r2el +Package: linux-image-6.7.7-mips32r2el Architecture: mipsel Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [mipsel] | linux-initramfs-tool [mipsel] Recommends: firmware-linux-free, apparmor [mipsel] -Suggests: linux-doc-6.6, debian-kernel-handbook +Suggests: linux-doc-6.7, debian-kernel-handbook Breaks: fwupdate (<< 12-7) [mipsel], wireless-regdb (<< 2019.06.03-1~) [mipsel], initramfs-tools (<< 0.120+deb8u2) [mipsel] -Description: Linux 6.6 for MIPS Generic (mips32r2el) - The Linux kernel 6.6 and modules for use on MIPS Generic platform +Description: Linux 6.7 for MIPS Generic (mips32r2el) + The Linux kernel 6.7 and modules for use on MIPS Generic platform (mips32r2el). Package: linux-image-mips32r2el Architecture: mipsel Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Provides: linux-latest-modules-6.6.15-mips32r2el, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] -Depends: linux-image-6.6.15-mips32r2el (= ${binary:Version}), ${misc:Depends} +Provides: linux-latest-modules-6.7.7-mips32r2el, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] +Depends: linux-image-6.7.7-mips32r2el (= ${binary:Version}), ${misc:Depends} Description: Linux for MIPS Generic (mips32r2el) (meta-package) This package depends on the latest Linux kernel and modules for use on MIPS Generic platform (mips32r2el). @@ -11135,593 +11134,593 @@ Description: Linux for MIPS Generic (mips32r2el) (meta-package) Package: linux-headers-mips32r2el Architecture: mipsel Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Depends: linux-headers-6.6.15-mips32r2el (= ${binary:Version}), ${misc:Depends} +Depends: linux-headers-6.7.7-mips32r2el (= ${binary:Version}), ${misc:Depends} Description: Header files for Linux mips32r2el configuration (meta-package) This package depends on the architecture-specific header files for the latest Linux kernel mips32r2el configuration. -Package: linux-image-6.6.15-mips32r2el-dbg +Package: linux-image-6.7.7-mips32r2el-dbg Architecture: mipsel Section: debug Priority: optional Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.quick> Depends: ${misc:Depends} -Description: Debug symbols for linux-image-6.6.15-mips32r2el +Description: Debug symbols for linux-image-6.7.7-mips32r2el This package provides the detached debug symbols for the Linux kernel and - modules in linux-image-6.6.15-mips32r2el. + modules in linux-image-6.7.7-mips32r2el. Package: linux-image-mips32r2el-dbg Architecture: mipsel Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.nometa !pkg.linux.quick> Provides: linux-latest-image-dbg -Depends: linux-image-6.6.15-mips32r2el-dbg (= ${binary:Version}), ${misc:Depends} +Depends: linux-image-6.7.7-mips32r2el-dbg (= ${binary:Version}), ${misc:Depends} Description: Debugging symbols for Linux mips32r2el configuration (meta-package) This package depends on the detached debugging symbols for the latest Linux kernel mips32r2el configuration. -Package: kernel-image-6.6.15-mips32r2el-di +Package: kernel-image-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: kernel-image, i2c-modules, rtc-modules, mtd-core-modules, mtd-modules -Kernel-Version: 6.6.15-mips32r2el +Kernel-Version: 6.7.7-mips32r2el Description: Linux kernel image and core modules for the Debian installer This package contains the kernel image and core modules for the Debian installer boot images. It does _not_ provide a usable kernel for your full Debian system. -Package: nic-modules-6.6.15-mips32r2el-di +Package: nic-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-modules, nic-extra-modules -Depends: kernel-image-6.6.15-mips32r2el-di, nic-shared-modules-6.6.15-mips32r2el-di, crc-modules-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di, nic-shared-modules-6.7.7-mips32r2el-di, crc-modules-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: NIC drivers This package contains Ethernet and some paravirtualised network drivers for the kernel. -Package: nic-wireless-modules-6.6.15-mips32r2el-di +Package: nic-wireless-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-wireless-modules -Depends: kernel-image-6.6.15-mips32r2el-di, nic-shared-modules-6.6.15-mips32r2el-di, usb-modules-6.6.15-mips32r2el-di, mmc-core-modules-6.6.15-mips32r2el-di, crc-modules-6.6.15-mips32r2el-di, crypto-modules-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di, nic-shared-modules-6.7.7-mips32r2el-di, usb-modules-6.7.7-mips32r2el-di, mmc-core-modules-6.7.7-mips32r2el-di, crc-modules-6.7.7-mips32r2el-di, crypto-modules-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: Wireless NIC drivers This package contains wireless NIC drivers for the kernel. Includes crypto modules only needed for wireless (WEP, WPA). -Package: nic-shared-modules-6.6.15-mips32r2el-di +Package: nic-shared-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-shared-modules -Depends: kernel-image-6.6.15-mips32r2el-di, crc-modules-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di, crc-modules-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: Shared NIC drivers This package contains NIC drivers needed by combinations of nic-modules, nic-pcmcia-modules, nic-usb-modules and nic-wireless-modules. -Package: usb-serial-modules-6.6.15-mips32r2el-di +Package: usb-serial-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-serial-modules -Depends: kernel-image-6.6.15-mips32r2el-di, usb-modules-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di, usb-modules-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: USB serial drivers This package contains USB serial drivers for the kernel. -Package: ppp-modules-6.6.15-mips32r2el-di +Package: ppp-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ppp-modules -Depends: kernel-image-6.6.15-mips32r2el-di, crc-modules-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di, crc-modules-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: PPP drivers This package contains PPP drivers for the kernel. -Package: pata-modules-6.6.15-mips32r2el-di +Package: pata-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: pata-modules -Depends: kernel-image-6.6.15-mips32r2el-di, ata-modules-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di, ata-modules-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: PATA drivers This package contains PATA drivers for the kernel. -Package: cdrom-core-modules-6.6.15-mips32r2el-di +Package: cdrom-core-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: cdrom-core-modules -Depends: kernel-image-6.6.15-mips32r2el-di, scsi-core-modules-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di, scsi-core-modules-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: CDROM support This package contains core CDROM support for the kernel. -Package: firewire-core-modules-6.6.15-mips32r2el-di +Package: firewire-core-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: firewire-core-modules -Depends: kernel-image-6.6.15-mips32r2el-di, scsi-core-modules-6.6.15-mips32r2el-di, crc-modules-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di, scsi-core-modules-6.7.7-mips32r2el-di, crc-modules-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: Core FireWire drivers This package contains core FireWire drivers for the kernel. -Package: scsi-core-modules-6.6.15-mips32r2el-di +Package: scsi-core-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-core-modules -Depends: kernel-image-6.6.15-mips32r2el-di, crc-modules-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di, crc-modules-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: Core SCSI subsystem This package contains the core SCSI subsystem for the kernel. -Package: scsi-modules-6.6.15-mips32r2el-di +Package: scsi-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-modules -Depends: kernel-image-6.6.15-mips32r2el-di, scsi-core-modules-6.6.15-mips32r2el-di, cdrom-core-modules-6.6.15-mips32r2el-di, ata-modules-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di, scsi-core-modules-6.7.7-mips32r2el-di, cdrom-core-modules-6.7.7-mips32r2el-di, ata-modules-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: SCSI drivers This package contains SCSI drivers for the kernel. -Package: scsi-nic-modules-6.6.15-mips32r2el-di +Package: scsi-nic-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-nic-modules -Depends: scsi-modules-6.6.15-mips32r2el-di, nic-modules-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: scsi-modules-6.7.7-mips32r2el-di, nic-modules-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: SCSI drivers for converged NICs This package contains SCSI drivers that depend on net drivers. -Package: loop-modules-6.6.15-mips32r2el-di +Package: loop-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: loop-modules -Depends: kernel-image-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: Loopback filesystem support This package contains loopback filesystem support for the kernel. -Package: btrfs-modules-6.6.15-mips32r2el-di +Package: btrfs-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: btrfs-modules -Depends: kernel-image-6.6.15-mips32r2el-di, crc-modules-6.6.15-mips32r2el-di, md-modules-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di, crc-modules-6.7.7-mips32r2el-di, md-modules-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: BTRFS filesystem support This package contains the BTRFS filesystem module for the kernel. -Package: ext4-modules-6.6.15-mips32r2el-di +Package: ext4-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ext4-modules, ext2-modules, ext3-modules -Depends: kernel-image-6.6.15-mips32r2el-di, crc-modules-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di, crc-modules-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: ext2/ext3/ext4 filesystem support This package contains the ext4 filesystem module for the kernel, which also supports ext2 and ext3. -Package: isofs-modules-6.6.15-mips32r2el-di +Package: isofs-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: isofs-modules -Depends: kernel-image-6.6.15-mips32r2el-di, cdrom-core-modules-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di, cdrom-core-modules-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: ISOFS filesystem support This package contains the ISOFS filesystem module for the kernel. -Package: jfs-modules-6.6.15-mips32r2el-di +Package: jfs-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: jfs-modules -Depends: kernel-image-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: JFS filesystem support This package contains the JFS filesystem module for the kernel. -Package: xfs-modules-6.6.15-mips32r2el-di +Package: xfs-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: xfs-modules -Depends: kernel-image-6.6.15-mips32r2el-di, crc-modules-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di, crc-modules-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: XFS filesystem support This package contains the XFS filesystem module for the kernel. -Package: fat-modules-6.6.15-mips32r2el-di +Package: fat-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fat-modules -Depends: kernel-image-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: FAT filesystem support This package contains the FAT and VFAT filesystem modules for the kernel. -Package: affs-modules-6.6.15-mips32r2el-di +Package: affs-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: affs-modules -Depends: kernel-image-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: Amiga filesystem support This package contains the Amiga filesystem module for the kernel. -Package: minix-modules-6.6.15-mips32r2el-di +Package: minix-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: minix-modules -Depends: kernel-image-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: Minix filesystem support This package contains the Minix filesystem module for the kernel. -Package: nfs-modules-6.6.15-mips32r2el-di +Package: nfs-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nfs-modules -Depends: kernel-image-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: NFS filesystem support This package contains the NFS filesystem module for the kernel. -Package: squashfs-modules-6.6.15-mips32r2el-di +Package: squashfs-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: squashfs-modules -Depends: kernel-image-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: squashfs modules This package contains squashfs modules. -Package: udf-modules-6.6.15-mips32r2el-di +Package: udf-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: udf-modules -Depends: kernel-image-6.6.15-mips32r2el-di, crc-modules-6.6.15-mips32r2el-di, cdrom-core-modules-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di, crc-modules-6.7.7-mips32r2el-di, cdrom-core-modules-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: UDF modules This package contains the UDF filesystem module. -Package: f2fs-modules-6.6.15-mips32r2el-di +Package: f2fs-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: f2fs-modules -Depends: kernel-image-6.6.15-mips32r2el-di, crc-modules-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di, crc-modules-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: f2fs filesystem support This package contains the f2fs (Flash-Friendly Filesystem) module. -Package: md-modules-6.6.15-mips32r2el-di +Package: md-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: md-modules -Depends: kernel-image-6.6.15-mips32r2el-di, crc-modules-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di, crc-modules-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: RAID and LVM support This package contains RAID and LVM modules for the kernel. -Package: multipath-modules-6.6.15-mips32r2el-di +Package: multipath-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: multipath-modules -Depends: kernel-image-6.6.15-mips32r2el-di, md-modules-6.6.15-mips32r2el-di, scsi-core-modules-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di, md-modules-6.7.7-mips32r2el-di, scsi-core-modules-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: Multipath support This package contains DM-Multipath modules for the kernel. -Package: usb-modules-6.6.15-mips32r2el-di +Package: usb-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-modules -Depends: kernel-image-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: USB support This package contains core USB drivers for the kernel. -Package: usb-storage-modules-6.6.15-mips32r2el-di +Package: usb-storage-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-storage-modules -Depends: kernel-image-6.6.15-mips32r2el-di, scsi-core-modules-6.6.15-mips32r2el-di, usb-modules-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di, scsi-core-modules-6.7.7-mips32r2el-di, usb-modules-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: USB storage support This package contains the USB storage driver for the kernel. -Package: fb-modules-6.6.15-mips32r2el-di +Package: fb-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fb-modules -Depends: kernel-image-6.6.15-mips32r2el-di, input-modules-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di, input-modules-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: Frame buffer support This package contains Frame buffer drivers for the kernel. -Package: input-modules-6.6.15-mips32r2el-di +Package: input-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: input-modules -Depends: kernel-image-6.6.15-mips32r2el-di, usb-modules-6.6.15-mips32r2el-di, crc-modules-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di, usb-modules-6.7.7-mips32r2el-di, crc-modules-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: Input devices support This package contains input device drivers for the kernel. -Package: event-modules-6.6.15-mips32r2el-di +Package: event-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: event-modules -Depends: kernel-image-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: Event support This package contains event drivers for the kernel. -Package: mouse-modules-6.6.15-mips32r2el-di +Package: mouse-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mouse-modules -Depends: kernel-image-6.6.15-mips32r2el-di, event-modules-6.6.15-mips32r2el-di, input-modules-6.6.15-mips32r2el-di, usb-modules-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di, event-modules-6.7.7-mips32r2el-di, input-modules-6.7.7-mips32r2el-di, usb-modules-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: Mouse support This package contains mouse drivers for the kernel. -Package: nic-usb-modules-6.6.15-mips32r2el-di +Package: nic-usb-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-usb-modules -Depends: kernel-image-6.6.15-mips32r2el-di, nic-shared-modules-6.6.15-mips32r2el-di, nic-wireless-modules-6.6.15-mips32r2el-di, usb-modules-6.6.15-mips32r2el-di, crc-modules-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di, nic-shared-modules-6.7.7-mips32r2el-di, nic-wireless-modules-6.7.7-mips32r2el-di, usb-modules-6.7.7-mips32r2el-di, crc-modules-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: USB NIC drivers This package contains USB network adapter drivers for the kernel. -Package: sata-modules-6.6.15-mips32r2el-di +Package: sata-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sata-modules -Depends: kernel-image-6.6.15-mips32r2el-di, scsi-core-modules-6.6.15-mips32r2el-di, ata-modules-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di, scsi-core-modules-6.7.7-mips32r2el-di, ata-modules-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: SATA drivers This package contains SATA drivers for the kernel. -Package: crc-modules-6.6.15-mips32r2el-di +Package: crc-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crc-modules -Depends: kernel-image-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: CRC modules This package contains CRC support modules. -Package: crypto-modules-6.6.15-mips32r2el-di +Package: crypto-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-modules -Depends: kernel-image-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: crypto modules This package contains crypto modules. -Package: crypto-dm-modules-6.6.15-mips32r2el-di +Package: crypto-dm-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-dm-modules -Depends: kernel-image-6.6.15-mips32r2el-di, md-modules-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di, md-modules-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: devicemapper crypto module This package contains the devicemapper crypto (dm-crypt) module. -Package: ata-modules-6.6.15-mips32r2el-di +Package: ata-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ata-modules -Depends: kernel-image-6.6.15-mips32r2el-di, scsi-core-modules-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di, scsi-core-modules-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: ATA disk modules This package contains core ATA disk modules used by both PATA and SATA disk drivers. -Package: mmc-core-modules-6.6.15-mips32r2el-di +Package: mmc-core-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mmc-core-modules -Depends: kernel-image-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: MMC/SD/SDIO core modules This package contains core modules for MMC/SD/SDIO support. -Package: mmc-modules-6.6.15-mips32r2el-di +Package: mmc-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mmc-modules -Depends: kernel-image-6.6.15-mips32r2el-di, mmc-core-modules-6.6.15-mips32r2el-di, usb-modules-6.6.15-mips32r2el-di, crc-modules-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di, mmc-core-modules-6.7.7-mips32r2el-di, usb-modules-6.7.7-mips32r2el-di, crc-modules-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: MMC/SD card modules This package contains modules needed to support MMC (multimedia) and SD cards. -Package: nbd-modules-6.6.15-mips32r2el-di +Package: nbd-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nbd-modules -Depends: kernel-image-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: Network Block Device modules This package contains the modules required for support of the Network Block Device -Package: speakup-modules-6.6.15-mips32r2el-di +Package: speakup-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: speakup-modules -Depends: kernel-image-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: speakup modules This package contains speakup modules. -Package: sound-modules-6.6.15-mips32r2el-di +Package: sound-modules-6.7.7-mips32r2el-di Package-Type: udeb Architecture: mipsel Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sound-modules -Depends: kernel-image-6.6.15-mips32r2el-di, usb-modules-6.6.15-mips32r2el-di, firewire-core-modules-6.6.15-mips32r2el-di, crc-modules-6.6.15-mips32r2el-di -Kernel-Version: 6.6.15-mips32r2el +Depends: kernel-image-6.7.7-mips32r2el-di, usb-modules-6.7.7-mips32r2el-di, firewire-core-modules-6.7.7-mips32r2el-di, crc-modules-6.7.7-mips32r2el-di +Kernel-Version: 6.7.7-mips32r2el Description: sound support This package contains sound modules. -Package: linux-headers-6.6.15-powerpc +Package: linux-headers-6.7.7-powerpc Architecture: powerpc Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Depends: linux-headers-6.6.15-common (= ${source:Version}), linux-image-6.6.15-powerpc (= ${binary:Version}) | linux-image-6.6.15-powerpc-unsigned (= ${binary:Version}), linux-kbuild-6.6.15, ${misc:Depends}, gcc-13 -Description: Header files for Linux 6.6.15-powerpc +Depends: linux-headers-6.7.7-common (= ${source:Version}), linux-image-6.7.7-powerpc (= ${binary:Version}) | linux-image-6.7.7-powerpc-unsigned (= ${binary:Version}), linux-kbuild-6.7.7, ${misc:Depends}, gcc-13 +Description: Header files for Linux 6.7.7-powerpc This package provides the architecture-specific kernel header files for - Linux kernel 6.6.15-powerpc, generally used for building out-of-tree - kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-powerpc, and can be used for building - modules that load into the kernel provided by the - linux-image-6.6.15-powerpc package. + Linux kernel 6.7.7-powerpc, generally used for building out-of-tree kernel + modules. These files are going to be installed into + /usr/src/linux-headers-6.7.7-powerpc, and can be used for building modules + that load into the kernel provided by the linux-image-6.7.7-powerpc + package. -Package: linux-image-6.6.15-powerpc +Package: linux-image-6.7.7-powerpc Architecture: powerpc Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [powerpc] | linux-initramfs-tool [powerpc] Recommends: firmware-linux-free, apparmor [powerpc] -Suggests: linux-doc-6.6, debian-kernel-handbook, mkvmlinuz [powerpc], grub-ieee1275 [powerpc] +Suggests: linux-doc-6.7, debian-kernel-handbook, mkvmlinuz [powerpc], grub-ieee1275 [powerpc] Breaks: fwupdate (<< 12-7) [powerpc], wireless-regdb (<< 2019.06.03-1~) [powerpc], initramfs-tools (<< 0.120+deb8u2) [powerpc] -Description: Linux 6.6 for uniprocessor 32-bit PowerPC - The Linux kernel 6.6 and modules for use on uniprocessor 32-bit PowerPC. +Description: Linux 6.7 for uniprocessor 32-bit PowerPC + The Linux kernel 6.7 and modules for use on uniprocessor 32-bit PowerPC. Package: linux-image-powerpc Architecture: powerpc Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Provides: linux-latest-modules-6.6.15-powerpc, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] -Depends: linux-image-6.6.15-powerpc (= ${binary:Version}), ${misc:Depends} +Provides: linux-latest-modules-6.7.7-powerpc, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] +Depends: linux-image-6.7.7-powerpc (= ${binary:Version}), ${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. @@ -11729,604 +11728,604 @@ Description: Linux for uniprocessor 32-bit PowerPC (meta-package) Package: linux-headers-powerpc Architecture: powerpc Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Depends: linux-headers-6.6.15-powerpc (= ${binary:Version}), ${misc:Depends} +Depends: linux-headers-6.7.7-powerpc (= ${binary:Version}), ${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-6.6.15-powerpc-dbg +Package: linux-image-6.7.7-powerpc-dbg Architecture: powerpc Section: debug Priority: optional Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.quick> Depends: ${misc:Depends} -Description: Debug symbols for linux-image-6.6.15-powerpc +Description: Debug symbols for linux-image-6.7.7-powerpc This package provides the detached debug symbols for the Linux kernel and - modules in linux-image-6.6.15-powerpc. + modules in linux-image-6.7.7-powerpc. Package: linux-image-powerpc-dbg Architecture: powerpc Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.nometa !pkg.linux.quick> Provides: linux-latest-image-dbg -Depends: linux-image-6.6.15-powerpc-dbg (= ${binary:Version}), ${misc:Depends} +Depends: linux-image-6.7.7-powerpc-dbg (= ${binary:Version}), ${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: kernel-image-6.6.15-powerpc-di +Package: kernel-image-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: kernel-image, i2c-modules -Kernel-Version: 6.6.15-powerpc +Kernel-Version: 6.7.7-powerpc Description: Linux kernel image and core modules for the Debian installer This package contains the kernel image and core modules for the Debian installer boot images. It does _not_ provide a usable kernel for your full Debian system. -Package: nic-modules-6.6.15-powerpc-di +Package: nic-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-modules, nic-extra-modules -Depends: kernel-image-6.6.15-powerpc-di, nic-shared-modules-6.6.15-powerpc-di, crc-modules-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di, nic-shared-modules-6.7.7-powerpc-di, crc-modules-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: NIC drivers This package contains Ethernet and some paravirtualised network drivers for the kernel. -Package: nic-wireless-modules-6.6.15-powerpc-di +Package: nic-wireless-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-wireless-modules -Depends: kernel-image-6.6.15-powerpc-di, nic-shared-modules-6.6.15-powerpc-di, usb-modules-6.6.15-powerpc-di, mmc-core-modules-6.6.15-powerpc-di, pcmcia-modules-6.6.15-powerpc-di, crc-modules-6.6.15-powerpc-di, crypto-modules-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di, nic-shared-modules-6.7.7-powerpc-di, usb-modules-6.7.7-powerpc-di, mmc-core-modules-6.7.7-powerpc-di, pcmcia-modules-6.7.7-powerpc-di, crc-modules-6.7.7-powerpc-di, crypto-modules-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: Wireless NIC drivers This package contains wireless NIC drivers for the kernel. Includes crypto modules only needed for wireless (WEP, WPA). -Package: nic-shared-modules-6.6.15-powerpc-di +Package: nic-shared-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-shared-modules -Depends: kernel-image-6.6.15-powerpc-di, crc-modules-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di, crc-modules-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: Shared NIC drivers This package contains NIC drivers needed by combinations of nic-modules, nic-pcmcia-modules, nic-usb-modules and nic-wireless-modules. -Package: serial-modules-6.6.15-powerpc-di +Package: serial-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: serial-modules -Depends: kernel-image-6.6.15-powerpc-di, pcmcia-modules-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di, pcmcia-modules-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: Serial drivers This package contains serial drivers for the kernel. -Package: usb-serial-modules-6.6.15-powerpc-di +Package: usb-serial-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-serial-modules -Depends: kernel-image-6.6.15-powerpc-di, usb-modules-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di, usb-modules-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: USB serial drivers This package contains USB serial drivers for the kernel. -Package: ppp-modules-6.6.15-powerpc-di +Package: ppp-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ppp-modules -Depends: kernel-image-6.6.15-powerpc-di, serial-modules-6.6.15-powerpc-di, crc-modules-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di, serial-modules-6.7.7-powerpc-di, crc-modules-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: PPP drivers This package contains PPP drivers for the kernel. -Package: pata-modules-6.6.15-powerpc-di +Package: pata-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: pata-modules -Depends: kernel-image-6.6.15-powerpc-di, ata-modules-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di, ata-modules-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: PATA drivers This package contains PATA drivers for the kernel. -Package: cdrom-core-modules-6.6.15-powerpc-di +Package: cdrom-core-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: cdrom-core-modules -Depends: kernel-image-6.6.15-powerpc-di, scsi-core-modules-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di, scsi-core-modules-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: CDROM support This package contains core CDROM support for the kernel. -Package: firewire-core-modules-6.6.15-powerpc-di +Package: firewire-core-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: firewire-core-modules -Depends: kernel-image-6.6.15-powerpc-di, scsi-core-modules-6.6.15-powerpc-di, crc-modules-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di, scsi-core-modules-6.7.7-powerpc-di, crc-modules-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: Core FireWire drivers This package contains core FireWire drivers for the kernel. -Package: scsi-core-modules-6.6.15-powerpc-di +Package: scsi-core-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-core-modules -Depends: kernel-image-6.6.15-powerpc-di, crc-modules-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di, crc-modules-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: Core SCSI subsystem This package contains the core SCSI subsystem for the kernel. -Package: scsi-modules-6.6.15-powerpc-di +Package: scsi-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-modules -Depends: kernel-image-6.6.15-powerpc-di, scsi-core-modules-6.6.15-powerpc-di, cdrom-core-modules-6.6.15-powerpc-di, ata-modules-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di, scsi-core-modules-6.7.7-powerpc-di, cdrom-core-modules-6.7.7-powerpc-di, ata-modules-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: SCSI drivers This package contains SCSI drivers for the kernel. -Package: scsi-nic-modules-6.6.15-powerpc-di +Package: scsi-nic-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-nic-modules -Depends: scsi-modules-6.6.15-powerpc-di, nic-modules-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: scsi-modules-6.7.7-powerpc-di, nic-modules-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: SCSI drivers for converged NICs This package contains SCSI drivers that depend on net drivers. -Package: loop-modules-6.6.15-powerpc-di +Package: loop-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: loop-modules -Depends: kernel-image-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: Loopback filesystem support This package contains loopback filesystem support for the kernel. -Package: btrfs-modules-6.6.15-powerpc-di +Package: btrfs-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: btrfs-modules -Depends: kernel-image-6.6.15-powerpc-di, crc-modules-6.6.15-powerpc-di, md-modules-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di, crc-modules-6.7.7-powerpc-di, md-modules-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: BTRFS filesystem support This package contains the BTRFS filesystem module for the kernel. -Package: ext4-modules-6.6.15-powerpc-di +Package: ext4-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ext4-modules, ext2-modules, ext3-modules -Depends: kernel-image-6.6.15-powerpc-di, crc-modules-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di, crc-modules-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: ext2/ext3/ext4 filesystem support This package contains the ext4 filesystem module for the kernel, which also supports ext2 and ext3. -Package: isofs-modules-6.6.15-powerpc-di +Package: isofs-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: isofs-modules -Depends: kernel-image-6.6.15-powerpc-di, cdrom-core-modules-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di, cdrom-core-modules-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: ISOFS filesystem support This package contains the ISOFS filesystem module for the kernel. -Package: jfs-modules-6.6.15-powerpc-di +Package: jfs-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: jfs-modules -Depends: kernel-image-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: JFS filesystem support This package contains the JFS filesystem module for the kernel. -Package: xfs-modules-6.6.15-powerpc-di +Package: xfs-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: xfs-modules -Depends: kernel-image-6.6.15-powerpc-di, crc-modules-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di, crc-modules-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: XFS filesystem support This package contains the XFS filesystem module for the kernel. -Package: fat-modules-6.6.15-powerpc-di +Package: fat-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fat-modules -Depends: kernel-image-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: FAT filesystem support This package contains the FAT and VFAT filesystem modules for the kernel. -Package: hfs-modules-6.6.15-powerpc-di +Package: hfs-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: hfs-modules -Depends: kernel-image-6.6.15-powerpc-di, cdrom-core-modules-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di, cdrom-core-modules-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: HFS filesystem support This package contains the HFS and HFS+ filesystem modules for the kernel. -Package: affs-modules-6.6.15-powerpc-di +Package: affs-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: affs-modules -Depends: kernel-image-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: Amiga filesystem support This package contains the Amiga filesystem module for the kernel. -Package: squashfs-modules-6.6.15-powerpc-di +Package: squashfs-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: squashfs-modules -Depends: kernel-image-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: squashfs modules This package contains squashfs modules. -Package: udf-modules-6.6.15-powerpc-di +Package: udf-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: udf-modules -Depends: kernel-image-6.6.15-powerpc-di, crc-modules-6.6.15-powerpc-di, cdrom-core-modules-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di, crc-modules-6.7.7-powerpc-di, cdrom-core-modules-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: UDF modules This package contains the UDF filesystem module. -Package: f2fs-modules-6.6.15-powerpc-di +Package: f2fs-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: f2fs-modules -Depends: kernel-image-6.6.15-powerpc-di, crc-modules-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di, crc-modules-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: f2fs filesystem support This package contains the f2fs (Flash-Friendly Filesystem) module. -Package: md-modules-6.6.15-powerpc-di +Package: md-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: md-modules -Depends: kernel-image-6.6.15-powerpc-di, crc-modules-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di, crc-modules-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: RAID and LVM support This package contains RAID and LVM modules for the kernel. -Package: multipath-modules-6.6.15-powerpc-di +Package: multipath-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: multipath-modules -Depends: kernel-image-6.6.15-powerpc-di, md-modules-6.6.15-powerpc-di, scsi-core-modules-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di, md-modules-6.7.7-powerpc-di, scsi-core-modules-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: Multipath support This package contains DM-Multipath modules for the kernel. -Package: usb-modules-6.6.15-powerpc-di +Package: usb-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-modules -Depends: kernel-image-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: USB support This package contains core USB drivers for the kernel. -Package: usb-storage-modules-6.6.15-powerpc-di +Package: usb-storage-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-storage-modules -Depends: kernel-image-6.6.15-powerpc-di, scsi-core-modules-6.6.15-powerpc-di, usb-modules-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di, scsi-core-modules-6.7.7-powerpc-di, usb-modules-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: USB storage support This package contains the USB storage driver for the kernel. -Package: pcmcia-storage-modules-6.6.15-powerpc-di +Package: pcmcia-storage-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: pcmcia-storage-modules -Depends: kernel-image-6.6.15-powerpc-di, cdrom-core-modules-6.6.15-powerpc-di, pcmcia-modules-6.6.15-powerpc-di, ata-modules-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di, cdrom-core-modules-6.7.7-powerpc-di, pcmcia-modules-6.7.7-powerpc-di, ata-modules-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: PCMCIA storage drivers This package contains PCMCIA storage drivers for the kernel. -Package: fb-modules-6.6.15-powerpc-di +Package: fb-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fb-modules -Depends: kernel-image-6.6.15-powerpc-di, input-modules-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di, input-modules-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: Frame buffer support This package contains Frame buffer drivers for the kernel. -Package: input-modules-6.6.15-powerpc-di +Package: input-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: input-modules -Depends: kernel-image-6.6.15-powerpc-di, usb-modules-6.6.15-powerpc-di, crc-modules-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di, usb-modules-6.7.7-powerpc-di, crc-modules-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: Input devices support This package contains input device drivers for the kernel. -Package: event-modules-6.6.15-powerpc-di +Package: event-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: event-modules -Depends: kernel-image-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: Event support This package contains event drivers for the kernel. -Package: mouse-modules-6.6.15-powerpc-di +Package: mouse-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mouse-modules -Depends: kernel-image-6.6.15-powerpc-di, event-modules-6.6.15-powerpc-di, input-modules-6.6.15-powerpc-di, usb-modules-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di, event-modules-6.7.7-powerpc-di, input-modules-6.7.7-powerpc-di, usb-modules-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: Mouse support This package contains mouse drivers for the kernel. -Package: nic-pcmcia-modules-6.6.15-powerpc-di +Package: nic-pcmcia-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-pcmcia-modules -Depends: kernel-image-6.6.15-powerpc-di, nic-shared-modules-6.6.15-powerpc-di, nic-wireless-modules-6.6.15-powerpc-di, pcmcia-modules-6.6.15-powerpc-di, mmc-core-modules-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di, nic-shared-modules-6.7.7-powerpc-di, nic-wireless-modules-6.7.7-powerpc-di, pcmcia-modules-6.7.7-powerpc-di, mmc-core-modules-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: Common PCMCIA NIC drivers This package contains common PCMCIA NIC drivers for the kernel. -Package: pcmcia-modules-6.6.15-powerpc-di +Package: pcmcia-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: pcmcia-modules -Depends: kernel-image-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: Common PCMCIA drivers This package contains common PCMCIA drivers for the kernel. -Package: nic-usb-modules-6.6.15-powerpc-di +Package: nic-usb-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-usb-modules -Depends: kernel-image-6.6.15-powerpc-di, nic-shared-modules-6.6.15-powerpc-di, nic-wireless-modules-6.6.15-powerpc-di, usb-modules-6.6.15-powerpc-di, crc-modules-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di, nic-shared-modules-6.7.7-powerpc-di, nic-wireless-modules-6.7.7-powerpc-di, usb-modules-6.7.7-powerpc-di, crc-modules-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: USB NIC drivers This package contains USB network adapter drivers for the kernel. -Package: sata-modules-6.6.15-powerpc-di +Package: sata-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sata-modules -Depends: kernel-image-6.6.15-powerpc-di, scsi-core-modules-6.6.15-powerpc-di, ata-modules-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di, scsi-core-modules-6.7.7-powerpc-di, ata-modules-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: SATA drivers This package contains SATA drivers for the kernel. -Package: crc-modules-6.6.15-powerpc-di +Package: crc-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crc-modules -Depends: kernel-image-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: CRC modules This package contains CRC support modules. -Package: crypto-modules-6.6.15-powerpc-di +Package: crypto-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-modules -Depends: kernel-image-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: crypto modules This package contains crypto modules. -Package: crypto-dm-modules-6.6.15-powerpc-di +Package: crypto-dm-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-dm-modules -Depends: kernel-image-6.6.15-powerpc-di, md-modules-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di, md-modules-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: devicemapper crypto module This package contains the devicemapper crypto (dm-crypt) module. -Package: ata-modules-6.6.15-powerpc-di +Package: ata-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ata-modules -Depends: kernel-image-6.6.15-powerpc-di, scsi-core-modules-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di, scsi-core-modules-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: ATA disk modules This package contains core ATA disk modules used by both PATA and SATA disk drivers. -Package: mmc-core-modules-6.6.15-powerpc-di +Package: mmc-core-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mmc-core-modules -Depends: kernel-image-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: MMC/SD/SDIO core modules This package contains core modules for MMC/SD/SDIO support. -Package: nbd-modules-6.6.15-powerpc-di +Package: nbd-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nbd-modules -Depends: kernel-image-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: Network Block Device modules This package contains the modules required for support of the Network Block Device -Package: uinput-modules-6.6.15-powerpc-di +Package: uinput-modules-6.7.7-powerpc-di Package-Type: udeb Architecture: powerpc Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: uinput-modules -Depends: kernel-image-6.6.15-powerpc-di -Kernel-Version: 6.6.15-powerpc +Depends: kernel-image-6.7.7-powerpc-di +Kernel-Version: 6.7.7-powerpc Description: uinput support This package contains the uinput module. -Package: linux-headers-6.6.15-powerpc-smp +Package: linux-headers-6.7.7-powerpc-smp Architecture: powerpc Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Depends: linux-headers-6.6.15-common (= ${source:Version}), linux-image-6.6.15-powerpc-smp (= ${binary:Version}) | linux-image-6.6.15-powerpc-smp-unsigned (= ${binary:Version}), linux-kbuild-6.6.15, ${misc:Depends}, gcc-13 -Description: Header files for Linux 6.6.15-powerpc-smp +Depends: linux-headers-6.7.7-common (= ${source:Version}), linux-image-6.7.7-powerpc-smp (= ${binary:Version}) | linux-image-6.7.7-powerpc-smp-unsigned (= ${binary:Version}), linux-kbuild-6.7.7, ${misc:Depends}, gcc-13 +Description: Header files for Linux 6.7.7-powerpc-smp This package provides the architecture-specific kernel header files for - Linux kernel 6.6.15-powerpc-smp, generally used for building out-of-tree + Linux kernel 6.7.7-powerpc-smp, generally used for building out-of-tree kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-powerpc-smp, and can be used for building + /usr/src/linux-headers-6.7.7-powerpc-smp, and can be used for building modules that load into the kernel provided by the - linux-image-6.6.15-powerpc-smp package. + linux-image-6.7.7-powerpc-smp package. -Package: linux-image-6.6.15-powerpc-smp +Package: linux-image-6.7.7-powerpc-smp Architecture: powerpc Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [powerpc] | linux-initramfs-tool [powerpc] Recommends: firmware-linux-free, apparmor [powerpc] -Suggests: linux-doc-6.6, debian-kernel-handbook, mkvmlinuz [powerpc], grub-ieee1275 [powerpc] +Suggests: linux-doc-6.7, debian-kernel-handbook, mkvmlinuz [powerpc], grub-ieee1275 [powerpc] Breaks: fwupdate (<< 12-7) [powerpc], wireless-regdb (<< 2019.06.03-1~) [powerpc], initramfs-tools (<< 0.120+deb8u2) [powerpc] -Description: Linux 6.6 for multiprocessor 32-bit PowerPC - The Linux kernel 6.6 and modules for use on multiprocessor 32-bit PowerPC. +Description: Linux 6.7 for multiprocessor 32-bit PowerPC + The Linux kernel 6.7 and modules for use on multiprocessor 32-bit PowerPC. Package: linux-image-powerpc-smp Architecture: powerpc Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Provides: linux-latest-modules-6.6.15-powerpc-smp, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] -Depends: linux-image-6.6.15-powerpc-smp (= ${binary:Version}), ${misc:Depends} +Provides: linux-latest-modules-6.7.7-powerpc-smp, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] +Depends: linux-image-6.7.7-powerpc-smp (= ${binary:Version}), ${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. @@ -12334,57 +12333,57 @@ Description: Linux for multiprocessor 32-bit PowerPC (meta-package) Package: linux-headers-powerpc-smp Architecture: powerpc Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Depends: linux-headers-6.6.15-powerpc-smp (= ${binary:Version}), ${misc:Depends} +Depends: linux-headers-6.7.7-powerpc-smp (= ${binary:Version}), ${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-6.6.15-powerpc-smp-dbg +Package: linux-image-6.7.7-powerpc-smp-dbg Architecture: powerpc Section: debug Priority: optional Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.quick> Depends: ${misc:Depends} -Description: Debug symbols for linux-image-6.6.15-powerpc-smp +Description: Debug symbols for linux-image-6.7.7-powerpc-smp This package provides the detached debug symbols for the Linux kernel and - modules in linux-image-6.6.15-powerpc-smp. + modules in linux-image-6.7.7-powerpc-smp. Package: linux-image-powerpc-smp-dbg Architecture: powerpc Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.nometa !pkg.linux.quick> Provides: linux-latest-image-dbg -Depends: linux-image-6.6.15-powerpc-smp-dbg (= ${binary:Version}), ${misc:Depends} +Depends: linux-image-6.7.7-powerpc-smp-dbg (= ${binary:Version}), ${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-headers-6.6.15-powerpc64 +Package: linux-headers-6.7.7-powerpc64 Architecture: powerpc ppc64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Depends: linux-headers-6.6.15-common (= ${source:Version}), linux-image-6.6.15-powerpc64 (= ${binary:Version}) | linux-image-6.6.15-powerpc64-unsigned (= ${binary:Version}), linux-kbuild-6.6.15, ${misc:Depends}, gcc-13 -Description: Header files for Linux 6.6.15-powerpc64 +Depends: linux-headers-6.7.7-common (= ${source:Version}), linux-image-6.7.7-powerpc64 (= ${binary:Version}) | linux-image-6.7.7-powerpc64-unsigned (= ${binary:Version}), linux-kbuild-6.7.7, ${misc:Depends}, gcc-13 +Description: Header files for Linux 6.7.7-powerpc64 This package provides the architecture-specific kernel header files for - Linux kernel 6.6.15-powerpc64, generally used for building out-of-tree + Linux kernel 6.7.7-powerpc64, generally used for building out-of-tree kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-powerpc64, and can be used for building + /usr/src/linux-headers-6.7.7-powerpc64, and can be used for building modules that load into the kernel provided by the - linux-image-6.6.15-powerpc64 package. + linux-image-6.7.7-powerpc64 package. -Package: linux-image-6.6.15-powerpc64 +Package: linux-image-6.7.7-powerpc64 Architecture: powerpc ppc64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [powerpc ppc64] | linux-initramfs-tool [powerpc ppc64] Recommends: firmware-linux-free, apparmor [powerpc ppc64] -Suggests: linux-doc-6.6, debian-kernel-handbook, mkvmlinuz [powerpc ppc64], grub-ieee1275 [powerpc ppc64] +Suggests: linux-doc-6.7, debian-kernel-handbook, mkvmlinuz [powerpc ppc64], grub-ieee1275 [powerpc ppc64] Breaks: fwupdate (<< 12-7) [powerpc ppc64], wireless-regdb (<< 2019.06.03-1~) [powerpc ppc64], initramfs-tools (<< 0.120+deb8u2) [powerpc], initramfs-tools (<< 0.120+deb8u2) [ppc64] -Description: Linux 6.6 for 64-bit PowerPC - The Linux kernel 6.6 and modules for use on 64-bit PowerPC. +Description: Linux 6.7 for 64-bit PowerPC + The Linux kernel 6.7 and modules for use on 64-bit PowerPC. Package: linux-image-powerpc64 Architecture: powerpc ppc64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Provides: linux-latest-modules-6.6.15-powerpc64, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386], linux-image-generic -Depends: linux-image-6.6.15-powerpc64 (= ${binary:Version}), ${misc:Depends} +Provides: linux-latest-modules-6.7.7-powerpc64, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386], linux-image-generic +Depends: linux-image-6.7.7-powerpc64 (= ${binary:Version}), ${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. @@ -12393,655 +12392,655 @@ Package: linux-headers-powerpc64 Architecture: powerpc ppc64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> Provides: linux-headers-generic -Depends: linux-headers-6.6.15-powerpc64 (= ${binary:Version}), ${misc:Depends} +Depends: linux-headers-6.7.7-powerpc64 (= ${binary:Version}), ${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-6.6.15-powerpc64-dbg +Package: linux-image-6.7.7-powerpc64-dbg Architecture: powerpc ppc64 Section: debug Priority: optional Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.quick> Depends: ${misc:Depends} -Description: Debug symbols for linux-image-6.6.15-powerpc64 +Description: Debug symbols for linux-image-6.7.7-powerpc64 This package provides the detached debug symbols for the Linux kernel and - modules in linux-image-6.6.15-powerpc64. + modules in linux-image-6.7.7-powerpc64. Package: linux-image-powerpc64-dbg Architecture: powerpc ppc64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.nometa !pkg.linux.quick> Provides: linux-latest-image-dbg -Depends: linux-image-6.6.15-powerpc64-dbg (= ${binary:Version}), ${misc:Depends} +Depends: linux-image-6.7.7-powerpc64-dbg (= ${binary:Version}), ${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: kernel-image-6.6.15-powerpc64-di +Package: kernel-image-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: kernel-image -Kernel-Version: 6.6.15-powerpc64 +Kernel-Version: 6.7.7-powerpc64 Description: Linux kernel image and core modules for the Debian installer This package contains the kernel image and core modules for the Debian installer boot images. It does _not_ provide a usable kernel for your full Debian system. -Package: nic-modules-6.6.15-powerpc64-di +Package: nic-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-modules, nic-extra-modules -Depends: kernel-image-6.6.15-powerpc64-di, nic-shared-modules-6.6.15-powerpc64-di, i2c-modules-6.6.15-powerpc64-di, crc-modules-6.6.15-powerpc64-di, mtd-core-modules-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di, nic-shared-modules-6.7.7-powerpc64-di, i2c-modules-6.7.7-powerpc64-di, crc-modules-6.7.7-powerpc64-di, mtd-core-modules-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: NIC drivers This package contains Ethernet and some paravirtualised network drivers for the kernel. -Package: nic-wireless-modules-6.6.15-powerpc64-di +Package: nic-wireless-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-wireless-modules -Depends: kernel-image-6.6.15-powerpc64-di, nic-shared-modules-6.6.15-powerpc64-di, usb-modules-6.6.15-powerpc64-di, mmc-core-modules-6.6.15-powerpc64-di, pcmcia-modules-6.6.15-powerpc64-di, crc-modules-6.6.15-powerpc64-di, crypto-modules-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di, nic-shared-modules-6.7.7-powerpc64-di, usb-modules-6.7.7-powerpc64-di, mmc-core-modules-6.7.7-powerpc64-di, pcmcia-modules-6.7.7-powerpc64-di, crc-modules-6.7.7-powerpc64-di, crypto-modules-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: Wireless NIC drivers This package contains wireless NIC drivers for the kernel. Includes crypto modules only needed for wireless (WEP, WPA). -Package: nic-shared-modules-6.6.15-powerpc64-di +Package: nic-shared-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-shared-modules -Depends: kernel-image-6.6.15-powerpc64-di, crc-modules-6.6.15-powerpc64-di, i2c-modules-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di, crc-modules-6.7.7-powerpc64-di, i2c-modules-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: Shared NIC drivers This package contains NIC drivers needed by combinations of nic-modules, nic-pcmcia-modules, nic-usb-modules and nic-wireless-modules. -Package: serial-modules-6.6.15-powerpc64-di +Package: serial-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: serial-modules -Depends: kernel-image-6.6.15-powerpc64-di, pcmcia-modules-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di, pcmcia-modules-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: Serial drivers This package contains serial drivers for the kernel. -Package: usb-serial-modules-6.6.15-powerpc64-di +Package: usb-serial-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-serial-modules -Depends: kernel-image-6.6.15-powerpc64-di, usb-modules-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di, usb-modules-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: USB serial drivers This package contains USB serial drivers for the kernel. -Package: ppp-modules-6.6.15-powerpc64-di +Package: ppp-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ppp-modules -Depends: kernel-image-6.6.15-powerpc64-di, serial-modules-6.6.15-powerpc64-di, crc-modules-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di, serial-modules-6.7.7-powerpc64-di, crc-modules-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: PPP drivers This package contains PPP drivers for the kernel. -Package: pata-modules-6.6.15-powerpc64-di +Package: pata-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: pata-modules -Depends: kernel-image-6.6.15-powerpc64-di, ata-modules-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di, ata-modules-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: PATA drivers This package contains PATA drivers for the kernel. -Package: cdrom-core-modules-6.6.15-powerpc64-di +Package: cdrom-core-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: cdrom-core-modules -Depends: kernel-image-6.6.15-powerpc64-di, scsi-core-modules-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di, scsi-core-modules-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: CDROM support This package contains core CDROM support for the kernel. -Package: firewire-core-modules-6.6.15-powerpc64-di +Package: firewire-core-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: firewire-core-modules -Depends: kernel-image-6.6.15-powerpc64-di, scsi-core-modules-6.6.15-powerpc64-di, crc-modules-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di, scsi-core-modules-6.7.7-powerpc64-di, crc-modules-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: Core FireWire drivers This package contains core FireWire drivers for the kernel. -Package: scsi-core-modules-6.6.15-powerpc64-di +Package: scsi-core-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-core-modules -Depends: kernel-image-6.6.15-powerpc64-di, crc-modules-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di, crc-modules-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: Core SCSI subsystem This package contains the core SCSI subsystem for the kernel. -Package: scsi-modules-6.6.15-powerpc64-di +Package: scsi-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-modules -Depends: kernel-image-6.6.15-powerpc64-di, scsi-core-modules-6.6.15-powerpc64-di, cdrom-core-modules-6.6.15-powerpc64-di, ata-modules-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di, scsi-core-modules-6.7.7-powerpc64-di, cdrom-core-modules-6.7.7-powerpc64-di, ata-modules-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: SCSI drivers This package contains SCSI drivers for the kernel. -Package: scsi-nic-modules-6.6.15-powerpc64-di +Package: scsi-nic-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-nic-modules -Depends: scsi-modules-6.6.15-powerpc64-di, nic-modules-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: scsi-modules-6.7.7-powerpc64-di, nic-modules-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: SCSI drivers for converged NICs This package contains SCSI drivers that depend on net drivers. -Package: loop-modules-6.6.15-powerpc64-di +Package: loop-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: loop-modules -Depends: kernel-image-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: Loopback filesystem support This package contains loopback filesystem support for the kernel. -Package: btrfs-modules-6.6.15-powerpc64-di +Package: btrfs-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: btrfs-modules -Depends: kernel-image-6.6.15-powerpc64-di, crc-modules-6.6.15-powerpc64-di, md-modules-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di, crc-modules-6.7.7-powerpc64-di, md-modules-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: BTRFS filesystem support This package contains the BTRFS filesystem module for the kernel. -Package: ext4-modules-6.6.15-powerpc64-di +Package: ext4-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ext4-modules, ext2-modules, ext3-modules -Depends: kernel-image-6.6.15-powerpc64-di, crc-modules-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di, crc-modules-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: ext2/ext3/ext4 filesystem support This package contains the ext4 filesystem module for the kernel, which also supports ext2 and ext3. -Package: isofs-modules-6.6.15-powerpc64-di +Package: isofs-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: isofs-modules -Depends: kernel-image-6.6.15-powerpc64-di, cdrom-core-modules-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di, cdrom-core-modules-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: ISOFS filesystem support This package contains the ISOFS filesystem module for the kernel. -Package: jfs-modules-6.6.15-powerpc64-di +Package: jfs-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: jfs-modules -Depends: kernel-image-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: JFS filesystem support This package contains the JFS filesystem module for the kernel. -Package: xfs-modules-6.6.15-powerpc64-di +Package: xfs-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: xfs-modules -Depends: kernel-image-6.6.15-powerpc64-di, crc-modules-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di, crc-modules-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: XFS filesystem support This package contains the XFS filesystem module for the kernel. -Package: fat-modules-6.6.15-powerpc64-di +Package: fat-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fat-modules -Depends: kernel-image-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: FAT filesystem support This package contains the FAT and VFAT filesystem modules for the kernel. -Package: hfs-modules-6.6.15-powerpc64-di +Package: hfs-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: hfs-modules -Depends: kernel-image-6.6.15-powerpc64-di, cdrom-core-modules-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di, cdrom-core-modules-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: HFS filesystem support This package contains the HFS and HFS+ filesystem modules for the kernel. -Package: affs-modules-6.6.15-powerpc64-di +Package: affs-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: affs-modules -Depends: kernel-image-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: Amiga filesystem support This package contains the Amiga filesystem module for the kernel. -Package: squashfs-modules-6.6.15-powerpc64-di +Package: squashfs-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: squashfs-modules -Depends: kernel-image-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: squashfs modules This package contains squashfs modules. -Package: udf-modules-6.6.15-powerpc64-di +Package: udf-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: udf-modules -Depends: kernel-image-6.6.15-powerpc64-di, crc-modules-6.6.15-powerpc64-di, cdrom-core-modules-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di, crc-modules-6.7.7-powerpc64-di, cdrom-core-modules-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: UDF modules This package contains the UDF filesystem module. -Package: f2fs-modules-6.6.15-powerpc64-di +Package: f2fs-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: f2fs-modules -Depends: kernel-image-6.6.15-powerpc64-di, crc-modules-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di, crc-modules-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: f2fs filesystem support This package contains the f2fs (Flash-Friendly Filesystem) module. -Package: md-modules-6.6.15-powerpc64-di +Package: md-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: md-modules -Depends: kernel-image-6.6.15-powerpc64-di, crc-modules-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di, crc-modules-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: RAID and LVM support This package contains RAID and LVM modules for the kernel. -Package: multipath-modules-6.6.15-powerpc64-di +Package: multipath-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: multipath-modules -Depends: kernel-image-6.6.15-powerpc64-di, md-modules-6.6.15-powerpc64-di, scsi-core-modules-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di, md-modules-6.7.7-powerpc64-di, scsi-core-modules-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: Multipath support This package contains DM-Multipath modules for the kernel. -Package: usb-modules-6.6.15-powerpc64-di +Package: usb-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-modules -Depends: kernel-image-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: USB support This package contains core USB drivers for the kernel. -Package: usb-storage-modules-6.6.15-powerpc64-di +Package: usb-storage-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-storage-modules -Depends: kernel-image-6.6.15-powerpc64-di, scsi-core-modules-6.6.15-powerpc64-di, usb-modules-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di, scsi-core-modules-6.7.7-powerpc64-di, usb-modules-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: USB storage support This package contains the USB storage driver for the kernel. -Package: pcmcia-storage-modules-6.6.15-powerpc64-di +Package: pcmcia-storage-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: pcmcia-storage-modules -Depends: kernel-image-6.6.15-powerpc64-di, cdrom-core-modules-6.6.15-powerpc64-di, pcmcia-modules-6.6.15-powerpc64-di, ata-modules-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di, cdrom-core-modules-6.7.7-powerpc64-di, pcmcia-modules-6.7.7-powerpc64-di, ata-modules-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: PCMCIA storage drivers This package contains PCMCIA storage drivers for the kernel. -Package: fb-modules-6.6.15-powerpc64-di +Package: fb-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fb-modules -Depends: kernel-image-6.6.15-powerpc64-di, i2c-modules-6.6.15-powerpc64-di, input-modules-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di, i2c-modules-6.7.7-powerpc64-di, input-modules-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: Frame buffer support This package contains Frame buffer drivers for the kernel. -Package: input-modules-6.6.15-powerpc64-di +Package: input-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: input-modules -Depends: kernel-image-6.6.15-powerpc64-di, usb-modules-6.6.15-powerpc64-di, i2c-modules-6.6.15-powerpc64-di, crc-modules-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di, usb-modules-6.7.7-powerpc64-di, i2c-modules-6.7.7-powerpc64-di, crc-modules-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: Input devices support This package contains input device drivers for the kernel. -Package: event-modules-6.6.15-powerpc64-di +Package: event-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: event-modules -Depends: kernel-image-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: Event support This package contains event drivers for the kernel. -Package: mouse-modules-6.6.15-powerpc64-di +Package: mouse-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mouse-modules -Depends: kernel-image-6.6.15-powerpc64-di, event-modules-6.6.15-powerpc64-di, input-modules-6.6.15-powerpc64-di, usb-modules-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di, event-modules-6.7.7-powerpc64-di, input-modules-6.7.7-powerpc64-di, usb-modules-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: Mouse support This package contains mouse drivers for the kernel. -Package: nic-pcmcia-modules-6.6.15-powerpc64-di +Package: nic-pcmcia-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-pcmcia-modules -Depends: kernel-image-6.6.15-powerpc64-di, nic-shared-modules-6.6.15-powerpc64-di, nic-wireless-modules-6.6.15-powerpc64-di, pcmcia-modules-6.6.15-powerpc64-di, mmc-core-modules-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di, nic-shared-modules-6.7.7-powerpc64-di, nic-wireless-modules-6.7.7-powerpc64-di, pcmcia-modules-6.7.7-powerpc64-di, mmc-core-modules-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: Common PCMCIA NIC drivers This package contains common PCMCIA NIC drivers for the kernel. -Package: pcmcia-modules-6.6.15-powerpc64-di +Package: pcmcia-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: pcmcia-modules -Depends: kernel-image-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: Common PCMCIA drivers This package contains common PCMCIA drivers for the kernel. -Package: nic-usb-modules-6.6.15-powerpc64-di +Package: nic-usb-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-usb-modules -Depends: kernel-image-6.6.15-powerpc64-di, nic-shared-modules-6.6.15-powerpc64-di, nic-wireless-modules-6.6.15-powerpc64-di, usb-modules-6.6.15-powerpc64-di, crc-modules-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di, nic-shared-modules-6.7.7-powerpc64-di, nic-wireless-modules-6.7.7-powerpc64-di, usb-modules-6.7.7-powerpc64-di, crc-modules-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: USB NIC drivers This package contains USB network adapter drivers for the kernel. -Package: sata-modules-6.6.15-powerpc64-di +Package: sata-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sata-modules -Depends: kernel-image-6.6.15-powerpc64-di, scsi-core-modules-6.6.15-powerpc64-di, ata-modules-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di, scsi-core-modules-6.7.7-powerpc64-di, ata-modules-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: SATA drivers This package contains SATA drivers for the kernel. -Package: i2c-modules-6.6.15-powerpc64-di +Package: i2c-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: i2c-modules -Depends: kernel-image-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: i2c support modules This package contains basic i2c support modules. -Package: crc-modules-6.6.15-powerpc64-di +Package: crc-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crc-modules -Depends: kernel-image-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: CRC modules This package contains CRC support modules. -Package: crypto-modules-6.6.15-powerpc64-di +Package: crypto-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-modules -Depends: kernel-image-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: crypto modules This package contains crypto modules. -Package: crypto-dm-modules-6.6.15-powerpc64-di +Package: crypto-dm-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-dm-modules -Depends: kernel-image-6.6.15-powerpc64-di, md-modules-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di, md-modules-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: devicemapper crypto module This package contains the devicemapper crypto (dm-crypt) module. -Package: ata-modules-6.6.15-powerpc64-di +Package: ata-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ata-modules -Depends: kernel-image-6.6.15-powerpc64-di, scsi-core-modules-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di, scsi-core-modules-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: ATA disk modules This package contains core ATA disk modules used by both PATA and SATA disk drivers. -Package: mmc-core-modules-6.6.15-powerpc64-di +Package: mmc-core-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mmc-core-modules -Depends: kernel-image-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: MMC/SD/SDIO core modules This package contains core modules for MMC/SD/SDIO support. -Package: nbd-modules-6.6.15-powerpc64-di +Package: nbd-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nbd-modules -Depends: kernel-image-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: Network Block Device modules This package contains the modules required for support of the Network Block Device -Package: uinput-modules-6.6.15-powerpc64-di +Package: uinput-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: uinput-modules -Depends: kernel-image-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: uinput support This package contains the uinput module. -Package: mtd-core-modules-6.6.15-powerpc64-di +Package: mtd-core-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mtd-core-modules -Depends: kernel-image-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: MTD core This package contains the MTD core. -Package: hypervisor-modules-6.6.15-powerpc64-di +Package: hypervisor-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: hypervisor-modules -Depends: kernel-image-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: IBM 64bit hypervisor console modules Contains drivers for the hypervisor console, used as console for linux running in logical partitions of IBM hardware supporting it. -Package: fancontrol-modules-6.6.15-powerpc64-di +Package: fancontrol-modules-6.7.7-powerpc64-di Package-Type: udeb Architecture: powerpc ppc64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fancontrol-modules -Depends: kernel-image-6.6.15-powerpc64-di -Kernel-Version: 6.6.15-powerpc64 +Depends: kernel-image-6.7.7-powerpc64-di +Kernel-Version: 6.7.7-powerpc64 Description: Apple powermac fancontrol modules Contains drivers for macintosh i2c bus as well as for the monitoring devices connected to it. This allows to control the fans during installation. -Package: linux-headers-6.6.15-powerpc64le +Package: linux-headers-6.7.7-powerpc64le Architecture: ppc64el Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Depends: linux-headers-6.6.15-common (= ${source:Version}), linux-image-6.6.15-powerpc64le (= ${binary:Version}) | linux-image-6.6.15-powerpc64le-unsigned (= ${binary:Version}), linux-kbuild-6.6.15, ${misc:Depends}, gcc-13 -Description: Header files for Linux 6.6.15-powerpc64le +Depends: linux-headers-6.7.7-common (= ${source:Version}), linux-image-6.7.7-powerpc64le (= ${binary:Version}) | linux-image-6.7.7-powerpc64le-unsigned (= ${binary:Version}), linux-kbuild-6.7.7, ${misc:Depends}, gcc-13 +Description: Header files for Linux 6.7.7-powerpc64le This package provides the architecture-specific kernel header files for - Linux kernel 6.6.15-powerpc64le, generally used for building out-of-tree + Linux kernel 6.7.7-powerpc64le, generally used for building out-of-tree kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-powerpc64le, and can be used for building + /usr/src/linux-headers-6.7.7-powerpc64le, and can be used for building modules that load into the kernel provided by the - linux-image-6.6.15-powerpc64le package. + linux-image-6.7.7-powerpc64le package. -Package: linux-image-6.6.15-powerpc64le +Package: linux-image-6.7.7-powerpc64le Architecture: ppc64el Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [ppc64el] | linux-initramfs-tool [ppc64el] Recommends: firmware-linux-free, apparmor [ppc64el] -Suggests: linux-doc-6.6, debian-kernel-handbook, mkvmlinuz [ppc64el], grub-ieee1275 [ppc64el] +Suggests: linux-doc-6.7, debian-kernel-handbook, mkvmlinuz [ppc64el], grub-ieee1275 [ppc64el] Breaks: fwupdate (<< 12-7) [ppc64el], wireless-regdb (<< 2019.06.03-1~) [ppc64el], initramfs-tools (<< 0.120+deb8u2) [ppc64el] -Description: Linux 6.6 for Little-endian 64-bit PowerPC - The Linux kernel 6.6 and modules for use on Little-endian 64-bit PowerPC. +Description: Linux 6.7 for Little-endian 64-bit PowerPC + The Linux kernel 6.7 and modules for use on Little-endian 64-bit PowerPC. Package: linux-image-powerpc64le Architecture: ppc64el Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Provides: linux-latest-modules-6.6.15-powerpc64le, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386], linux-image-generic -Depends: linux-image-6.6.15-powerpc64le (= ${binary:Version}), ${misc:Depends} +Provides: linux-latest-modules-6.7.7-powerpc64le, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386], linux-image-generic +Depends: linux-image-6.7.7-powerpc64le (= ${binary:Version}), ${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. @@ -13050,571 +13049,571 @@ Package: linux-headers-powerpc64le Architecture: ppc64el Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> Provides: linux-headers-generic -Depends: linux-headers-6.6.15-powerpc64le (= ${binary:Version}), ${misc:Depends} +Depends: linux-headers-6.7.7-powerpc64le (= ${binary:Version}), ${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-6.6.15-powerpc64le-dbg +Package: linux-image-6.7.7-powerpc64le-dbg Architecture: ppc64el Section: debug Priority: optional Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.quick> Depends: ${misc:Depends} -Description: Debug symbols for linux-image-6.6.15-powerpc64le +Description: Debug symbols for linux-image-6.7.7-powerpc64le This package provides the detached debug symbols for the Linux kernel and - modules in linux-image-6.6.15-powerpc64le. + modules in linux-image-6.7.7-powerpc64le. Package: linux-image-powerpc64le-dbg Architecture: ppc64el Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.nometa !pkg.linux.quick> Provides: linux-latest-image-dbg -Depends: linux-image-6.6.15-powerpc64le-dbg (= ${binary:Version}), ${misc:Depends} +Depends: linux-image-6.7.7-powerpc64le-dbg (= ${binary:Version}), ${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: kernel-image-6.6.15-powerpc64le-di +Package: kernel-image-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: kernel-image -Kernel-Version: 6.6.15-powerpc64le +Kernel-Version: 6.7.7-powerpc64le Description: Linux kernel image and core modules for the Debian installer This package contains the kernel image and core modules for the Debian installer boot images. It does _not_ provide a usable kernel for your full Debian system. -Package: nic-modules-6.6.15-powerpc64le-di +Package: nic-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-modules, nic-extra-modules -Depends: kernel-image-6.6.15-powerpc64le-di, nic-shared-modules-6.6.15-powerpc64le-di, i2c-modules-6.6.15-powerpc64le-di, crc-modules-6.6.15-powerpc64le-di, mtd-core-modules-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: kernel-image-6.7.7-powerpc64le-di, nic-shared-modules-6.7.7-powerpc64le-di, i2c-modules-6.7.7-powerpc64le-di, crc-modules-6.7.7-powerpc64le-di, mtd-core-modules-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: NIC drivers This package contains Ethernet and some paravirtualised network drivers for the kernel. -Package: nic-wireless-modules-6.6.15-powerpc64le-di +Package: nic-wireless-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-wireless-modules -Depends: kernel-image-6.6.15-powerpc64le-di, nic-shared-modules-6.6.15-powerpc64le-di, usb-modules-6.6.15-powerpc64le-di, crc-modules-6.6.15-powerpc64le-di, crypto-modules-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: kernel-image-6.7.7-powerpc64le-di, nic-shared-modules-6.7.7-powerpc64le-di, usb-modules-6.7.7-powerpc64le-di, crc-modules-6.7.7-powerpc64le-di, crypto-modules-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: Wireless NIC drivers This package contains wireless NIC drivers for the kernel. Includes crypto modules only needed for wireless (WEP, WPA). -Package: nic-shared-modules-6.6.15-powerpc64le-di +Package: nic-shared-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-shared-modules -Depends: kernel-image-6.6.15-powerpc64le-di, crc-modules-6.6.15-powerpc64le-di, i2c-modules-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: kernel-image-6.7.7-powerpc64le-di, crc-modules-6.7.7-powerpc64le-di, i2c-modules-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: Shared NIC drivers This package contains NIC drivers needed by combinations of nic-modules, nic-pcmcia-modules, nic-usb-modules and nic-wireless-modules. -Package: serial-modules-6.6.15-powerpc64le-di +Package: serial-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: serial-modules -Depends: kernel-image-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: kernel-image-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: Serial drivers This package contains serial drivers for the kernel. -Package: usb-serial-modules-6.6.15-powerpc64le-di +Package: usb-serial-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-serial-modules -Depends: kernel-image-6.6.15-powerpc64le-di, usb-modules-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: kernel-image-6.7.7-powerpc64le-di, usb-modules-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: USB serial drivers This package contains USB serial drivers for the kernel. -Package: ppp-modules-6.6.15-powerpc64le-di +Package: ppp-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ppp-modules -Depends: kernel-image-6.6.15-powerpc64le-di, serial-modules-6.6.15-powerpc64le-di, crc-modules-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: kernel-image-6.7.7-powerpc64le-di, serial-modules-6.7.7-powerpc64le-di, crc-modules-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: PPP drivers This package contains PPP drivers for the kernel. -Package: cdrom-core-modules-6.6.15-powerpc64le-di +Package: cdrom-core-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: cdrom-core-modules -Depends: kernel-image-6.6.15-powerpc64le-di, scsi-core-modules-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: kernel-image-6.7.7-powerpc64le-di, scsi-core-modules-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: CDROM support This package contains core CDROM support for the kernel. -Package: firewire-core-modules-6.6.15-powerpc64le-di +Package: firewire-core-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: firewire-core-modules -Depends: kernel-image-6.6.15-powerpc64le-di, scsi-core-modules-6.6.15-powerpc64le-di, crc-modules-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: kernel-image-6.7.7-powerpc64le-di, scsi-core-modules-6.7.7-powerpc64le-di, crc-modules-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: Core FireWire drivers This package contains core FireWire drivers for the kernel. -Package: scsi-core-modules-6.6.15-powerpc64le-di +Package: scsi-core-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-core-modules -Depends: kernel-image-6.6.15-powerpc64le-di, crc-modules-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: kernel-image-6.7.7-powerpc64le-di, crc-modules-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: Core SCSI subsystem This package contains the core SCSI subsystem for the kernel. -Package: scsi-modules-6.6.15-powerpc64le-di +Package: scsi-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-modules -Depends: kernel-image-6.6.15-powerpc64le-di, scsi-core-modules-6.6.15-powerpc64le-di, cdrom-core-modules-6.6.15-powerpc64le-di, ata-modules-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: kernel-image-6.7.7-powerpc64le-di, scsi-core-modules-6.7.7-powerpc64le-di, cdrom-core-modules-6.7.7-powerpc64le-di, ata-modules-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: SCSI drivers This package contains SCSI drivers for the kernel. -Package: scsi-nic-modules-6.6.15-powerpc64le-di +Package: scsi-nic-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-nic-modules -Depends: scsi-modules-6.6.15-powerpc64le-di, nic-modules-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: scsi-modules-6.7.7-powerpc64le-di, nic-modules-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: SCSI drivers for converged NICs This package contains SCSI drivers that depend on net drivers. -Package: loop-modules-6.6.15-powerpc64le-di +Package: loop-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: loop-modules -Depends: kernel-image-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: kernel-image-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: Loopback filesystem support This package contains loopback filesystem support for the kernel. -Package: btrfs-modules-6.6.15-powerpc64le-di +Package: btrfs-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: btrfs-modules -Depends: kernel-image-6.6.15-powerpc64le-di, crc-modules-6.6.15-powerpc64le-di, md-modules-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: kernel-image-6.7.7-powerpc64le-di, crc-modules-6.7.7-powerpc64le-di, md-modules-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: BTRFS filesystem support This package contains the BTRFS filesystem module for the kernel. -Package: ext4-modules-6.6.15-powerpc64le-di +Package: ext4-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ext4-modules, ext2-modules, ext3-modules -Depends: kernel-image-6.6.15-powerpc64le-di, crc-modules-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: kernel-image-6.7.7-powerpc64le-di, crc-modules-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: ext2/ext3/ext4 filesystem support This package contains the ext4 filesystem module for the kernel, which also supports ext2 and ext3. -Package: isofs-modules-6.6.15-powerpc64le-di +Package: isofs-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: isofs-modules -Depends: kernel-image-6.6.15-powerpc64le-di, cdrom-core-modules-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: kernel-image-6.7.7-powerpc64le-di, cdrom-core-modules-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: ISOFS filesystem support This package contains the ISOFS filesystem module for the kernel. -Package: jfs-modules-6.6.15-powerpc64le-di +Package: jfs-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: jfs-modules -Depends: kernel-image-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: kernel-image-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: JFS filesystem support This package contains the JFS filesystem module for the kernel. -Package: xfs-modules-6.6.15-powerpc64le-di +Package: xfs-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: xfs-modules -Depends: kernel-image-6.6.15-powerpc64le-di, crc-modules-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: kernel-image-6.7.7-powerpc64le-di, crc-modules-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: XFS filesystem support This package contains the XFS filesystem module for the kernel. -Package: fat-modules-6.6.15-powerpc64le-di +Package: fat-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fat-modules -Depends: kernel-image-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: kernel-image-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: FAT filesystem support This package contains the FAT and VFAT filesystem modules for the kernel. -Package: squashfs-modules-6.6.15-powerpc64le-di +Package: squashfs-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: squashfs-modules -Depends: kernel-image-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: kernel-image-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: squashfs modules This package contains squashfs modules. -Package: udf-modules-6.6.15-powerpc64le-di +Package: udf-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: udf-modules -Depends: kernel-image-6.6.15-powerpc64le-di, crc-modules-6.6.15-powerpc64le-di, cdrom-core-modules-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: kernel-image-6.7.7-powerpc64le-di, crc-modules-6.7.7-powerpc64le-di, cdrom-core-modules-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: UDF modules This package contains the UDF filesystem module. -Package: f2fs-modules-6.6.15-powerpc64le-di +Package: f2fs-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: f2fs-modules -Depends: kernel-image-6.6.15-powerpc64le-di, crc-modules-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: kernel-image-6.7.7-powerpc64le-di, crc-modules-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: f2fs filesystem support This package contains the f2fs (Flash-Friendly Filesystem) module. -Package: md-modules-6.6.15-powerpc64le-di +Package: md-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: md-modules -Depends: kernel-image-6.6.15-powerpc64le-di, crc-modules-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: kernel-image-6.7.7-powerpc64le-di, crc-modules-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: RAID and LVM support This package contains RAID and LVM modules for the kernel. -Package: multipath-modules-6.6.15-powerpc64le-di +Package: multipath-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: multipath-modules -Depends: kernel-image-6.6.15-powerpc64le-di, md-modules-6.6.15-powerpc64le-di, scsi-core-modules-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: kernel-image-6.7.7-powerpc64le-di, md-modules-6.7.7-powerpc64le-di, scsi-core-modules-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: Multipath support This package contains DM-Multipath modules for the kernel. -Package: usb-modules-6.6.15-powerpc64le-di +Package: usb-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-modules -Depends: kernel-image-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: kernel-image-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: USB support This package contains core USB drivers for the kernel. -Package: usb-storage-modules-6.6.15-powerpc64le-di +Package: usb-storage-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-storage-modules -Depends: kernel-image-6.6.15-powerpc64le-di, scsi-core-modules-6.6.15-powerpc64le-di, usb-modules-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: kernel-image-6.7.7-powerpc64le-di, scsi-core-modules-6.7.7-powerpc64le-di, usb-modules-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: USB storage support This package contains the USB storage driver for the kernel. -Package: fb-modules-6.6.15-powerpc64le-di +Package: fb-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fb-modules -Depends: kernel-image-6.6.15-powerpc64le-di, i2c-modules-6.6.15-powerpc64le-di, input-modules-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: kernel-image-6.7.7-powerpc64le-di, i2c-modules-6.7.7-powerpc64le-di, input-modules-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: Frame buffer support This package contains Frame buffer drivers for the kernel. -Package: input-modules-6.6.15-powerpc64le-di +Package: input-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: input-modules -Depends: kernel-image-6.6.15-powerpc64le-di, usb-modules-6.6.15-powerpc64le-di, i2c-modules-6.6.15-powerpc64le-di, crc-modules-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: kernel-image-6.7.7-powerpc64le-di, usb-modules-6.7.7-powerpc64le-di, i2c-modules-6.7.7-powerpc64le-di, crc-modules-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: Input devices support This package contains input device drivers for the kernel. -Package: event-modules-6.6.15-powerpc64le-di +Package: event-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: event-modules -Depends: kernel-image-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: kernel-image-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: Event support This package contains event drivers for the kernel. -Package: mouse-modules-6.6.15-powerpc64le-di +Package: mouse-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mouse-modules -Depends: kernel-image-6.6.15-powerpc64le-di, event-modules-6.6.15-powerpc64le-di, input-modules-6.6.15-powerpc64le-di, usb-modules-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: kernel-image-6.7.7-powerpc64le-di, event-modules-6.7.7-powerpc64le-di, input-modules-6.7.7-powerpc64le-di, usb-modules-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: Mouse support This package contains mouse drivers for the kernel. -Package: nic-usb-modules-6.6.15-powerpc64le-di +Package: nic-usb-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-usb-modules -Depends: kernel-image-6.6.15-powerpc64le-di, nic-shared-modules-6.6.15-powerpc64le-di, nic-wireless-modules-6.6.15-powerpc64le-di, usb-modules-6.6.15-powerpc64le-di, crc-modules-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: kernel-image-6.7.7-powerpc64le-di, nic-shared-modules-6.7.7-powerpc64le-di, nic-wireless-modules-6.7.7-powerpc64le-di, usb-modules-6.7.7-powerpc64le-di, crc-modules-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: USB NIC drivers This package contains USB network adapter drivers for the kernel. -Package: sata-modules-6.6.15-powerpc64le-di +Package: sata-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sata-modules -Depends: kernel-image-6.6.15-powerpc64le-di, scsi-core-modules-6.6.15-powerpc64le-di, ata-modules-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: kernel-image-6.7.7-powerpc64le-di, scsi-core-modules-6.7.7-powerpc64le-di, ata-modules-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: SATA drivers This package contains SATA drivers for the kernel. -Package: i2c-modules-6.6.15-powerpc64le-di +Package: i2c-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: i2c-modules -Depends: kernel-image-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: kernel-image-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: i2c support modules This package contains basic i2c support modules. -Package: crc-modules-6.6.15-powerpc64le-di +Package: crc-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crc-modules -Depends: kernel-image-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: kernel-image-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: CRC modules This package contains CRC support modules. -Package: crypto-modules-6.6.15-powerpc64le-di +Package: crypto-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-modules -Depends: kernel-image-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: kernel-image-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: crypto modules This package contains crypto modules. -Package: crypto-dm-modules-6.6.15-powerpc64le-di +Package: crypto-dm-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-dm-modules -Depends: kernel-image-6.6.15-powerpc64le-di, md-modules-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: kernel-image-6.7.7-powerpc64le-di, md-modules-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: devicemapper crypto module This package contains the devicemapper crypto (dm-crypt) module. -Package: ata-modules-6.6.15-powerpc64le-di +Package: ata-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ata-modules -Depends: kernel-image-6.6.15-powerpc64le-di, scsi-core-modules-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: kernel-image-6.7.7-powerpc64le-di, scsi-core-modules-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: ATA disk modules This package contains core ATA disk modules used by both PATA and SATA disk drivers. -Package: nbd-modules-6.6.15-powerpc64le-di +Package: nbd-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nbd-modules -Depends: kernel-image-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: kernel-image-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: Network Block Device modules This package contains the modules required for support of the Network Block Device -Package: uinput-modules-6.6.15-powerpc64le-di +Package: uinput-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: uinput-modules -Depends: kernel-image-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: kernel-image-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: uinput support This package contains the uinput module. -Package: mtd-core-modules-6.6.15-powerpc64le-di +Package: mtd-core-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mtd-core-modules -Depends: kernel-image-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: kernel-image-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: MTD core This package contains the MTD core. -Package: hypervisor-modules-6.6.15-powerpc64le-di +Package: hypervisor-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: hypervisor-modules -Depends: kernel-image-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: kernel-image-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: IBM 64bit hypervisor console modules Contains drivers for the hypervisor console, used as console for linux running in logical partitions of IBM hardware supporting it. -Package: fancontrol-modules-6.6.15-powerpc64le-di +Package: fancontrol-modules-6.7.7-powerpc64le-di Package-Type: udeb Architecture: ppc64el Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fancontrol-modules -Depends: kernel-image-6.6.15-powerpc64le-di -Kernel-Version: 6.6.15-powerpc64le +Depends: kernel-image-6.7.7-powerpc64le-di +Kernel-Version: 6.7.7-powerpc64le Description: Apple powermac fancontrol modules Contains drivers for macintosh i2c bus as well as for the monitoring devices connected to it. This allows to control the fans during installation. -Package: linux-headers-6.6.15-riscv64 +Package: linux-headers-6.7.7-riscv64 Architecture: riscv64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Depends: linux-headers-6.6.15-common (= ${source:Version}), linux-image-6.6.15-riscv64 (= ${binary:Version}) | linux-image-6.6.15-riscv64-unsigned (= ${binary:Version}), linux-kbuild-6.6.15, ${misc:Depends}, gcc-13 -Description: Header files for Linux 6.6.15-riscv64 +Depends: linux-headers-6.7.7-common (= ${source:Version}), linux-image-6.7.7-riscv64 (= ${binary:Version}) | linux-image-6.7.7-riscv64-unsigned (= ${binary:Version}), linux-kbuild-6.7.7, ${misc:Depends}, gcc-13 +Description: Header files for Linux 6.7.7-riscv64 This package provides the architecture-specific kernel header files for - Linux kernel 6.6.15-riscv64, generally used for building out-of-tree - kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-riscv64, and can be used for building - modules that load into the kernel provided by the - linux-image-6.6.15-riscv64 package. + Linux kernel 6.7.7-riscv64, generally used for building out-of-tree kernel + modules. These files are going to be installed into + /usr/src/linux-headers-6.7.7-riscv64, and can be used for building modules + that load into the kernel provided by the linux-image-6.7.7-riscv64 + package. -Package: linux-image-6.6.15-riscv64 +Package: linux-image-6.7.7-riscv64 Architecture: riscv64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [riscv64] | linux-initramfs-tool [riscv64] Recommends: firmware-linux-free, apparmor [riscv64] -Suggests: linux-doc-6.6, debian-kernel-handbook +Suggests: linux-doc-6.7, debian-kernel-handbook Breaks: fwupdate (<< 12-7) [riscv64], wireless-regdb (<< 2019.06.03-1~) [riscv64], initramfs-tools (<< 0.120+deb8u2) [riscv64] -Description: Linux 6.6 for 64-bit RISC-V platforms - The Linux kernel 6.6 and modules for use on 64-bit RISC-V platforms. +Description: Linux 6.7 for 64-bit RISC-V platforms + The Linux kernel 6.7 and modules for use on 64-bit RISC-V platforms. Package: linux-image-riscv64 Architecture: riscv64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Provides: linux-latest-modules-6.6.15-riscv64, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386], linux-image-generic -Depends: linux-image-6.6.15-riscv64 (= ${binary:Version}), ${misc:Depends} +Provides: linux-latest-modules-6.7.7-riscv64, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386], linux-image-generic +Depends: linux-image-6.7.7-riscv64 (= ${binary:Version}), ${misc:Depends} Description: Linux for 64-bit RISC-V platforms (meta-package) This package depends on the latest Linux kernel and modules for use on 64-bit RISC-V platforms. @@ -13623,533 +13622,556 @@ Package: linux-headers-riscv64 Architecture: riscv64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> Provides: linux-headers-generic -Depends: linux-headers-6.6.15-riscv64 (= ${binary:Version}), ${misc:Depends} +Depends: linux-headers-6.7.7-riscv64 (= ${binary:Version}), ${misc:Depends} Description: Header files for Linux riscv64 configuration (meta-package) This package depends on the architecture-specific header files for the latest Linux kernel riscv64 configuration. -Package: linux-image-6.6.15-riscv64-dbg +Package: linux-image-6.7.7-riscv64-dbg Architecture: riscv64 Section: debug Priority: optional Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.quick> Depends: ${misc:Depends} -Description: Debug symbols for linux-image-6.6.15-riscv64 +Description: Debug symbols for linux-image-6.7.7-riscv64 This package provides the detached debug symbols for the Linux kernel and - modules in linux-image-6.6.15-riscv64. + modules in linux-image-6.7.7-riscv64. Package: linux-image-riscv64-dbg Architecture: riscv64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.nometa !pkg.linux.quick> Provides: linux-latest-image-dbg -Depends: linux-image-6.6.15-riscv64-dbg (= ${binary:Version}), ${misc:Depends} +Depends: linux-image-6.7.7-riscv64-dbg (= ${binary:Version}), ${misc:Depends} Description: Debugging symbols for Linux riscv64 configuration (meta-package) This package depends on the detached debugging symbols for the latest Linux kernel riscv64 configuration. -Package: kernel-image-6.6.15-riscv64-di +Package: kernel-image-6.7.7-riscv64-di Package-Type: udeb Architecture: riscv64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: kernel-image -Kernel-Version: 6.6.15-riscv64 +Kernel-Version: 6.7.7-riscv64 Description: Linux kernel image and core modules for the Debian installer This package contains the kernel image and core modules for the Debian installer boot images. It does _not_ provide a usable kernel for your full Debian system. -Package: nic-modules-6.6.15-riscv64-di +Package: nic-modules-6.7.7-riscv64-di Package-Type: udeb Architecture: riscv64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-modules, nic-extra-modules -Depends: kernel-image-6.6.15-riscv64-di, nic-shared-modules-6.6.15-riscv64-di, i2c-modules-6.6.15-riscv64-di, crc-modules-6.6.15-riscv64-di, mtd-core-modules-6.6.15-riscv64-di -Kernel-Version: 6.6.15-riscv64 +Depends: kernel-image-6.7.7-riscv64-di, nic-shared-modules-6.7.7-riscv64-di, i2c-modules-6.7.7-riscv64-di, crc-modules-6.7.7-riscv64-di, mtd-core-modules-6.7.7-riscv64-di +Kernel-Version: 6.7.7-riscv64 Description: NIC drivers This package contains Ethernet and some paravirtualised network drivers for the kernel. -Package: nic-wireless-modules-6.6.15-riscv64-di +Package: nic-wireless-modules-6.7.7-riscv64-di Package-Type: udeb Architecture: riscv64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-wireless-modules -Depends: kernel-image-6.6.15-riscv64-di, nic-shared-modules-6.6.15-riscv64-di, usb-modules-6.6.15-riscv64-di, mmc-core-modules-6.6.15-riscv64-di, crc-modules-6.6.15-riscv64-di, crypto-modules-6.6.15-riscv64-di -Kernel-Version: 6.6.15-riscv64 +Depends: kernel-image-6.7.7-riscv64-di, nic-shared-modules-6.7.7-riscv64-di, usb-modules-6.7.7-riscv64-di, mmc-core-modules-6.7.7-riscv64-di, crc-modules-6.7.7-riscv64-di, crypto-modules-6.7.7-riscv64-di +Kernel-Version: 6.7.7-riscv64 Description: Wireless NIC drivers This package contains wireless NIC drivers for the kernel. Includes crypto modules only needed for wireless (WEP, WPA). -Package: nic-shared-modules-6.6.15-riscv64-di +Package: nic-shared-modules-6.7.7-riscv64-di Package-Type: udeb Architecture: riscv64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-shared-modules -Depends: kernel-image-6.6.15-riscv64-di, crc-modules-6.6.15-riscv64-di, i2c-modules-6.6.15-riscv64-di -Kernel-Version: 6.6.15-riscv64 +Depends: kernel-image-6.7.7-riscv64-di, crc-modules-6.7.7-riscv64-di, i2c-modules-6.7.7-riscv64-di +Kernel-Version: 6.7.7-riscv64 Description: Shared NIC drivers This package contains NIC drivers needed by combinations of nic-modules, nic-pcmcia-modules, nic-usb-modules and nic-wireless-modules. -Package: usb-serial-modules-6.6.15-riscv64-di +Package: usb-serial-modules-6.7.7-riscv64-di Package-Type: udeb Architecture: riscv64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-serial-modules -Depends: kernel-image-6.6.15-riscv64-di, usb-modules-6.6.15-riscv64-di -Kernel-Version: 6.6.15-riscv64 +Depends: kernel-image-6.7.7-riscv64-di, usb-modules-6.7.7-riscv64-di +Kernel-Version: 6.7.7-riscv64 Description: USB serial drivers This package contains USB serial drivers for the kernel. -Package: ppp-modules-6.6.15-riscv64-di +Package: ppp-modules-6.7.7-riscv64-di Package-Type: udeb Architecture: riscv64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ppp-modules -Depends: kernel-image-6.6.15-riscv64-di, crc-modules-6.6.15-riscv64-di -Kernel-Version: 6.6.15-riscv64 +Depends: kernel-image-6.7.7-riscv64-di, crc-modules-6.7.7-riscv64-di +Kernel-Version: 6.7.7-riscv64 Description: PPP drivers This package contains PPP drivers for the kernel. -Package: pata-modules-6.6.15-riscv64-di +Package: pata-modules-6.7.7-riscv64-di Package-Type: udeb Architecture: riscv64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: pata-modules -Depends: kernel-image-6.6.15-riscv64-di, ata-modules-6.6.15-riscv64-di -Kernel-Version: 6.6.15-riscv64 +Depends: kernel-image-6.7.7-riscv64-di, ata-modules-6.7.7-riscv64-di +Kernel-Version: 6.7.7-riscv64 Description: PATA drivers This package contains PATA drivers for the kernel. -Package: cdrom-core-modules-6.6.15-riscv64-di +Package: cdrom-core-modules-6.7.7-riscv64-di Package-Type: udeb Architecture: riscv64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: cdrom-core-modules -Depends: kernel-image-6.6.15-riscv64-di, scsi-core-modules-6.6.15-riscv64-di -Kernel-Version: 6.6.15-riscv64 +Depends: kernel-image-6.7.7-riscv64-di, scsi-core-modules-6.7.7-riscv64-di +Kernel-Version: 6.7.7-riscv64 Description: CDROM support This package contains core CDROM support for the kernel. -Package: scsi-core-modules-6.6.15-riscv64-di +Package: scsi-core-modules-6.7.7-riscv64-di Package-Type: udeb Architecture: riscv64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-core-modules -Depends: kernel-image-6.6.15-riscv64-di, crc-modules-6.6.15-riscv64-di -Kernel-Version: 6.6.15-riscv64 +Depends: kernel-image-6.7.7-riscv64-di, crc-modules-6.7.7-riscv64-di +Kernel-Version: 6.7.7-riscv64 Description: Core SCSI subsystem This package contains the core SCSI subsystem for the kernel. -Package: scsi-modules-6.6.15-riscv64-di +Package: scsi-modules-6.7.7-riscv64-di Package-Type: udeb Architecture: riscv64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-modules -Depends: kernel-image-6.6.15-riscv64-di, scsi-core-modules-6.6.15-riscv64-di, cdrom-core-modules-6.6.15-riscv64-di, ata-modules-6.6.15-riscv64-di -Kernel-Version: 6.6.15-riscv64 +Depends: kernel-image-6.7.7-riscv64-di, scsi-core-modules-6.7.7-riscv64-di, cdrom-core-modules-6.7.7-riscv64-di, ata-modules-6.7.7-riscv64-di +Kernel-Version: 6.7.7-riscv64 Description: SCSI drivers This package contains SCSI drivers for the kernel. -Package: scsi-nic-modules-6.6.15-riscv64-di +Package: scsi-nic-modules-6.7.7-riscv64-di Package-Type: udeb Architecture: riscv64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-nic-modules -Depends: scsi-modules-6.6.15-riscv64-di, nic-modules-6.6.15-riscv64-di -Kernel-Version: 6.6.15-riscv64 +Depends: scsi-modules-6.7.7-riscv64-di, nic-modules-6.7.7-riscv64-di +Kernel-Version: 6.7.7-riscv64 Description: SCSI drivers for converged NICs This package contains SCSI drivers that depend on net drivers. -Package: loop-modules-6.6.15-riscv64-di +Package: loop-modules-6.7.7-riscv64-di Package-Type: udeb Architecture: riscv64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: loop-modules -Depends: kernel-image-6.6.15-riscv64-di -Kernel-Version: 6.6.15-riscv64 +Depends: kernel-image-6.7.7-riscv64-di +Kernel-Version: 6.7.7-riscv64 Description: Loopback filesystem support This package contains loopback filesystem support for the kernel. -Package: btrfs-modules-6.6.15-riscv64-di +Package: btrfs-modules-6.7.7-riscv64-di Package-Type: udeb Architecture: riscv64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: btrfs-modules -Depends: kernel-image-6.6.15-riscv64-di, crc-modules-6.6.15-riscv64-di, md-modules-6.6.15-riscv64-di -Kernel-Version: 6.6.15-riscv64 +Depends: kernel-image-6.7.7-riscv64-di, crc-modules-6.7.7-riscv64-di, md-modules-6.7.7-riscv64-di +Kernel-Version: 6.7.7-riscv64 Description: BTRFS filesystem support This package contains the BTRFS filesystem module for the kernel. -Package: ext4-modules-6.6.15-riscv64-di +Package: ext4-modules-6.7.7-riscv64-di Package-Type: udeb Architecture: riscv64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ext4-modules, ext2-modules, ext3-modules -Depends: kernel-image-6.6.15-riscv64-di, crc-modules-6.6.15-riscv64-di -Kernel-Version: 6.6.15-riscv64 +Depends: kernel-image-6.7.7-riscv64-di, crc-modules-6.7.7-riscv64-di +Kernel-Version: 6.7.7-riscv64 Description: ext2/ext3/ext4 filesystem support This package contains the ext4 filesystem module for the kernel, which also supports ext2 and ext3. -Package: isofs-modules-6.6.15-riscv64-di +Package: isofs-modules-6.7.7-riscv64-di Package-Type: udeb Architecture: riscv64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: isofs-modules -Depends: kernel-image-6.6.15-riscv64-di, cdrom-core-modules-6.6.15-riscv64-di -Kernel-Version: 6.6.15-riscv64 +Depends: kernel-image-6.7.7-riscv64-di, cdrom-core-modules-6.7.7-riscv64-di +Kernel-Version: 6.7.7-riscv64 Description: ISOFS filesystem support This package contains the ISOFS filesystem module for the kernel. -Package: jfs-modules-6.6.15-riscv64-di +Package: jfs-modules-6.7.7-riscv64-di Package-Type: udeb Architecture: riscv64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: jfs-modules -Depends: kernel-image-6.6.15-riscv64-di -Kernel-Version: 6.6.15-riscv64 +Depends: kernel-image-6.7.7-riscv64-di +Kernel-Version: 6.7.7-riscv64 Description: JFS filesystem support This package contains the JFS filesystem module for the kernel. -Package: fat-modules-6.6.15-riscv64-di +Package: xfs-modules-6.7.7-riscv64-di +Package-Type: udeb +Architecture: riscv64 +Section: debian-installer +Priority: standard +Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> +Provides: xfs-modules +Depends: kernel-image-6.7.7-riscv64-di, crc-modules-6.7.7-riscv64-di +Kernel-Version: 6.7.7-riscv64 +Description: XFS filesystem support + This package contains the XFS filesystem module for the kernel. + +Package: fat-modules-6.7.7-riscv64-di Package-Type: udeb Architecture: riscv64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fat-modules -Depends: kernel-image-6.6.15-riscv64-di -Kernel-Version: 6.6.15-riscv64 +Depends: kernel-image-6.7.7-riscv64-di +Kernel-Version: 6.7.7-riscv64 Description: FAT filesystem support This package contains the FAT and VFAT filesystem modules for the kernel. -Package: squashfs-modules-6.6.15-riscv64-di +Package: squashfs-modules-6.7.7-riscv64-di Package-Type: udeb Architecture: riscv64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: squashfs-modules -Depends: kernel-image-6.6.15-riscv64-di -Kernel-Version: 6.6.15-riscv64 +Depends: kernel-image-6.7.7-riscv64-di +Kernel-Version: 6.7.7-riscv64 Description: squashfs modules This package contains squashfs modules. -Package: udf-modules-6.6.15-riscv64-di +Package: udf-modules-6.7.7-riscv64-di Package-Type: udeb Architecture: riscv64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: udf-modules -Depends: kernel-image-6.6.15-riscv64-di, crc-modules-6.6.15-riscv64-di, cdrom-core-modules-6.6.15-riscv64-di -Kernel-Version: 6.6.15-riscv64 +Depends: kernel-image-6.7.7-riscv64-di, crc-modules-6.7.7-riscv64-di, cdrom-core-modules-6.7.7-riscv64-di +Kernel-Version: 6.7.7-riscv64 Description: UDF modules This package contains the UDF filesystem module. -Package: f2fs-modules-6.6.15-riscv64-di +Package: f2fs-modules-6.7.7-riscv64-di Package-Type: udeb Architecture: riscv64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: f2fs-modules -Depends: kernel-image-6.6.15-riscv64-di, crc-modules-6.6.15-riscv64-di -Kernel-Version: 6.6.15-riscv64 +Depends: kernel-image-6.7.7-riscv64-di, crc-modules-6.7.7-riscv64-di +Kernel-Version: 6.7.7-riscv64 Description: f2fs filesystem support This package contains the f2fs (Flash-Friendly Filesystem) module. -Package: md-modules-6.6.15-riscv64-di +Package: md-modules-6.7.7-riscv64-di Package-Type: udeb Architecture: riscv64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: md-modules -Depends: kernel-image-6.6.15-riscv64-di, crc-modules-6.6.15-riscv64-di -Kernel-Version: 6.6.15-riscv64 +Depends: kernel-image-6.7.7-riscv64-di, crc-modules-6.7.7-riscv64-di +Kernel-Version: 6.7.7-riscv64 Description: RAID and LVM support This package contains RAID and LVM modules for the kernel. -Package: multipath-modules-6.6.15-riscv64-di +Package: multipath-modules-6.7.7-riscv64-di Package-Type: udeb Architecture: riscv64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: multipath-modules -Depends: kernel-image-6.6.15-riscv64-di, md-modules-6.6.15-riscv64-di, scsi-core-modules-6.6.15-riscv64-di -Kernel-Version: 6.6.15-riscv64 +Depends: kernel-image-6.7.7-riscv64-di, md-modules-6.7.7-riscv64-di, scsi-core-modules-6.7.7-riscv64-di +Kernel-Version: 6.7.7-riscv64 Description: Multipath support This package contains DM-Multipath modules for the kernel. -Package: usb-modules-6.6.15-riscv64-di +Package: usb-modules-6.7.7-riscv64-di Package-Type: udeb Architecture: riscv64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-modules -Depends: kernel-image-6.6.15-riscv64-di -Kernel-Version: 6.6.15-riscv64 +Depends: kernel-image-6.7.7-riscv64-di +Kernel-Version: 6.7.7-riscv64 Description: USB support This package contains core USB drivers for the kernel. -Package: usb-storage-modules-6.6.15-riscv64-di +Package: usb-storage-modules-6.7.7-riscv64-di Package-Type: udeb Architecture: riscv64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-storage-modules -Depends: kernel-image-6.6.15-riscv64-di, scsi-core-modules-6.6.15-riscv64-di, usb-modules-6.6.15-riscv64-di -Kernel-Version: 6.6.15-riscv64 +Depends: kernel-image-6.7.7-riscv64-di, scsi-core-modules-6.7.7-riscv64-di, usb-modules-6.7.7-riscv64-di +Kernel-Version: 6.7.7-riscv64 Description: USB storage support This package contains the USB storage driver for the kernel. -Package: fb-modules-6.6.15-riscv64-di +Package: fb-modules-6.7.7-riscv64-di Package-Type: udeb Architecture: riscv64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fb-modules -Depends: kernel-image-6.6.15-riscv64-di, i2c-modules-6.6.15-riscv64-di, input-modules-6.6.15-riscv64-di -Kernel-Version: 6.6.15-riscv64 +Depends: kernel-image-6.7.7-riscv64-di, i2c-modules-6.7.7-riscv64-di, input-modules-6.7.7-riscv64-di +Kernel-Version: 6.7.7-riscv64 Description: Frame buffer support This package contains Frame buffer drivers for the kernel. -Package: input-modules-6.6.15-riscv64-di +Package: input-modules-6.7.7-riscv64-di Package-Type: udeb Architecture: riscv64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: input-modules -Depends: kernel-image-6.6.15-riscv64-di, usb-modules-6.6.15-riscv64-di, i2c-modules-6.6.15-riscv64-di, crc-modules-6.6.15-riscv64-di -Kernel-Version: 6.6.15-riscv64 +Depends: kernel-image-6.7.7-riscv64-di, usb-modules-6.7.7-riscv64-di, i2c-modules-6.7.7-riscv64-di, crc-modules-6.7.7-riscv64-di +Kernel-Version: 6.7.7-riscv64 Description: Input devices support This package contains input device drivers for the kernel. -Package: event-modules-6.6.15-riscv64-di +Package: event-modules-6.7.7-riscv64-di Package-Type: udeb Architecture: riscv64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: event-modules -Depends: kernel-image-6.6.15-riscv64-di -Kernel-Version: 6.6.15-riscv64 +Depends: kernel-image-6.7.7-riscv64-di +Kernel-Version: 6.7.7-riscv64 Description: Event support This package contains event drivers for the kernel. -Package: nic-usb-modules-6.6.15-riscv64-di +Package: nic-usb-modules-6.7.7-riscv64-di Package-Type: udeb Architecture: riscv64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-usb-modules -Depends: kernel-image-6.6.15-riscv64-di, nic-shared-modules-6.6.15-riscv64-di, nic-wireless-modules-6.6.15-riscv64-di, usb-modules-6.6.15-riscv64-di, crc-modules-6.6.15-riscv64-di -Kernel-Version: 6.6.15-riscv64 +Depends: kernel-image-6.7.7-riscv64-di, nic-shared-modules-6.7.7-riscv64-di, nic-wireless-modules-6.7.7-riscv64-di, usb-modules-6.7.7-riscv64-di, crc-modules-6.7.7-riscv64-di +Kernel-Version: 6.7.7-riscv64 Description: USB NIC drivers This package contains USB network adapter drivers for the kernel. -Package: sata-modules-6.6.15-riscv64-di +Package: sata-modules-6.7.7-riscv64-di Package-Type: udeb Architecture: riscv64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sata-modules -Depends: kernel-image-6.6.15-riscv64-di, scsi-core-modules-6.6.15-riscv64-di, ata-modules-6.6.15-riscv64-di -Kernel-Version: 6.6.15-riscv64 +Depends: kernel-image-6.7.7-riscv64-di, scsi-core-modules-6.7.7-riscv64-di, ata-modules-6.7.7-riscv64-di +Kernel-Version: 6.7.7-riscv64 Description: SATA drivers This package contains SATA drivers for the kernel. -Package: i2c-modules-6.6.15-riscv64-di +Package: i2c-modules-6.7.7-riscv64-di Package-Type: udeb Architecture: riscv64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: i2c-modules -Depends: kernel-image-6.6.15-riscv64-di -Kernel-Version: 6.6.15-riscv64 +Depends: kernel-image-6.7.7-riscv64-di +Kernel-Version: 6.7.7-riscv64 Description: i2c support modules This package contains basic i2c support modules. -Package: crc-modules-6.6.15-riscv64-di +Package: crc-modules-6.7.7-riscv64-di Package-Type: udeb Architecture: riscv64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crc-modules -Depends: kernel-image-6.6.15-riscv64-di -Kernel-Version: 6.6.15-riscv64 +Depends: kernel-image-6.7.7-riscv64-di +Kernel-Version: 6.7.7-riscv64 Description: CRC modules This package contains CRC support modules. -Package: crypto-modules-6.6.15-riscv64-di +Package: crypto-modules-6.7.7-riscv64-di Package-Type: udeb Architecture: riscv64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-modules -Depends: kernel-image-6.6.15-riscv64-di -Kernel-Version: 6.6.15-riscv64 +Depends: kernel-image-6.7.7-riscv64-di +Kernel-Version: 6.7.7-riscv64 Description: crypto modules This package contains crypto modules. -Package: crypto-dm-modules-6.6.15-riscv64-di +Package: crypto-dm-modules-6.7.7-riscv64-di Package-Type: udeb Architecture: riscv64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-dm-modules -Depends: kernel-image-6.6.15-riscv64-di, md-modules-6.6.15-riscv64-di -Kernel-Version: 6.6.15-riscv64 +Depends: kernel-image-6.7.7-riscv64-di, md-modules-6.7.7-riscv64-di +Kernel-Version: 6.7.7-riscv64 Description: devicemapper crypto module This package contains the devicemapper crypto (dm-crypt) module. -Package: ata-modules-6.6.15-riscv64-di +Package: efi-modules-6.7.7-riscv64-di +Package-Type: udeb +Architecture: riscv64 +Section: debian-installer +Priority: optional +Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> +Provides: efi-modules +Depends: kernel-image-6.7.7-riscv64-di +Kernel-Version: 6.7.7-riscv64 +Description: EFI modules + This package contains EFI modules. + +Package: ata-modules-6.7.7-riscv64-di Package-Type: udeb Architecture: riscv64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ata-modules -Depends: kernel-image-6.6.15-riscv64-di, scsi-core-modules-6.6.15-riscv64-di -Kernel-Version: 6.6.15-riscv64 +Depends: kernel-image-6.7.7-riscv64-di, scsi-core-modules-6.7.7-riscv64-di +Kernel-Version: 6.7.7-riscv64 Description: ATA disk modules This package contains core ATA disk modules used by both PATA and SATA disk drivers. -Package: mmc-core-modules-6.6.15-riscv64-di +Package: mmc-core-modules-6.7.7-riscv64-di Package-Type: udeb Architecture: riscv64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mmc-core-modules -Depends: kernel-image-6.6.15-riscv64-di -Kernel-Version: 6.6.15-riscv64 +Depends: kernel-image-6.7.7-riscv64-di +Kernel-Version: 6.7.7-riscv64 Description: MMC/SD/SDIO core modules This package contains core modules for MMC/SD/SDIO support. -Package: mmc-modules-6.6.15-riscv64-di +Package: mmc-modules-6.7.7-riscv64-di Package-Type: udeb Architecture: riscv64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mmc-modules -Depends: kernel-image-6.6.15-riscv64-di, mmc-core-modules-6.6.15-riscv64-di, usb-modules-6.6.15-riscv64-di, crc-modules-6.6.15-riscv64-di -Kernel-Version: 6.6.15-riscv64 +Depends: kernel-image-6.7.7-riscv64-di, mmc-core-modules-6.7.7-riscv64-di, usb-modules-6.7.7-riscv64-di, crc-modules-6.7.7-riscv64-di +Kernel-Version: 6.7.7-riscv64 Description: MMC/SD card modules This package contains modules needed to support MMC (multimedia) and SD cards. -Package: nbd-modules-6.6.15-riscv64-di +Package: nbd-modules-6.7.7-riscv64-di Package-Type: udeb Architecture: riscv64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nbd-modules -Depends: kernel-image-6.6.15-riscv64-di -Kernel-Version: 6.6.15-riscv64 +Depends: kernel-image-6.7.7-riscv64-di +Kernel-Version: 6.7.7-riscv64 Description: Network Block Device modules This package contains the modules required for support of the Network Block Device -Package: mtd-modules-6.6.15-riscv64-di +Package: mtd-modules-6.7.7-riscv64-di Package-Type: udeb Architecture: riscv64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mtd-modules -Depends: kernel-image-6.6.15-riscv64-di, mtd-core-modules-6.6.15-riscv64-di -Kernel-Version: 6.6.15-riscv64 +Depends: kernel-image-6.7.7-riscv64-di, mtd-core-modules-6.7.7-riscv64-di +Kernel-Version: 6.7.7-riscv64 Description: MTD driver modules This package contains MTD driver modules. -Package: mtd-core-modules-6.6.15-riscv64-di +Package: mtd-core-modules-6.7.7-riscv64-di Package-Type: udeb Architecture: riscv64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mtd-core-modules -Depends: kernel-image-6.6.15-riscv64-di -Kernel-Version: 6.6.15-riscv64 +Depends: kernel-image-6.7.7-riscv64-di +Kernel-Version: 6.7.7-riscv64 Description: MTD core This package contains the MTD core. -Package: linux-headers-6.6.15-s390x +Package: linux-headers-6.7.7-s390x Architecture: s390x Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Depends: linux-headers-6.6.15-common (= ${source:Version}), linux-image-6.6.15-s390x (= ${binary:Version}) | linux-image-6.6.15-s390x-unsigned (= ${binary:Version}), linux-kbuild-6.6.15, ${misc:Depends}, gcc-13 -Description: Header files for Linux 6.6.15-s390x +Depends: linux-headers-6.7.7-common (= ${source:Version}), linux-image-6.7.7-s390x (= ${binary:Version}) | linux-image-6.7.7-s390x-unsigned (= ${binary:Version}), linux-kbuild-6.7.7, ${misc:Depends}, gcc-13 +Description: Header files for Linux 6.7.7-s390x This package provides the architecture-specific kernel header files for - Linux kernel 6.6.15-s390x, generally used for building out-of-tree kernel + Linux kernel 6.7.7-s390x, generally used for building out-of-tree kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-s390x, and can be used for building modules - that load into the kernel provided by the linux-image-6.6.15-s390x - package. + /usr/src/linux-headers-6.7.7-s390x, and can be used for building modules + that load into the kernel provided by the linux-image-6.7.7-s390x package. -Package: linux-image-6.6.15-s390x +Package: linux-image-6.7.7-s390x Architecture: s390x Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [s390x] | linux-initramfs-tool [s390x] Recommends: firmware-linux-free, apparmor [s390x] -Suggests: linux-doc-6.6, debian-kernel-handbook, s390-tools [s390x] +Suggests: linux-doc-6.7, debian-kernel-handbook, s390-tools [s390x] Breaks: fwupdate (<< 12-7) [s390x], wireless-regdb (<< 2019.06.03-1~) [s390x], initramfs-tools (<< 0.120+deb8u2) [s390x] -Description: Linux 6.6 for IBM zSeries - The Linux kernel 6.6 and modules for use on IBM zSeries. +Description: Linux 6.7 for IBM zSeries + The Linux kernel 6.7 and modules for use on IBM zSeries. Package: linux-image-s390x Architecture: s390x Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Provides: linux-latest-modules-6.6.15-s390x, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386], linux-image-generic -Depends: linux-image-6.6.15-s390x (= ${binary:Version}), ${misc:Depends} +Provides: linux-latest-modules-6.7.7-s390x, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386], linux-image-generic +Depends: linux-image-6.7.7-s390x (= ${binary:Version}), ${misc:Depends} Description: Linux for IBM zSeries (meta-package) This package depends on the latest Linux kernel and modules for use on IBM zSeries. @@ -14158,328 +14180,328 @@ Package: linux-headers-s390x Architecture: s390x Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> Provides: linux-headers-generic -Depends: linux-headers-6.6.15-s390x (= ${binary:Version}), ${misc:Depends} +Depends: linux-headers-6.7.7-s390x (= ${binary:Version}), ${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-6.6.15-s390x-dbg +Package: linux-image-6.7.7-s390x-dbg Architecture: s390x Section: debug Priority: optional Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.quick> Depends: ${misc:Depends} -Description: Debug symbols for linux-image-6.6.15-s390x +Description: Debug symbols for linux-image-6.7.7-s390x This package provides the detached debug symbols for the Linux kernel and - modules in linux-image-6.6.15-s390x. + modules in linux-image-6.7.7-s390x. Package: linux-image-s390x-dbg Architecture: s390x Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.nometa !pkg.linux.quick> Provides: linux-latest-image-dbg -Depends: linux-image-6.6.15-s390x-dbg (= ${binary:Version}), ${misc:Depends} +Depends: linux-image-6.7.7-s390x-dbg (= ${binary:Version}), ${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: kernel-image-6.6.15-s390x-di +Package: kernel-image-6.7.7-s390x-di Package-Type: udeb Architecture: s390x Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: kernel-image -Kernel-Version: 6.6.15-s390x +Kernel-Version: 6.7.7-s390x Description: Linux kernel image and core modules for the Debian installer This package contains the kernel image and core modules for the Debian installer boot images. It does _not_ provide a usable kernel for your full Debian system. -Package: nic-modules-6.6.15-s390x-di +Package: nic-modules-6.7.7-s390x-di Package-Type: udeb Architecture: s390x Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-modules, nic-extra-modules -Depends: kernel-image-6.6.15-s390x-di, crc-modules-6.6.15-s390x-di, mtd-core-modules-6.6.15-s390x-di -Kernel-Version: 6.6.15-s390x +Depends: kernel-image-6.7.7-s390x-di, crc-modules-6.7.7-s390x-di, mtd-core-modules-6.7.7-s390x-di +Kernel-Version: 6.7.7-s390x Description: NIC drivers This package contains Ethernet and some paravirtualised network drivers for the kernel. -Package: cdrom-core-modules-6.6.15-s390x-di +Package: cdrom-core-modules-6.7.7-s390x-di Package-Type: udeb Architecture: s390x Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: cdrom-core-modules -Depends: kernel-image-6.6.15-s390x-di, scsi-core-modules-6.6.15-s390x-di -Kernel-Version: 6.6.15-s390x +Depends: kernel-image-6.7.7-s390x-di, scsi-core-modules-6.7.7-s390x-di +Kernel-Version: 6.7.7-s390x Description: CDROM support This package contains core CDROM support for the kernel. -Package: scsi-core-modules-6.6.15-s390x-di +Package: scsi-core-modules-6.7.7-s390x-di Package-Type: udeb Architecture: s390x Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-core-modules -Depends: kernel-image-6.6.15-s390x-di, crc-modules-6.6.15-s390x-di -Kernel-Version: 6.6.15-s390x +Depends: kernel-image-6.7.7-s390x-di, crc-modules-6.7.7-s390x-di +Kernel-Version: 6.7.7-s390x Description: Core SCSI subsystem This package contains the core SCSI subsystem for the kernel. -Package: scsi-modules-6.6.15-s390x-di +Package: scsi-modules-6.7.7-s390x-di Package-Type: udeb Architecture: s390x Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-modules -Depends: kernel-image-6.6.15-s390x-di, scsi-core-modules-6.6.15-s390x-di, cdrom-core-modules-6.6.15-s390x-di -Kernel-Version: 6.6.15-s390x +Depends: kernel-image-6.7.7-s390x-di, scsi-core-modules-6.7.7-s390x-di, cdrom-core-modules-6.7.7-s390x-di +Kernel-Version: 6.7.7-s390x Description: SCSI drivers This package contains SCSI drivers for the kernel. -Package: loop-modules-6.6.15-s390x-di +Package: loop-modules-6.7.7-s390x-di Package-Type: udeb Architecture: s390x Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: loop-modules -Depends: kernel-image-6.6.15-s390x-di -Kernel-Version: 6.6.15-s390x +Depends: kernel-image-6.7.7-s390x-di +Kernel-Version: 6.7.7-s390x Description: Loopback filesystem support This package contains loopback filesystem support for the kernel. -Package: btrfs-modules-6.6.15-s390x-di +Package: btrfs-modules-6.7.7-s390x-di Package-Type: udeb Architecture: s390x Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: btrfs-modules -Depends: kernel-image-6.6.15-s390x-di, crc-modules-6.6.15-s390x-di, md-modules-6.6.15-s390x-di -Kernel-Version: 6.6.15-s390x +Depends: kernel-image-6.7.7-s390x-di, crc-modules-6.7.7-s390x-di, md-modules-6.7.7-s390x-di +Kernel-Version: 6.7.7-s390x Description: BTRFS filesystem support This package contains the BTRFS filesystem module for the kernel. -Package: ext4-modules-6.6.15-s390x-di +Package: ext4-modules-6.7.7-s390x-di Package-Type: udeb Architecture: s390x Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ext4-modules, ext2-modules, ext3-modules -Depends: kernel-image-6.6.15-s390x-di, crc-modules-6.6.15-s390x-di -Kernel-Version: 6.6.15-s390x +Depends: kernel-image-6.7.7-s390x-di, crc-modules-6.7.7-s390x-di +Kernel-Version: 6.7.7-s390x Description: ext2/ext3/ext4 filesystem support This package contains the ext4 filesystem module for the kernel, which also supports ext2 and ext3. -Package: isofs-modules-6.6.15-s390x-di +Package: isofs-modules-6.7.7-s390x-di Package-Type: udeb Architecture: s390x Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: isofs-modules -Depends: kernel-image-6.6.15-s390x-di, cdrom-core-modules-6.6.15-s390x-di -Kernel-Version: 6.6.15-s390x +Depends: kernel-image-6.7.7-s390x-di, cdrom-core-modules-6.7.7-s390x-di +Kernel-Version: 6.7.7-s390x Description: ISOFS filesystem support This package contains the ISOFS filesystem module for the kernel. -Package: xfs-modules-6.6.15-s390x-di +Package: xfs-modules-6.7.7-s390x-di Package-Type: udeb Architecture: s390x Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: xfs-modules -Depends: kernel-image-6.6.15-s390x-di, crc-modules-6.6.15-s390x-di -Kernel-Version: 6.6.15-s390x +Depends: kernel-image-6.7.7-s390x-di, crc-modules-6.7.7-s390x-di +Kernel-Version: 6.7.7-s390x Description: XFS filesystem support This package contains the XFS filesystem module for the kernel. -Package: fat-modules-6.6.15-s390x-di +Package: fat-modules-6.7.7-s390x-di Package-Type: udeb Architecture: s390x Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fat-modules -Depends: kernel-image-6.6.15-s390x-di -Kernel-Version: 6.6.15-s390x +Depends: kernel-image-6.7.7-s390x-di +Kernel-Version: 6.7.7-s390x Description: FAT filesystem support This package contains the FAT and VFAT filesystem modules for the kernel. -Package: udf-modules-6.6.15-s390x-di +Package: udf-modules-6.7.7-s390x-di Package-Type: udeb Architecture: s390x Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: udf-modules -Depends: kernel-image-6.6.15-s390x-di, crc-modules-6.6.15-s390x-di, cdrom-core-modules-6.6.15-s390x-di -Kernel-Version: 6.6.15-s390x +Depends: kernel-image-6.7.7-s390x-di, crc-modules-6.7.7-s390x-di, cdrom-core-modules-6.7.7-s390x-di +Kernel-Version: 6.7.7-s390x Description: UDF modules This package contains the UDF filesystem module. -Package: f2fs-modules-6.6.15-s390x-di +Package: f2fs-modules-6.7.7-s390x-di Package-Type: udeb Architecture: s390x Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: f2fs-modules -Depends: kernel-image-6.6.15-s390x-di, crc-modules-6.6.15-s390x-di -Kernel-Version: 6.6.15-s390x +Depends: kernel-image-6.7.7-s390x-di, crc-modules-6.7.7-s390x-di +Kernel-Version: 6.7.7-s390x Description: f2fs filesystem support This package contains the f2fs (Flash-Friendly Filesystem) module. -Package: md-modules-6.6.15-s390x-di +Package: md-modules-6.7.7-s390x-di Package-Type: udeb Architecture: s390x Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: md-modules -Depends: kernel-image-6.6.15-s390x-di, crc-modules-6.6.15-s390x-di -Kernel-Version: 6.6.15-s390x +Depends: kernel-image-6.7.7-s390x-di, crc-modules-6.7.7-s390x-di +Kernel-Version: 6.7.7-s390x Description: RAID and LVM support This package contains RAID and LVM modules for the kernel. -Package: multipath-modules-6.6.15-s390x-di +Package: multipath-modules-6.7.7-s390x-di Package-Type: udeb Architecture: s390x Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: multipath-modules -Depends: kernel-image-6.6.15-s390x-di, md-modules-6.6.15-s390x-di, scsi-core-modules-6.6.15-s390x-di -Kernel-Version: 6.6.15-s390x +Depends: kernel-image-6.7.7-s390x-di, md-modules-6.7.7-s390x-di, scsi-core-modules-6.7.7-s390x-di +Kernel-Version: 6.7.7-s390x Description: Multipath support This package contains DM-Multipath modules for the kernel. -Package: crc-modules-6.6.15-s390x-di +Package: crc-modules-6.7.7-s390x-di Package-Type: udeb Architecture: s390x Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crc-modules -Depends: kernel-image-6.6.15-s390x-di -Kernel-Version: 6.6.15-s390x +Depends: kernel-image-6.7.7-s390x-di +Kernel-Version: 6.7.7-s390x Description: CRC modules This package contains CRC support modules. -Package: crypto-modules-6.6.15-s390x-di +Package: crypto-modules-6.7.7-s390x-di Package-Type: udeb Architecture: s390x Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-modules -Depends: kernel-image-6.6.15-s390x-di -Kernel-Version: 6.6.15-s390x +Depends: kernel-image-6.7.7-s390x-di +Kernel-Version: 6.7.7-s390x Description: crypto modules This package contains crypto modules. -Package: crypto-dm-modules-6.6.15-s390x-di +Package: crypto-dm-modules-6.7.7-s390x-di Package-Type: udeb Architecture: s390x Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-dm-modules -Depends: kernel-image-6.6.15-s390x-di, md-modules-6.6.15-s390x-di -Kernel-Version: 6.6.15-s390x +Depends: kernel-image-6.7.7-s390x-di, md-modules-6.7.7-s390x-di +Kernel-Version: 6.7.7-s390x Description: devicemapper crypto module This package contains the devicemapper crypto (dm-crypt) module. -Package: nbd-modules-6.6.15-s390x-di +Package: nbd-modules-6.7.7-s390x-di Package-Type: udeb Architecture: s390x Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nbd-modules -Depends: kernel-image-6.6.15-s390x-di -Kernel-Version: 6.6.15-s390x +Depends: kernel-image-6.7.7-s390x-di +Kernel-Version: 6.7.7-s390x Description: Network Block Device modules This package contains the modules required for support of the Network Block Device -Package: mtd-core-modules-6.6.15-s390x-di +Package: mtd-core-modules-6.7.7-s390x-di Package-Type: udeb Architecture: s390x Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mtd-core-modules -Depends: kernel-image-6.6.15-s390x-di -Kernel-Version: 6.6.15-s390x +Depends: kernel-image-6.7.7-s390x-di +Kernel-Version: 6.7.7-s390x Description: MTD core This package contains the MTD core. -Package: dasd-modules-6.6.15-s390x-di +Package: dasd-modules-6.7.7-s390x-di Package-Type: udeb Architecture: s390x Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: dasd-modules -Depends: kernel-image-6.6.15-s390x-di -Kernel-Version: 6.6.15-s390x +Depends: kernel-image-6.7.7-s390x-di +Kernel-Version: 6.7.7-s390x Description: dasd modules This package contains dasd modules. -Package: dasd-extra-modules-6.6.15-s390x-di +Package: dasd-extra-modules-6.7.7-s390x-di Package-Type: udeb Architecture: s390x Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: dasd-extra-modules -Depends: kernel-image-6.6.15-s390x-di, dasd-modules-6.6.15-s390x-di -Kernel-Version: 6.6.15-s390x +Depends: kernel-image-6.7.7-s390x-di, dasd-modules-6.7.7-s390x-di +Kernel-Version: 6.7.7-s390x Description: optional dasd DIAG support This package contains the module for dasd DIAG support. The udeb is not loaded by default as the installer does not actually support this. It can however be useful to have available in rescue situations. -Package: linux-headers-6.6.15-sh7751r +Package: linux-headers-6.7.7-sh7751r Architecture: sh4 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Depends: linux-headers-6.6.15-common (= ${source:Version}), linux-image-6.6.15-sh7751r (= ${binary:Version}) | linux-image-6.6.15-sh7751r-unsigned (= ${binary:Version}), linux-kbuild-6.6.15, ${misc:Depends}, gcc-13 -Description: Header files for Linux 6.6.15-sh7751r +Depends: linux-headers-6.7.7-common (= ${source:Version}), linux-image-6.7.7-sh7751r (= ${binary:Version}) | linux-image-6.7.7-sh7751r-unsigned (= ${binary:Version}), linux-kbuild-6.7.7, ${misc:Depends}, gcc-13 +Description: Header files for Linux 6.7.7-sh7751r This package provides the architecture-specific kernel header files for - Linux kernel 6.6.15-sh7751r, generally used for building out-of-tree - kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-sh7751r, and can be used for building - modules that load into the kernel provided by the - linux-image-6.6.15-sh7751r package. + Linux kernel 6.7.7-sh7751r, generally used for building out-of-tree kernel + modules. These files are going to be installed into + /usr/src/linux-headers-6.7.7-sh7751r, and can be used for building modules + that load into the kernel provided by the linux-image-6.7.7-sh7751r + package. -Package: linux-image-6.6.15-sh7751r +Package: linux-image-6.7.7-sh7751r Architecture: sh4 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [sh4] | linux-initramfs-tool [sh4] Recommends: firmware-linux-free, apparmor [sh4] -Suggests: linux-doc-6.6, debian-kernel-handbook +Suggests: linux-doc-6.7, debian-kernel-handbook Breaks: fwupdate (<< 12-7) [sh4], wireless-regdb (<< 2019.06.03-1~) [sh4], initramfs-tools (<< 0.120+deb8u2) [sh4] -Description: Linux 6.6 for sh7751r - The Linux kernel 6.6 and modules for use on Renesas SH7751R R2D plus +Description: Linux 6.7 for sh7751r + The Linux kernel 6.7 and modules for use on Renesas SH7751R R2D plus board. Package: linux-image-sh7751r Architecture: sh4 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Provides: linux-latest-modules-6.6.15-sh7751r, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] -Depends: linux-image-6.6.15-sh7751r (= ${binary:Version}), ${misc:Depends} +Provides: linux-latest-modules-6.7.7-sh7751r, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] +Depends: linux-image-6.7.7-sh7751r (= ${binary:Version}), ${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. @@ -14487,435 +14509,435 @@ Description: Linux for sh7751r (meta-package) Package: linux-headers-sh7751r Architecture: sh4 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Depends: linux-headers-6.6.15-sh7751r (= ${binary:Version}), ${misc:Depends} +Depends: linux-headers-6.7.7-sh7751r (= ${binary:Version}), ${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-6.6.15-sh7751r-dbg +Package: linux-image-6.7.7-sh7751r-dbg Architecture: sh4 Section: debug Priority: optional Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.quick> Depends: ${misc:Depends} -Description: Debug symbols for linux-image-6.6.15-sh7751r +Description: Debug symbols for linux-image-6.7.7-sh7751r This package provides the detached debug symbols for the Linux kernel and - modules in linux-image-6.6.15-sh7751r. + modules in linux-image-6.7.7-sh7751r. Package: linux-image-sh7751r-dbg Architecture: sh4 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.nometa !pkg.linux.quick> Provides: linux-latest-image-dbg -Depends: linux-image-6.6.15-sh7751r-dbg (= ${binary:Version}), ${misc:Depends} +Depends: linux-image-6.7.7-sh7751r-dbg (= ${binary:Version}), ${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: kernel-image-6.6.15-sh7751r-di +Package: kernel-image-6.7.7-sh7751r-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: kernel-image, event-modules, fb-modules, input-modules, mouse-modules, nic-shared-modules, rtc-modules, uinput-modules, usb-modules -Kernel-Version: 6.6.15-sh7751r +Kernel-Version: 6.7.7-sh7751r Description: Linux kernel image and core modules for the Debian installer This package contains the kernel image and core modules for the Debian installer boot images. It does _not_ provide a usable kernel for your full Debian system. -Package: nic-modules-6.6.15-sh7751r-di +Package: nic-modules-6.7.7-sh7751r-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-modules, nic-extra-modules -Depends: kernel-image-6.6.15-sh7751r-di, nic-shared-modules-6.6.15-sh7751r-di, i2c-modules-6.6.15-sh7751r-di, crc-modules-6.6.15-sh7751r-di -Kernel-Version: 6.6.15-sh7751r +Depends: kernel-image-6.7.7-sh7751r-di, nic-shared-modules-6.7.7-sh7751r-di, i2c-modules-6.7.7-sh7751r-di, crc-modules-6.7.7-sh7751r-di +Kernel-Version: 6.7.7-sh7751r Description: NIC drivers This package contains Ethernet and some paravirtualised network drivers for the kernel. -Package: nic-shared-modules-6.6.15-sh7751r-di +Package: nic-shared-modules-6.7.7-sh7751r-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-shared-modules -Depends: kernel-image-6.6.15-sh7751r-di, crc-modules-6.6.15-sh7751r-di, i2c-modules-6.6.15-sh7751r-di -Kernel-Version: 6.6.15-sh7751r +Depends: kernel-image-6.7.7-sh7751r-di, crc-modules-6.7.7-sh7751r-di, i2c-modules-6.7.7-sh7751r-di +Kernel-Version: 6.7.7-sh7751r Description: Shared NIC drivers This package contains NIC drivers needed by combinations of nic-modules, nic-pcmcia-modules, nic-usb-modules and nic-wireless-modules. -Package: usb-serial-modules-6.6.15-sh7751r-di +Package: usb-serial-modules-6.7.7-sh7751r-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-serial-modules -Depends: kernel-image-6.6.15-sh7751r-di -Kernel-Version: 6.6.15-sh7751r +Depends: kernel-image-6.7.7-sh7751r-di +Kernel-Version: 6.7.7-sh7751r Description: USB serial drivers This package contains USB serial drivers for the kernel. -Package: ppp-modules-6.6.15-sh7751r-di +Package: ppp-modules-6.7.7-sh7751r-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ppp-modules -Depends: kernel-image-6.6.15-sh7751r-di, crc-modules-6.6.15-sh7751r-di -Kernel-Version: 6.6.15-sh7751r +Depends: kernel-image-6.7.7-sh7751r-di, crc-modules-6.7.7-sh7751r-di +Kernel-Version: 6.7.7-sh7751r Description: PPP drivers This package contains PPP drivers for the kernel. -Package: pata-modules-6.6.15-sh7751r-di +Package: pata-modules-6.7.7-sh7751r-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: pata-modules -Depends: kernel-image-6.6.15-sh7751r-di -Kernel-Version: 6.6.15-sh7751r +Depends: kernel-image-6.7.7-sh7751r-di +Kernel-Version: 6.7.7-sh7751r Description: PATA drivers This package contains PATA drivers for the kernel. -Package: cdrom-core-modules-6.6.15-sh7751r-di +Package: cdrom-core-modules-6.7.7-sh7751r-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: cdrom-core-modules -Depends: kernel-image-6.6.15-sh7751r-di -Kernel-Version: 6.6.15-sh7751r +Depends: kernel-image-6.7.7-sh7751r-di +Kernel-Version: 6.7.7-sh7751r Description: CDROM support This package contains core CDROM support for the kernel. -Package: firewire-core-modules-6.6.15-sh7751r-di +Package: firewire-core-modules-6.7.7-sh7751r-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: firewire-core-modules -Depends: kernel-image-6.6.15-sh7751r-di, crc-modules-6.6.15-sh7751r-di -Kernel-Version: 6.6.15-sh7751r +Depends: kernel-image-6.7.7-sh7751r-di, crc-modules-6.7.7-sh7751r-di +Kernel-Version: 6.7.7-sh7751r Description: Core FireWire drivers This package contains core FireWire drivers for the kernel. -Package: loop-modules-6.6.15-sh7751r-di +Package: loop-modules-6.7.7-sh7751r-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: loop-modules -Depends: kernel-image-6.6.15-sh7751r-di -Kernel-Version: 6.6.15-sh7751r +Depends: kernel-image-6.7.7-sh7751r-di +Kernel-Version: 6.7.7-sh7751r Description: Loopback filesystem support This package contains loopback filesystem support for the kernel. -Package: btrfs-modules-6.6.15-sh7751r-di +Package: btrfs-modules-6.7.7-sh7751r-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: btrfs-modules -Depends: kernel-image-6.6.15-sh7751r-di, crc-modules-6.6.15-sh7751r-di, md-modules-6.6.15-sh7751r-di -Kernel-Version: 6.6.15-sh7751r +Depends: kernel-image-6.7.7-sh7751r-di, crc-modules-6.7.7-sh7751r-di, md-modules-6.7.7-sh7751r-di +Kernel-Version: 6.7.7-sh7751r Description: BTRFS filesystem support This package contains the BTRFS filesystem module for the kernel. -Package: ext4-modules-6.6.15-sh7751r-di +Package: ext4-modules-6.7.7-sh7751r-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ext4-modules, ext2-modules, ext3-modules -Depends: kernel-image-6.6.15-sh7751r-di, crc-modules-6.6.15-sh7751r-di -Kernel-Version: 6.6.15-sh7751r +Depends: kernel-image-6.7.7-sh7751r-di, crc-modules-6.7.7-sh7751r-di +Kernel-Version: 6.7.7-sh7751r Description: ext2/ext3/ext4 filesystem support This package contains the ext4 filesystem module for the kernel, which also supports ext2 and ext3. -Package: isofs-modules-6.6.15-sh7751r-di +Package: isofs-modules-6.7.7-sh7751r-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: isofs-modules -Depends: kernel-image-6.6.15-sh7751r-di, cdrom-core-modules-6.6.15-sh7751r-di -Kernel-Version: 6.6.15-sh7751r +Depends: kernel-image-6.7.7-sh7751r-di, cdrom-core-modules-6.7.7-sh7751r-di +Kernel-Version: 6.7.7-sh7751r Description: ISOFS filesystem support This package contains the ISOFS filesystem module for the kernel. -Package: jfs-modules-6.6.15-sh7751r-di +Package: jfs-modules-6.7.7-sh7751r-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: jfs-modules -Depends: kernel-image-6.6.15-sh7751r-di -Kernel-Version: 6.6.15-sh7751r +Depends: kernel-image-6.7.7-sh7751r-di +Kernel-Version: 6.7.7-sh7751r Description: JFS filesystem support This package contains the JFS filesystem module for the kernel. -Package: xfs-modules-6.6.15-sh7751r-di +Package: xfs-modules-6.7.7-sh7751r-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: xfs-modules -Depends: kernel-image-6.6.15-sh7751r-di, crc-modules-6.6.15-sh7751r-di -Kernel-Version: 6.6.15-sh7751r +Depends: kernel-image-6.7.7-sh7751r-di, crc-modules-6.7.7-sh7751r-di +Kernel-Version: 6.7.7-sh7751r Description: XFS filesystem support This package contains the XFS filesystem module for the kernel. -Package: fat-modules-6.6.15-sh7751r-di +Package: fat-modules-6.7.7-sh7751r-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fat-modules -Depends: kernel-image-6.6.15-sh7751r-di -Kernel-Version: 6.6.15-sh7751r +Depends: kernel-image-6.7.7-sh7751r-di +Kernel-Version: 6.7.7-sh7751r Description: FAT filesystem support This package contains the FAT and VFAT filesystem modules for the kernel. -Package: minix-modules-6.6.15-sh7751r-di +Package: minix-modules-6.7.7-sh7751r-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: minix-modules -Depends: kernel-image-6.6.15-sh7751r-di -Kernel-Version: 6.6.15-sh7751r +Depends: kernel-image-6.7.7-sh7751r-di +Kernel-Version: 6.7.7-sh7751r Description: Minix filesystem support This package contains the Minix filesystem module for the kernel. -Package: squashfs-modules-6.6.15-sh7751r-di +Package: squashfs-modules-6.7.7-sh7751r-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: squashfs-modules -Depends: kernel-image-6.6.15-sh7751r-di -Kernel-Version: 6.6.15-sh7751r +Depends: kernel-image-6.7.7-sh7751r-di +Kernel-Version: 6.7.7-sh7751r Description: squashfs modules This package contains squashfs modules. -Package: udf-modules-6.6.15-sh7751r-di +Package: udf-modules-6.7.7-sh7751r-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: udf-modules -Depends: kernel-image-6.6.15-sh7751r-di, crc-modules-6.6.15-sh7751r-di, cdrom-core-modules-6.6.15-sh7751r-di -Kernel-Version: 6.6.15-sh7751r +Depends: kernel-image-6.7.7-sh7751r-di, crc-modules-6.7.7-sh7751r-di, cdrom-core-modules-6.7.7-sh7751r-di +Kernel-Version: 6.7.7-sh7751r Description: UDF modules This package contains the UDF filesystem module. -Package: f2fs-modules-6.6.15-sh7751r-di +Package: f2fs-modules-6.7.7-sh7751r-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: f2fs-modules -Depends: kernel-image-6.6.15-sh7751r-di, crc-modules-6.6.15-sh7751r-di -Kernel-Version: 6.6.15-sh7751r +Depends: kernel-image-6.7.7-sh7751r-di, crc-modules-6.7.7-sh7751r-di +Kernel-Version: 6.7.7-sh7751r Description: f2fs filesystem support This package contains the f2fs (Flash-Friendly Filesystem) module. -Package: md-modules-6.6.15-sh7751r-di +Package: md-modules-6.7.7-sh7751r-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: md-modules -Depends: kernel-image-6.6.15-sh7751r-di, crc-modules-6.6.15-sh7751r-di -Kernel-Version: 6.6.15-sh7751r +Depends: kernel-image-6.7.7-sh7751r-di, crc-modules-6.7.7-sh7751r-di +Kernel-Version: 6.7.7-sh7751r Description: RAID and LVM support This package contains RAID and LVM modules for the kernel. -Package: multipath-modules-6.6.15-sh7751r-di +Package: multipath-modules-6.7.7-sh7751r-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: multipath-modules -Depends: kernel-image-6.6.15-sh7751r-di, md-modules-6.6.15-sh7751r-di -Kernel-Version: 6.6.15-sh7751r +Depends: kernel-image-6.7.7-sh7751r-di, md-modules-6.7.7-sh7751r-di +Kernel-Version: 6.7.7-sh7751r Description: Multipath support This package contains DM-Multipath modules for the kernel. -Package: usb-storage-modules-6.6.15-sh7751r-di +Package: usb-storage-modules-6.7.7-sh7751r-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-storage-modules -Depends: kernel-image-6.6.15-sh7751r-di -Kernel-Version: 6.6.15-sh7751r +Depends: kernel-image-6.7.7-sh7751r-di +Kernel-Version: 6.7.7-sh7751r Description: USB storage support This package contains the USB storage driver for the kernel. -Package: nic-usb-modules-6.6.15-sh7751r-di +Package: nic-usb-modules-6.7.7-sh7751r-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-usb-modules -Depends: kernel-image-6.6.15-sh7751r-di, nic-shared-modules-6.6.15-sh7751r-di, crc-modules-6.6.15-sh7751r-di -Kernel-Version: 6.6.15-sh7751r +Depends: kernel-image-6.7.7-sh7751r-di, nic-shared-modules-6.7.7-sh7751r-di, crc-modules-6.7.7-sh7751r-di +Kernel-Version: 6.7.7-sh7751r Description: USB NIC drivers This package contains USB network adapter drivers for the kernel. -Package: sata-modules-6.6.15-sh7751r-di +Package: sata-modules-6.7.7-sh7751r-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sata-modules -Depends: kernel-image-6.6.15-sh7751r-di -Kernel-Version: 6.6.15-sh7751r +Depends: kernel-image-6.7.7-sh7751r-di +Kernel-Version: 6.7.7-sh7751r Description: SATA drivers This package contains SATA drivers for the kernel. -Package: i2c-modules-6.6.15-sh7751r-di +Package: i2c-modules-6.7.7-sh7751r-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: i2c-modules -Depends: kernel-image-6.6.15-sh7751r-di -Kernel-Version: 6.6.15-sh7751r +Depends: kernel-image-6.7.7-sh7751r-di +Kernel-Version: 6.7.7-sh7751r Description: i2c support modules This package contains basic i2c support modules. -Package: crc-modules-6.6.15-sh7751r-di +Package: crc-modules-6.7.7-sh7751r-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crc-modules -Depends: kernel-image-6.6.15-sh7751r-di -Kernel-Version: 6.6.15-sh7751r +Depends: kernel-image-6.7.7-sh7751r-di +Kernel-Version: 6.7.7-sh7751r Description: CRC modules This package contains CRC support modules. -Package: crypto-modules-6.6.15-sh7751r-di +Package: crypto-modules-6.7.7-sh7751r-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-modules -Depends: kernel-image-6.6.15-sh7751r-di -Kernel-Version: 6.6.15-sh7751r +Depends: kernel-image-6.7.7-sh7751r-di +Kernel-Version: 6.7.7-sh7751r Description: crypto modules This package contains crypto modules. -Package: crypto-dm-modules-6.6.15-sh7751r-di +Package: crypto-dm-modules-6.7.7-sh7751r-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-dm-modules -Depends: kernel-image-6.6.15-sh7751r-di, md-modules-6.6.15-sh7751r-di -Kernel-Version: 6.6.15-sh7751r +Depends: kernel-image-6.7.7-sh7751r-di, md-modules-6.7.7-sh7751r-di +Kernel-Version: 6.7.7-sh7751r Description: devicemapper crypto module This package contains the devicemapper crypto (dm-crypt) module. -Package: nbd-modules-6.6.15-sh7751r-di +Package: nbd-modules-6.7.7-sh7751r-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nbd-modules -Depends: kernel-image-6.6.15-sh7751r-di -Kernel-Version: 6.6.15-sh7751r +Depends: kernel-image-6.7.7-sh7751r-di +Kernel-Version: 6.7.7-sh7751r Description: Network Block Device modules This package contains the modules required for support of the Network Block Device -Package: speakup-modules-6.6.15-sh7751r-di +Package: speakup-modules-6.7.7-sh7751r-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: speakup-modules -Depends: kernel-image-6.6.15-sh7751r-di -Kernel-Version: 6.6.15-sh7751r +Depends: kernel-image-6.7.7-sh7751r-di +Kernel-Version: 6.7.7-sh7751r Description: speakup modules This package contains speakup modules. -Package: sound-modules-6.6.15-sh7751r-di +Package: sound-modules-6.7.7-sh7751r-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sound-modules -Depends: kernel-image-6.6.15-sh7751r-di, i2c-modules-6.6.15-sh7751r-di, firewire-core-modules-6.6.15-sh7751r-di, crc-modules-6.6.15-sh7751r-di -Kernel-Version: 6.6.15-sh7751r +Depends: kernel-image-6.7.7-sh7751r-di, i2c-modules-6.7.7-sh7751r-di, firewire-core-modules-6.7.7-sh7751r-di, crc-modules-6.7.7-sh7751r-di +Kernel-Version: 6.7.7-sh7751r Description: sound support This package contains sound modules. -Package: linux-headers-6.6.15-sh7785lcr +Package: linux-headers-6.7.7-sh7785lcr Architecture: sh4 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Depends: linux-headers-6.6.15-common (= ${source:Version}), linux-image-6.6.15-sh7785lcr (= ${binary:Version}) | linux-image-6.6.15-sh7785lcr-unsigned (= ${binary:Version}), linux-kbuild-6.6.15, ${misc:Depends}, gcc-13 -Description: Header files for Linux 6.6.15-sh7785lcr +Depends: linux-headers-6.7.7-common (= ${source:Version}), linux-image-6.7.7-sh7785lcr (= ${binary:Version}) | linux-image-6.7.7-sh7785lcr-unsigned (= ${binary:Version}), linux-kbuild-6.7.7, ${misc:Depends}, gcc-13 +Description: Header files for Linux 6.7.7-sh7785lcr This package provides the architecture-specific kernel header files for - Linux kernel 6.6.15-sh7785lcr, generally used for building out-of-tree + Linux kernel 6.7.7-sh7785lcr, generally used for building out-of-tree kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-sh7785lcr, and can be used for building + /usr/src/linux-headers-6.7.7-sh7785lcr, and can be used for building modules that load into the kernel provided by the - linux-image-6.6.15-sh7785lcr package. + linux-image-6.7.7-sh7785lcr package. -Package: linux-image-6.6.15-sh7785lcr +Package: linux-image-6.7.7-sh7785lcr Architecture: sh4 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [sh4] | linux-initramfs-tool [sh4] -Recommends: firmware-linux-free, u-boot-tools [sh4], apparmor [sh4] -Suggests: linux-doc-6.6, debian-kernel-handbook +Recommends: firmware-linux-free, apparmor [sh4], u-boot-tools [sh4] +Suggests: linux-doc-6.7, debian-kernel-handbook Breaks: fwupdate (<< 12-7) [sh4], wireless-regdb (<< 2019.06.03-1~) [sh4], initramfs-tools (<< 0.120+deb8u2) [sh4] -Description: Linux 6.6 for sh7785lcr - The Linux kernel 6.6 and modules for use on Renesas SH7785 reference +Description: Linux 6.7 for sh7785lcr + The Linux kernel 6.7 and modules for use on Renesas SH7785 reference board. Package: linux-image-sh7785lcr Architecture: sh4 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Provides: linux-latest-modules-6.6.15-sh7785lcr, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] -Depends: linux-image-6.6.15-sh7785lcr (= ${binary:Version}), ${misc:Depends} +Provides: linux-latest-modules-6.7.7-sh7785lcr, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] +Depends: linux-image-6.7.7-sh7785lcr (= ${binary:Version}), ${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. @@ -14923,460 +14945,460 @@ Description: Linux for sh7785lcr (meta-package) Package: linux-headers-sh7785lcr Architecture: sh4 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Depends: linux-headers-6.6.15-sh7785lcr (= ${binary:Version}), ${misc:Depends} +Depends: linux-headers-6.7.7-sh7785lcr (= ${binary:Version}), ${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-6.6.15-sh7785lcr-dbg +Package: linux-image-6.7.7-sh7785lcr-dbg Architecture: sh4 Section: debug Priority: optional Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.quick> Depends: ${misc:Depends} -Description: Debug symbols for linux-image-6.6.15-sh7785lcr +Description: Debug symbols for linux-image-6.7.7-sh7785lcr This package provides the detached debug symbols for the Linux kernel and - modules in linux-image-6.6.15-sh7785lcr. + modules in linux-image-6.7.7-sh7785lcr. Package: linux-image-sh7785lcr-dbg Architecture: sh4 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.nometa !pkg.linux.quick> Provides: linux-latest-image-dbg -Depends: linux-image-6.6.15-sh7785lcr-dbg (= ${binary:Version}), ${misc:Depends} +Depends: linux-image-6.7.7-sh7785lcr-dbg (= ${binary:Version}), ${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: kernel-image-6.6.15-sh7785lcr-di +Package: kernel-image-6.7.7-sh7785lcr-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: kernel-image, event-modules, fb-modules, input-modules, mouse-modules, nic-shared-modules, rtc-modules, uinput-modules, usb-modules -Kernel-Version: 6.6.15-sh7785lcr +Kernel-Version: 6.7.7-sh7785lcr Description: Linux kernel image and core modules for the Debian installer This package contains the kernel image and core modules for the Debian installer boot images. It does _not_ provide a usable kernel for your full Debian system. -Package: nic-modules-6.6.15-sh7785lcr-di +Package: nic-modules-6.7.7-sh7785lcr-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-modules, nic-extra-modules -Depends: kernel-image-6.6.15-sh7785lcr-di, nic-shared-modules-6.6.15-sh7785lcr-di, i2c-modules-6.6.15-sh7785lcr-di, crc-modules-6.6.15-sh7785lcr-di -Kernel-Version: 6.6.15-sh7785lcr +Depends: kernel-image-6.7.7-sh7785lcr-di, nic-shared-modules-6.7.7-sh7785lcr-di, i2c-modules-6.7.7-sh7785lcr-di, crc-modules-6.7.7-sh7785lcr-di +Kernel-Version: 6.7.7-sh7785lcr Description: NIC drivers This package contains Ethernet and some paravirtualised network drivers for the kernel. -Package: nic-shared-modules-6.6.15-sh7785lcr-di +Package: nic-shared-modules-6.7.7-sh7785lcr-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-shared-modules -Depends: kernel-image-6.6.15-sh7785lcr-di, crc-modules-6.6.15-sh7785lcr-di, i2c-modules-6.6.15-sh7785lcr-di -Kernel-Version: 6.6.15-sh7785lcr +Depends: kernel-image-6.7.7-sh7785lcr-di, crc-modules-6.7.7-sh7785lcr-di, i2c-modules-6.7.7-sh7785lcr-di +Kernel-Version: 6.7.7-sh7785lcr Description: Shared NIC drivers This package contains NIC drivers needed by combinations of nic-modules, nic-pcmcia-modules, nic-usb-modules and nic-wireless-modules. -Package: usb-serial-modules-6.6.15-sh7785lcr-di +Package: usb-serial-modules-6.7.7-sh7785lcr-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-serial-modules -Depends: kernel-image-6.6.15-sh7785lcr-di, usb-modules-6.6.15-sh7785lcr-di -Kernel-Version: 6.6.15-sh7785lcr +Depends: kernel-image-6.7.7-sh7785lcr-di, usb-modules-6.7.7-sh7785lcr-di +Kernel-Version: 6.7.7-sh7785lcr Description: USB serial drivers This package contains USB serial drivers for the kernel. -Package: ppp-modules-6.6.15-sh7785lcr-di +Package: ppp-modules-6.7.7-sh7785lcr-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ppp-modules -Depends: kernel-image-6.6.15-sh7785lcr-di, crc-modules-6.6.15-sh7785lcr-di -Kernel-Version: 6.6.15-sh7785lcr +Depends: kernel-image-6.7.7-sh7785lcr-di, crc-modules-6.7.7-sh7785lcr-di +Kernel-Version: 6.7.7-sh7785lcr Description: PPP drivers This package contains PPP drivers for the kernel. -Package: pata-modules-6.6.15-sh7785lcr-di +Package: pata-modules-6.7.7-sh7785lcr-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: pata-modules -Depends: kernel-image-6.6.15-sh7785lcr-di, ata-modules-6.6.15-sh7785lcr-di -Kernel-Version: 6.6.15-sh7785lcr +Depends: kernel-image-6.7.7-sh7785lcr-di, ata-modules-6.7.7-sh7785lcr-di +Kernel-Version: 6.7.7-sh7785lcr Description: PATA drivers This package contains PATA drivers for the kernel. -Package: cdrom-core-modules-6.6.15-sh7785lcr-di +Package: cdrom-core-modules-6.7.7-sh7785lcr-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: cdrom-core-modules -Depends: kernel-image-6.6.15-sh7785lcr-di, scsi-core-modules-6.6.15-sh7785lcr-di -Kernel-Version: 6.6.15-sh7785lcr +Depends: kernel-image-6.7.7-sh7785lcr-di, scsi-core-modules-6.7.7-sh7785lcr-di +Kernel-Version: 6.7.7-sh7785lcr Description: CDROM support This package contains core CDROM support for the kernel. -Package: firewire-core-modules-6.6.15-sh7785lcr-di +Package: firewire-core-modules-6.7.7-sh7785lcr-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: firewire-core-modules -Depends: kernel-image-6.6.15-sh7785lcr-di, scsi-core-modules-6.6.15-sh7785lcr-di, crc-modules-6.6.15-sh7785lcr-di -Kernel-Version: 6.6.15-sh7785lcr +Depends: kernel-image-6.7.7-sh7785lcr-di, scsi-core-modules-6.7.7-sh7785lcr-di, crc-modules-6.7.7-sh7785lcr-di +Kernel-Version: 6.7.7-sh7785lcr Description: Core FireWire drivers This package contains core FireWire drivers for the kernel. -Package: scsi-core-modules-6.6.15-sh7785lcr-di +Package: scsi-core-modules-6.7.7-sh7785lcr-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-core-modules -Depends: kernel-image-6.6.15-sh7785lcr-di, crc-modules-6.6.15-sh7785lcr-di -Kernel-Version: 6.6.15-sh7785lcr +Depends: kernel-image-6.7.7-sh7785lcr-di, crc-modules-6.7.7-sh7785lcr-di +Kernel-Version: 6.7.7-sh7785lcr Description: Core SCSI subsystem This package contains the core SCSI subsystem for the kernel. -Package: loop-modules-6.6.15-sh7785lcr-di +Package: loop-modules-6.7.7-sh7785lcr-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: loop-modules -Depends: kernel-image-6.6.15-sh7785lcr-di -Kernel-Version: 6.6.15-sh7785lcr +Depends: kernel-image-6.7.7-sh7785lcr-di +Kernel-Version: 6.7.7-sh7785lcr Description: Loopback filesystem support This package contains loopback filesystem support for the kernel. -Package: btrfs-modules-6.6.15-sh7785lcr-di +Package: btrfs-modules-6.7.7-sh7785lcr-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: btrfs-modules -Depends: kernel-image-6.6.15-sh7785lcr-di, crc-modules-6.6.15-sh7785lcr-di, md-modules-6.6.15-sh7785lcr-di -Kernel-Version: 6.6.15-sh7785lcr +Depends: kernel-image-6.7.7-sh7785lcr-di, crc-modules-6.7.7-sh7785lcr-di, md-modules-6.7.7-sh7785lcr-di +Kernel-Version: 6.7.7-sh7785lcr Description: BTRFS filesystem support This package contains the BTRFS filesystem module for the kernel. -Package: ext4-modules-6.6.15-sh7785lcr-di +Package: ext4-modules-6.7.7-sh7785lcr-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ext4-modules, ext2-modules, ext3-modules -Depends: kernel-image-6.6.15-sh7785lcr-di, crc-modules-6.6.15-sh7785lcr-di -Kernel-Version: 6.6.15-sh7785lcr +Depends: kernel-image-6.7.7-sh7785lcr-di, crc-modules-6.7.7-sh7785lcr-di +Kernel-Version: 6.7.7-sh7785lcr Description: ext2/ext3/ext4 filesystem support This package contains the ext4 filesystem module for the kernel, which also supports ext2 and ext3. -Package: isofs-modules-6.6.15-sh7785lcr-di +Package: isofs-modules-6.7.7-sh7785lcr-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: isofs-modules -Depends: kernel-image-6.6.15-sh7785lcr-di, cdrom-core-modules-6.6.15-sh7785lcr-di -Kernel-Version: 6.6.15-sh7785lcr +Depends: kernel-image-6.7.7-sh7785lcr-di, cdrom-core-modules-6.7.7-sh7785lcr-di +Kernel-Version: 6.7.7-sh7785lcr Description: ISOFS filesystem support This package contains the ISOFS filesystem module for the kernel. -Package: jfs-modules-6.6.15-sh7785lcr-di +Package: jfs-modules-6.7.7-sh7785lcr-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: jfs-modules -Depends: kernel-image-6.6.15-sh7785lcr-di -Kernel-Version: 6.6.15-sh7785lcr +Depends: kernel-image-6.7.7-sh7785lcr-di +Kernel-Version: 6.7.7-sh7785lcr Description: JFS filesystem support This package contains the JFS filesystem module for the kernel. -Package: xfs-modules-6.6.15-sh7785lcr-di +Package: xfs-modules-6.7.7-sh7785lcr-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: xfs-modules -Depends: kernel-image-6.6.15-sh7785lcr-di, crc-modules-6.6.15-sh7785lcr-di -Kernel-Version: 6.6.15-sh7785lcr +Depends: kernel-image-6.7.7-sh7785lcr-di, crc-modules-6.7.7-sh7785lcr-di +Kernel-Version: 6.7.7-sh7785lcr Description: XFS filesystem support This package contains the XFS filesystem module for the kernel. -Package: fat-modules-6.6.15-sh7785lcr-di +Package: fat-modules-6.7.7-sh7785lcr-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fat-modules -Depends: kernel-image-6.6.15-sh7785lcr-di -Kernel-Version: 6.6.15-sh7785lcr +Depends: kernel-image-6.7.7-sh7785lcr-di +Kernel-Version: 6.7.7-sh7785lcr Description: FAT filesystem support This package contains the FAT and VFAT filesystem modules for the kernel. -Package: minix-modules-6.6.15-sh7785lcr-di +Package: minix-modules-6.7.7-sh7785lcr-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: minix-modules -Depends: kernel-image-6.6.15-sh7785lcr-di -Kernel-Version: 6.6.15-sh7785lcr +Depends: kernel-image-6.7.7-sh7785lcr-di +Kernel-Version: 6.7.7-sh7785lcr Description: Minix filesystem support This package contains the Minix filesystem module for the kernel. -Package: squashfs-modules-6.6.15-sh7785lcr-di +Package: squashfs-modules-6.7.7-sh7785lcr-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: squashfs-modules -Depends: kernel-image-6.6.15-sh7785lcr-di -Kernel-Version: 6.6.15-sh7785lcr +Depends: kernel-image-6.7.7-sh7785lcr-di +Kernel-Version: 6.7.7-sh7785lcr Description: squashfs modules This package contains squashfs modules. -Package: udf-modules-6.6.15-sh7785lcr-di +Package: udf-modules-6.7.7-sh7785lcr-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: udf-modules -Depends: kernel-image-6.6.15-sh7785lcr-di, crc-modules-6.6.15-sh7785lcr-di, cdrom-core-modules-6.6.15-sh7785lcr-di -Kernel-Version: 6.6.15-sh7785lcr +Depends: kernel-image-6.7.7-sh7785lcr-di, crc-modules-6.7.7-sh7785lcr-di, cdrom-core-modules-6.7.7-sh7785lcr-di +Kernel-Version: 6.7.7-sh7785lcr Description: UDF modules This package contains the UDF filesystem module. -Package: f2fs-modules-6.6.15-sh7785lcr-di +Package: f2fs-modules-6.7.7-sh7785lcr-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: f2fs-modules -Depends: kernel-image-6.6.15-sh7785lcr-di, crc-modules-6.6.15-sh7785lcr-di -Kernel-Version: 6.6.15-sh7785lcr +Depends: kernel-image-6.7.7-sh7785lcr-di, crc-modules-6.7.7-sh7785lcr-di +Kernel-Version: 6.7.7-sh7785lcr Description: f2fs filesystem support This package contains the f2fs (Flash-Friendly Filesystem) module. -Package: md-modules-6.6.15-sh7785lcr-di +Package: md-modules-6.7.7-sh7785lcr-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: md-modules -Depends: kernel-image-6.6.15-sh7785lcr-di, crc-modules-6.6.15-sh7785lcr-di -Kernel-Version: 6.6.15-sh7785lcr +Depends: kernel-image-6.7.7-sh7785lcr-di, crc-modules-6.7.7-sh7785lcr-di +Kernel-Version: 6.7.7-sh7785lcr Description: RAID and LVM support This package contains RAID and LVM modules for the kernel. -Package: multipath-modules-6.6.15-sh7785lcr-di +Package: multipath-modules-6.7.7-sh7785lcr-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: multipath-modules -Depends: kernel-image-6.6.15-sh7785lcr-di, md-modules-6.6.15-sh7785lcr-di, scsi-core-modules-6.6.15-sh7785lcr-di -Kernel-Version: 6.6.15-sh7785lcr +Depends: kernel-image-6.7.7-sh7785lcr-di, md-modules-6.7.7-sh7785lcr-di, scsi-core-modules-6.7.7-sh7785lcr-di +Kernel-Version: 6.7.7-sh7785lcr Description: Multipath support This package contains DM-Multipath modules for the kernel. -Package: usb-modules-6.6.15-sh7785lcr-di +Package: usb-modules-6.7.7-sh7785lcr-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-modules -Depends: kernel-image-6.6.15-sh7785lcr-di -Kernel-Version: 6.6.15-sh7785lcr +Depends: kernel-image-6.7.7-sh7785lcr-di +Kernel-Version: 6.7.7-sh7785lcr Description: USB support This package contains core USB drivers for the kernel. -Package: nic-usb-modules-6.6.15-sh7785lcr-di +Package: nic-usb-modules-6.7.7-sh7785lcr-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-usb-modules -Depends: kernel-image-6.6.15-sh7785lcr-di, nic-shared-modules-6.6.15-sh7785lcr-di, usb-modules-6.6.15-sh7785lcr-di, crc-modules-6.6.15-sh7785lcr-di -Kernel-Version: 6.6.15-sh7785lcr +Depends: kernel-image-6.7.7-sh7785lcr-di, nic-shared-modules-6.7.7-sh7785lcr-di, usb-modules-6.7.7-sh7785lcr-di, crc-modules-6.7.7-sh7785lcr-di +Kernel-Version: 6.7.7-sh7785lcr Description: USB NIC drivers This package contains USB network adapter drivers for the kernel. -Package: sata-modules-6.6.15-sh7785lcr-di +Package: sata-modules-6.7.7-sh7785lcr-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sata-modules -Depends: kernel-image-6.6.15-sh7785lcr-di, scsi-core-modules-6.6.15-sh7785lcr-di, ata-modules-6.6.15-sh7785lcr-di -Kernel-Version: 6.6.15-sh7785lcr +Depends: kernel-image-6.7.7-sh7785lcr-di, scsi-core-modules-6.7.7-sh7785lcr-di, ata-modules-6.7.7-sh7785lcr-di +Kernel-Version: 6.7.7-sh7785lcr Description: SATA drivers This package contains SATA drivers for the kernel. -Package: i2c-modules-6.6.15-sh7785lcr-di +Package: i2c-modules-6.7.7-sh7785lcr-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: i2c-modules -Depends: kernel-image-6.6.15-sh7785lcr-di -Kernel-Version: 6.6.15-sh7785lcr +Depends: kernel-image-6.7.7-sh7785lcr-di +Kernel-Version: 6.7.7-sh7785lcr Description: i2c support modules This package contains basic i2c support modules. -Package: crc-modules-6.6.15-sh7785lcr-di +Package: crc-modules-6.7.7-sh7785lcr-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crc-modules -Depends: kernel-image-6.6.15-sh7785lcr-di -Kernel-Version: 6.6.15-sh7785lcr +Depends: kernel-image-6.7.7-sh7785lcr-di +Kernel-Version: 6.7.7-sh7785lcr Description: CRC modules This package contains CRC support modules. -Package: crypto-modules-6.6.15-sh7785lcr-di +Package: crypto-modules-6.7.7-sh7785lcr-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-modules -Depends: kernel-image-6.6.15-sh7785lcr-di -Kernel-Version: 6.6.15-sh7785lcr +Depends: kernel-image-6.7.7-sh7785lcr-di +Kernel-Version: 6.7.7-sh7785lcr Description: crypto modules This package contains crypto modules. -Package: crypto-dm-modules-6.6.15-sh7785lcr-di +Package: crypto-dm-modules-6.7.7-sh7785lcr-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-dm-modules -Depends: kernel-image-6.6.15-sh7785lcr-di, md-modules-6.6.15-sh7785lcr-di -Kernel-Version: 6.6.15-sh7785lcr +Depends: kernel-image-6.7.7-sh7785lcr-di, md-modules-6.7.7-sh7785lcr-di +Kernel-Version: 6.7.7-sh7785lcr Description: devicemapper crypto module This package contains the devicemapper crypto (dm-crypt) module. -Package: ata-modules-6.6.15-sh7785lcr-di +Package: ata-modules-6.7.7-sh7785lcr-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ata-modules -Depends: kernel-image-6.6.15-sh7785lcr-di, scsi-core-modules-6.6.15-sh7785lcr-di -Kernel-Version: 6.6.15-sh7785lcr +Depends: kernel-image-6.7.7-sh7785lcr-di, scsi-core-modules-6.7.7-sh7785lcr-di +Kernel-Version: 6.7.7-sh7785lcr Description: ATA disk modules This package contains core ATA disk modules used by both PATA and SATA disk drivers. -Package: nbd-modules-6.6.15-sh7785lcr-di +Package: nbd-modules-6.7.7-sh7785lcr-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nbd-modules -Depends: kernel-image-6.6.15-sh7785lcr-di -Kernel-Version: 6.6.15-sh7785lcr +Depends: kernel-image-6.7.7-sh7785lcr-di +Kernel-Version: 6.7.7-sh7785lcr Description: Network Block Device modules This package contains the modules required for support of the Network Block Device -Package: speakup-modules-6.6.15-sh7785lcr-di +Package: speakup-modules-6.7.7-sh7785lcr-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: speakup-modules -Depends: kernel-image-6.6.15-sh7785lcr-di -Kernel-Version: 6.6.15-sh7785lcr +Depends: kernel-image-6.7.7-sh7785lcr-di +Kernel-Version: 6.7.7-sh7785lcr Description: speakup modules This package contains speakup modules. -Package: sound-modules-6.6.15-sh7785lcr-di +Package: sound-modules-6.7.7-sh7785lcr-di Package-Type: udeb Architecture: sh4 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sound-modules -Depends: kernel-image-6.6.15-sh7785lcr-di, i2c-modules-6.6.15-sh7785lcr-di, usb-modules-6.6.15-sh7785lcr-di, firewire-core-modules-6.6.15-sh7785lcr-di, crc-modules-6.6.15-sh7785lcr-di -Kernel-Version: 6.6.15-sh7785lcr +Depends: kernel-image-6.7.7-sh7785lcr-di, i2c-modules-6.7.7-sh7785lcr-di, usb-modules-6.7.7-sh7785lcr-di, firewire-core-modules-6.7.7-sh7785lcr-di, crc-modules-6.7.7-sh7785lcr-di +Kernel-Version: 6.7.7-sh7785lcr Description: sound support This package contains sound modules. -Package: linux-headers-6.6.15-sparc64 +Package: linux-headers-6.7.7-sparc64 Architecture: sparc64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Depends: linux-headers-6.6.15-common (= ${source:Version}), linux-image-6.6.15-sparc64 (= ${binary:Version}) | linux-image-6.6.15-sparc64-unsigned (= ${binary:Version}), linux-kbuild-6.6.15, ${misc:Depends}, gcc-13 -Description: Header files for Linux 6.6.15-sparc64 +Depends: linux-headers-6.7.7-common (= ${source:Version}), linux-image-6.7.7-sparc64 (= ${binary:Version}) | linux-image-6.7.7-sparc64-unsigned (= ${binary:Version}), linux-kbuild-6.7.7, ${misc:Depends}, gcc-13 +Description: Header files for Linux 6.7.7-sparc64 This package provides the architecture-specific kernel header files for - Linux kernel 6.6.15-sparc64, generally used for building out-of-tree - kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-sparc64, and can be used for building - modules that load into the kernel provided by the - linux-image-6.6.15-sparc64 package. + Linux kernel 6.7.7-sparc64, generally used for building out-of-tree kernel + modules. These files are going to be installed into + /usr/src/linux-headers-6.7.7-sparc64, and can be used for building modules + that load into the kernel provided by the linux-image-6.7.7-sparc64 + package. -Package: linux-image-6.6.15-sparc64 +Package: linux-image-6.7.7-sparc64 Architecture: sparc64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [sparc64] | linux-initramfs-tool [sparc64] Recommends: firmware-linux-free, apparmor [sparc64] -Suggests: linux-doc-6.6, debian-kernel-handbook, fdutils [sparc64], grub-ieee1275 [sparc64] +Suggests: linux-doc-6.7, debian-kernel-handbook, fdutils [sparc64], grub-ieee1275 [sparc64] Breaks: fwupdate (<< 12-7) [sparc64], wireless-regdb (<< 2019.06.03-1~) [sparc64], initramfs-tools (<< 0.120+deb8u2) [sparc64] -Description: Linux 6.6 for uniprocessor 64-bit UltraSPARC - The Linux kernel 6.6 and modules for use on uniprocessor 64-bit +Description: Linux 6.7 for uniprocessor 64-bit UltraSPARC + The Linux kernel 6.7 and modules for use on uniprocessor 64-bit UltraSPARC. Package: linux-image-sparc64 Architecture: sparc64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Provides: linux-latest-modules-6.6.15-sparc64, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] -Depends: linux-image-6.6.15-sparc64 (= ${binary:Version}), ${misc:Depends} +Provides: linux-latest-modules-6.7.7-sparc64, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] +Depends: linux-image-6.7.7-sparc64 (= ${binary:Version}), ${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. @@ -15384,460 +15406,460 @@ Description: Linux for uniprocessor 64-bit UltraSPARC (meta-package) Package: linux-headers-sparc64 Architecture: sparc64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Depends: linux-headers-6.6.15-sparc64 (= ${binary:Version}), ${misc:Depends} +Depends: linux-headers-6.7.7-sparc64 (= ${binary:Version}), ${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-6.6.15-sparc64-dbg +Package: linux-image-6.7.7-sparc64-dbg Architecture: sparc64 Section: debug Priority: optional Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.quick> Depends: ${misc:Depends} -Description: Debug symbols for linux-image-6.6.15-sparc64 +Description: Debug symbols for linux-image-6.7.7-sparc64 This package provides the detached debug symbols for the Linux kernel and - modules in linux-image-6.6.15-sparc64. + modules in linux-image-6.7.7-sparc64. Package: linux-image-sparc64-dbg Architecture: sparc64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.nometa !pkg.linux.quick> Provides: linux-latest-image-dbg -Depends: linux-image-6.6.15-sparc64-dbg (= ${binary:Version}), ${misc:Depends} +Depends: linux-image-6.7.7-sparc64-dbg (= ${binary:Version}), ${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: kernel-image-6.6.15-sparc64-di +Package: kernel-image-6.7.7-sparc64-di Package-Type: udeb Architecture: sparc64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: kernel-image -Kernel-Version: 6.6.15-sparc64 +Kernel-Version: 6.7.7-sparc64 Description: Linux kernel image and core modules for the Debian installer This package contains the kernel image and core modules for the Debian installer boot images. It does _not_ provide a usable kernel for your full Debian system. -Package: nic-modules-6.6.15-sparc64-di +Package: nic-modules-6.7.7-sparc64-di Package-Type: udeb Architecture: sparc64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-modules, nic-extra-modules -Depends: kernel-image-6.6.15-sparc64-di, nic-shared-modules-6.6.15-sparc64-di, i2c-modules-6.6.15-sparc64-di, crc-modules-6.6.15-sparc64-di -Kernel-Version: 6.6.15-sparc64 +Depends: kernel-image-6.7.7-sparc64-di, nic-shared-modules-6.7.7-sparc64-di, i2c-modules-6.7.7-sparc64-di, crc-modules-6.7.7-sparc64-di +Kernel-Version: 6.7.7-sparc64 Description: NIC drivers This package contains Ethernet and some paravirtualised network drivers for the kernel. -Package: nic-shared-modules-6.6.15-sparc64-di +Package: nic-shared-modules-6.7.7-sparc64-di Package-Type: udeb Architecture: sparc64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-shared-modules -Depends: kernel-image-6.6.15-sparc64-di, crc-modules-6.6.15-sparc64-di, i2c-modules-6.6.15-sparc64-di -Kernel-Version: 6.6.15-sparc64 +Depends: kernel-image-6.7.7-sparc64-di, crc-modules-6.7.7-sparc64-di, i2c-modules-6.7.7-sparc64-di +Kernel-Version: 6.7.7-sparc64 Description: Shared NIC drivers This package contains NIC drivers needed by combinations of nic-modules, nic-pcmcia-modules, nic-usb-modules and nic-wireless-modules. -Package: usb-serial-modules-6.6.15-sparc64-di +Package: usb-serial-modules-6.7.7-sparc64-di Package-Type: udeb Architecture: sparc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-serial-modules -Depends: kernel-image-6.6.15-sparc64-di, usb-modules-6.6.15-sparc64-di -Kernel-Version: 6.6.15-sparc64 +Depends: kernel-image-6.7.7-sparc64-di, usb-modules-6.7.7-sparc64-di +Kernel-Version: 6.7.7-sparc64 Description: USB serial drivers This package contains USB serial drivers for the kernel. -Package: ppp-modules-6.6.15-sparc64-di +Package: ppp-modules-6.7.7-sparc64-di Package-Type: udeb Architecture: sparc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ppp-modules -Depends: kernel-image-6.6.15-sparc64-di, crc-modules-6.6.15-sparc64-di -Kernel-Version: 6.6.15-sparc64 +Depends: kernel-image-6.7.7-sparc64-di, crc-modules-6.7.7-sparc64-di +Kernel-Version: 6.7.7-sparc64 Description: PPP drivers This package contains PPP drivers for the kernel. -Package: pata-modules-6.6.15-sparc64-di +Package: pata-modules-6.7.7-sparc64-di Package-Type: udeb Architecture: sparc64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: pata-modules -Depends: kernel-image-6.6.15-sparc64-di, ata-modules-6.6.15-sparc64-di -Kernel-Version: 6.6.15-sparc64 +Depends: kernel-image-6.7.7-sparc64-di, ata-modules-6.7.7-sparc64-di +Kernel-Version: 6.7.7-sparc64 Description: PATA drivers This package contains PATA drivers for the kernel. -Package: cdrom-core-modules-6.6.15-sparc64-di +Package: cdrom-core-modules-6.7.7-sparc64-di Package-Type: udeb Architecture: sparc64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: cdrom-core-modules -Depends: kernel-image-6.6.15-sparc64-di, scsi-core-modules-6.6.15-sparc64-di -Kernel-Version: 6.6.15-sparc64 +Depends: kernel-image-6.7.7-sparc64-di, scsi-core-modules-6.7.7-sparc64-di +Kernel-Version: 6.7.7-sparc64 Description: CDROM support This package contains core CDROM support for the kernel. -Package: scsi-core-modules-6.6.15-sparc64-di +Package: scsi-core-modules-6.7.7-sparc64-di Package-Type: udeb Architecture: sparc64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-core-modules -Depends: kernel-image-6.6.15-sparc64-di, crc-modules-6.6.15-sparc64-di -Kernel-Version: 6.6.15-sparc64 +Depends: kernel-image-6.7.7-sparc64-di, crc-modules-6.7.7-sparc64-di +Kernel-Version: 6.7.7-sparc64 Description: Core SCSI subsystem This package contains the core SCSI subsystem for the kernel. -Package: scsi-modules-6.6.15-sparc64-di +Package: scsi-modules-6.7.7-sparc64-di Package-Type: udeb Architecture: sparc64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-modules -Depends: kernel-image-6.6.15-sparc64-di, scsi-core-modules-6.6.15-sparc64-di, cdrom-core-modules-6.6.15-sparc64-di, ata-modules-6.6.15-sparc64-di -Kernel-Version: 6.6.15-sparc64 +Depends: kernel-image-6.7.7-sparc64-di, scsi-core-modules-6.7.7-sparc64-di, cdrom-core-modules-6.7.7-sparc64-di, ata-modules-6.7.7-sparc64-di +Kernel-Version: 6.7.7-sparc64 Description: SCSI drivers This package contains SCSI drivers for the kernel. -Package: btrfs-modules-6.6.15-sparc64-di +Package: btrfs-modules-6.7.7-sparc64-di Package-Type: udeb Architecture: sparc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: btrfs-modules -Depends: kernel-image-6.6.15-sparc64-di, crc-modules-6.6.15-sparc64-di, md-modules-6.6.15-sparc64-di -Kernel-Version: 6.6.15-sparc64 +Depends: kernel-image-6.7.7-sparc64-di, crc-modules-6.7.7-sparc64-di, md-modules-6.7.7-sparc64-di +Kernel-Version: 6.7.7-sparc64 Description: BTRFS filesystem support This package contains the BTRFS filesystem module for the kernel. -Package: ext4-modules-6.6.15-sparc64-di +Package: ext4-modules-6.7.7-sparc64-di Package-Type: udeb Architecture: sparc64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ext4-modules, ext2-modules, ext3-modules -Depends: kernel-image-6.6.15-sparc64-di, crc-modules-6.6.15-sparc64-di -Kernel-Version: 6.6.15-sparc64 +Depends: kernel-image-6.7.7-sparc64-di, crc-modules-6.7.7-sparc64-di +Kernel-Version: 6.7.7-sparc64 Description: ext2/ext3/ext4 filesystem support This package contains the ext4 filesystem module for the kernel, which also supports ext2 and ext3. -Package: isofs-modules-6.6.15-sparc64-di +Package: isofs-modules-6.7.7-sparc64-di Package-Type: udeb Architecture: sparc64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: isofs-modules -Depends: kernel-image-6.6.15-sparc64-di, cdrom-core-modules-6.6.15-sparc64-di -Kernel-Version: 6.6.15-sparc64 +Depends: kernel-image-6.7.7-sparc64-di, cdrom-core-modules-6.7.7-sparc64-di +Kernel-Version: 6.7.7-sparc64 Description: ISOFS filesystem support This package contains the ISOFS filesystem module for the kernel. -Package: jfs-modules-6.6.15-sparc64-di +Package: jfs-modules-6.7.7-sparc64-di Package-Type: udeb Architecture: sparc64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: jfs-modules -Depends: kernel-image-6.6.15-sparc64-di -Kernel-Version: 6.6.15-sparc64 +Depends: kernel-image-6.7.7-sparc64-di +Kernel-Version: 6.7.7-sparc64 Description: JFS filesystem support This package contains the JFS filesystem module for the kernel. -Package: ufs-modules-6.6.15-sparc64-di +Package: ufs-modules-6.7.7-sparc64-di Package-Type: udeb Architecture: sparc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ufs-modules -Depends: kernel-image-6.6.15-sparc64-di -Kernel-Version: 6.6.15-sparc64 +Depends: kernel-image-6.7.7-sparc64-di +Kernel-Version: 6.7.7-sparc64 Description: UFS filesystem support This package contains the UFS filesystem module for the kernel. -Package: xfs-modules-6.6.15-sparc64-di +Package: xfs-modules-6.7.7-sparc64-di Package-Type: udeb Architecture: sparc64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: xfs-modules -Depends: kernel-image-6.6.15-sparc64-di, crc-modules-6.6.15-sparc64-di -Kernel-Version: 6.6.15-sparc64 +Depends: kernel-image-6.7.7-sparc64-di, crc-modules-6.7.7-sparc64-di +Kernel-Version: 6.7.7-sparc64 Description: XFS filesystem support This package contains the XFS filesystem module for the kernel. -Package: fat-modules-6.6.15-sparc64-di +Package: fat-modules-6.7.7-sparc64-di Package-Type: udeb Architecture: sparc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fat-modules -Depends: kernel-image-6.6.15-sparc64-di -Kernel-Version: 6.6.15-sparc64 +Depends: kernel-image-6.7.7-sparc64-di +Kernel-Version: 6.7.7-sparc64 Description: FAT filesystem support This package contains the FAT and VFAT filesystem modules for the kernel. -Package: squashfs-modules-6.6.15-sparc64-di +Package: squashfs-modules-6.7.7-sparc64-di Package-Type: udeb Architecture: sparc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: squashfs-modules -Depends: kernel-image-6.6.15-sparc64-di -Kernel-Version: 6.6.15-sparc64 +Depends: kernel-image-6.7.7-sparc64-di +Kernel-Version: 6.7.7-sparc64 Description: squashfs modules This package contains squashfs modules. -Package: udf-modules-6.6.15-sparc64-di +Package: udf-modules-6.7.7-sparc64-di Package-Type: udeb Architecture: sparc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: udf-modules -Depends: kernel-image-6.6.15-sparc64-di, crc-modules-6.6.15-sparc64-di, cdrom-core-modules-6.6.15-sparc64-di -Kernel-Version: 6.6.15-sparc64 +Depends: kernel-image-6.7.7-sparc64-di, crc-modules-6.7.7-sparc64-di, cdrom-core-modules-6.7.7-sparc64-di +Kernel-Version: 6.7.7-sparc64 Description: UDF modules This package contains the UDF filesystem module. -Package: f2fs-modules-6.6.15-sparc64-di +Package: f2fs-modules-6.7.7-sparc64-di Package-Type: udeb Architecture: sparc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: f2fs-modules -Depends: kernel-image-6.6.15-sparc64-di, crc-modules-6.6.15-sparc64-di -Kernel-Version: 6.6.15-sparc64 +Depends: kernel-image-6.7.7-sparc64-di, crc-modules-6.7.7-sparc64-di +Kernel-Version: 6.7.7-sparc64 Description: f2fs filesystem support This package contains the f2fs (Flash-Friendly Filesystem) module. -Package: md-modules-6.6.15-sparc64-di +Package: md-modules-6.7.7-sparc64-di Package-Type: udeb Architecture: sparc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: md-modules -Depends: kernel-image-6.6.15-sparc64-di, crc-modules-6.6.15-sparc64-di -Kernel-Version: 6.6.15-sparc64 +Depends: kernel-image-6.7.7-sparc64-di, crc-modules-6.7.7-sparc64-di +Kernel-Version: 6.7.7-sparc64 Description: RAID and LVM support This package contains RAID and LVM modules for the kernel. -Package: multipath-modules-6.6.15-sparc64-di +Package: multipath-modules-6.7.7-sparc64-di Package-Type: udeb Architecture: sparc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: multipath-modules -Depends: kernel-image-6.6.15-sparc64-di, md-modules-6.6.15-sparc64-di, scsi-core-modules-6.6.15-sparc64-di -Kernel-Version: 6.6.15-sparc64 +Depends: kernel-image-6.7.7-sparc64-di, md-modules-6.7.7-sparc64-di, scsi-core-modules-6.7.7-sparc64-di +Kernel-Version: 6.7.7-sparc64 Description: Multipath support This package contains DM-Multipath modules for the kernel. -Package: usb-modules-6.6.15-sparc64-di +Package: usb-modules-6.7.7-sparc64-di Package-Type: udeb Architecture: sparc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-modules -Depends: kernel-image-6.6.15-sparc64-di -Kernel-Version: 6.6.15-sparc64 +Depends: kernel-image-6.7.7-sparc64-di +Kernel-Version: 6.7.7-sparc64 Description: USB support This package contains core USB drivers for the kernel. -Package: usb-storage-modules-6.6.15-sparc64-di +Package: usb-storage-modules-6.7.7-sparc64-di Package-Type: udeb Architecture: sparc64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-storage-modules -Depends: kernel-image-6.6.15-sparc64-di, scsi-core-modules-6.6.15-sparc64-di, usb-modules-6.6.15-sparc64-di -Kernel-Version: 6.6.15-sparc64 +Depends: kernel-image-6.7.7-sparc64-di, scsi-core-modules-6.7.7-sparc64-di, usb-modules-6.7.7-sparc64-di +Kernel-Version: 6.7.7-sparc64 Description: USB storage support This package contains the USB storage driver for the kernel. -Package: fb-modules-6.6.15-sparc64-di +Package: fb-modules-6.7.7-sparc64-di Package-Type: udeb Architecture: sparc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fb-modules -Depends: kernel-image-6.6.15-sparc64-di, i2c-modules-6.6.15-sparc64-di, input-modules-6.6.15-sparc64-di -Kernel-Version: 6.6.15-sparc64 +Depends: kernel-image-6.7.7-sparc64-di, i2c-modules-6.7.7-sparc64-di, input-modules-6.7.7-sparc64-di +Kernel-Version: 6.7.7-sparc64 Description: Frame buffer support This package contains Frame buffer drivers for the kernel. -Package: input-modules-6.6.15-sparc64-di +Package: input-modules-6.7.7-sparc64-di Package-Type: udeb Architecture: sparc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: input-modules -Depends: kernel-image-6.6.15-sparc64-di, usb-modules-6.6.15-sparc64-di, i2c-modules-6.6.15-sparc64-di, crc-modules-6.6.15-sparc64-di -Kernel-Version: 6.6.15-sparc64 +Depends: kernel-image-6.7.7-sparc64-di, usb-modules-6.7.7-sparc64-di, i2c-modules-6.7.7-sparc64-di, crc-modules-6.7.7-sparc64-di +Kernel-Version: 6.7.7-sparc64 Description: Input devices support This package contains input device drivers for the kernel. -Package: nic-usb-modules-6.6.15-sparc64-di +Package: nic-usb-modules-6.7.7-sparc64-di Package-Type: udeb Architecture: sparc64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-usb-modules -Depends: kernel-image-6.6.15-sparc64-di, nic-shared-modules-6.6.15-sparc64-di, usb-modules-6.6.15-sparc64-di, crc-modules-6.6.15-sparc64-di -Kernel-Version: 6.6.15-sparc64 +Depends: kernel-image-6.7.7-sparc64-di, nic-shared-modules-6.7.7-sparc64-di, usb-modules-6.7.7-sparc64-di, crc-modules-6.7.7-sparc64-di +Kernel-Version: 6.7.7-sparc64 Description: USB NIC drivers This package contains USB network adapter drivers for the kernel. -Package: sata-modules-6.6.15-sparc64-di +Package: sata-modules-6.7.7-sparc64-di Package-Type: udeb Architecture: sparc64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sata-modules -Depends: kernel-image-6.6.15-sparc64-di, scsi-core-modules-6.6.15-sparc64-di, ata-modules-6.6.15-sparc64-di -Kernel-Version: 6.6.15-sparc64 +Depends: kernel-image-6.7.7-sparc64-di, scsi-core-modules-6.7.7-sparc64-di, ata-modules-6.7.7-sparc64-di +Kernel-Version: 6.7.7-sparc64 Description: SATA drivers This package contains SATA drivers for the kernel. -Package: i2c-modules-6.6.15-sparc64-di +Package: i2c-modules-6.7.7-sparc64-di Package-Type: udeb Architecture: sparc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: i2c-modules -Depends: kernel-image-6.6.15-sparc64-di -Kernel-Version: 6.6.15-sparc64 +Depends: kernel-image-6.7.7-sparc64-di +Kernel-Version: 6.7.7-sparc64 Description: i2c support modules This package contains basic i2c support modules. -Package: crc-modules-6.6.15-sparc64-di +Package: crc-modules-6.7.7-sparc64-di Package-Type: udeb Architecture: sparc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crc-modules -Depends: kernel-image-6.6.15-sparc64-di -Kernel-Version: 6.6.15-sparc64 +Depends: kernel-image-6.7.7-sparc64-di +Kernel-Version: 6.7.7-sparc64 Description: CRC modules This package contains CRC support modules. -Package: crypto-modules-6.6.15-sparc64-di +Package: crypto-modules-6.7.7-sparc64-di Package-Type: udeb Architecture: sparc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-modules -Depends: kernel-image-6.6.15-sparc64-di -Kernel-Version: 6.6.15-sparc64 +Depends: kernel-image-6.7.7-sparc64-di +Kernel-Version: 6.7.7-sparc64 Description: crypto modules This package contains crypto modules. -Package: crypto-dm-modules-6.6.15-sparc64-di +Package: crypto-dm-modules-6.7.7-sparc64-di Package-Type: udeb Architecture: sparc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-dm-modules -Depends: kernel-image-6.6.15-sparc64-di, md-modules-6.6.15-sparc64-di -Kernel-Version: 6.6.15-sparc64 +Depends: kernel-image-6.7.7-sparc64-di, md-modules-6.7.7-sparc64-di +Kernel-Version: 6.7.7-sparc64 Description: devicemapper crypto module This package contains the devicemapper crypto (dm-crypt) module. -Package: ata-modules-6.6.15-sparc64-di +Package: ata-modules-6.7.7-sparc64-di Package-Type: udeb Architecture: sparc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ata-modules -Depends: kernel-image-6.6.15-sparc64-di, scsi-core-modules-6.6.15-sparc64-di -Kernel-Version: 6.6.15-sparc64 +Depends: kernel-image-6.7.7-sparc64-di, scsi-core-modules-6.7.7-sparc64-di +Kernel-Version: 6.7.7-sparc64 Description: ATA disk modules This package contains core ATA disk modules used by both PATA and SATA disk drivers. -Package: nbd-modules-6.6.15-sparc64-di +Package: nbd-modules-6.7.7-sparc64-di Package-Type: udeb Architecture: sparc64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nbd-modules -Depends: kernel-image-6.6.15-sparc64-di -Kernel-Version: 6.6.15-sparc64 +Depends: kernel-image-6.7.7-sparc64-di +Kernel-Version: 6.7.7-sparc64 Description: Network Block Device modules This package contains the modules required for support of the Network Block Device -Package: linux-headers-6.6.15-sparc64-smp +Package: linux-headers-6.7.7-sparc64-smp Architecture: sparc64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Depends: linux-headers-6.6.15-common (= ${source:Version}), linux-image-6.6.15-sparc64-smp (= ${binary:Version}) | linux-image-6.6.15-sparc64-smp-unsigned (= ${binary:Version}), linux-kbuild-6.6.15, ${misc:Depends}, gcc-13 -Description: Header files for Linux 6.6.15-sparc64-smp +Depends: linux-headers-6.7.7-common (= ${source:Version}), linux-image-6.7.7-sparc64-smp (= ${binary:Version}) | linux-image-6.7.7-sparc64-smp-unsigned (= ${binary:Version}), linux-kbuild-6.7.7, ${misc:Depends}, gcc-13 +Description: Header files for Linux 6.7.7-sparc64-smp This package provides the architecture-specific kernel header files for - Linux kernel 6.6.15-sparc64-smp, generally used for building out-of-tree + Linux kernel 6.7.7-sparc64-smp, generally used for building out-of-tree kernel modules. These files are going to be installed into - /usr/src/linux-headers-6.6.15-sparc64-smp, and can be used for building + /usr/src/linux-headers-6.7.7-sparc64-smp, and can be used for building modules that load into the kernel provided by the - linux-image-6.6.15-sparc64-smp package. + linux-image-6.7.7-sparc64-smp package. -Package: linux-image-6.6.15-sparc64-smp +Package: linux-image-6.7.7-sparc64-smp Architecture: sparc64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [sparc64] | linux-initramfs-tool [sparc64] Recommends: firmware-linux-free, apparmor [sparc64] -Suggests: linux-doc-6.6, debian-kernel-handbook, fdutils [sparc64], grub-ieee1275 [sparc64] +Suggests: linux-doc-6.7, debian-kernel-handbook, fdutils [sparc64], grub-ieee1275 [sparc64] Breaks: fwupdate (<< 12-7) [sparc64], wireless-regdb (<< 2019.06.03-1~) [sparc64], initramfs-tools (<< 0.120+deb8u2) [sparc64] -Description: Linux 6.6 for multiprocessor 64-bit UltraSPARC - The Linux kernel 6.6 and modules for use on multiprocessor 64-bit +Description: Linux 6.7 for multiprocessor 64-bit UltraSPARC + The Linux kernel 6.7 and modules for use on multiprocessor 64-bit UltraSPARC. Package: linux-image-sparc64-smp Architecture: sparc64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Provides: linux-latest-modules-6.6.15-sparc64-smp, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386], linux-image-generic -Depends: linux-image-6.6.15-sparc64-smp (= ${binary:Version}), ${misc:Depends} +Provides: linux-latest-modules-6.7.7-sparc64-smp, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386], linux-image-generic +Depends: linux-image-6.7.7-sparc64-smp (= ${binary:Version}), ${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. @@ -15846,26 +15868,26 @@ Package: linux-headers-sparc64-smp Architecture: sparc64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> Provides: linux-headers-generic -Depends: linux-headers-6.6.15-sparc64-smp (= ${binary:Version}), ${misc:Depends} +Depends: linux-headers-6.7.7-sparc64-smp (= ${binary:Version}), ${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-6.6.15-sparc64-smp-dbg +Package: linux-image-6.7.7-sparc64-smp-dbg Architecture: sparc64 Section: debug Priority: optional Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.quick> Depends: ${misc:Depends} -Description: Debug symbols for linux-image-6.6.15-sparc64-smp +Description: Debug symbols for linux-image-6.7.7-sparc64-smp This package provides the detached debug symbols for the Linux kernel and - modules in linux-image-6.6.15-sparc64-smp. + modules in linux-image-6.7.7-sparc64-smp. Package: linux-image-sparc64-smp-dbg Architecture: sparc64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nokerneldbg !pkg.linux.nometa !pkg.linux.quick> Provides: linux-latest-image-dbg -Depends: linux-image-6.6.15-sparc64-smp-dbg (= ${binary:Version}), ${misc:Depends} +Depends: linux-image-6.7.7-sparc64-smp-dbg (= ${binary:Version}), ${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. diff --git a/debian/control.md5sum b/debian/control.md5sum index 81fccce6c7..a7319297d0 100644 --- a/debian/control.md5sum +++ b/debian/control.md5sum @@ -1,5 +1,5 @@ -ff024b57724843f67bd2be6ebfb62f9b debian/bin/gencontrol.py -bc61ce3bc011b242b70e690a8bea54af debian/build/version-info +b7cea9c894d78cf60b178b55169eaa0f debian/bin/gencontrol.py +968c117fa3b39c4a30faebad8cf9b914 debian/build/version-info c06195eaf3f5d361e55133652fb46a6d debian/templates/config.control.in 05587ce41567baea8b88479df8a54e8d debian/templates/docs.control.in 0abe84ef18b69b7b7efda55c60b62e75 debian/templates/docs.meta.control.in @@ -10,7 +10,7 @@ d41d8cd98f00b204e9800998ecf8427e debian/templates/extra.control.in 4243a4a8135aca79414583e99f6c9482 debian/templates/headers.meta.control.in 39dddaa9ca4735ad2ddaf682ecf0b566 debian/templates/headers.meta.maintscript.in 0d7f6ea42f52d0a6013535a80111ee3e debian/templates/headers.postinst.in -33604124ac9c80d9abd4e00bb7b971a7 debian/templates/headers.tests-control.in +c009517cb2931ada043f11a79b797a0b debian/templates/headers.tests-control.in 69118afa256866998fb91c0f452246c1 debian/templates/image-dbg.control.in 8d2c4036974e8b5c35e2c0fafba9acd3 debian/templates/image-dbg.meta.control.in eebbd0d671c21eba0a79f6d1226c0bc7 debian/templates/image-dbg.meta.lintian-overrides.in @@ -30,7 +30,7 @@ c801fd63bc03b985079b5cf6eaf644b9 debian/templates/image.meta.control.in a4a60fc48b3240e46bbac6a1ddcaad30 debian/templates/image.postrm.in 38004750aa03cea41d5d3aeafff16fcc debian/templates/image.preinst.in afb508873a44a1f196c2a525fec4b415 debian/templates/image.prerm.in -814dda166c7e3ef02e6e259e805ac66a debian/templates/image.tests-control.in +d41d8cd98f00b204e9800998ecf8427e debian/templates/image.tests-control.in 01a02c1fdcbb5d0b53d0bfee083361f1 debian/templates/libc-dev.control.in e3d9c4dc629cc8ddb94eec5bb345610d debian/templates/main.control.in 8b0af4bffc37b385ffb461cd920548e1 debian/templates/main.tests-control.in @@ -47,43 +47,32 @@ a4a60fc48b3240e46bbac6a1ddcaad30 debian/templates/signed.image.postrm.in afb508873a44a1f196c2a525fec4b415 debian/templates/signed.image.prerm.in e642c662e64df7b08db8546492cb703e debian/templates/signed.source.control.in 0ce822e4b4bea2946ed195ba077157f8 debian/templates/signed.source.lintian-overrides.in -ad83b7ad774ea04049b5a9e54848ba60 debian/templates/source.control.in +912d466e70431bbe88338aa9bacf16aa debian/templates/source.control.in a2fcc022c7a3e2b4a35ce00040b6a384 debian/templates/sourcebin.control.in d16a8958945074d2c4fcf60b964435dc debian/templates/sourcebin.meta.control.in a20d83421667bad21739041d4e743ed1 debian/templates/sourcebin.meta.maintscript.in -ba14e8ecb6c405ed6cdf98286eb775e2 debian/templates/tools-unversioned.control.in +b2ff5adff66e4ed4567220fe2c302191 debian/templates/tools-unversioned.control.in 09d9076924594816d3f2b958029b2da3 debian/templates/tools-versioned.control.in -9ace0daf460146d7e1de61d8bd2026bd debian/config/defines -5d7b72554039a9b088693bc1e0c1e979 debian/config/alpha/defines -279933aef97fb98fb53244f7a98f81b3 debian/config/amd64/defines -d436ce39924ac2cc965ebbee0ed6bdd5 debian/config/arm64/defines -96a28e3ba5ab1e93a82f2d4a2d49bd14 debian/config/armel/defines -d16a0675491ac9539c09ae2ef58cacd1 debian/config/armhf/defines -366b94d652a66b437eabcd165bcc9610 debian/config/featureset-rt/defines -33fd813c9326bb5504f3e15640bb14cc debian/config/hppa/defines -0ddf227bb4f59929e9615afdc68cebc6 debian/config/i386/defines -0b916b26f971d33b4a6f0bd538c6b05d debian/config/ia64/defines -6d4c1555b6134703999b7d6e99e18a91 debian/config/m68k/defines -3fa0f919abb2174b24e8180d6ba5903d debian/config/mips/defines -b7d3bb8ea681a5deb8e6de2c449ef522 debian/config/mips64/defines -4ccdc8ab65b7bfc7ea604da9b3ffc302 debian/config/mips64el/defines -48d6b26911b983a9df252cf1ec6176ce debian/config/mips64r6el/defines -a884e3cb24288d6f6008791c293897af debian/config/mipsel/defines -182be7cb51203a510fa6a13d95ecbc1c debian/config/powerpc/defines -54d49cac497bb6d84f4a9f6102a04040 debian/config/ppc64/defines -cc50c01571cdf83522ff41ca1e484221 debian/config/ppc64el/defines -a50ff431517bddd759d53c0ad2850cb7 debian/config/riscv64/defines -98b165af447ad0762084581a11e78e92 debian/config/s390x/defines -5b0afa1bae79ed216488b9b561aa2864 debian/config/sh4/defines -689ea5c55240e334381aab06bbab922f debian/config/sparc64/defines -f4b2921156e7b1a038862f848fdfe48f debian/config/x32/defines -151153f013dfa1b12ab6f1eb4e15e289 debian/config/amd64/none/defines -7dc981827930ed6844a731ed954b9b9d debian/config/amd64/rt/defines -d4327dff78271fcbc513a83ce372983b debian/config/arm64/none/defines -d3c04182d8746e4871de922a63f03f97 debian/config/arm64/rt/defines -7a1631547f5f6eeba908a35805adca66 debian/config/armhf/none/defines -1cab87ca080defc647d4ae9adcf9a63a debian/config/armhf/rt/defines -49880aa562e364f664d613d4eca4dbe3 debian/config/i386/none/defines -7146ff53fc4f9fbb49948225d8589b69 debian/config/i386/rt/defines -40a3ee1bbe0fc4d02344b5c1d2f79f00 debian/config/riscv64/none/defines +46f11bff418d08a3dc71b764e54dd3f3 debian/config/defines.toml +ba2c200f8c43f7ec8d8323561739379a debian/config/alpha/defines.toml +9c7e42b270c37dcbc951f0696b8f4293 debian/config/amd64/defines.toml +bfbdeff9c0d57650266804cc33183eb1 debian/config/arm64/defines.toml +c90a866f733c09fe7be641341206bcf3 debian/config/armel/defines.toml +140108e427d4e105d5955982c886a731 debian/config/armhf/defines.toml +c840ab923e0857515675530f3f72496b debian/config/hppa/defines.toml +ca4d8dc97aead40aa78d7a331234129d debian/config/i386/defines.toml +e6bea61846bdd8172d426c492e2a834b debian/config/loong64/defines.toml +0ee23490da620ce420b23b2d065ee2d3 debian/config/m68k/defines.toml +9b8212570b14b5244afd2bce7324f65a debian/config/mips/defines.toml +3890d68a1c0bff65aa20cfdca517a396 debian/config/mips64/defines.toml +7c22089c115c9284ff2a0db473700739 debian/config/mips64el/defines.toml +fbff991d47599c6bf2eb39809b430d0c debian/config/mips64r6el/defines.toml +23eed330ce3e3599edb0e3796efa707e debian/config/mipsel/defines.toml +964fcd3ac79ea8708d8128f585335375 debian/config/powerpc/defines.toml +0d423ce014e384b64348ed9fb7bbb096 debian/config/ppc64/defines.toml +3ab0fcc3ca724c4e9dd3daa7fc50f5a9 debian/config/ppc64el/defines.toml +9c278c77b84ae25f1828ba6869a9d4e8 debian/config/riscv64/defines.toml +bce18e184331a5df2f341c82a68a5412 debian/config/s390x/defines.toml +b36eadccfa78781ed995270e3ad17a73 debian/config/sh4/defines.toml +e6aecae3ea3f53f24605e42e76971e3f debian/config/sparc64/defines.toml 12c309a499ac813abafe18ba8adf794e debian/installer/package-list diff --git a/debian/copyright b/debian/copyright index 01893009e2..06d348f5fa 100644 --- a/debian/copyright +++ b/debian/copyright @@ -4,7 +4,6 @@ Source: https://www.kernel.org/pub/linux/kernel/ Files-Excluded: Documentation/netlabel/draft-ietf-cipso-ipsecurity-01.txt arch/powerpc/platforms/8xx/micropatch.c drivers/media/usb/dvb-usb/af9005-script.h - drivers/net/appletalk/cops* drivers/video/fbdev/nvidia drivers/video/fbdev/riva Comment: diff --git a/debian/generated.signed-amd64/control b/debian/generated.signed-amd64/control index 1c64c8a58b..04551c084b 100644 --- a/debian/generated.signed-amd64/control +++ b/debian/generated.signed-amd64/control @@ -5,24 +5,24 @@ Maintainer: Debian Kernel Team <debian-kernel@lists.debian.org> Uploaders: Bastian Blank <waldi@debian.org>, maximilian attems <maks@debian.org>, Ben Hutchings <benh@debian.org>, Salvatore Bonaccorso <carnil@debian.org> Standards-Version: 4.2.0 Build-Depends: debhelper-compat (= 12), dh-exec, python3:any, sbsigntool [amd64 arm64 i386] -Build-Depends-Arch: linux-image-6.6.15-amd64-unsigned (= @signedtemplate_binaryversion@) [amd64] <!pkg.linux.nokernel !pkg.linux.quick>, kernel-wedge (>= 2.105~) [amd64] <!pkg.linux.nokernel>, kmod [amd64] <!pkg.linux.nokernel>, rsync [amd64] <!pkg.linux.nokernel>, linux-image-6.6.15-cloud-amd64-unsigned (= @signedtemplate_binaryversion@) [amd64] <!pkg.linux.nokernel>, linux-image-6.6.15-rt-amd64-unsigned (= @signedtemplate_binaryversion@) [amd64] <!pkg.linux.nokernel !pkg.linux.quick> +Build-Depends-Arch: linux-image-6.7.7-amd64-unsigned (= @signedtemplate_binaryversion@) [amd64] <!pkg.linux.nokernel !pkg.linux.quick>, kernel-wedge (>= 2.105~) [amd64] <!pkg.linux.nokernel>, kmod [amd64] <!pkg.linux.nokernel>, rsync [amd64] <!pkg.linux.nokernel>, linux-image-6.7.7-cloud-amd64-unsigned (= @signedtemplate_binaryversion@) [amd64] <!pkg.linux.nokernel>, linux-image-6.7.7-rt-amd64-unsigned (= @signedtemplate_binaryversion@) [amd64] <!pkg.linux.nokernel !pkg.linux.quick> Rules-Requires-Root: no Homepage: https://www.kernel.org/ Vcs-Browser: https://salsa.debian.org/kernel-team/linux Vcs-Git: https://salsa.debian.org/kernel-team/linux.git -Package: linux-image-6.6.15-amd64 +Package: linux-image-6.7.7-amd64 Architecture: amd64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Built-Using: linux (= 6.6.15-2) +Built-Using: linux (= 6.7.7-1) Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [amd64] | linux-initramfs-tool [amd64] Recommends: firmware-linux-free, apparmor [amd64] -Suggests: linux-doc-6.6, debian-kernel-handbook, grub-pc [amd64] | grub-efi-amd64 [amd64] | extlinux [amd64] -Replaces: linux-image-6.6.15-amd64-unsigned +Suggests: linux-doc-6.7, debian-kernel-handbook, grub-pc [amd64] | grub-efi-amd64 [amd64] | extlinux [amd64] +Replaces: linux-image-6.7.7-amd64-unsigned Breaks: fwupdate (<< 12-7) [amd64], wireless-regdb (<< 2019.06.03-1~) [amd64], initramfs-tools (<< 0.120+deb8u2) [amd64] -Conflicts: linux-image-6.6.15-amd64-unsigned -Description: Linux 6.6 for 64-bit PCs (signed) - The Linux kernel 6.6 and modules for use on PCs with AMD64, Intel 64 or +Conflicts: linux-image-6.7.7-amd64-unsigned +Description: Linux 6.7 for 64-bit PCs (signed) + The Linux kernel 6.7 and modules for use on PCs with AMD64, Intel 64 or VIA Nano processors. . The kernel image is signed for use with Secure Boot. @@ -30,8 +30,8 @@ Description: Linux 6.6 for 64-bit PCs (signed) Package: linux-image-amd64 Architecture: amd64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Provides: linux-latest-modules-6.6.15-amd64, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386], linux-image-generic -Depends: linux-image-6.6.15-amd64 (= ${binary:Version}), ${misc:Depends} +Provides: linux-latest-modules-6.7.7-amd64, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386], linux-image-generic +Depends: linux-image-6.7.7-amd64 (= ${binary:Version}), ${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. @@ -40,643 +40,643 @@ Package: linux-headers-amd64 Architecture: amd64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> Provides: linux-headers-generic -Depends: linux-headers-6.6.15-amd64 (= ${binary:Version}), ${misc:Depends} +Depends: linux-headers-6.7.7-amd64 (= ${binary:Version}), ${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: kernel-image-6.6.15-amd64-di +Package: kernel-image-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: kernel-image -Kernel-Version: 6.6.15-amd64 +Kernel-Version: 6.7.7-amd64 Description: Linux kernel image and core modules for the Debian installer This package contains the kernel image and core modules for the Debian installer boot images. It does _not_ provide a usable kernel for your full Debian system. -Package: nic-modules-6.6.15-amd64-di +Package: nic-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-modules, nic-extra-modules -Depends: kernel-image-6.6.15-amd64-di, nic-shared-modules-6.6.15-amd64-di, i2c-modules-6.6.15-amd64-di, crc-modules-6.6.15-amd64-di, mtd-core-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, nic-shared-modules-6.7.7-amd64-di, i2c-modules-6.7.7-amd64-di, crc-modules-6.7.7-amd64-di, mtd-core-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: NIC drivers This package contains Ethernet and some paravirtualised network drivers for the kernel. -Package: nic-wireless-modules-6.6.15-amd64-di +Package: nic-wireless-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-wireless-modules -Depends: kernel-image-6.6.15-amd64-di, nic-shared-modules-6.6.15-amd64-di, usb-modules-6.6.15-amd64-di, mmc-core-modules-6.6.15-amd64-di, pcmcia-modules-6.6.15-amd64-di, crc-modules-6.6.15-amd64-di, rfkill-modules-6.6.15-amd64-di, crypto-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, nic-shared-modules-6.7.7-amd64-di, usb-modules-6.7.7-amd64-di, mmc-core-modules-6.7.7-amd64-di, pcmcia-modules-6.7.7-amd64-di, crc-modules-6.7.7-amd64-di, rfkill-modules-6.7.7-amd64-di, crypto-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: Wireless NIC drivers This package contains wireless NIC drivers for the kernel. Includes crypto modules only needed for wireless (WEP, WPA). -Package: nic-shared-modules-6.6.15-amd64-di +Package: nic-shared-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-shared-modules -Depends: kernel-image-6.6.15-amd64-di, crc-modules-6.6.15-amd64-di, i2c-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, crc-modules-6.7.7-amd64-di, i2c-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: Shared NIC drivers This package contains NIC drivers needed by combinations of nic-modules, nic-pcmcia-modules, nic-usb-modules and nic-wireless-modules. -Package: serial-modules-6.6.15-amd64-di +Package: serial-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: serial-modules -Depends: kernel-image-6.6.15-amd64-di, pcmcia-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, pcmcia-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: Serial drivers This package contains serial drivers for the kernel. -Package: usb-serial-modules-6.6.15-amd64-di +Package: usb-serial-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-serial-modules -Depends: kernel-image-6.6.15-amd64-di, usb-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, usb-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: USB serial drivers This package contains USB serial drivers for the kernel. -Package: ppp-modules-6.6.15-amd64-di +Package: ppp-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ppp-modules -Depends: kernel-image-6.6.15-amd64-di, serial-modules-6.6.15-amd64-di, crc-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, serial-modules-6.7.7-amd64-di, crc-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: PPP drivers This package contains PPP drivers for the kernel. -Package: pata-modules-6.6.15-amd64-di +Package: pata-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: pata-modules -Depends: kernel-image-6.6.15-amd64-di, ata-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, ata-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: PATA drivers This package contains PATA drivers for the kernel. -Package: cdrom-core-modules-6.6.15-amd64-di +Package: cdrom-core-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: cdrom-core-modules -Depends: kernel-image-6.6.15-amd64-di, scsi-core-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, scsi-core-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: CDROM support This package contains core CDROM support for the kernel. -Package: firewire-core-modules-6.6.15-amd64-di +Package: firewire-core-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: firewire-core-modules -Depends: kernel-image-6.6.15-amd64-di, scsi-core-modules-6.6.15-amd64-di, crc-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, scsi-core-modules-6.7.7-amd64-di, crc-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: Core FireWire drivers This package contains core FireWire drivers for the kernel. -Package: scsi-core-modules-6.6.15-amd64-di +Package: scsi-core-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-core-modules -Depends: kernel-image-6.6.15-amd64-di, crc-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, crc-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: Core SCSI subsystem This package contains the core SCSI subsystem for the kernel. -Package: scsi-modules-6.6.15-amd64-di +Package: scsi-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-modules -Depends: kernel-image-6.6.15-amd64-di, scsi-core-modules-6.6.15-amd64-di, cdrom-core-modules-6.6.15-amd64-di, ata-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, scsi-core-modules-6.7.7-amd64-di, cdrom-core-modules-6.7.7-amd64-di, ata-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: SCSI drivers This package contains SCSI drivers for the kernel. -Package: scsi-nic-modules-6.6.15-amd64-di +Package: scsi-nic-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-nic-modules -Depends: scsi-modules-6.6.15-amd64-di, nic-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: scsi-modules-6.7.7-amd64-di, nic-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: SCSI drivers for converged NICs This package contains SCSI drivers that depend on net drivers. -Package: loop-modules-6.6.15-amd64-di +Package: loop-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: loop-modules -Depends: kernel-image-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: Loopback filesystem support This package contains loopback filesystem support for the kernel. -Package: btrfs-modules-6.6.15-amd64-di +Package: btrfs-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: btrfs-modules -Depends: kernel-image-6.6.15-amd64-di, crc-modules-6.6.15-amd64-di, md-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, crc-modules-6.7.7-amd64-di, md-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: BTRFS filesystem support This package contains the BTRFS filesystem module for the kernel. -Package: ext4-modules-6.6.15-amd64-di +Package: ext4-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ext4-modules, ext2-modules, ext3-modules -Depends: kernel-image-6.6.15-amd64-di, crc-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, crc-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: ext2/ext3/ext4 filesystem support This package contains the ext4 filesystem module for the kernel, which also supports ext2 and ext3. -Package: isofs-modules-6.6.15-amd64-di +Package: isofs-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: isofs-modules -Depends: kernel-image-6.6.15-amd64-di, cdrom-core-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, cdrom-core-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: ISOFS filesystem support This package contains the ISOFS filesystem module for the kernel. -Package: jfs-modules-6.6.15-amd64-di +Package: jfs-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: jfs-modules -Depends: kernel-image-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: JFS filesystem support This package contains the JFS filesystem module for the kernel. -Package: xfs-modules-6.6.15-amd64-di +Package: xfs-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: xfs-modules -Depends: kernel-image-6.6.15-amd64-di, crc-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, crc-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: XFS filesystem support This package contains the XFS filesystem module for the kernel. -Package: fat-modules-6.6.15-amd64-di +Package: fat-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fat-modules -Depends: kernel-image-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: FAT filesystem support This package contains the FAT and VFAT filesystem modules for the kernel. -Package: squashfs-modules-6.6.15-amd64-di +Package: squashfs-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: squashfs-modules -Depends: kernel-image-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: squashfs modules This package contains squashfs modules. -Package: udf-modules-6.6.15-amd64-di +Package: udf-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: udf-modules -Depends: kernel-image-6.6.15-amd64-di, crc-modules-6.6.15-amd64-di, cdrom-core-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, crc-modules-6.7.7-amd64-di, cdrom-core-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: UDF modules This package contains the UDF filesystem module. -Package: f2fs-modules-6.6.15-amd64-di +Package: f2fs-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: f2fs-modules -Depends: kernel-image-6.6.15-amd64-di, crc-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, crc-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: f2fs filesystem support This package contains the f2fs (Flash-Friendly Filesystem) module. -Package: md-modules-6.6.15-amd64-di +Package: md-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: md-modules -Depends: kernel-image-6.6.15-amd64-di, crc-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, crc-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: RAID and LVM support This package contains RAID and LVM modules for the kernel. -Package: multipath-modules-6.6.15-amd64-di +Package: multipath-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: multipath-modules -Depends: kernel-image-6.6.15-amd64-di, md-modules-6.6.15-amd64-di, scsi-core-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, md-modules-6.7.7-amd64-di, scsi-core-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: Multipath support This package contains DM-Multipath modules for the kernel. -Package: usb-modules-6.6.15-amd64-di +Package: usb-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-modules -Depends: kernel-image-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: USB support This package contains core USB drivers for the kernel. -Package: usb-storage-modules-6.6.15-amd64-di +Package: usb-storage-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-storage-modules -Depends: kernel-image-6.6.15-amd64-di, scsi-core-modules-6.6.15-amd64-di, usb-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, scsi-core-modules-6.7.7-amd64-di, usb-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: USB storage support This package contains the USB storage driver for the kernel. -Package: pcmcia-storage-modules-6.6.15-amd64-di +Package: pcmcia-storage-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: pcmcia-storage-modules -Depends: kernel-image-6.6.15-amd64-di, cdrom-core-modules-6.6.15-amd64-di, pcmcia-modules-6.6.15-amd64-di, ata-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, cdrom-core-modules-6.7.7-amd64-di, pcmcia-modules-6.7.7-amd64-di, ata-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: PCMCIA storage drivers This package contains PCMCIA storage drivers for the kernel. -Package: fb-modules-6.6.15-amd64-di +Package: fb-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fb-modules -Depends: kernel-image-6.6.15-amd64-di, i2c-modules-6.6.15-amd64-di, input-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, i2c-modules-6.7.7-amd64-di, input-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: Frame buffer support This package contains Frame buffer drivers for the kernel. -Package: input-modules-6.6.15-amd64-di +Package: input-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: input-modules -Depends: kernel-image-6.6.15-amd64-di, usb-modules-6.6.15-amd64-di, i2c-modules-6.6.15-amd64-di, rfkill-modules-6.6.15-amd64-di, crc-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, usb-modules-6.7.7-amd64-di, i2c-modules-6.7.7-amd64-di, rfkill-modules-6.7.7-amd64-di, crc-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: Input devices support This package contains input device drivers for the kernel. -Package: event-modules-6.6.15-amd64-di +Package: event-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: event-modules -Depends: kernel-image-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: Event support This package contains event drivers for the kernel. -Package: mouse-modules-6.6.15-amd64-di +Package: mouse-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mouse-modules -Depends: kernel-image-6.6.15-amd64-di, event-modules-6.6.15-amd64-di, input-modules-6.6.15-amd64-di, usb-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, event-modules-6.7.7-amd64-di, input-modules-6.7.7-amd64-di, usb-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: Mouse support This package contains mouse drivers for the kernel. -Package: nic-pcmcia-modules-6.6.15-amd64-di +Package: nic-pcmcia-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-pcmcia-modules -Depends: kernel-image-6.6.15-amd64-di, nic-shared-modules-6.6.15-amd64-di, nic-wireless-modules-6.6.15-amd64-di, pcmcia-modules-6.6.15-amd64-di, mmc-core-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, nic-shared-modules-6.7.7-amd64-di, nic-wireless-modules-6.7.7-amd64-di, pcmcia-modules-6.7.7-amd64-di, mmc-core-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: Common PCMCIA NIC drivers This package contains common PCMCIA NIC drivers for the kernel. -Package: pcmcia-modules-6.6.15-amd64-di +Package: pcmcia-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: pcmcia-modules -Depends: kernel-image-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: Common PCMCIA drivers This package contains common PCMCIA drivers for the kernel. -Package: nic-usb-modules-6.6.15-amd64-di +Package: nic-usb-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-usb-modules -Depends: kernel-image-6.6.15-amd64-di, nic-shared-modules-6.6.15-amd64-di, nic-wireless-modules-6.6.15-amd64-di, usb-modules-6.6.15-amd64-di, crc-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, nic-shared-modules-6.7.7-amd64-di, nic-wireless-modules-6.7.7-amd64-di, usb-modules-6.7.7-amd64-di, crc-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: USB NIC drivers This package contains USB network adapter drivers for the kernel. -Package: sata-modules-6.6.15-amd64-di +Package: sata-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sata-modules -Depends: kernel-image-6.6.15-amd64-di, scsi-core-modules-6.6.15-amd64-di, ata-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, scsi-core-modules-6.7.7-amd64-di, ata-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: SATA drivers This package contains SATA drivers for the kernel. -Package: acpi-modules-6.6.15-amd64-di +Package: acpi-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: acpi-modules -Depends: kernel-image-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: ACPI support modules This package contains kernel modules for ACPI. -Package: i2c-modules-6.6.15-amd64-di +Package: i2c-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: i2c-modules -Depends: kernel-image-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: i2c support modules This package contains basic i2c support modules. -Package: crc-modules-6.6.15-amd64-di +Package: crc-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crc-modules -Depends: kernel-image-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: CRC modules This package contains CRC support modules. -Package: crypto-modules-6.6.15-amd64-di +Package: crypto-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-modules -Depends: kernel-image-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: crypto modules This package contains crypto modules. -Package: crypto-dm-modules-6.6.15-amd64-di +Package: crypto-dm-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-dm-modules -Depends: kernel-image-6.6.15-amd64-di, md-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, md-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: devicemapper crypto module This package contains the devicemapper crypto (dm-crypt) module. -Package: efi-modules-6.6.15-amd64-di +Package: efi-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: efi-modules -Depends: kernel-image-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: EFI modules This package contains EFI modules. -Package: ata-modules-6.6.15-amd64-di +Package: ata-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ata-modules -Depends: kernel-image-6.6.15-amd64-di, scsi-core-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, scsi-core-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: ATA disk modules This package contains core ATA disk modules used by both PATA and SATA disk drivers. -Package: mmc-core-modules-6.6.15-amd64-di +Package: mmc-core-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mmc-core-modules -Depends: kernel-image-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: MMC/SD/SDIO core modules This package contains core modules for MMC/SD/SDIO support. -Package: mmc-modules-6.6.15-amd64-di +Package: mmc-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mmc-modules -Depends: kernel-image-6.6.15-amd64-di, mmc-core-modules-6.6.15-amd64-di, usb-modules-6.6.15-amd64-di, crc-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, mmc-core-modules-6.7.7-amd64-di, usb-modules-6.7.7-amd64-di, crc-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: MMC/SD card modules This package contains modules needed to support MMC (multimedia) and SD cards. -Package: nbd-modules-6.6.15-amd64-di +Package: nbd-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nbd-modules -Depends: kernel-image-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: Network Block Device modules This package contains the modules required for support of the Network Block Device -Package: speakup-modules-6.6.15-amd64-di +Package: speakup-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: speakup-modules -Depends: kernel-image-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: speakup modules This package contains speakup modules. -Package: uinput-modules-6.6.15-amd64-di +Package: uinput-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: uinput-modules -Depends: kernel-image-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: uinput support This package contains the uinput module. -Package: sound-modules-6.6.15-amd64-di +Package: sound-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sound-modules -Depends: kernel-image-6.6.15-amd64-di, i2c-modules-6.6.15-amd64-di, usb-modules-6.6.15-amd64-di, pcmcia-modules-6.6.15-amd64-di, firewire-core-modules-6.6.15-amd64-di, crc-modules-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di, i2c-modules-6.7.7-amd64-di, usb-modules-6.7.7-amd64-di, pcmcia-modules-6.7.7-amd64-di, firewire-core-modules-6.7.7-amd64-di, crc-modules-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: sound support This package contains sound modules. -Package: mtd-core-modules-6.6.15-amd64-di +Package: mtd-core-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mtd-core-modules -Depends: kernel-image-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: MTD core This package contains the MTD core. -Package: rfkill-modules-6.6.15-amd64-di +Package: rfkill-modules-6.7.7-amd64-di Package-Type: udeb Architecture: amd64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: rfkill-modules -Depends: kernel-image-6.6.15-amd64-di -Kernel-Version: 6.6.15-amd64 +Depends: kernel-image-6.7.7-amd64-di +Kernel-Version: 6.7.7-amd64 Description: rfkill modules This package contains the rfkill module. -Package: linux-image-6.6.15-cloud-amd64 +Package: linux-image-6.7.7-cloud-amd64 Architecture: amd64 Build-Profiles: <!pkg.linux.nokernel> -Built-Using: linux (= 6.6.15-2) +Built-Using: linux (= 6.7.7-1) Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [amd64] | linux-initramfs-tool [amd64] Recommends: firmware-linux-free, apparmor [amd64] -Suggests: linux-doc-6.6, debian-kernel-handbook, grub-pc [amd64] | grub-efi-amd64 [amd64] | extlinux [amd64] -Replaces: linux-image-6.6.15-cloud-amd64-unsigned +Suggests: linux-doc-6.7, debian-kernel-handbook, grub-pc [amd64] | grub-efi-amd64 [amd64] | extlinux [amd64] +Replaces: linux-image-6.7.7-cloud-amd64-unsigned Breaks: fwupdate (<< 12-7) [amd64], wireless-regdb (<< 2019.06.03-1~) [amd64], initramfs-tools (<< 0.120+deb8u2) [amd64] -Conflicts: linux-image-6.6.15-cloud-amd64-unsigned -Description: Linux 6.6 for x86-64 cloud (signed) - The Linux kernel 6.6 and modules for use on cloud platforms including +Conflicts: linux-image-6.7.7-cloud-amd64-unsigned +Description: Linux 6.7 for x86-64 cloud (signed) + The Linux kernel 6.7 and modules for use on cloud platforms including Amazon EC2, Microsoft Azure, and Google Compute Engine. . The kernel image is signed for use with Secure Boot. @@ -684,8 +684,8 @@ Description: Linux 6.6 for x86-64 cloud (signed) Package: linux-image-cloud-amd64 Architecture: amd64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa> -Provides: linux-latest-modules-6.6.15-cloud-amd64, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] -Depends: linux-image-6.6.15-cloud-amd64 (= ${binary:Version}), ${misc:Depends} +Provides: linux-latest-modules-6.7.7-cloud-amd64, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] +Depends: linux-image-6.7.7-cloud-amd64 (= ${binary:Version}), ${misc:Depends} Description: Linux for x86-64 cloud (meta-package) This package depends on the latest Linux kernel and modules for use on cloud platforms including Amazon EC2, Microsoft Azure, and Google Compute @@ -694,23 +694,23 @@ Description: Linux for x86-64 cloud (meta-package) Package: linux-headers-cloud-amd64 Architecture: amd64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa> -Depends: linux-headers-6.6.15-cloud-amd64 (= ${binary:Version}), ${misc:Depends} +Depends: linux-headers-6.7.7-cloud-amd64 (= ${binary:Version}), ${misc:Depends} Description: Header files for Linux cloud-amd64 configuration (meta-package) This package depends on the architecture-specific header files for the latest Linux kernel cloud-amd64 configuration. -Package: linux-image-6.6.15-rt-amd64 +Package: linux-image-6.7.7-rt-amd64 Architecture: amd64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Built-Using: linux (= 6.6.15-2) +Built-Using: linux (= 6.7.7-1) Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [amd64] | linux-initramfs-tool [amd64] Recommends: firmware-linux-free, apparmor [amd64] -Suggests: linux-doc-6.6, debian-kernel-handbook, grub-pc [amd64] | grub-efi-amd64 [amd64] | extlinux [amd64] -Replaces: linux-image-6.6.15-rt-amd64-unsigned +Suggests: linux-doc-6.7, debian-kernel-handbook, grub-pc [amd64] | grub-efi-amd64 [amd64] | extlinux [amd64] +Replaces: linux-image-6.7.7-rt-amd64-unsigned Breaks: fwupdate (<< 12-7) [amd64], wireless-regdb (<< 2019.06.03-1~) [amd64], initramfs-tools (<< 0.120+deb8u2) [amd64] -Conflicts: linux-image-6.6.15-rt-amd64-unsigned -Description: Linux 6.6 for 64-bit PCs (signed), PREEMPT_RT - The Linux kernel 6.6 and modules for use on PCs with AMD64, Intel 64 or +Conflicts: linux-image-6.7.7-rt-amd64-unsigned +Description: Linux 6.7 for 64-bit PCs (signed), PREEMPT_RT + The Linux kernel 6.7 and modules for use on PCs with AMD64, Intel 64 or VIA Nano processors. . The kernel image is signed for use with Secure Boot. @@ -720,8 +720,8 @@ Description: Linux 6.6 for 64-bit PCs (signed), PREEMPT_RT Package: linux-image-rt-amd64 Architecture: amd64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Provides: linux-latest-modules-6.6.15-rt-amd64, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] -Depends: linux-image-6.6.15-rt-amd64 (= ${binary:Version}), ${misc:Depends} +Provides: linux-latest-modules-6.7.7-rt-amd64, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] +Depends: linux-image-6.7.7-rt-amd64 (= ${binary:Version}), ${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. @@ -729,7 +729,7 @@ Description: Linux for 64-bit PCs (meta-package) Package: linux-headers-rt-amd64 Architecture: amd64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Depends: linux-headers-6.6.15-rt-amd64 (= ${binary:Version}), ${misc:Depends} +Depends: linux-headers-6.7.7-rt-amd64 (= ${binary:Version}), ${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. diff --git a/debian/generated.signed-amd64/files.json b/debian/generated.signed-amd64/files.json index 51c7fe5568..e398950b60 100644 --- a/debian/generated.signed-amd64/files.json +++ b/debian/generated.signed-amd64/files.json @@ -1,29 +1,29 @@ { "packages": { - "linux-image-6.6.15-amd64-unsigned": { + "linux-image-6.7.7-amd64-unsigned": { "trusted_certs": [], "files": [ { "sig_type": "efi", - "file": "boot/vmlinuz-6.6.15-amd64" + "file": "boot/vmlinuz-6.7.7-amd64" } ] }, - "linux-image-6.6.15-cloud-amd64-unsigned": { + "linux-image-6.7.7-cloud-amd64-unsigned": { "trusted_certs": [], "files": [ { "sig_type": "efi", - "file": "boot/vmlinuz-6.6.15-cloud-amd64" + "file": "boot/vmlinuz-6.7.7-cloud-amd64" } ] }, - "linux-image-6.6.15-rt-amd64-unsigned": { + "linux-image-6.7.7-rt-amd64-unsigned": { "trusted_certs": [], "files": [ { "sig_type": "efi", - "file": "boot/vmlinuz-6.6.15-rt-amd64" + "file": "boot/vmlinuz-6.7.7-rt-amd64" } ] } diff --git a/debian/generated.signed-amd64/linux-headers-amd64.lintian-overrides b/debian/generated.signed-amd64/linux-headers-amd64.lintian-overrides index d2a7251875..8fab373612 100644 --- a/debian/generated.signed-amd64/linux-headers-amd64.lintian-overrides +++ b/debian/generated.signed-amd64/linux-headers-amd64.lintian-overrides @@ -1,3 +1,3 @@ # linux-signed-* source packages are generated by the linux source # package, so it is OK for their binaries to share documentation -linux-headers-amd64: usr-share-doc-symlink-to-foreign-package linux-headers-6.6.15-amd64 +linux-headers-amd64: usr-share-doc-symlink-to-foreign-package linux-headers-6.7.7-amd64 diff --git a/debian/generated.signed-amd64/linux-headers-amd64.maintscript b/debian/generated.signed-amd64/linux-headers-amd64.maintscript index 15e155fc4b..184d423edd 100644 --- a/debian/generated.signed-amd64/linux-headers-amd64.maintscript +++ b/debian/generated.signed-amd64/linux-headers-amd64.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-headers-amd64 linux-headers-6.6.15-amd64 5.7~rc5-1~exp1 linux-headers-amd64 +dir_to_symlink /usr/share/doc/linux-headers-amd64 linux-headers-6.7.7-amd64 5.7~rc5-1~exp1 linux-headers-amd64 diff --git a/debian/generated.signed-amd64/linux-headers-cloud-amd64.lintian-overrides b/debian/generated.signed-amd64/linux-headers-cloud-amd64.lintian-overrides index 37593811c5..570d3ebd54 100644 --- a/debian/generated.signed-amd64/linux-headers-cloud-amd64.lintian-overrides +++ b/debian/generated.signed-amd64/linux-headers-cloud-amd64.lintian-overrides @@ -1,3 +1,3 @@ # linux-signed-* source packages are generated by the linux source # package, so it is OK for their binaries to share documentation -linux-headers-cloud-amd64: usr-share-doc-symlink-to-foreign-package linux-headers-6.6.15-cloud-amd64 +linux-headers-cloud-amd64: usr-share-doc-symlink-to-foreign-package linux-headers-6.7.7-cloud-amd64 diff --git a/debian/generated.signed-amd64/linux-headers-cloud-amd64.maintscript b/debian/generated.signed-amd64/linux-headers-cloud-amd64.maintscript index b5e3960c3c..f1b6124be3 100644 --- a/debian/generated.signed-amd64/linux-headers-cloud-amd64.maintscript +++ b/debian/generated.signed-amd64/linux-headers-cloud-amd64.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-headers-cloud-amd64 linux-headers-6.6.15-cloud-amd64 5.7~rc5-1~exp1 linux-headers-cloud-amd64 +dir_to_symlink /usr/share/doc/linux-headers-cloud-amd64 linux-headers-6.7.7-cloud-amd64 5.7~rc5-1~exp1 linux-headers-cloud-amd64 diff --git a/debian/generated.signed-amd64/linux-headers-rt-amd64.lintian-overrides b/debian/generated.signed-amd64/linux-headers-rt-amd64.lintian-overrides index f0db7334fd..7f966298bc 100644 --- a/debian/generated.signed-amd64/linux-headers-rt-amd64.lintian-overrides +++ b/debian/generated.signed-amd64/linux-headers-rt-amd64.lintian-overrides @@ -1,3 +1,3 @@ # linux-signed-* source packages are generated by the linux source # package, so it is OK for their binaries to share documentation -linux-headers-rt-amd64: usr-share-doc-symlink-to-foreign-package linux-headers-6.6.15-rt-amd64 +linux-headers-rt-amd64: usr-share-doc-symlink-to-foreign-package linux-headers-6.7.7-rt-amd64 diff --git a/debian/generated.signed-amd64/linux-headers-rt-amd64.maintscript b/debian/generated.signed-amd64/linux-headers-rt-amd64.maintscript index a305c04b59..18107b980b 100644 --- a/debian/generated.signed-amd64/linux-headers-rt-amd64.maintscript +++ b/debian/generated.signed-amd64/linux-headers-rt-amd64.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-headers-rt-amd64 linux-headers-6.6.15-rt-amd64 5.7~rc5-1~exp1 linux-headers-rt-amd64 +dir_to_symlink /usr/share/doc/linux-headers-rt-amd64 linux-headers-6.7.7-rt-amd64 5.7~rc5-1~exp1 linux-headers-rt-amd64 diff --git a/debian/generated.signed-amd64/linux-image-6.6.15-amd64.NEWS b/debian/generated.signed-amd64/linux-image-6.7.7-amd64.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/generated.signed-amd64/linux-image-6.6.15-amd64.NEWS +++ b/debian/generated.signed-amd64/linux-image-6.7.7-amd64.NEWS diff --git a/debian/linux-image-6.6.15-amd64-unsigned.postinst b/debian/generated.signed-amd64/linux-image-6.7.7-amd64.postinst index 9c38b5d48b..d0f8e6c804 100644 --- a/debian/linux-image-6.6.15-amd64-unsigned.postinst +++ b/debian/generated.signed-amd64/linux-image-6.7.7-amd64.postinst @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-amd64 +version=6.7.7-amd64 image_path=/boot/vmlinuz-$version if [ "$1" != configure ]; then diff --git a/debian/linux-image-6.6.15-amd64-unsigned.postrm b/debian/generated.signed-amd64/linux-image-6.7.7-amd64.postrm index 925e71cbfc..87eebf9801 100644 --- a/debian/linux-image-6.6.15-amd64-unsigned.postrm +++ b/debian/generated.signed-amd64/linux-image-6.7.7-amd64.postrm @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-amd64 +version=6.7.7-amd64 image_path=/boot/vmlinuz-$version rm -f /lib/modules/$version/.fresh-install diff --git a/debian/generated.signed-amd64/linux-image-6.6.15-amd64.preinst b/debian/generated.signed-amd64/linux-image-6.7.7-amd64.preinst index 8389435aa9..6769f48470 100644 --- a/debian/generated.signed-amd64/linux-image-6.6.15-amd64.preinst +++ b/debian/generated.signed-amd64/linux-image-6.7.7-amd64.preinst @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-amd64 +version=6.7.7-amd64 image_path=/boot/vmlinuz-$version if [ "$1" = abort-upgrade ]; then diff --git a/debian/generated.signed-arm64/linux-image-6.6.15-arm64.prerm b/debian/generated.signed-amd64/linux-image-6.7.7-amd64.prerm index f43fba1b25..e755aa500b 100644 --- a/debian/generated.signed-arm64/linux-image-6.6.15-arm64.prerm +++ b/debian/generated.signed-amd64/linux-image-6.7.7-amd64.prerm @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-arm64 +version=6.7.7-amd64 image_path=/boot/vmlinuz-$version if [ "$1" != remove ]; then diff --git a/debian/generated.signed-amd64/linux-image-6.6.15-cloud-amd64.NEWS b/debian/generated.signed-amd64/linux-image-6.7.7-cloud-amd64.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/generated.signed-amd64/linux-image-6.6.15-cloud-amd64.NEWS +++ b/debian/generated.signed-amd64/linux-image-6.7.7-cloud-amd64.NEWS diff --git a/debian/generated.signed-amd64/linux-image-6.7.7-cloud-amd64.postinst b/debian/generated.signed-amd64/linux-image-6.7.7-cloud-amd64.postinst new file mode 100644 index 0000000000..256582d345 --- /dev/null +++ b/debian/generated.signed-amd64/linux-image-6.7.7-cloud-amd64.postinst @@ -0,0 +1,25 @@ +#!/bin/sh -e + +version=6.7.7-cloud-amd64 +image_path=/boot/vmlinuz-$version + +if [ "$1" != configure ]; then + exit 0 +fi + +depmod $version + +if [ -f /lib/modules/$version/.fresh-install ]; then + change=install +else + change=upgrade +fi +linux-update-symlinks $change $version $image_path +rm -f /lib/modules/$version/.fresh-install + +if [ -d /etc/kernel/postinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postinst.d +fi + +exit 0 diff --git a/debian/generated.signed-amd64/linux-image-6.7.7-cloud-amd64.postrm b/debian/generated.signed-amd64/linux-image-6.7.7-cloud-amd64.postrm new file mode 100644 index 0000000000..cda89f6c43 --- /dev/null +++ b/debian/generated.signed-amd64/linux-image-6.7.7-cloud-amd64.postrm @@ -0,0 +1,31 @@ +#!/bin/sh -e + +version=6.7.7-cloud-amd64 +image_path=/boot/vmlinuz-$version + +rm -f /lib/modules/$version/.fresh-install + +if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then + linux-update-symlinks remove $version $image_path +fi + +if [ -d /etc/kernel/postrm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postrm.d +fi + +if [ "$1" = purge ]; then + for extra_file in modules.dep modules.isapnpmap modules.pcimap \ + modules.usbmap modules.parportmap \ + modules.generic_string modules.ieee1394map \ + modules.ieee1394map modules.pnpbiosmap \ + modules.alias modules.ccwmap modules.inputmap \ + modules.symbols modules.ofmap \ + modules.seriomap modules.\*.bin \ + modules.softdep modules.devname; do + eval rm -f /lib/modules/$version/$extra_file + done + rmdir /lib/modules/$version || true +fi + +exit 0 diff --git a/debian/generated.signed-amd64/linux-image-6.7.7-cloud-amd64.preinst b/debian/generated.signed-amd64/linux-image-6.7.7-cloud-amd64.preinst new file mode 100644 index 0000000000..ab35edc28f --- /dev/null +++ b/debian/generated.signed-amd64/linux-image-6.7.7-cloud-amd64.preinst @@ -0,0 +1,21 @@ +#!/bin/sh -e + +version=6.7.7-cloud-amd64 +image_path=/boot/vmlinuz-$version + +if [ "$1" = abort-upgrade ]; then + exit 0 +fi + +if [ "$1" = install ]; then + # Create a flag file for postinst + mkdir -p /lib/modules/$version + touch /lib/modules/$version/.fresh-install +fi + +if [ -d /etc/kernel/preinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/preinst.d +fi + +exit 0 diff --git a/debian/generated.signed-amd64/linux-image-6.7.7-cloud-amd64.prerm b/debian/generated.signed-amd64/linux-image-6.7.7-cloud-amd64.prerm new file mode 100644 index 0000000000..4e1a186bb3 --- /dev/null +++ b/debian/generated.signed-amd64/linux-image-6.7.7-cloud-amd64.prerm @@ -0,0 +1,17 @@ +#!/bin/sh -e + +version=6.7.7-cloud-amd64 +image_path=/boot/vmlinuz-$version + +if [ "$1" != remove ]; then + exit 0 +fi + +linux-check-removal $version + +if [ -d /etc/kernel/prerm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/prerm.d +fi + +exit 0 diff --git a/debian/generated.signed-amd64/linux-image-6.6.15-rt-amd64.NEWS b/debian/generated.signed-amd64/linux-image-6.7.7-rt-amd64.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/generated.signed-amd64/linux-image-6.6.15-rt-amd64.NEWS +++ b/debian/generated.signed-amd64/linux-image-6.7.7-rt-amd64.NEWS diff --git a/debian/linux-image-6.6.15-686-pae.postinst b/debian/generated.signed-amd64/linux-image-6.7.7-rt-amd64.postinst index 197a89aa82..95ff5904d4 100644 --- a/debian/linux-image-6.6.15-686-pae.postinst +++ b/debian/generated.signed-amd64/linux-image-6.7.7-rt-amd64.postinst @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-686-pae +version=6.7.7-rt-amd64 image_path=/boot/vmlinuz-$version if [ "$1" != configure ]; then diff --git a/debian/linux-image-6.6.15-686-pae.postrm b/debian/generated.signed-amd64/linux-image-6.7.7-rt-amd64.postrm index a1e14e52e0..e68808c4db 100644 --- a/debian/linux-image-6.6.15-686-pae.postrm +++ b/debian/generated.signed-amd64/linux-image-6.7.7-rt-amd64.postrm @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-686-pae +version=6.7.7-rt-amd64 image_path=/boot/vmlinuz-$version rm -f /lib/modules/$version/.fresh-install diff --git a/debian/linux-image-6.6.15-686-pae.preinst b/debian/generated.signed-amd64/linux-image-6.7.7-rt-amd64.preinst index 3d6954724f..abedaa0db9 100644 --- a/debian/linux-image-6.6.15-686-pae.preinst +++ b/debian/generated.signed-amd64/linux-image-6.7.7-rt-amd64.preinst @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-686-pae +version=6.7.7-rt-amd64 image_path=/boot/vmlinuz-$version if [ "$1" = abort-upgrade ]; then diff --git a/debian/linux-image-6.6.15-686-pae.prerm b/debian/generated.signed-amd64/linux-image-6.7.7-rt-amd64.prerm index f3248b1e76..14a7eb4cd4 100644 --- a/debian/linux-image-6.6.15-686-pae.prerm +++ b/debian/generated.signed-amd64/linux-image-6.7.7-rt-amd64.prerm @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-686-pae +version=6.7.7-rt-amd64 image_path=/boot/vmlinuz-$version if [ "$1" != remove ]; then diff --git a/debian/generated.signed-amd64/linux-image-amd64.bug-presubj b/debian/generated.signed-amd64/linux-image-amd64.bug-presubj index bd3b178c0c..906d2cdef8 100644 --- a/debian/generated.signed-amd64/linux-image-amd64.bug-presubj +++ b/debian/generated.signed-amd64/linux-image-amd64.bug-presubj @@ -2,4 +2,4 @@ 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-6.6.15-amd64 instead. +the package name linux-image-6.7.7-amd64 instead. diff --git a/debian/generated.signed-amd64/linux-image-amd64.maintscript b/debian/generated.signed-amd64/linux-image-amd64.maintscript index 5ada7c3aa8..dce7ad9a21 100644 --- a/debian/generated.signed-amd64/linux-image-amd64.maintscript +++ b/debian/generated.signed-amd64/linux-image-amd64.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-amd64 linux-image-6.6.15-amd64 5.7~rc5-1~exp1 linux-image-amd64 +dir_to_symlink /usr/share/doc/linux-image-amd64 linux-image-6.7.7-amd64 5.7~rc5-1~exp1 linux-image-amd64 diff --git a/debian/generated.signed-amd64/linux-image-cloud-amd64.bug-presubj b/debian/generated.signed-amd64/linux-image-cloud-amd64.bug-presubj index d9a8e3a60e..8b0f687dd9 100644 --- a/debian/generated.signed-amd64/linux-image-cloud-amd64.bug-presubj +++ b/debian/generated.signed-amd64/linux-image-cloud-amd64.bug-presubj @@ -2,4 +2,4 @@ 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-6.6.15-cloud-amd64 instead. +the package name linux-image-6.7.7-cloud-amd64 instead. diff --git a/debian/generated.signed-amd64/linux-image-cloud-amd64.maintscript b/debian/generated.signed-amd64/linux-image-cloud-amd64.maintscript index e7b335d8db..a2f97c6868 100644 --- a/debian/generated.signed-amd64/linux-image-cloud-amd64.maintscript +++ b/debian/generated.signed-amd64/linux-image-cloud-amd64.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-cloud-amd64 linux-image-6.6.15-cloud-amd64 5.7~rc5-1~exp1 linux-image-cloud-amd64 +dir_to_symlink /usr/share/doc/linux-image-cloud-amd64 linux-image-6.7.7-cloud-amd64 5.7~rc5-1~exp1 linux-image-cloud-amd64 diff --git a/debian/generated.signed-amd64/linux-image-rt-amd64.bug-presubj b/debian/generated.signed-amd64/linux-image-rt-amd64.bug-presubj index f8a7d3ddc2..9a1032e13b 100644 --- a/debian/generated.signed-amd64/linux-image-rt-amd64.bug-presubj +++ b/debian/generated.signed-amd64/linux-image-rt-amd64.bug-presubj @@ -2,4 +2,4 @@ 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-6.6.15-rt-amd64 instead. +the package name linux-image-6.7.7-rt-amd64 instead. diff --git a/debian/generated.signed-amd64/linux-image-rt-amd64.maintscript b/debian/generated.signed-amd64/linux-image-rt-amd64.maintscript index 956080cf8b..86408bf515 100644 --- a/debian/generated.signed-amd64/linux-image-rt-amd64.maintscript +++ b/debian/generated.signed-amd64/linux-image-rt-amd64.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-rt-amd64 linux-image-6.6.15-rt-amd64 5.7~rc5-1~exp1 linux-image-rt-amd64 +dir_to_symlink /usr/share/doc/linux-image-rt-amd64 linux-image-6.7.7-rt-amd64 5.7~rc5-1~exp1 linux-image-rt-amd64 diff --git a/debian/generated.signed-amd64/rules.gen b/debian/generated.signed-amd64/rules.gen index adbd9a36e1..5de4fb302c 100644 --- a/debian/generated.signed-amd64/rules.gen +++ b/debian/generated.signed-amd64/rules.gen @@ -9,70 +9,70 @@ binary-arch_amd64:binary-arch_amd64_none binary-arch_amd64_rt binary-arch_amd64_none:binary-arch_amd64_none_amd64 binary-arch_amd64_none_cloud-amd64 binary-arch_amd64_none_amd64:binary-arch_amd64_none_amd64_image binary-arch_amd64_none_amd64_installer binary-arch_amd64_none_amd64_meta binary-arch_amd64_none_amd64_image: - $(call if_package, linux-image-6.6.15-amd64, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-amd64' DH_OPTIONS='-plinux-image-6.6.15-amd64' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-image-6.6.15-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-amd64, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-amd64' DH_OPTIONS='-plinux-image-6.7.7-amd64' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-image-6.7.7-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_amd64_none_amd64_installer: - $(call if_package, acpi-modules-6.6.15-amd64-di ata-modules-6.6.15-amd64-di btrfs-modules-6.6.15-amd64-di cdrom-core-modules-6.6.15-amd64-di crc-modules-6.6.15-amd64-di crypto-dm-modules-6.6.15-amd64-di crypto-modules-6.6.15-amd64-di efi-modules-6.6.15-amd64-di event-modules-6.6.15-amd64-di ext4-modules-6.6.15-amd64-di f2fs-modules-6.6.15-amd64-di fat-modules-6.6.15-amd64-di fb-modules-6.6.15-amd64-di firewire-core-modules-6.6.15-amd64-di i2c-modules-6.6.15-amd64-di input-modules-6.6.15-amd64-di isofs-modules-6.6.15-amd64-di jfs-modules-6.6.15-amd64-di kernel-image-6.6.15-amd64-di loop-modules-6.6.15-amd64-di md-modules-6.6.15-amd64-di mmc-core-modules-6.6.15-amd64-di mmc-modules-6.6.15-amd64-di mouse-modules-6.6.15-amd64-di mtd-core-modules-6.6.15-amd64-di multipath-modules-6.6.15-amd64-di nbd-modules-6.6.15-amd64-di nic-modules-6.6.15-amd64-di nic-pcmcia-modules-6.6.15-amd64-di nic-shared-modules-6.6.15-amd64-di nic-usb-modules-6.6.15-amd64-di nic-wireless-modules-6.6.15-amd64-di pata-modules-6.6.15-amd64-di pcmcia-modules-6.6.15-amd64-di pcmcia-storage-modules-6.6.15-amd64-di ppp-modules-6.6.15-amd64-di rfkill-modules-6.6.15-amd64-di sata-modules-6.6.15-amd64-di scsi-core-modules-6.6.15-amd64-di scsi-modules-6.6.15-amd64-di scsi-nic-modules-6.6.15-amd64-di serial-modules-6.6.15-amd64-di sound-modules-6.6.15-amd64-di speakup-modules-6.6.15-amd64-di squashfs-modules-6.6.15-amd64-di udf-modules-6.6.15-amd64-di uinput-modules-6.6.15-amd64-di usb-modules-6.6.15-amd64-di usb-serial-modules-6.6.15-amd64-di usb-storage-modules-6.6.15-amd64-di xfs-modules-6.6.15-amd64-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pacpi-modules-6.6.15-amd64-di -pata-modules-6.6.15-amd64-di -pbtrfs-modules-6.6.15-amd64-di -pcdrom-core-modules-6.6.15-amd64-di -pcrc-modules-6.6.15-amd64-di -pcrypto-dm-modules-6.6.15-amd64-di -pcrypto-modules-6.6.15-amd64-di -pefi-modules-6.6.15-amd64-di -pevent-modules-6.6.15-amd64-di -pext4-modules-6.6.15-amd64-di -pf2fs-modules-6.6.15-amd64-di -pfat-modules-6.6.15-amd64-di -pfb-modules-6.6.15-amd64-di -pfirewire-core-modules-6.6.15-amd64-di -pi2c-modules-6.6.15-amd64-di -pinput-modules-6.6.15-amd64-di -pisofs-modules-6.6.15-amd64-di -pjfs-modules-6.6.15-amd64-di -pkernel-image-6.6.15-amd64-di -ploop-modules-6.6.15-amd64-di -pmd-modules-6.6.15-amd64-di -pmmc-core-modules-6.6.15-amd64-di -pmmc-modules-6.6.15-amd64-di -pmouse-modules-6.6.15-amd64-di -pmtd-core-modules-6.6.15-amd64-di -pmultipath-modules-6.6.15-amd64-di -pnbd-modules-6.6.15-amd64-di -pnic-modules-6.6.15-amd64-di -pnic-pcmcia-modules-6.6.15-amd64-di -pnic-shared-modules-6.6.15-amd64-di -pnic-usb-modules-6.6.15-amd64-di -pnic-wireless-modules-6.6.15-amd64-di -ppata-modules-6.6.15-amd64-di -ppcmcia-modules-6.6.15-amd64-di -ppcmcia-storage-modules-6.6.15-amd64-di -pppp-modules-6.6.15-amd64-di -prfkill-modules-6.6.15-amd64-di -psata-modules-6.6.15-amd64-di -pscsi-core-modules-6.6.15-amd64-di -pscsi-modules-6.6.15-amd64-di -pscsi-nic-modules-6.6.15-amd64-di -pserial-modules-6.6.15-amd64-di -psound-modules-6.6.15-amd64-di -pspeakup-modules-6.6.15-amd64-di -psquashfs-modules-6.6.15-amd64-di -pudf-modules-6.6.15-amd64-di -puinput-modules-6.6.15-amd64-di -pusb-modules-6.6.15-amd64-di -pusb-serial-modules-6.6.15-amd64-di -pusb-storage-modules-6.6.15-amd64-di -pxfs-modules-6.6.15-amd64-di' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-amd64-di' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, acpi-modules-6.7.7-amd64-di ata-modules-6.7.7-amd64-di btrfs-modules-6.7.7-amd64-di cdrom-core-modules-6.7.7-amd64-di crc-modules-6.7.7-amd64-di crypto-dm-modules-6.7.7-amd64-di crypto-modules-6.7.7-amd64-di efi-modules-6.7.7-amd64-di event-modules-6.7.7-amd64-di ext4-modules-6.7.7-amd64-di f2fs-modules-6.7.7-amd64-di fat-modules-6.7.7-amd64-di fb-modules-6.7.7-amd64-di firewire-core-modules-6.7.7-amd64-di i2c-modules-6.7.7-amd64-di input-modules-6.7.7-amd64-di isofs-modules-6.7.7-amd64-di jfs-modules-6.7.7-amd64-di kernel-image-6.7.7-amd64-di loop-modules-6.7.7-amd64-di md-modules-6.7.7-amd64-di mmc-core-modules-6.7.7-amd64-di mmc-modules-6.7.7-amd64-di mouse-modules-6.7.7-amd64-di mtd-core-modules-6.7.7-amd64-di multipath-modules-6.7.7-amd64-di nbd-modules-6.7.7-amd64-di nic-modules-6.7.7-amd64-di nic-pcmcia-modules-6.7.7-amd64-di nic-shared-modules-6.7.7-amd64-di nic-usb-modules-6.7.7-amd64-di nic-wireless-modules-6.7.7-amd64-di pata-modules-6.7.7-amd64-di pcmcia-modules-6.7.7-amd64-di pcmcia-storage-modules-6.7.7-amd64-di ppp-modules-6.7.7-amd64-di rfkill-modules-6.7.7-amd64-di sata-modules-6.7.7-amd64-di scsi-core-modules-6.7.7-amd64-di scsi-modules-6.7.7-amd64-di scsi-nic-modules-6.7.7-amd64-di serial-modules-6.7.7-amd64-di sound-modules-6.7.7-amd64-di speakup-modules-6.7.7-amd64-di squashfs-modules-6.7.7-amd64-di udf-modules-6.7.7-amd64-di uinput-modules-6.7.7-amd64-di usb-modules-6.7.7-amd64-di usb-serial-modules-6.7.7-amd64-di usb-storage-modules-6.7.7-amd64-di xfs-modules-6.7.7-amd64-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pacpi-modules-6.7.7-amd64-di -pata-modules-6.7.7-amd64-di -pbtrfs-modules-6.7.7-amd64-di -pcdrom-core-modules-6.7.7-amd64-di -pcrc-modules-6.7.7-amd64-di -pcrypto-dm-modules-6.7.7-amd64-di -pcrypto-modules-6.7.7-amd64-di -pefi-modules-6.7.7-amd64-di -pevent-modules-6.7.7-amd64-di -pext4-modules-6.7.7-amd64-di -pf2fs-modules-6.7.7-amd64-di -pfat-modules-6.7.7-amd64-di -pfb-modules-6.7.7-amd64-di -pfirewire-core-modules-6.7.7-amd64-di -pi2c-modules-6.7.7-amd64-di -pinput-modules-6.7.7-amd64-di -pisofs-modules-6.7.7-amd64-di -pjfs-modules-6.7.7-amd64-di -pkernel-image-6.7.7-amd64-di -ploop-modules-6.7.7-amd64-di -pmd-modules-6.7.7-amd64-di -pmmc-core-modules-6.7.7-amd64-di -pmmc-modules-6.7.7-amd64-di -pmouse-modules-6.7.7-amd64-di -pmtd-core-modules-6.7.7-amd64-di -pmultipath-modules-6.7.7-amd64-di -pnbd-modules-6.7.7-amd64-di -pnic-modules-6.7.7-amd64-di -pnic-pcmcia-modules-6.7.7-amd64-di -pnic-shared-modules-6.7.7-amd64-di -pnic-usb-modules-6.7.7-amd64-di -pnic-wireless-modules-6.7.7-amd64-di -ppata-modules-6.7.7-amd64-di -ppcmcia-modules-6.7.7-amd64-di -ppcmcia-storage-modules-6.7.7-amd64-di -pppp-modules-6.7.7-amd64-di -prfkill-modules-6.7.7-amd64-di -psata-modules-6.7.7-amd64-di -pscsi-core-modules-6.7.7-amd64-di -pscsi-modules-6.7.7-amd64-di -pscsi-nic-modules-6.7.7-amd64-di -pserial-modules-6.7.7-amd64-di -psound-modules-6.7.7-amd64-di -pspeakup-modules-6.7.7-amd64-di -psquashfs-modules-6.7.7-amd64-di -pudf-modules-6.7.7-amd64-di -puinput-modules-6.7.7-amd64-di -pusb-modules-6.7.7-amd64-di -pusb-serial-modules-6.7.7-amd64-di -pusb-storage-modules-6.7.7-amd64-di -pxfs-modules-6.7.7-amd64-di' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-amd64-di' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_amd64_none_amd64_meta: - $(call if_package, linux-image-amd64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-amd64' DH_OPTIONS='-plinux-image-amd64' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-amd64' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-image-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-amd64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-amd64' DH_OPTIONS='-plinux-headers-amd64' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-amd64' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-headers-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-amd64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-amd64' DH_OPTIONS='-plinux-image-amd64' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-amd64' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-image-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-amd64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-amd64' DH_OPTIONS='-plinux-headers-amd64' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-amd64' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-headers-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_amd64_none_cloud-amd64:binary-arch_amd64_none_cloud-amd64_image binary-arch_amd64_none_cloud-amd64_meta binary-arch_amd64_none_cloud-amd64_image: - $(call if_package, linux-image-6.6.15-cloud-amd64, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-cloud-amd64' DH_OPTIONS='-plinux-image-6.6.15-cloud-amd64' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/amd64/config.cloud-amd64 debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-image-6.6.15-cloud-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-cloud-amd64, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-cloud-amd64' DH_OPTIONS='-plinux-image-6.7.7-cloud-amd64' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-image-6.7.7-cloud-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_amd64_none_cloud-amd64_meta: - $(call if_package, linux-image-cloud-amd64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-cloud-amd64' DH_OPTIONS='-plinux-image-cloud-amd64' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-cloud-amd64' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/amd64/config.cloud-amd64 debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-image-cloud-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-cloud-amd64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-cloud-amd64' DH_OPTIONS='-plinux-headers-cloud-amd64' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-cloud-amd64' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/amd64/config.cloud-amd64 debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-headers-cloud-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-cloud-amd64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-cloud-amd64' DH_OPTIONS='-plinux-image-cloud-amd64' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-cloud-amd64' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-image-cloud-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-cloud-amd64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-cloud-amd64' DH_OPTIONS='-plinux-headers-cloud-amd64' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-cloud-amd64' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-headers-cloud-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_amd64_rt:binary-arch_amd64_rt_amd64 binary-arch_amd64_rt_amd64:binary-arch_amd64_rt_amd64_image binary-arch_amd64_rt_amd64_meta binary-arch_amd64_rt_amd64_image: - $(call if_package, linux-image-6.6.15-rt-amd64, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-rt-amd64' DH_OPTIONS='-plinux-image-6.6.15-rt-amd64' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-image-6.6.15-rt-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-rt-amd64, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-rt-amd64' DH_OPTIONS='-plinux-image-6.7.7-rt-amd64' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-image-6.7.7-rt-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_amd64_rt_amd64_meta: - $(call if_package, linux-image-rt-amd64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-amd64' DH_OPTIONS='-plinux-image-rt-amd64' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-rt-amd64' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-image-rt-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-rt-amd64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-rt-amd64' DH_OPTIONS='-plinux-headers-rt-amd64' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-rt-amd64' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-headers-rt-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-rt-amd64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-amd64' DH_OPTIONS='-plinux-image-rt-amd64' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-rt-amd64' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-image-rt-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-rt-amd64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-rt-amd64' DH_OPTIONS='-plinux-headers-rt-amd64' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-rt-amd64' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-headers-rt-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch:build-arch_amd64 build-arch_amd64:build-arch_amd64_none build-arch_amd64_rt build-arch_amd64_none:build-arch_amd64_none_amd64 build-arch_amd64_none_cloud-amd64 build-arch_amd64_none_amd64:build-arch_amd64_none_amd64_image build-arch_amd64_none_amd64_installer build-arch_amd64_none_amd64_meta build-arch_amd64_none_amd64_image: - $(call if_package, linux-image-6.6.15-amd64, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-amd64' DH_OPTIONS='-plinux-image-6.6.15-amd64' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-image-6.6.15-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-amd64, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-amd64' DH_OPTIONS='-plinux-image-6.7.7-amd64' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-image-6.7.7-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_amd64_none_amd64_installer: - $(call if_package, acpi-modules-6.6.15-amd64-di ata-modules-6.6.15-amd64-di btrfs-modules-6.6.15-amd64-di cdrom-core-modules-6.6.15-amd64-di crc-modules-6.6.15-amd64-di crypto-dm-modules-6.6.15-amd64-di crypto-modules-6.6.15-amd64-di efi-modules-6.6.15-amd64-di event-modules-6.6.15-amd64-di ext4-modules-6.6.15-amd64-di f2fs-modules-6.6.15-amd64-di fat-modules-6.6.15-amd64-di fb-modules-6.6.15-amd64-di firewire-core-modules-6.6.15-amd64-di i2c-modules-6.6.15-amd64-di input-modules-6.6.15-amd64-di isofs-modules-6.6.15-amd64-di jfs-modules-6.6.15-amd64-di kernel-image-6.6.15-amd64-di loop-modules-6.6.15-amd64-di md-modules-6.6.15-amd64-di mmc-core-modules-6.6.15-amd64-di mmc-modules-6.6.15-amd64-di mouse-modules-6.6.15-amd64-di mtd-core-modules-6.6.15-amd64-di multipath-modules-6.6.15-amd64-di nbd-modules-6.6.15-amd64-di nic-modules-6.6.15-amd64-di nic-pcmcia-modules-6.6.15-amd64-di nic-shared-modules-6.6.15-amd64-di nic-usb-modules-6.6.15-amd64-di nic-wireless-modules-6.6.15-amd64-di pata-modules-6.6.15-amd64-di pcmcia-modules-6.6.15-amd64-di pcmcia-storage-modules-6.6.15-amd64-di ppp-modules-6.6.15-amd64-di rfkill-modules-6.6.15-amd64-di sata-modules-6.6.15-amd64-di scsi-core-modules-6.6.15-amd64-di scsi-modules-6.6.15-amd64-di scsi-nic-modules-6.6.15-amd64-di serial-modules-6.6.15-amd64-di sound-modules-6.6.15-amd64-di speakup-modules-6.6.15-amd64-di squashfs-modules-6.6.15-amd64-di udf-modules-6.6.15-amd64-di uinput-modules-6.6.15-amd64-di usb-modules-6.6.15-amd64-di usb-serial-modules-6.6.15-amd64-di usb-storage-modules-6.6.15-amd64-di xfs-modules-6.6.15-amd64-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pacpi-modules-6.6.15-amd64-di -pata-modules-6.6.15-amd64-di -pbtrfs-modules-6.6.15-amd64-di -pcdrom-core-modules-6.6.15-amd64-di -pcrc-modules-6.6.15-amd64-di -pcrypto-dm-modules-6.6.15-amd64-di -pcrypto-modules-6.6.15-amd64-di -pefi-modules-6.6.15-amd64-di -pevent-modules-6.6.15-amd64-di -pext4-modules-6.6.15-amd64-di -pf2fs-modules-6.6.15-amd64-di -pfat-modules-6.6.15-amd64-di -pfb-modules-6.6.15-amd64-di -pfirewire-core-modules-6.6.15-amd64-di -pi2c-modules-6.6.15-amd64-di -pinput-modules-6.6.15-amd64-di -pisofs-modules-6.6.15-amd64-di -pjfs-modules-6.6.15-amd64-di -pkernel-image-6.6.15-amd64-di -ploop-modules-6.6.15-amd64-di -pmd-modules-6.6.15-amd64-di -pmmc-core-modules-6.6.15-amd64-di -pmmc-modules-6.6.15-amd64-di -pmouse-modules-6.6.15-amd64-di -pmtd-core-modules-6.6.15-amd64-di -pmultipath-modules-6.6.15-amd64-di -pnbd-modules-6.6.15-amd64-di -pnic-modules-6.6.15-amd64-di -pnic-pcmcia-modules-6.6.15-amd64-di -pnic-shared-modules-6.6.15-amd64-di -pnic-usb-modules-6.6.15-amd64-di -pnic-wireless-modules-6.6.15-amd64-di -ppata-modules-6.6.15-amd64-di -ppcmcia-modules-6.6.15-amd64-di -ppcmcia-storage-modules-6.6.15-amd64-di -pppp-modules-6.6.15-amd64-di -prfkill-modules-6.6.15-amd64-di -psata-modules-6.6.15-amd64-di -pscsi-core-modules-6.6.15-amd64-di -pscsi-modules-6.6.15-amd64-di -pscsi-nic-modules-6.6.15-amd64-di -pserial-modules-6.6.15-amd64-di -psound-modules-6.6.15-amd64-di -pspeakup-modules-6.6.15-amd64-di -psquashfs-modules-6.6.15-amd64-di -pudf-modules-6.6.15-amd64-di -puinput-modules-6.6.15-amd64-di -pusb-modules-6.6.15-amd64-di -pusb-serial-modules-6.6.15-amd64-di -pusb-storage-modules-6.6.15-amd64-di -pxfs-modules-6.6.15-amd64-di' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-amd64-di' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, acpi-modules-6.7.7-amd64-di ata-modules-6.7.7-amd64-di btrfs-modules-6.7.7-amd64-di cdrom-core-modules-6.7.7-amd64-di crc-modules-6.7.7-amd64-di crypto-dm-modules-6.7.7-amd64-di crypto-modules-6.7.7-amd64-di efi-modules-6.7.7-amd64-di event-modules-6.7.7-amd64-di ext4-modules-6.7.7-amd64-di f2fs-modules-6.7.7-amd64-di fat-modules-6.7.7-amd64-di fb-modules-6.7.7-amd64-di firewire-core-modules-6.7.7-amd64-di i2c-modules-6.7.7-amd64-di input-modules-6.7.7-amd64-di isofs-modules-6.7.7-amd64-di jfs-modules-6.7.7-amd64-di kernel-image-6.7.7-amd64-di loop-modules-6.7.7-amd64-di md-modules-6.7.7-amd64-di mmc-core-modules-6.7.7-amd64-di mmc-modules-6.7.7-amd64-di mouse-modules-6.7.7-amd64-di mtd-core-modules-6.7.7-amd64-di multipath-modules-6.7.7-amd64-di nbd-modules-6.7.7-amd64-di nic-modules-6.7.7-amd64-di nic-pcmcia-modules-6.7.7-amd64-di nic-shared-modules-6.7.7-amd64-di nic-usb-modules-6.7.7-amd64-di nic-wireless-modules-6.7.7-amd64-di pata-modules-6.7.7-amd64-di pcmcia-modules-6.7.7-amd64-di pcmcia-storage-modules-6.7.7-amd64-di ppp-modules-6.7.7-amd64-di rfkill-modules-6.7.7-amd64-di sata-modules-6.7.7-amd64-di scsi-core-modules-6.7.7-amd64-di scsi-modules-6.7.7-amd64-di scsi-nic-modules-6.7.7-amd64-di serial-modules-6.7.7-amd64-di sound-modules-6.7.7-amd64-di speakup-modules-6.7.7-amd64-di squashfs-modules-6.7.7-amd64-di udf-modules-6.7.7-amd64-di uinput-modules-6.7.7-amd64-di usb-modules-6.7.7-amd64-di usb-serial-modules-6.7.7-amd64-di usb-storage-modules-6.7.7-amd64-di xfs-modules-6.7.7-amd64-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pacpi-modules-6.7.7-amd64-di -pata-modules-6.7.7-amd64-di -pbtrfs-modules-6.7.7-amd64-di -pcdrom-core-modules-6.7.7-amd64-di -pcrc-modules-6.7.7-amd64-di -pcrypto-dm-modules-6.7.7-amd64-di -pcrypto-modules-6.7.7-amd64-di -pefi-modules-6.7.7-amd64-di -pevent-modules-6.7.7-amd64-di -pext4-modules-6.7.7-amd64-di -pf2fs-modules-6.7.7-amd64-di -pfat-modules-6.7.7-amd64-di -pfb-modules-6.7.7-amd64-di -pfirewire-core-modules-6.7.7-amd64-di -pi2c-modules-6.7.7-amd64-di -pinput-modules-6.7.7-amd64-di -pisofs-modules-6.7.7-amd64-di -pjfs-modules-6.7.7-amd64-di -pkernel-image-6.7.7-amd64-di -ploop-modules-6.7.7-amd64-di -pmd-modules-6.7.7-amd64-di -pmmc-core-modules-6.7.7-amd64-di -pmmc-modules-6.7.7-amd64-di -pmouse-modules-6.7.7-amd64-di -pmtd-core-modules-6.7.7-amd64-di -pmultipath-modules-6.7.7-amd64-di -pnbd-modules-6.7.7-amd64-di -pnic-modules-6.7.7-amd64-di -pnic-pcmcia-modules-6.7.7-amd64-di -pnic-shared-modules-6.7.7-amd64-di -pnic-usb-modules-6.7.7-amd64-di -pnic-wireless-modules-6.7.7-amd64-di -ppata-modules-6.7.7-amd64-di -ppcmcia-modules-6.7.7-amd64-di -ppcmcia-storage-modules-6.7.7-amd64-di -pppp-modules-6.7.7-amd64-di -prfkill-modules-6.7.7-amd64-di -psata-modules-6.7.7-amd64-di -pscsi-core-modules-6.7.7-amd64-di -pscsi-modules-6.7.7-amd64-di -pscsi-nic-modules-6.7.7-amd64-di -pserial-modules-6.7.7-amd64-di -psound-modules-6.7.7-amd64-di -pspeakup-modules-6.7.7-amd64-di -psquashfs-modules-6.7.7-amd64-di -pudf-modules-6.7.7-amd64-di -puinput-modules-6.7.7-amd64-di -pusb-modules-6.7.7-amd64-di -pusb-serial-modules-6.7.7-amd64-di -pusb-storage-modules-6.7.7-amd64-di -pxfs-modules-6.7.7-amd64-di' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-amd64-di' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_amd64_none_amd64_meta: - $(call if_package, linux-image-amd64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-amd64' DH_OPTIONS='-plinux-image-amd64' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-amd64' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-image-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-amd64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-amd64' DH_OPTIONS='-plinux-headers-amd64' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-amd64' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-headers-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-amd64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-amd64' DH_OPTIONS='-plinux-image-amd64' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-amd64' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-image-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-amd64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-amd64' DH_OPTIONS='-plinux-headers-amd64' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-amd64' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-headers-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_amd64_none_cloud-amd64:build-arch_amd64_none_cloud-amd64_image build-arch_amd64_none_cloud-amd64_meta build-arch_amd64_none_cloud-amd64_image: - $(call if_package, linux-image-6.6.15-cloud-amd64, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-cloud-amd64' DH_OPTIONS='-plinux-image-6.6.15-cloud-amd64' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/amd64/config.cloud-amd64 debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-image-6.6.15-cloud-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-cloud-amd64, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-cloud-amd64' DH_OPTIONS='-plinux-image-6.7.7-cloud-amd64' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-image-6.7.7-cloud-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_amd64_none_cloud-amd64_meta: - $(call if_package, linux-image-cloud-amd64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-cloud-amd64' DH_OPTIONS='-plinux-image-cloud-amd64' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-cloud-amd64' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/amd64/config.cloud-amd64 debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-image-cloud-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-cloud-amd64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-cloud-amd64' DH_OPTIONS='-plinux-headers-cloud-amd64' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-cloud-amd64' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/amd64/config.cloud-amd64 debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-headers-cloud-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-cloud-amd64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-cloud-amd64' DH_OPTIONS='-plinux-image-cloud-amd64' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-cloud-amd64' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-image-cloud-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-cloud-amd64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-cloud-amd64' DH_OPTIONS='-plinux-headers-cloud-amd64' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-cloud-amd64' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-headers-cloud-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_amd64_rt:build-arch_amd64_rt_amd64 build-arch_amd64_rt_amd64:build-arch_amd64_rt_amd64_image build-arch_amd64_rt_amd64_meta build-arch_amd64_rt_amd64_image: - $(call if_package, linux-image-6.6.15-rt-amd64, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-rt-amd64' DH_OPTIONS='-plinux-image-6.6.15-rt-amd64' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-image-6.6.15-rt-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-rt-amd64, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-rt-amd64' DH_OPTIONS='-plinux-image-6.7.7-rt-amd64' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-image-6.7.7-rt-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_amd64_rt_amd64_meta: - $(call if_package, linux-image-rt-amd64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-amd64' DH_OPTIONS='-plinux-image-rt-amd64' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-rt-amd64' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-image-rt-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-rt-amd64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-rt-amd64' DH_OPTIONS='-plinux-headers-rt-amd64' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-rt-amd64' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-headers-rt-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-rt-amd64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-amd64' DH_OPTIONS='-plinux-image-rt-amd64' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-rt-amd64' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-image-rt-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-rt-amd64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-rt-amd64' DH_OPTIONS='-plinux-headers-rt-amd64' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-rt-amd64' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-headers-rt-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup:setup_amd64 setup_amd64:setup_amd64_none setup_amd64_rt setup_amd64_none:setup_amd64_none_amd64 setup_amd64_none_cloud-amd64 setup_amd64_none_amd64:setup_amd64_none_amd64_image setup_amd64_none_amd64_installer setup_amd64_none_amd64_meta setup_amd64_none_amd64_image: - $(call if_package, linux-image-6.6.15-amd64, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-amd64' DH_OPTIONS='-plinux-image-6.6.15-amd64' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-image-6.6.15-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-amd64, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-amd64' DH_OPTIONS='-plinux-image-6.7.7-amd64' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-image-6.7.7-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_amd64_none_amd64_installer: - $(call if_package, acpi-modules-6.6.15-amd64-di ata-modules-6.6.15-amd64-di btrfs-modules-6.6.15-amd64-di cdrom-core-modules-6.6.15-amd64-di crc-modules-6.6.15-amd64-di crypto-dm-modules-6.6.15-amd64-di crypto-modules-6.6.15-amd64-di efi-modules-6.6.15-amd64-di event-modules-6.6.15-amd64-di ext4-modules-6.6.15-amd64-di f2fs-modules-6.6.15-amd64-di fat-modules-6.6.15-amd64-di fb-modules-6.6.15-amd64-di firewire-core-modules-6.6.15-amd64-di i2c-modules-6.6.15-amd64-di input-modules-6.6.15-amd64-di isofs-modules-6.6.15-amd64-di jfs-modules-6.6.15-amd64-di kernel-image-6.6.15-amd64-di loop-modules-6.6.15-amd64-di md-modules-6.6.15-amd64-di mmc-core-modules-6.6.15-amd64-di mmc-modules-6.6.15-amd64-di mouse-modules-6.6.15-amd64-di mtd-core-modules-6.6.15-amd64-di multipath-modules-6.6.15-amd64-di nbd-modules-6.6.15-amd64-di nic-modules-6.6.15-amd64-di nic-pcmcia-modules-6.6.15-amd64-di nic-shared-modules-6.6.15-amd64-di nic-usb-modules-6.6.15-amd64-di nic-wireless-modules-6.6.15-amd64-di pata-modules-6.6.15-amd64-di pcmcia-modules-6.6.15-amd64-di pcmcia-storage-modules-6.6.15-amd64-di ppp-modules-6.6.15-amd64-di rfkill-modules-6.6.15-amd64-di sata-modules-6.6.15-amd64-di scsi-core-modules-6.6.15-amd64-di scsi-modules-6.6.15-amd64-di scsi-nic-modules-6.6.15-amd64-di serial-modules-6.6.15-amd64-di sound-modules-6.6.15-amd64-di speakup-modules-6.6.15-amd64-di squashfs-modules-6.6.15-amd64-di udf-modules-6.6.15-amd64-di uinput-modules-6.6.15-amd64-di usb-modules-6.6.15-amd64-di usb-serial-modules-6.6.15-amd64-di usb-storage-modules-6.6.15-amd64-di xfs-modules-6.6.15-amd64-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pacpi-modules-6.6.15-amd64-di -pata-modules-6.6.15-amd64-di -pbtrfs-modules-6.6.15-amd64-di -pcdrom-core-modules-6.6.15-amd64-di -pcrc-modules-6.6.15-amd64-di -pcrypto-dm-modules-6.6.15-amd64-di -pcrypto-modules-6.6.15-amd64-di -pefi-modules-6.6.15-amd64-di -pevent-modules-6.6.15-amd64-di -pext4-modules-6.6.15-amd64-di -pf2fs-modules-6.6.15-amd64-di -pfat-modules-6.6.15-amd64-di -pfb-modules-6.6.15-amd64-di -pfirewire-core-modules-6.6.15-amd64-di -pi2c-modules-6.6.15-amd64-di -pinput-modules-6.6.15-amd64-di -pisofs-modules-6.6.15-amd64-di -pjfs-modules-6.6.15-amd64-di -pkernel-image-6.6.15-amd64-di -ploop-modules-6.6.15-amd64-di -pmd-modules-6.6.15-amd64-di -pmmc-core-modules-6.6.15-amd64-di -pmmc-modules-6.6.15-amd64-di -pmouse-modules-6.6.15-amd64-di -pmtd-core-modules-6.6.15-amd64-di -pmultipath-modules-6.6.15-amd64-di -pnbd-modules-6.6.15-amd64-di -pnic-modules-6.6.15-amd64-di -pnic-pcmcia-modules-6.6.15-amd64-di -pnic-shared-modules-6.6.15-amd64-di -pnic-usb-modules-6.6.15-amd64-di -pnic-wireless-modules-6.6.15-amd64-di -ppata-modules-6.6.15-amd64-di -ppcmcia-modules-6.6.15-amd64-di -ppcmcia-storage-modules-6.6.15-amd64-di -pppp-modules-6.6.15-amd64-di -prfkill-modules-6.6.15-amd64-di -psata-modules-6.6.15-amd64-di -pscsi-core-modules-6.6.15-amd64-di -pscsi-modules-6.6.15-amd64-di -pscsi-nic-modules-6.6.15-amd64-di -pserial-modules-6.6.15-amd64-di -psound-modules-6.6.15-amd64-di -pspeakup-modules-6.6.15-amd64-di -psquashfs-modules-6.6.15-amd64-di -pudf-modules-6.6.15-amd64-di -puinput-modules-6.6.15-amd64-di -pusb-modules-6.6.15-amd64-di -pusb-serial-modules-6.6.15-amd64-di -pusb-storage-modules-6.6.15-amd64-di -pxfs-modules-6.6.15-amd64-di' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-amd64-di' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, acpi-modules-6.7.7-amd64-di ata-modules-6.7.7-amd64-di btrfs-modules-6.7.7-amd64-di cdrom-core-modules-6.7.7-amd64-di crc-modules-6.7.7-amd64-di crypto-dm-modules-6.7.7-amd64-di crypto-modules-6.7.7-amd64-di efi-modules-6.7.7-amd64-di event-modules-6.7.7-amd64-di ext4-modules-6.7.7-amd64-di f2fs-modules-6.7.7-amd64-di fat-modules-6.7.7-amd64-di fb-modules-6.7.7-amd64-di firewire-core-modules-6.7.7-amd64-di i2c-modules-6.7.7-amd64-di input-modules-6.7.7-amd64-di isofs-modules-6.7.7-amd64-di jfs-modules-6.7.7-amd64-di kernel-image-6.7.7-amd64-di loop-modules-6.7.7-amd64-di md-modules-6.7.7-amd64-di mmc-core-modules-6.7.7-amd64-di mmc-modules-6.7.7-amd64-di mouse-modules-6.7.7-amd64-di mtd-core-modules-6.7.7-amd64-di multipath-modules-6.7.7-amd64-di nbd-modules-6.7.7-amd64-di nic-modules-6.7.7-amd64-di nic-pcmcia-modules-6.7.7-amd64-di nic-shared-modules-6.7.7-amd64-di nic-usb-modules-6.7.7-amd64-di nic-wireless-modules-6.7.7-amd64-di pata-modules-6.7.7-amd64-di pcmcia-modules-6.7.7-amd64-di pcmcia-storage-modules-6.7.7-amd64-di ppp-modules-6.7.7-amd64-di rfkill-modules-6.7.7-amd64-di sata-modules-6.7.7-amd64-di scsi-core-modules-6.7.7-amd64-di scsi-modules-6.7.7-amd64-di scsi-nic-modules-6.7.7-amd64-di serial-modules-6.7.7-amd64-di sound-modules-6.7.7-amd64-di speakup-modules-6.7.7-amd64-di squashfs-modules-6.7.7-amd64-di udf-modules-6.7.7-amd64-di uinput-modules-6.7.7-amd64-di usb-modules-6.7.7-amd64-di usb-serial-modules-6.7.7-amd64-di usb-storage-modules-6.7.7-amd64-di xfs-modules-6.7.7-amd64-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pacpi-modules-6.7.7-amd64-di -pata-modules-6.7.7-amd64-di -pbtrfs-modules-6.7.7-amd64-di -pcdrom-core-modules-6.7.7-amd64-di -pcrc-modules-6.7.7-amd64-di -pcrypto-dm-modules-6.7.7-amd64-di -pcrypto-modules-6.7.7-amd64-di -pefi-modules-6.7.7-amd64-di -pevent-modules-6.7.7-amd64-di -pext4-modules-6.7.7-amd64-di -pf2fs-modules-6.7.7-amd64-di -pfat-modules-6.7.7-amd64-di -pfb-modules-6.7.7-amd64-di -pfirewire-core-modules-6.7.7-amd64-di -pi2c-modules-6.7.7-amd64-di -pinput-modules-6.7.7-amd64-di -pisofs-modules-6.7.7-amd64-di -pjfs-modules-6.7.7-amd64-di -pkernel-image-6.7.7-amd64-di -ploop-modules-6.7.7-amd64-di -pmd-modules-6.7.7-amd64-di -pmmc-core-modules-6.7.7-amd64-di -pmmc-modules-6.7.7-amd64-di -pmouse-modules-6.7.7-amd64-di -pmtd-core-modules-6.7.7-amd64-di -pmultipath-modules-6.7.7-amd64-di -pnbd-modules-6.7.7-amd64-di -pnic-modules-6.7.7-amd64-di -pnic-pcmcia-modules-6.7.7-amd64-di -pnic-shared-modules-6.7.7-amd64-di -pnic-usb-modules-6.7.7-amd64-di -pnic-wireless-modules-6.7.7-amd64-di -ppata-modules-6.7.7-amd64-di -ppcmcia-modules-6.7.7-amd64-di -ppcmcia-storage-modules-6.7.7-amd64-di -pppp-modules-6.7.7-amd64-di -prfkill-modules-6.7.7-amd64-di -psata-modules-6.7.7-amd64-di -pscsi-core-modules-6.7.7-amd64-di -pscsi-modules-6.7.7-amd64-di -pscsi-nic-modules-6.7.7-amd64-di -pserial-modules-6.7.7-amd64-di -psound-modules-6.7.7-amd64-di -pspeakup-modules-6.7.7-amd64-di -psquashfs-modules-6.7.7-amd64-di -pudf-modules-6.7.7-amd64-di -puinput-modules-6.7.7-amd64-di -pusb-modules-6.7.7-amd64-di -pusb-serial-modules-6.7.7-amd64-di -pusb-storage-modules-6.7.7-amd64-di -pxfs-modules-6.7.7-amd64-di' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-amd64-di' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_amd64_none_amd64_meta: - $(call if_package, linux-image-amd64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-amd64' DH_OPTIONS='-plinux-image-amd64' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-amd64' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-image-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-amd64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-amd64' DH_OPTIONS='-plinux-headers-amd64' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-amd64' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-headers-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-amd64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-amd64' DH_OPTIONS='-plinux-image-amd64' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-amd64' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-image-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-amd64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-amd64' DH_OPTIONS='-plinux-headers-amd64' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-amd64' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-headers-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_amd64_none_cloud-amd64:setup_amd64_none_cloud-amd64_image setup_amd64_none_cloud-amd64_meta setup_amd64_none_cloud-amd64_image: - $(call if_package, linux-image-6.6.15-cloud-amd64, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-cloud-amd64' DH_OPTIONS='-plinux-image-6.6.15-cloud-amd64' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/amd64/config.cloud-amd64 debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-image-6.6.15-cloud-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-cloud-amd64, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-cloud-amd64' DH_OPTIONS='-plinux-image-6.7.7-cloud-amd64' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-image-6.7.7-cloud-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_amd64_none_cloud-amd64_meta: - $(call if_package, linux-image-cloud-amd64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-cloud-amd64' DH_OPTIONS='-plinux-image-cloud-amd64' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-cloud-amd64' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/amd64/config.cloud-amd64 debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-image-cloud-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-cloud-amd64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-cloud-amd64' DH_OPTIONS='-plinux-headers-cloud-amd64' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-cloud-amd64' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/amd64/config.cloud-amd64 debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-headers-cloud-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-cloud-amd64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-cloud-amd64' DH_OPTIONS='-plinux-image-cloud-amd64' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-cloud-amd64' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-image-cloud-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-cloud-amd64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-cloud-amd64' DH_OPTIONS='-plinux-headers-cloud-amd64' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-cloud-amd64' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-headers-cloud-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_amd64_rt:setup_amd64_rt_amd64 setup_amd64_rt_amd64:setup_amd64_rt_amd64_image setup_amd64_rt_amd64_meta setup_amd64_rt_amd64_image: - $(call if_package, linux-image-6.6.15-rt-amd64, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-rt-amd64' DH_OPTIONS='-plinux-image-6.6.15-rt-amd64' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-image-6.6.15-rt-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-rt-amd64, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-rt-amd64' DH_OPTIONS='-plinux-image-6.7.7-rt-amd64' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-image-6.7.7-rt-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_amd64_rt_amd64_meta: - $(call if_package, linux-image-rt-amd64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-amd64' DH_OPTIONS='-plinux-image-rt-amd64' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-rt-amd64' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-image-rt-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-rt-amd64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-rt-amd64' DH_OPTIONS='-plinux-headers-rt-amd64' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-rt-amd64' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-headers-rt-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-rt-amd64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-amd64' DH_OPTIONS='-plinux-image-rt-amd64' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-rt-amd64' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-image-rt-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-rt-amd64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-rt-amd64' DH_OPTIONS='-plinux-headers-rt-amd64' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-rt-amd64' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-headers-rt-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') diff --git a/debian/generated.signed-arm64/control b/debian/generated.signed-arm64/control index bc2caf1576..9d0d237ba7 100644 --- a/debian/generated.signed-arm64/control +++ b/debian/generated.signed-arm64/control @@ -5,32 +5,32 @@ Maintainer: Debian Kernel Team <debian-kernel@lists.debian.org> Uploaders: Bastian Blank <waldi@debian.org>, maximilian attems <maks@debian.org>, Ben Hutchings <benh@debian.org>, Salvatore Bonaccorso <carnil@debian.org> Standards-Version: 4.2.0 Build-Depends: debhelper-compat (= 12), dh-exec, python3:any, sbsigntool [amd64 arm64 i386] -Build-Depends-Arch: linux-image-6.6.15-arm64-unsigned (= @signedtemplate_binaryversion@) [arm64] <!pkg.linux.nokernel !pkg.linux.quick>, kernel-wedge (>= 2.105~) [arm64] <!pkg.linux.nokernel>, kmod [arm64] <!pkg.linux.nokernel>, rsync [arm64] <!pkg.linux.nokernel>, linux-image-6.6.15-cloud-arm64-unsigned (= @signedtemplate_binaryversion@) [arm64] <!pkg.linux.nokernel>, linux-image-6.6.15-rt-arm64-unsigned (= @signedtemplate_binaryversion@) [arm64] <!pkg.linux.nokernel !pkg.linux.quick> +Build-Depends-Arch: linux-image-6.7.7-arm64-unsigned (= @signedtemplate_binaryversion@) [arm64] <!pkg.linux.nokernel !pkg.linux.quick>, kernel-wedge (>= 2.105~) [arm64] <!pkg.linux.nokernel>, kmod [arm64] <!pkg.linux.nokernel>, rsync [arm64] <!pkg.linux.nokernel>, linux-image-6.7.7-cloud-arm64-unsigned (= @signedtemplate_binaryversion@) [arm64] <!pkg.linux.nokernel>, linux-image-6.7.7-rt-arm64-unsigned (= @signedtemplate_binaryversion@) [arm64] <!pkg.linux.nokernel !pkg.linux.quick> Rules-Requires-Root: no Homepage: https://www.kernel.org/ Vcs-Browser: https://salsa.debian.org/kernel-team/linux Vcs-Git: https://salsa.debian.org/kernel-team/linux.git -Package: linux-image-6.6.15-arm64 +Package: linux-image-6.7.7-arm64 Architecture: arm64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Built-Using: linux (= 6.6.15-2) +Built-Using: linux (= 6.7.7-1) Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [arm64] | linux-initramfs-tool [arm64] Recommends: firmware-linux-free, apparmor [arm64] -Suggests: linux-doc-6.6, debian-kernel-handbook -Replaces: linux-image-6.6.15-arm64-unsigned +Suggests: linux-doc-6.7, debian-kernel-handbook +Replaces: linux-image-6.7.7-arm64-unsigned Breaks: fwupdate (<< 12-7) [arm64], wireless-regdb (<< 2019.06.03-1~) [arm64], initramfs-tools (<< 0.120+deb8u2) [arm64] -Conflicts: linux-image-6.6.15-arm64-unsigned -Description: Linux 6.6 for 64-bit ARMv8 machines (signed) - The Linux kernel 6.6 and modules for use on 64-bit ARMv8 machines. +Conflicts: linux-image-6.7.7-arm64-unsigned +Description: Linux 6.7 for 64-bit ARMv8 machines (signed) + The Linux kernel 6.7 and modules for use on 64-bit ARMv8 machines. . The kernel image is signed for use with Secure Boot. Package: linux-image-arm64 Architecture: arm64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Provides: linux-latest-modules-6.6.15-arm64, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386], linux-image-generic -Depends: linux-image-6.6.15-arm64 (= ${binary:Version}), ${misc:Depends} +Provides: linux-latest-modules-6.7.7-arm64, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386], linux-image-generic +Depends: linux-image-6.7.7-arm64 (= ${binary:Version}), ${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. @@ -39,535 +39,535 @@ Package: linux-headers-arm64 Architecture: arm64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> Provides: linux-headers-generic -Depends: linux-headers-6.6.15-arm64 (= ${binary:Version}), ${misc:Depends} +Depends: linux-headers-6.7.7-arm64 (= ${binary:Version}), ${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: kernel-image-6.6.15-arm64-di +Package: kernel-image-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: kernel-image, mmc-core-modules -Kernel-Version: 6.6.15-arm64 +Kernel-Version: 6.7.7-arm64 Description: Linux kernel image and core modules for the Debian installer This package contains the kernel image and core modules for the Debian installer boot images. It does _not_ provide a usable kernel for your full Debian system. -Package: nic-modules-6.6.15-arm64-di +Package: nic-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-modules, nic-extra-modules -Depends: kernel-image-6.6.15-arm64-di, nic-shared-modules-6.6.15-arm64-di, i2c-modules-6.6.15-arm64-di, crc-modules-6.6.15-arm64-di, mtd-core-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, nic-shared-modules-6.7.7-arm64-di, i2c-modules-6.7.7-arm64-di, crc-modules-6.7.7-arm64-di, mtd-core-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: NIC drivers This package contains Ethernet and some paravirtualised network drivers for the kernel. -Package: nic-wireless-modules-6.6.15-arm64-di +Package: nic-wireless-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-wireless-modules -Depends: kernel-image-6.6.15-arm64-di, nic-shared-modules-6.6.15-arm64-di, usb-modules-6.6.15-arm64-di, crc-modules-6.6.15-arm64-di, crypto-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, nic-shared-modules-6.7.7-arm64-di, usb-modules-6.7.7-arm64-di, crc-modules-6.7.7-arm64-di, crypto-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: Wireless NIC drivers This package contains wireless NIC drivers for the kernel. Includes crypto modules only needed for wireless (WEP, WPA). -Package: nic-shared-modules-6.6.15-arm64-di +Package: nic-shared-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-shared-modules -Depends: kernel-image-6.6.15-arm64-di, crc-modules-6.6.15-arm64-di, i2c-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, crc-modules-6.7.7-arm64-di, i2c-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: Shared NIC drivers This package contains NIC drivers needed by combinations of nic-modules, nic-pcmcia-modules, nic-usb-modules and nic-wireless-modules. -Package: usb-serial-modules-6.6.15-arm64-di +Package: usb-serial-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-serial-modules -Depends: kernel-image-6.6.15-arm64-di, usb-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, usb-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: USB serial drivers This package contains USB serial drivers for the kernel. -Package: ppp-modules-6.6.15-arm64-di +Package: ppp-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ppp-modules -Depends: kernel-image-6.6.15-arm64-di, crc-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, crc-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: PPP drivers This package contains PPP drivers for the kernel. -Package: cdrom-core-modules-6.6.15-arm64-di +Package: cdrom-core-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: cdrom-core-modules -Depends: kernel-image-6.6.15-arm64-di, scsi-core-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, scsi-core-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: CDROM support This package contains core CDROM support for the kernel. -Package: scsi-core-modules-6.6.15-arm64-di +Package: scsi-core-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-core-modules -Depends: kernel-image-6.6.15-arm64-di, crc-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, crc-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: Core SCSI subsystem This package contains the core SCSI subsystem for the kernel. -Package: scsi-modules-6.6.15-arm64-di +Package: scsi-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-modules -Depends: kernel-image-6.6.15-arm64-di, scsi-core-modules-6.6.15-arm64-di, cdrom-core-modules-6.6.15-arm64-di, ata-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, scsi-core-modules-6.7.7-arm64-di, cdrom-core-modules-6.7.7-arm64-di, ata-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: SCSI drivers This package contains SCSI drivers for the kernel. -Package: scsi-nic-modules-6.6.15-arm64-di +Package: scsi-nic-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: scsi-nic-modules -Depends: scsi-modules-6.6.15-arm64-di, nic-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: scsi-modules-6.7.7-arm64-di, nic-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: SCSI drivers for converged NICs This package contains SCSI drivers that depend on net drivers. -Package: loop-modules-6.6.15-arm64-di +Package: loop-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: loop-modules -Depends: kernel-image-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: Loopback filesystem support This package contains loopback filesystem support for the kernel. -Package: btrfs-modules-6.6.15-arm64-di +Package: btrfs-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: btrfs-modules -Depends: kernel-image-6.6.15-arm64-di, crc-modules-6.6.15-arm64-di, md-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, crc-modules-6.7.7-arm64-di, md-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: BTRFS filesystem support This package contains the BTRFS filesystem module for the kernel. -Package: ext4-modules-6.6.15-arm64-di +Package: ext4-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ext4-modules, ext2-modules, ext3-modules -Depends: kernel-image-6.6.15-arm64-di, crc-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, crc-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: ext2/ext3/ext4 filesystem support This package contains the ext4 filesystem module for the kernel, which also supports ext2 and ext3. -Package: isofs-modules-6.6.15-arm64-di +Package: isofs-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: isofs-modules -Depends: kernel-image-6.6.15-arm64-di, cdrom-core-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, cdrom-core-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: ISOFS filesystem support This package contains the ISOFS filesystem module for the kernel. -Package: jfs-modules-6.6.15-arm64-di +Package: jfs-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: jfs-modules -Depends: kernel-image-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: JFS filesystem support This package contains the JFS filesystem module for the kernel. -Package: xfs-modules-6.6.15-arm64-di +Package: xfs-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: xfs-modules -Depends: kernel-image-6.6.15-arm64-di, crc-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, crc-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: XFS filesystem support This package contains the XFS filesystem module for the kernel. -Package: fat-modules-6.6.15-arm64-di +Package: fat-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fat-modules -Depends: kernel-image-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: FAT filesystem support This package contains the FAT and VFAT filesystem modules for the kernel. -Package: squashfs-modules-6.6.15-arm64-di +Package: squashfs-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: squashfs-modules -Depends: kernel-image-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: squashfs modules This package contains squashfs modules. -Package: udf-modules-6.6.15-arm64-di +Package: udf-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: udf-modules -Depends: kernel-image-6.6.15-arm64-di, crc-modules-6.6.15-arm64-di, cdrom-core-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, crc-modules-6.7.7-arm64-di, cdrom-core-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: UDF modules This package contains the UDF filesystem module. -Package: f2fs-modules-6.6.15-arm64-di +Package: f2fs-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: f2fs-modules -Depends: kernel-image-6.6.15-arm64-di, crc-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, crc-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: f2fs filesystem support This package contains the f2fs (Flash-Friendly Filesystem) module. -Package: md-modules-6.6.15-arm64-di +Package: md-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: md-modules -Depends: kernel-image-6.6.15-arm64-di, crc-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, crc-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: RAID and LVM support This package contains RAID and LVM modules for the kernel. -Package: multipath-modules-6.6.15-arm64-di +Package: multipath-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: multipath-modules -Depends: kernel-image-6.6.15-arm64-di, md-modules-6.6.15-arm64-di, scsi-core-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, md-modules-6.7.7-arm64-di, scsi-core-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: Multipath support This package contains DM-Multipath modules for the kernel. -Package: usb-modules-6.6.15-arm64-di +Package: usb-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-modules -Depends: kernel-image-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: USB support This package contains core USB drivers for the kernel. -Package: usb-storage-modules-6.6.15-arm64-di +Package: usb-storage-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: usb-storage-modules -Depends: kernel-image-6.6.15-arm64-di, scsi-core-modules-6.6.15-arm64-di, usb-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, scsi-core-modules-6.7.7-arm64-di, usb-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: USB storage support This package contains the USB storage driver for the kernel. -Package: fb-modules-6.6.15-arm64-di +Package: fb-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: fb-modules -Depends: kernel-image-6.6.15-arm64-di, i2c-modules-6.6.15-arm64-di, input-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, i2c-modules-6.7.7-arm64-di, input-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: Frame buffer support This package contains Frame buffer drivers for the kernel. -Package: input-modules-6.6.15-arm64-di +Package: input-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: input-modules -Depends: kernel-image-6.6.15-arm64-di, usb-modules-6.6.15-arm64-di, i2c-modules-6.6.15-arm64-di, crc-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, usb-modules-6.7.7-arm64-di, i2c-modules-6.7.7-arm64-di, crc-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: Input devices support This package contains input device drivers for the kernel. -Package: event-modules-6.6.15-arm64-di +Package: event-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: event-modules -Depends: kernel-image-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: Event support This package contains event drivers for the kernel. -Package: nic-usb-modules-6.6.15-arm64-di +Package: nic-usb-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nic-usb-modules -Depends: kernel-image-6.6.15-arm64-di, nic-shared-modules-6.6.15-arm64-di, nic-wireless-modules-6.6.15-arm64-di, usb-modules-6.6.15-arm64-di, crc-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, nic-shared-modules-6.7.7-arm64-di, nic-wireless-modules-6.7.7-arm64-di, usb-modules-6.7.7-arm64-di, crc-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: USB NIC drivers This package contains USB network adapter drivers for the kernel. -Package: sata-modules-6.6.15-arm64-di +Package: sata-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: standard Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sata-modules -Depends: kernel-image-6.6.15-arm64-di, scsi-core-modules-6.6.15-arm64-di, ata-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, scsi-core-modules-6.7.7-arm64-di, ata-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: SATA drivers This package contains SATA drivers for the kernel. -Package: i2c-modules-6.6.15-arm64-di +Package: i2c-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: i2c-modules -Depends: kernel-image-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: i2c support modules This package contains basic i2c support modules. -Package: crc-modules-6.6.15-arm64-di +Package: crc-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crc-modules -Depends: kernel-image-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: CRC modules This package contains CRC support modules. -Package: crypto-modules-6.6.15-arm64-di +Package: crypto-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-modules -Depends: kernel-image-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: crypto modules This package contains crypto modules. -Package: crypto-dm-modules-6.6.15-arm64-di +Package: crypto-dm-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: crypto-dm-modules -Depends: kernel-image-6.6.15-arm64-di, md-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, md-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: devicemapper crypto module This package contains the devicemapper crypto (dm-crypt) module. -Package: efi-modules-6.6.15-arm64-di +Package: efi-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: efi-modules -Depends: kernel-image-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: EFI modules This package contains EFI modules. -Package: ata-modules-6.6.15-arm64-di +Package: ata-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: ata-modules -Depends: kernel-image-6.6.15-arm64-di, scsi-core-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, scsi-core-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: ATA disk modules This package contains core ATA disk modules used by both PATA and SATA disk drivers. -Package: mmc-modules-6.6.15-arm64-di +Package: mmc-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mmc-modules -Depends: kernel-image-6.6.15-arm64-di, usb-modules-6.6.15-arm64-di, crc-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, usb-modules-6.7.7-arm64-di, crc-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: MMC/SD card modules This package contains modules needed to support MMC (multimedia) and SD cards. -Package: nbd-modules-6.6.15-arm64-di +Package: nbd-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: nbd-modules -Depends: kernel-image-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: Network Block Device modules This package contains the modules required for support of the Network Block Device -Package: speakup-modules-6.6.15-arm64-di +Package: speakup-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: speakup-modules -Depends: kernel-image-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: speakup modules This package contains speakup modules. -Package: uinput-modules-6.6.15-arm64-di +Package: uinput-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: uinput-modules -Depends: kernel-image-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: uinput support This package contains the uinput module. -Package: sound-modules-6.6.15-arm64-di +Package: sound-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: sound-modules -Depends: kernel-image-6.6.15-arm64-di, i2c-modules-6.6.15-arm64-di, usb-modules-6.6.15-arm64-di, crc-modules-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di, i2c-modules-6.7.7-arm64-di, usb-modules-6.7.7-arm64-di, crc-modules-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: sound support This package contains sound modules. -Package: leds-modules-6.6.15-arm64-di +Package: leds-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: leds-modules -Depends: kernel-image-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: LED modules This package contains LED modules. -Package: mtd-core-modules-6.6.15-arm64-di +Package: mtd-core-modules-6.7.7-arm64-di Package-Type: udeb Architecture: arm64 Section: debian-installer Priority: optional Build-Profiles: <!noudeb !pkg.linux.nokernel !pkg.linux.quick> Provides: mtd-core-modules -Depends: kernel-image-6.6.15-arm64-di -Kernel-Version: 6.6.15-arm64 +Depends: kernel-image-6.7.7-arm64-di +Kernel-Version: 6.7.7-arm64 Description: MTD core This package contains the MTD core. -Package: linux-image-6.6.15-cloud-arm64 +Package: linux-image-6.7.7-cloud-arm64 Architecture: arm64 Build-Profiles: <!pkg.linux.nokernel> -Built-Using: linux (= 6.6.15-2) +Built-Using: linux (= 6.7.7-1) Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [arm64] | linux-initramfs-tool [arm64] Recommends: firmware-linux-free, apparmor [arm64] -Suggests: linux-doc-6.6, debian-kernel-handbook -Replaces: linux-image-6.6.15-cloud-arm64-unsigned +Suggests: linux-doc-6.7, debian-kernel-handbook +Replaces: linux-image-6.7.7-cloud-arm64-unsigned Breaks: fwupdate (<< 12-7) [arm64], wireless-regdb (<< 2019.06.03-1~) [arm64], initramfs-tools (<< 0.120+deb8u2) [arm64] -Conflicts: linux-image-6.6.15-cloud-arm64-unsigned -Description: Linux 6.6 for arm64 cloud (signed) - The Linux kernel 6.6 and modules for use on cloud platforms supporting +Conflicts: linux-image-6.7.7-cloud-arm64-unsigned +Description: Linux 6.7 for arm64 cloud (signed) + The Linux kernel 6.7 and modules for use on cloud platforms supporting arm64 virtual machines. . The kernel image is signed for use with Secure Boot. @@ -575,8 +575,8 @@ Description: Linux 6.6 for arm64 cloud (signed) Package: linux-image-cloud-arm64 Architecture: arm64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa> -Provides: linux-latest-modules-6.6.15-cloud-arm64, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] -Depends: linux-image-6.6.15-cloud-arm64 (= ${binary:Version}), ${misc:Depends} +Provides: linux-latest-modules-6.7.7-cloud-arm64, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] +Depends: linux-image-6.7.7-cloud-arm64 (= ${binary:Version}), ${misc:Depends} Description: Linux for arm64 cloud (meta-package) This package depends on the latest Linux kernel and modules for use on cloud platforms supporting arm64 virtual machines. @@ -584,23 +584,23 @@ Description: Linux for arm64 cloud (meta-package) Package: linux-headers-cloud-arm64 Architecture: arm64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa> -Depends: linux-headers-6.6.15-cloud-arm64 (= ${binary:Version}), ${misc:Depends} +Depends: linux-headers-6.7.7-cloud-arm64 (= ${binary:Version}), ${misc:Depends} Description: Header files for Linux cloud-arm64 configuration (meta-package) This package depends on the architecture-specific header files for the latest Linux kernel cloud-arm64 configuration. -Package: linux-image-6.6.15-rt-arm64 +Package: linux-image-6.7.7-rt-arm64 Architecture: arm64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.quick> -Built-Using: linux (= 6.6.15-2) +Built-Using: linux (= 6.7.7-1) Depends: kmod, linux-base (>= 4.3~), ${misc:Depends}, initramfs-tools (>= 0.120+deb8u2) [arm64] | linux-initramfs-tool [arm64] Recommends: firmware-linux-free, apparmor [arm64] -Suggests: linux-doc-6.6, debian-kernel-handbook -Replaces: linux-image-6.6.15-rt-arm64-unsigned +Suggests: linux-doc-6.7, debian-kernel-handbook +Replaces: linux-image-6.7.7-rt-arm64-unsigned Breaks: fwupdate (<< 12-7) [arm64], wireless-regdb (<< 2019.06.03-1~) [arm64], initramfs-tools (<< 0.120+deb8u2) [arm64] -Conflicts: linux-image-6.6.15-rt-arm64-unsigned -Description: Linux 6.6 for 64-bit ARMv8 machines (signed), PREEMPT_RT - The Linux kernel 6.6 and modules for use on 64-bit ARMv8 machines. +Conflicts: linux-image-6.7.7-rt-arm64-unsigned +Description: Linux 6.7 for 64-bit ARMv8 machines (signed), PREEMPT_RT + The Linux kernel 6.7 and modules for use on 64-bit ARMv8 machines. . The kernel image is signed for use with Secure Boot. . @@ -609,8 +609,8 @@ Description: Linux 6.6 for 64-bit ARMv8 machines (signed), PREEMPT_RT Package: linux-image-rt-arm64 Architecture: arm64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Provides: linux-latest-modules-6.6.15-rt-arm64, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] -Depends: linux-image-6.6.15-rt-arm64 (= ${binary:Version}), ${misc:Depends} +Provides: linux-latest-modules-6.7.7-rt-arm64, wireguard-modules (= 1.0.0), virtualbox-guest-modules [amd64 i386] +Depends: linux-image-6.7.7-rt-arm64 (= ${binary:Version}), ${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. @@ -618,7 +618,7 @@ Description: Linux for 64-bit ARMv8 machines (meta-package) Package: linux-headers-rt-arm64 Architecture: arm64 Build-Profiles: <!pkg.linux.nokernel !pkg.linux.nometa !pkg.linux.quick> -Depends: linux-headers-6.6.15-rt-arm64 (= ${binary:Version}), ${misc:Depends} +Depends: linux-headers-6.7.7-rt-arm64 (= ${binary:Version}), ${misc:Depends} Description: Header files for Linux rt-arm64 configuration (meta-package) This package depends on the architecture-specific header files for the latest Linux kernel rt-arm64 configuration. diff --git a/debian/generated.signed-arm64/files.json b/debian/generated.signed-arm64/files.json index 3f2a2281ef..494bdf30a9 100644 --- a/debian/generated.signed-arm64/files.json +++ b/debian/generated.signed-arm64/files.json @@ -1,29 +1,29 @@ { "packages": { - "linux-image-6.6.15-arm64-unsigned": { + "linux-image-6.7.7-arm64-unsigned": { "trusted_certs": [], "files": [ { "sig_type": "efi", - "file": "boot/vmlinuz-6.6.15-arm64" + "file": "boot/vmlinuz-6.7.7-arm64" } ] }, - "linux-image-6.6.15-cloud-arm64-unsigned": { + "linux-image-6.7.7-cloud-arm64-unsigned": { "trusted_certs": [], "files": [ { "sig_type": "efi", - "file": "boot/vmlinuz-6.6.15-cloud-arm64" + "file": "boot/vmlinuz-6.7.7-cloud-arm64" } ] }, - "linux-image-6.6.15-rt-arm64-unsigned": { + "linux-image-6.7.7-rt-arm64-unsigned": { "trusted_certs": [], "files": [ { "sig_type": "efi", - "file": "boot/vmlinuz-6.6.15-rt-arm64" + "file": "boot/vmlinuz-6.7.7-rt-arm64" } ] } diff --git a/debian/generated.signed-arm64/linux-headers-arm64.lintian-overrides b/debian/generated.signed-arm64/linux-headers-arm64.lintian-overrides index 86259464b4..35e4a7430b 100644 --- a/debian/generated.signed-arm64/linux-headers-arm64.lintian-overrides +++ b/debian/generated.signed-arm64/linux-headers-arm64.lintian-overrides @@ -1,3 +1,3 @@ # linux-signed-* source packages are generated by the linux source # package, so it is OK for their binaries to share documentation -linux-headers-arm64: usr-share-doc-symlink-to-foreign-package linux-headers-6.6.15-arm64 +linux-headers-arm64: usr-share-doc-symlink-to-foreign-package linux-headers-6.7.7-arm64 diff --git a/debian/generated.signed-arm64/linux-headers-arm64.maintscript b/debian/generated.signed-arm64/linux-headers-arm64.maintscript index c8c42b889d..a0e682616e 100644 --- a/debian/generated.signed-arm64/linux-headers-arm64.maintscript +++ b/debian/generated.signed-arm64/linux-headers-arm64.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-headers-arm64 linux-headers-6.6.15-arm64 5.7~rc5-1~exp1 linux-headers-arm64 +dir_to_symlink /usr/share/doc/linux-headers-arm64 linux-headers-6.7.7-arm64 5.7~rc5-1~exp1 linux-headers-arm64 diff --git a/debian/generated.signed-arm64/linux-headers-cloud-arm64.lintian-overrides b/debian/generated.signed-arm64/linux-headers-cloud-arm64.lintian-overrides index f3ee4d9f99..83bc4704ff 100644 --- a/debian/generated.signed-arm64/linux-headers-cloud-arm64.lintian-overrides +++ b/debian/generated.signed-arm64/linux-headers-cloud-arm64.lintian-overrides @@ -1,3 +1,3 @@ # linux-signed-* source packages are generated by the linux source # package, so it is OK for their binaries to share documentation -linux-headers-cloud-arm64: usr-share-doc-symlink-to-foreign-package linux-headers-6.6.15-cloud-arm64 +linux-headers-cloud-arm64: usr-share-doc-symlink-to-foreign-package linux-headers-6.7.7-cloud-arm64 diff --git a/debian/generated.signed-arm64/linux-headers-cloud-arm64.maintscript b/debian/generated.signed-arm64/linux-headers-cloud-arm64.maintscript index cdbd40c2a9..ee6e6533c2 100644 --- a/debian/generated.signed-arm64/linux-headers-cloud-arm64.maintscript +++ b/debian/generated.signed-arm64/linux-headers-cloud-arm64.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-headers-cloud-arm64 linux-headers-6.6.15-cloud-arm64 5.7~rc5-1~exp1 linux-headers-cloud-arm64 +dir_to_symlink /usr/share/doc/linux-headers-cloud-arm64 linux-headers-6.7.7-cloud-arm64 5.7~rc5-1~exp1 linux-headers-cloud-arm64 diff --git a/debian/generated.signed-arm64/linux-headers-rt-arm64.lintian-overrides b/debian/generated.signed-arm64/linux-headers-rt-arm64.lintian-overrides index b5c6dc4e5b..4a26c73c28 100644 --- a/debian/generated.signed-arm64/linux-headers-rt-arm64.lintian-overrides +++ b/debian/generated.signed-arm64/linux-headers-rt-arm64.lintian-overrides @@ -1,3 +1,3 @@ # linux-signed-* source packages are generated by the linux source # package, so it is OK for their binaries to share documentation -linux-headers-rt-arm64: usr-share-doc-symlink-to-foreign-package linux-headers-6.6.15-rt-arm64 +linux-headers-rt-arm64: usr-share-doc-symlink-to-foreign-package linux-headers-6.7.7-rt-arm64 diff --git a/debian/generated.signed-arm64/linux-headers-rt-arm64.maintscript b/debian/generated.signed-arm64/linux-headers-rt-arm64.maintscript index 9d98f44aa1..1de88ecb8c 100644 --- a/debian/generated.signed-arm64/linux-headers-rt-arm64.maintscript +++ b/debian/generated.signed-arm64/linux-headers-rt-arm64.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-headers-rt-arm64 linux-headers-6.6.15-rt-arm64 5.7~rc5-1~exp1 linux-headers-rt-arm64 +dir_to_symlink /usr/share/doc/linux-headers-rt-arm64 linux-headers-6.7.7-rt-arm64 5.7~rc5-1~exp1 linux-headers-rt-arm64 diff --git a/debian/generated.signed-arm64/linux-image-6.6.15-cloud-arm64.postinst b/debian/generated.signed-arm64/linux-image-6.6.15-cloud-arm64.postinst deleted file mode 100644 index 72c2fbde50..0000000000 --- a/debian/generated.signed-arm64/linux-image-6.6.15-cloud-arm64.postinst +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-cloud-arm64 -image_path=/boot/vmlinuz-$version - -if [ "$1" != configure ]; then - exit 0 -fi - -depmod $version - -if [ -f /lib/modules/$version/.fresh-install ]; then - change=install -else - change=upgrade -fi -linux-update-symlinks $change $version $image_path -rm -f /lib/modules/$version/.fresh-install - -if [ -d /etc/kernel/postinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postinst.d -fi - -exit 0 diff --git a/debian/generated.signed-arm64/linux-image-6.6.15-cloud-arm64.postrm b/debian/generated.signed-arm64/linux-image-6.6.15-cloud-arm64.postrm deleted file mode 100644 index 0aa77d6eae..0000000000 --- a/debian/generated.signed-arm64/linux-image-6.6.15-cloud-arm64.postrm +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-cloud-arm64 -image_path=/boot/vmlinuz-$version - -rm -f /lib/modules/$version/.fresh-install - -if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then - linux-update-symlinks remove $version $image_path -fi - -if [ -d /etc/kernel/postrm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postrm.d -fi - -if [ "$1" = purge ]; then - for extra_file in modules.dep modules.isapnpmap modules.pcimap \ - modules.usbmap modules.parportmap \ - modules.generic_string modules.ieee1394map \ - modules.ieee1394map modules.pnpbiosmap \ - modules.alias modules.ccwmap modules.inputmap \ - modules.symbols modules.ofmap \ - modules.seriomap modules.\*.bin \ - modules.softdep modules.devname; do - eval rm -f /lib/modules/$version/$extra_file - done - rmdir /lib/modules/$version || true -fi - -exit 0 diff --git a/debian/generated.signed-arm64/linux-image-6.6.15-cloud-arm64.preinst b/debian/generated.signed-arm64/linux-image-6.6.15-cloud-arm64.preinst deleted file mode 100644 index c4724afb71..0000000000 --- a/debian/generated.signed-arm64/linux-image-6.6.15-cloud-arm64.preinst +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-cloud-arm64 -image_path=/boot/vmlinuz-$version - -if [ "$1" = abort-upgrade ]; then - exit 0 -fi - -if [ "$1" = install ]; then - # Create a flag file for postinst - mkdir -p /lib/modules/$version - touch /lib/modules/$version/.fresh-install -fi - -if [ -d /etc/kernel/preinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/preinst.d -fi - -exit 0 diff --git a/debian/generated.signed-arm64/linux-image-6.6.15-cloud-arm64.prerm b/debian/generated.signed-arm64/linux-image-6.6.15-cloud-arm64.prerm deleted file mode 100644 index d7a4196216..0000000000 --- a/debian/generated.signed-arm64/linux-image-6.6.15-cloud-arm64.prerm +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-cloud-arm64 -image_path=/boot/vmlinuz-$version - -if [ "$1" != remove ]; then - exit 0 -fi - -linux-check-removal $version - -if [ -d /etc/kernel/prerm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/prerm.d -fi - -exit 0 diff --git a/debian/generated.signed-arm64/linux-image-6.6.15-arm64.NEWS b/debian/generated.signed-arm64/linux-image-6.7.7-arm64.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/generated.signed-arm64/linux-image-6.6.15-arm64.NEWS +++ b/debian/generated.signed-arm64/linux-image-6.7.7-arm64.NEWS diff --git a/debian/generated.signed-arm64/linux-image-6.6.15-arm64.postinst b/debian/generated.signed-arm64/linux-image-6.7.7-arm64.postinst index f8c92e5e04..4f9d54bea9 100644 --- a/debian/generated.signed-arm64/linux-image-6.6.15-arm64.postinst +++ b/debian/generated.signed-arm64/linux-image-6.7.7-arm64.postinst @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-arm64 +version=6.7.7-arm64 image_path=/boot/vmlinuz-$version if [ "$1" != configure ]; then diff --git a/debian/generated.signed-arm64/linux-image-6.6.15-arm64.postrm b/debian/generated.signed-arm64/linux-image-6.7.7-arm64.postrm index d2dc6d7963..78977ffe81 100644 --- a/debian/generated.signed-arm64/linux-image-6.6.15-arm64.postrm +++ b/debian/generated.signed-arm64/linux-image-6.7.7-arm64.postrm @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-arm64 +version=6.7.7-arm64 image_path=/boot/vmlinuz-$version rm -f /lib/modules/$version/.fresh-install diff --git a/debian/generated.signed-arm64/linux-image-6.6.15-arm64.preinst b/debian/generated.signed-arm64/linux-image-6.7.7-arm64.preinst index 76deed2762..7a8c286978 100644 --- a/debian/generated.signed-arm64/linux-image-6.6.15-arm64.preinst +++ b/debian/generated.signed-arm64/linux-image-6.7.7-arm64.preinst @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-arm64 +version=6.7.7-arm64 image_path=/boot/vmlinuz-$version if [ "$1" = abort-upgrade ]; then diff --git a/debian/generated.signed-amd64/linux-image-6.6.15-amd64.prerm b/debian/generated.signed-arm64/linux-image-6.7.7-arm64.prerm index d8f30e5bd5..1638b15c9a 100644 --- a/debian/generated.signed-amd64/linux-image-6.6.15-amd64.prerm +++ b/debian/generated.signed-arm64/linux-image-6.7.7-arm64.prerm @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-amd64 +version=6.7.7-arm64 image_path=/boot/vmlinuz-$version if [ "$1" != remove ]; then diff --git a/debian/generated.signed-arm64/linux-image-6.6.15-cloud-arm64.NEWS b/debian/generated.signed-arm64/linux-image-6.7.7-cloud-arm64.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/generated.signed-arm64/linux-image-6.6.15-cloud-arm64.NEWS +++ b/debian/generated.signed-arm64/linux-image-6.7.7-cloud-arm64.NEWS diff --git a/debian/generated.signed-arm64/linux-image-6.7.7-cloud-arm64.postinst b/debian/generated.signed-arm64/linux-image-6.7.7-cloud-arm64.postinst new file mode 100644 index 0000000000..b800c147a5 --- /dev/null +++ b/debian/generated.signed-arm64/linux-image-6.7.7-cloud-arm64.postinst @@ -0,0 +1,25 @@ +#!/bin/sh -e + +version=6.7.7-cloud-arm64 +image_path=/boot/vmlinuz-$version + +if [ "$1" != configure ]; then + exit 0 +fi + +depmod $version + +if [ -f /lib/modules/$version/.fresh-install ]; then + change=install +else + change=upgrade +fi +linux-update-symlinks $change $version $image_path +rm -f /lib/modules/$version/.fresh-install + +if [ -d /etc/kernel/postinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postinst.d +fi + +exit 0 diff --git a/debian/generated.signed-arm64/linux-image-6.7.7-cloud-arm64.postrm b/debian/generated.signed-arm64/linux-image-6.7.7-cloud-arm64.postrm new file mode 100644 index 0000000000..82a12e06a2 --- /dev/null +++ b/debian/generated.signed-arm64/linux-image-6.7.7-cloud-arm64.postrm @@ -0,0 +1,31 @@ +#!/bin/sh -e + +version=6.7.7-cloud-arm64 +image_path=/boot/vmlinuz-$version + +rm -f /lib/modules/$version/.fresh-install + +if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then + linux-update-symlinks remove $version $image_path +fi + +if [ -d /etc/kernel/postrm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postrm.d +fi + +if [ "$1" = purge ]; then + for extra_file in modules.dep modules.isapnpmap modules.pcimap \ + modules.usbmap modules.parportmap \ + modules.generic_string modules.ieee1394map \ + modules.ieee1394map modules.pnpbiosmap \ + modules.alias modules.ccwmap modules.inputmap \ + modules.symbols modules.ofmap \ + modules.seriomap modules.\*.bin \ + modules.softdep modules.devname; do + eval rm -f /lib/modules/$version/$extra_file + done + rmdir /lib/modules/$version || true +fi + +exit 0 diff --git a/debian/generated.signed-arm64/linux-image-6.7.7-cloud-arm64.preinst b/debian/generated.signed-arm64/linux-image-6.7.7-cloud-arm64.preinst new file mode 100644 index 0000000000..6b1cbc74ff --- /dev/null +++ b/debian/generated.signed-arm64/linux-image-6.7.7-cloud-arm64.preinst @@ -0,0 +1,21 @@ +#!/bin/sh -e + +version=6.7.7-cloud-arm64 +image_path=/boot/vmlinuz-$version + +if [ "$1" = abort-upgrade ]; then + exit 0 +fi + +if [ "$1" = install ]; then + # Create a flag file for postinst + mkdir -p /lib/modules/$version + touch /lib/modules/$version/.fresh-install +fi + +if [ -d /etc/kernel/preinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/preinst.d +fi + +exit 0 diff --git a/debian/generated.signed-arm64/linux-image-6.7.7-cloud-arm64.prerm b/debian/generated.signed-arm64/linux-image-6.7.7-cloud-arm64.prerm new file mode 100644 index 0000000000..89397bf5cd --- /dev/null +++ b/debian/generated.signed-arm64/linux-image-6.7.7-cloud-arm64.prerm @@ -0,0 +1,17 @@ +#!/bin/sh -e + +version=6.7.7-cloud-arm64 +image_path=/boot/vmlinuz-$version + +if [ "$1" != remove ]; then + exit 0 +fi + +linux-check-removal $version + +if [ -d /etc/kernel/prerm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/prerm.d +fi + +exit 0 diff --git a/debian/generated.signed-arm64/linux-image-6.6.15-rt-arm64.NEWS b/debian/generated.signed-arm64/linux-image-6.7.7-rt-arm64.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/generated.signed-arm64/linux-image-6.6.15-rt-arm64.NEWS +++ b/debian/generated.signed-arm64/linux-image-6.7.7-rt-arm64.NEWS diff --git a/debian/generated.signed-arm64/linux-image-6.7.7-rt-arm64.postinst b/debian/generated.signed-arm64/linux-image-6.7.7-rt-arm64.postinst new file mode 100644 index 0000000000..e6e7facb0d --- /dev/null +++ b/debian/generated.signed-arm64/linux-image-6.7.7-rt-arm64.postinst @@ -0,0 +1,25 @@ +#!/bin/sh -e + +version=6.7.7-rt-arm64 +image_path=/boot/vmlinuz-$version + +if [ "$1" != configure ]; then + exit 0 +fi + +depmod $version + +if [ -f /lib/modules/$version/.fresh-install ]; then + change=install +else + change=upgrade +fi +linux-update-symlinks $change $version $image_path +rm -f /lib/modules/$version/.fresh-install + +if [ -d /etc/kernel/postinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postinst.d +fi + +exit 0 diff --git a/debian/generated.signed-arm64/linux-image-6.7.7-rt-arm64.postrm b/debian/generated.signed-arm64/linux-image-6.7.7-rt-arm64.postrm new file mode 100644 index 0000000000..d2744313ce --- /dev/null +++ b/debian/generated.signed-arm64/linux-image-6.7.7-rt-arm64.postrm @@ -0,0 +1,31 @@ +#!/bin/sh -e + +version=6.7.7-rt-arm64 +image_path=/boot/vmlinuz-$version + +rm -f /lib/modules/$version/.fresh-install + +if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then + linux-update-symlinks remove $version $image_path +fi + +if [ -d /etc/kernel/postrm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postrm.d +fi + +if [ "$1" = purge ]; then + for extra_file in modules.dep modules.isapnpmap modules.pcimap \ + modules.usbmap modules.parportmap \ + modules.generic_string modules.ieee1394map \ + modules.ieee1394map modules.pnpbiosmap \ + modules.alias modules.ccwmap modules.inputmap \ + modules.symbols modules.ofmap \ + modules.seriomap modules.\*.bin \ + modules.softdep modules.devname; do + eval rm -f /lib/modules/$version/$extra_file + done + rmdir /lib/modules/$version || true +fi + +exit 0 diff --git a/debian/generated.signed-arm64/linux-image-6.7.7-rt-arm64.preinst b/debian/generated.signed-arm64/linux-image-6.7.7-rt-arm64.preinst new file mode 100644 index 0000000000..c61617bcef --- /dev/null +++ b/debian/generated.signed-arm64/linux-image-6.7.7-rt-arm64.preinst @@ -0,0 +1,21 @@ +#!/bin/sh -e + +version=6.7.7-rt-arm64 +image_path=/boot/vmlinuz-$version + +if [ "$1" = abort-upgrade ]; then + exit 0 +fi + +if [ "$1" = install ]; then + # Create a flag file for postinst + mkdir -p /lib/modules/$version + touch /lib/modules/$version/.fresh-install +fi + +if [ -d /etc/kernel/preinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/preinst.d +fi + +exit 0 diff --git a/debian/generated.signed-arm64/linux-image-6.7.7-rt-arm64.prerm b/debian/generated.signed-arm64/linux-image-6.7.7-rt-arm64.prerm new file mode 100644 index 0000000000..1ee33711e2 --- /dev/null +++ b/debian/generated.signed-arm64/linux-image-6.7.7-rt-arm64.prerm @@ -0,0 +1,17 @@ +#!/bin/sh -e + +version=6.7.7-rt-arm64 +image_path=/boot/vmlinuz-$version + +if [ "$1" != remove ]; then + exit 0 +fi + +linux-check-removal $version + +if [ -d /etc/kernel/prerm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/prerm.d +fi + +exit 0 diff --git a/debian/generated.signed-arm64/linux-image-arm64.bug-presubj b/debian/generated.signed-arm64/linux-image-arm64.bug-presubj index ff1d0afc2d..cb5ca333f3 100644 --- a/debian/generated.signed-arm64/linux-image-arm64.bug-presubj +++ b/debian/generated.signed-arm64/linux-image-arm64.bug-presubj @@ -2,4 +2,4 @@ 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-6.6.15-arm64 instead. +the package name linux-image-6.7.7-arm64 instead. diff --git a/debian/generated.signed-arm64/linux-image-arm64.maintscript b/debian/generated.signed-arm64/linux-image-arm64.maintscript index 987bb0f557..74ff8c870f 100644 --- a/debian/generated.signed-arm64/linux-image-arm64.maintscript +++ b/debian/generated.signed-arm64/linux-image-arm64.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-arm64 linux-image-6.6.15-arm64 5.7~rc5-1~exp1 linux-image-arm64 +dir_to_symlink /usr/share/doc/linux-image-arm64 linux-image-6.7.7-arm64 5.7~rc5-1~exp1 linux-image-arm64 diff --git a/debian/generated.signed-arm64/linux-image-cloud-arm64.bug-presubj b/debian/generated.signed-arm64/linux-image-cloud-arm64.bug-presubj index 857e63cca0..12804de7be 100644 --- a/debian/generated.signed-arm64/linux-image-cloud-arm64.bug-presubj +++ b/debian/generated.signed-arm64/linux-image-cloud-arm64.bug-presubj @@ -2,4 +2,4 @@ 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-6.6.15-cloud-arm64 instead. +the package name linux-image-6.7.7-cloud-arm64 instead. diff --git a/debian/generated.signed-arm64/linux-image-cloud-arm64.maintscript b/debian/generated.signed-arm64/linux-image-cloud-arm64.maintscript index ddd137d6de..964e1c4a68 100644 --- a/debian/generated.signed-arm64/linux-image-cloud-arm64.maintscript +++ b/debian/generated.signed-arm64/linux-image-cloud-arm64.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-cloud-arm64 linux-image-6.6.15-cloud-arm64 5.7~rc5-1~exp1 linux-image-cloud-arm64 +dir_to_symlink /usr/share/doc/linux-image-cloud-arm64 linux-image-6.7.7-cloud-arm64 5.7~rc5-1~exp1 linux-image-cloud-arm64 diff --git a/debian/generated.signed-arm64/linux-image-rt-arm64.bug-presubj b/debian/generated.signed-arm64/linux-image-rt-arm64.bug-presubj index 6ad5988b6a..ff106b5cf8 100644 --- a/debian/generated.signed-arm64/linux-image-rt-arm64.bug-presubj +++ b/debian/generated.signed-arm64/linux-image-rt-arm64.bug-presubj @@ -2,4 +2,4 @@ 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-6.6.15-rt-arm64 instead. +the package name linux-image-6.7.7-rt-arm64 instead. diff --git a/debian/generated.signed-arm64/linux-image-rt-arm64.maintscript b/debian/generated.signed-arm64/linux-image-rt-arm64.maintscript index dbf35113ee..6e1eec0811 100644 --- a/debian/generated.signed-arm64/linux-image-rt-arm64.maintscript +++ b/debian/generated.signed-arm64/linux-image-rt-arm64.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-rt-arm64 linux-image-6.6.15-rt-arm64 5.7~rc5-1~exp1 linux-image-rt-arm64 +dir_to_symlink /usr/share/doc/linux-image-rt-arm64 linux-image-6.7.7-rt-arm64 5.7~rc5-1~exp1 linux-image-rt-arm64 diff --git a/debian/generated.signed-arm64/rules.gen b/debian/generated.signed-arm64/rules.gen index e906268781..2632cfdf25 100644 --- a/debian/generated.signed-arm64/rules.gen +++ b/debian/generated.signed-arm64/rules.gen @@ -9,70 +9,70 @@ binary-arch_arm64:binary-arch_arm64_none binary-arch_arm64_rt binary-arch_arm64_none:binary-arch_arm64_none_arm64 binary-arch_arm64_none_cloud-arm64 binary-arch_arm64_none_arm64:binary-arch_arm64_none_arm64_image binary-arch_arm64_none_arm64_installer binary-arch_arm64_none_arm64_meta binary-arch_arm64_none_arm64_image: - $(call if_package, linux-image-6.6.15-arm64, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-arm64' DH_OPTIONS='-plinux-image-6.6.15-arm64' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-image-6.6.15-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-arm64, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-arm64' DH_OPTIONS='-plinux-image-6.7.7-arm64' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-image-6.7.7-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_arm64_none_arm64_installer: - $(call if_package, ata-modules-6.6.15-arm64-di btrfs-modules-6.6.15-arm64-di cdrom-core-modules-6.6.15-arm64-di crc-modules-6.6.15-arm64-di crypto-dm-modules-6.6.15-arm64-di crypto-modules-6.6.15-arm64-di efi-modules-6.6.15-arm64-di event-modules-6.6.15-arm64-di ext4-modules-6.6.15-arm64-di f2fs-modules-6.6.15-arm64-di fat-modules-6.6.15-arm64-di fb-modules-6.6.15-arm64-di i2c-modules-6.6.15-arm64-di input-modules-6.6.15-arm64-di isofs-modules-6.6.15-arm64-di jfs-modules-6.6.15-arm64-di kernel-image-6.6.15-arm64-di leds-modules-6.6.15-arm64-di loop-modules-6.6.15-arm64-di md-modules-6.6.15-arm64-di mmc-modules-6.6.15-arm64-di mtd-core-modules-6.6.15-arm64-di multipath-modules-6.6.15-arm64-di nbd-modules-6.6.15-arm64-di nic-modules-6.6.15-arm64-di nic-shared-modules-6.6.15-arm64-di nic-usb-modules-6.6.15-arm64-di nic-wireless-modules-6.6.15-arm64-di ppp-modules-6.6.15-arm64-di sata-modules-6.6.15-arm64-di scsi-core-modules-6.6.15-arm64-di scsi-modules-6.6.15-arm64-di scsi-nic-modules-6.6.15-arm64-di sound-modules-6.6.15-arm64-di speakup-modules-6.6.15-arm64-di squashfs-modules-6.6.15-arm64-di udf-modules-6.6.15-arm64-di uinput-modules-6.6.15-arm64-di usb-modules-6.6.15-arm64-di usb-serial-modules-6.6.15-arm64-di usb-storage-modules-6.6.15-arm64-di xfs-modules-6.6.15-arm64-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.6.15-arm64-di -pbtrfs-modules-6.6.15-arm64-di -pcdrom-core-modules-6.6.15-arm64-di -pcrc-modules-6.6.15-arm64-di -pcrypto-dm-modules-6.6.15-arm64-di -pcrypto-modules-6.6.15-arm64-di -pefi-modules-6.6.15-arm64-di -pevent-modules-6.6.15-arm64-di -pext4-modules-6.6.15-arm64-di -pf2fs-modules-6.6.15-arm64-di -pfat-modules-6.6.15-arm64-di -pfb-modules-6.6.15-arm64-di -pi2c-modules-6.6.15-arm64-di -pinput-modules-6.6.15-arm64-di -pisofs-modules-6.6.15-arm64-di -pjfs-modules-6.6.15-arm64-di -pkernel-image-6.6.15-arm64-di -pleds-modules-6.6.15-arm64-di -ploop-modules-6.6.15-arm64-di -pmd-modules-6.6.15-arm64-di -pmmc-modules-6.6.15-arm64-di -pmtd-core-modules-6.6.15-arm64-di -pmultipath-modules-6.6.15-arm64-di -pnbd-modules-6.6.15-arm64-di -pnic-modules-6.6.15-arm64-di -pnic-shared-modules-6.6.15-arm64-di -pnic-usb-modules-6.6.15-arm64-di -pnic-wireless-modules-6.6.15-arm64-di -pppp-modules-6.6.15-arm64-di -psata-modules-6.6.15-arm64-di -pscsi-core-modules-6.6.15-arm64-di -pscsi-modules-6.6.15-arm64-di -pscsi-nic-modules-6.6.15-arm64-di -psound-modules-6.6.15-arm64-di -pspeakup-modules-6.6.15-arm64-di -psquashfs-modules-6.6.15-arm64-di -pudf-modules-6.6.15-arm64-di -puinput-modules-6.6.15-arm64-di -pusb-modules-6.6.15-arm64-di -pusb-serial-modules-6.6.15-arm64-di -pusb-storage-modules-6.6.15-arm64-di -pxfs-modules-6.6.15-arm64-di' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-arm64-di' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, ata-modules-6.7.7-arm64-di btrfs-modules-6.7.7-arm64-di cdrom-core-modules-6.7.7-arm64-di crc-modules-6.7.7-arm64-di crypto-dm-modules-6.7.7-arm64-di crypto-modules-6.7.7-arm64-di efi-modules-6.7.7-arm64-di event-modules-6.7.7-arm64-di ext4-modules-6.7.7-arm64-di f2fs-modules-6.7.7-arm64-di fat-modules-6.7.7-arm64-di fb-modules-6.7.7-arm64-di i2c-modules-6.7.7-arm64-di input-modules-6.7.7-arm64-di isofs-modules-6.7.7-arm64-di jfs-modules-6.7.7-arm64-di kernel-image-6.7.7-arm64-di leds-modules-6.7.7-arm64-di loop-modules-6.7.7-arm64-di md-modules-6.7.7-arm64-di mmc-modules-6.7.7-arm64-di mtd-core-modules-6.7.7-arm64-di multipath-modules-6.7.7-arm64-di nbd-modules-6.7.7-arm64-di nic-modules-6.7.7-arm64-di nic-shared-modules-6.7.7-arm64-di nic-usb-modules-6.7.7-arm64-di nic-wireless-modules-6.7.7-arm64-di ppp-modules-6.7.7-arm64-di sata-modules-6.7.7-arm64-di scsi-core-modules-6.7.7-arm64-di scsi-modules-6.7.7-arm64-di scsi-nic-modules-6.7.7-arm64-di sound-modules-6.7.7-arm64-di speakup-modules-6.7.7-arm64-di squashfs-modules-6.7.7-arm64-di udf-modules-6.7.7-arm64-di uinput-modules-6.7.7-arm64-di usb-modules-6.7.7-arm64-di usb-serial-modules-6.7.7-arm64-di usb-storage-modules-6.7.7-arm64-di xfs-modules-6.7.7-arm64-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.7.7-arm64-di -pbtrfs-modules-6.7.7-arm64-di -pcdrom-core-modules-6.7.7-arm64-di -pcrc-modules-6.7.7-arm64-di -pcrypto-dm-modules-6.7.7-arm64-di -pcrypto-modules-6.7.7-arm64-di -pefi-modules-6.7.7-arm64-di -pevent-modules-6.7.7-arm64-di -pext4-modules-6.7.7-arm64-di -pf2fs-modules-6.7.7-arm64-di -pfat-modules-6.7.7-arm64-di -pfb-modules-6.7.7-arm64-di -pi2c-modules-6.7.7-arm64-di -pinput-modules-6.7.7-arm64-di -pisofs-modules-6.7.7-arm64-di -pjfs-modules-6.7.7-arm64-di -pkernel-image-6.7.7-arm64-di -pleds-modules-6.7.7-arm64-di -ploop-modules-6.7.7-arm64-di -pmd-modules-6.7.7-arm64-di -pmmc-modules-6.7.7-arm64-di -pmtd-core-modules-6.7.7-arm64-di -pmultipath-modules-6.7.7-arm64-di -pnbd-modules-6.7.7-arm64-di -pnic-modules-6.7.7-arm64-di -pnic-shared-modules-6.7.7-arm64-di -pnic-usb-modules-6.7.7-arm64-di -pnic-wireless-modules-6.7.7-arm64-di -pppp-modules-6.7.7-arm64-di -psata-modules-6.7.7-arm64-di -pscsi-core-modules-6.7.7-arm64-di -pscsi-modules-6.7.7-arm64-di -pscsi-nic-modules-6.7.7-arm64-di -psound-modules-6.7.7-arm64-di -pspeakup-modules-6.7.7-arm64-di -psquashfs-modules-6.7.7-arm64-di -pudf-modules-6.7.7-arm64-di -puinput-modules-6.7.7-arm64-di -pusb-modules-6.7.7-arm64-di -pusb-serial-modules-6.7.7-arm64-di -pusb-storage-modules-6.7.7-arm64-di -pxfs-modules-6.7.7-arm64-di' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-arm64-di' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_arm64_none_arm64_meta: - $(call if_package, linux-image-arm64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-arm64' DH_OPTIONS='-plinux-image-arm64' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-arm64' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-image-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-arm64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-arm64' DH_OPTIONS='-plinux-headers-arm64' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-arm64' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-headers-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-arm64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-arm64' DH_OPTIONS='-plinux-image-arm64' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-arm64' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-image-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-arm64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-arm64' DH_OPTIONS='-plinux-headers-arm64' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-arm64' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-headers-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_arm64_none_cloud-arm64:binary-arch_arm64_none_cloud-arm64_image binary-arch_arm64_none_cloud-arm64_meta binary-arch_arm64_none_cloud-arm64_image: - $(call if_package, linux-image-6.6.15-cloud-arm64, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-cloud-arm64' DH_OPTIONS='-plinux-image-6.6.15-cloud-arm64' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/arm64/config.cloud-arm64 debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-image-6.6.15-cloud-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-cloud-arm64, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-cloud-arm64' DH_OPTIONS='-plinux-image-6.7.7-cloud-arm64' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-image-6.7.7-cloud-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_arm64_none_cloud-arm64_meta: - $(call if_package, linux-image-cloud-arm64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-cloud-arm64' DH_OPTIONS='-plinux-image-cloud-arm64' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-cloud-arm64' KCONFIG='debian/config/config debian/config/arm64/config debian/config/arm64/config.cloud-arm64 debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-image-cloud-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-cloud-arm64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-cloud-arm64' DH_OPTIONS='-plinux-headers-cloud-arm64' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-cloud-arm64' KCONFIG='debian/config/config debian/config/arm64/config debian/config/arm64/config.cloud-arm64 debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-headers-cloud-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-cloud-arm64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-cloud-arm64' DH_OPTIONS='-plinux-image-cloud-arm64' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-cloud-arm64' KCONFIG='debian/config/config debian/config/arm64/config debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-image-cloud-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-cloud-arm64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-cloud-arm64' DH_OPTIONS='-plinux-headers-cloud-arm64' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-cloud-arm64' KCONFIG='debian/config/config debian/config/arm64/config debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-headers-cloud-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_arm64_rt:binary-arch_arm64_rt_arm64 binary-arch_arm64_rt_arm64:binary-arch_arm64_rt_arm64_image binary-arch_arm64_rt_arm64_meta binary-arch_arm64_rt_arm64_image: - $(call if_package, linux-image-6.6.15-rt-arm64, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-rt-arm64' DH_OPTIONS='-plinux-image-6.6.15-rt-arm64' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-image-6.6.15-rt-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-rt-arm64, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-rt-arm64' DH_OPTIONS='-plinux-image-6.7.7-rt-arm64' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-image-6.7.7-rt-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_arm64_rt_arm64_meta: - $(call if_package, linux-image-rt-arm64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-arm64' DH_OPTIONS='-plinux-image-rt-arm64' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-rt-arm64' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-image-rt-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-rt-arm64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-rt-arm64' DH_OPTIONS='-plinux-headers-rt-arm64' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-rt-arm64' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-headers-rt-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-rt-arm64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-arm64' DH_OPTIONS='-plinux-image-rt-arm64' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-rt-arm64' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-image-rt-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-rt-arm64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-rt-arm64' DH_OPTIONS='-plinux-headers-rt-arm64' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-rt-arm64' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-headers-rt-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch:build-arch_arm64 build-arch_arm64:build-arch_arm64_none build-arch_arm64_rt build-arch_arm64_none:build-arch_arm64_none_arm64 build-arch_arm64_none_cloud-arm64 build-arch_arm64_none_arm64:build-arch_arm64_none_arm64_image build-arch_arm64_none_arm64_installer build-arch_arm64_none_arm64_meta build-arch_arm64_none_arm64_image: - $(call if_package, linux-image-6.6.15-arm64, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-arm64' DH_OPTIONS='-plinux-image-6.6.15-arm64' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-image-6.6.15-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-arm64, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-arm64' DH_OPTIONS='-plinux-image-6.7.7-arm64' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-image-6.7.7-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_arm64_none_arm64_installer: - $(call if_package, ata-modules-6.6.15-arm64-di btrfs-modules-6.6.15-arm64-di cdrom-core-modules-6.6.15-arm64-di crc-modules-6.6.15-arm64-di crypto-dm-modules-6.6.15-arm64-di crypto-modules-6.6.15-arm64-di efi-modules-6.6.15-arm64-di event-modules-6.6.15-arm64-di ext4-modules-6.6.15-arm64-di f2fs-modules-6.6.15-arm64-di fat-modules-6.6.15-arm64-di fb-modules-6.6.15-arm64-di i2c-modules-6.6.15-arm64-di input-modules-6.6.15-arm64-di isofs-modules-6.6.15-arm64-di jfs-modules-6.6.15-arm64-di kernel-image-6.6.15-arm64-di leds-modules-6.6.15-arm64-di loop-modules-6.6.15-arm64-di md-modules-6.6.15-arm64-di mmc-modules-6.6.15-arm64-di mtd-core-modules-6.6.15-arm64-di multipath-modules-6.6.15-arm64-di nbd-modules-6.6.15-arm64-di nic-modules-6.6.15-arm64-di nic-shared-modules-6.6.15-arm64-di nic-usb-modules-6.6.15-arm64-di nic-wireless-modules-6.6.15-arm64-di ppp-modules-6.6.15-arm64-di sata-modules-6.6.15-arm64-di scsi-core-modules-6.6.15-arm64-di scsi-modules-6.6.15-arm64-di scsi-nic-modules-6.6.15-arm64-di sound-modules-6.6.15-arm64-di speakup-modules-6.6.15-arm64-di squashfs-modules-6.6.15-arm64-di udf-modules-6.6.15-arm64-di uinput-modules-6.6.15-arm64-di usb-modules-6.6.15-arm64-di usb-serial-modules-6.6.15-arm64-di usb-storage-modules-6.6.15-arm64-di xfs-modules-6.6.15-arm64-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.6.15-arm64-di -pbtrfs-modules-6.6.15-arm64-di -pcdrom-core-modules-6.6.15-arm64-di -pcrc-modules-6.6.15-arm64-di -pcrypto-dm-modules-6.6.15-arm64-di -pcrypto-modules-6.6.15-arm64-di -pefi-modules-6.6.15-arm64-di -pevent-modules-6.6.15-arm64-di -pext4-modules-6.6.15-arm64-di -pf2fs-modules-6.6.15-arm64-di -pfat-modules-6.6.15-arm64-di -pfb-modules-6.6.15-arm64-di -pi2c-modules-6.6.15-arm64-di -pinput-modules-6.6.15-arm64-di -pisofs-modules-6.6.15-arm64-di -pjfs-modules-6.6.15-arm64-di -pkernel-image-6.6.15-arm64-di -pleds-modules-6.6.15-arm64-di -ploop-modules-6.6.15-arm64-di -pmd-modules-6.6.15-arm64-di -pmmc-modules-6.6.15-arm64-di -pmtd-core-modules-6.6.15-arm64-di -pmultipath-modules-6.6.15-arm64-di -pnbd-modules-6.6.15-arm64-di -pnic-modules-6.6.15-arm64-di -pnic-shared-modules-6.6.15-arm64-di -pnic-usb-modules-6.6.15-arm64-di -pnic-wireless-modules-6.6.15-arm64-di -pppp-modules-6.6.15-arm64-di -psata-modules-6.6.15-arm64-di -pscsi-core-modules-6.6.15-arm64-di -pscsi-modules-6.6.15-arm64-di -pscsi-nic-modules-6.6.15-arm64-di -psound-modules-6.6.15-arm64-di -pspeakup-modules-6.6.15-arm64-di -psquashfs-modules-6.6.15-arm64-di -pudf-modules-6.6.15-arm64-di -puinput-modules-6.6.15-arm64-di -pusb-modules-6.6.15-arm64-di -pusb-serial-modules-6.6.15-arm64-di -pusb-storage-modules-6.6.15-arm64-di -pxfs-modules-6.6.15-arm64-di' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-arm64-di' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, ata-modules-6.7.7-arm64-di btrfs-modules-6.7.7-arm64-di cdrom-core-modules-6.7.7-arm64-di crc-modules-6.7.7-arm64-di crypto-dm-modules-6.7.7-arm64-di crypto-modules-6.7.7-arm64-di efi-modules-6.7.7-arm64-di event-modules-6.7.7-arm64-di ext4-modules-6.7.7-arm64-di f2fs-modules-6.7.7-arm64-di fat-modules-6.7.7-arm64-di fb-modules-6.7.7-arm64-di i2c-modules-6.7.7-arm64-di input-modules-6.7.7-arm64-di isofs-modules-6.7.7-arm64-di jfs-modules-6.7.7-arm64-di kernel-image-6.7.7-arm64-di leds-modules-6.7.7-arm64-di loop-modules-6.7.7-arm64-di md-modules-6.7.7-arm64-di mmc-modules-6.7.7-arm64-di mtd-core-modules-6.7.7-arm64-di multipath-modules-6.7.7-arm64-di nbd-modules-6.7.7-arm64-di nic-modules-6.7.7-arm64-di nic-shared-modules-6.7.7-arm64-di nic-usb-modules-6.7.7-arm64-di nic-wireless-modules-6.7.7-arm64-di ppp-modules-6.7.7-arm64-di sata-modules-6.7.7-arm64-di scsi-core-modules-6.7.7-arm64-di scsi-modules-6.7.7-arm64-di scsi-nic-modules-6.7.7-arm64-di sound-modules-6.7.7-arm64-di speakup-modules-6.7.7-arm64-di squashfs-modules-6.7.7-arm64-di udf-modules-6.7.7-arm64-di uinput-modules-6.7.7-arm64-di usb-modules-6.7.7-arm64-di usb-serial-modules-6.7.7-arm64-di usb-storage-modules-6.7.7-arm64-di xfs-modules-6.7.7-arm64-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.7.7-arm64-di -pbtrfs-modules-6.7.7-arm64-di -pcdrom-core-modules-6.7.7-arm64-di -pcrc-modules-6.7.7-arm64-di -pcrypto-dm-modules-6.7.7-arm64-di -pcrypto-modules-6.7.7-arm64-di -pefi-modules-6.7.7-arm64-di -pevent-modules-6.7.7-arm64-di -pext4-modules-6.7.7-arm64-di -pf2fs-modules-6.7.7-arm64-di -pfat-modules-6.7.7-arm64-di -pfb-modules-6.7.7-arm64-di -pi2c-modules-6.7.7-arm64-di -pinput-modules-6.7.7-arm64-di -pisofs-modules-6.7.7-arm64-di -pjfs-modules-6.7.7-arm64-di -pkernel-image-6.7.7-arm64-di -pleds-modules-6.7.7-arm64-di -ploop-modules-6.7.7-arm64-di -pmd-modules-6.7.7-arm64-di -pmmc-modules-6.7.7-arm64-di -pmtd-core-modules-6.7.7-arm64-di -pmultipath-modules-6.7.7-arm64-di -pnbd-modules-6.7.7-arm64-di -pnic-modules-6.7.7-arm64-di -pnic-shared-modules-6.7.7-arm64-di -pnic-usb-modules-6.7.7-arm64-di -pnic-wireless-modules-6.7.7-arm64-di -pppp-modules-6.7.7-arm64-di -psata-modules-6.7.7-arm64-di -pscsi-core-modules-6.7.7-arm64-di -pscsi-modules-6.7.7-arm64-di -pscsi-nic-modules-6.7.7-arm64-di -psound-modules-6.7.7-arm64-di -pspeakup-modules-6.7.7-arm64-di -psquashfs-modules-6.7.7-arm64-di -pudf-modules-6.7.7-arm64-di -puinput-modules-6.7.7-arm64-di -pusb-modules-6.7.7-arm64-di -pusb-serial-modules-6.7.7-arm64-di -pusb-storage-modules-6.7.7-arm64-di -pxfs-modules-6.7.7-arm64-di' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-arm64-di' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_arm64_none_arm64_meta: - $(call if_package, linux-image-arm64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-arm64' DH_OPTIONS='-plinux-image-arm64' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-arm64' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-image-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-arm64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-arm64' DH_OPTIONS='-plinux-headers-arm64' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-arm64' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-headers-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-arm64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-arm64' DH_OPTIONS='-plinux-image-arm64' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-arm64' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-image-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-arm64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-arm64' DH_OPTIONS='-plinux-headers-arm64' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-arm64' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-headers-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_arm64_none_cloud-arm64:build-arch_arm64_none_cloud-arm64_image build-arch_arm64_none_cloud-arm64_meta build-arch_arm64_none_cloud-arm64_image: - $(call if_package, linux-image-6.6.15-cloud-arm64, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-cloud-arm64' DH_OPTIONS='-plinux-image-6.6.15-cloud-arm64' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/arm64/config.cloud-arm64 debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-image-6.6.15-cloud-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-cloud-arm64, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-cloud-arm64' DH_OPTIONS='-plinux-image-6.7.7-cloud-arm64' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-image-6.7.7-cloud-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_arm64_none_cloud-arm64_meta: - $(call if_package, linux-image-cloud-arm64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-cloud-arm64' DH_OPTIONS='-plinux-image-cloud-arm64' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-cloud-arm64' KCONFIG='debian/config/config debian/config/arm64/config debian/config/arm64/config.cloud-arm64 debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-image-cloud-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-cloud-arm64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-cloud-arm64' DH_OPTIONS='-plinux-headers-cloud-arm64' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-cloud-arm64' KCONFIG='debian/config/config debian/config/arm64/config debian/config/arm64/config.cloud-arm64 debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-headers-cloud-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-cloud-arm64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-cloud-arm64' DH_OPTIONS='-plinux-image-cloud-arm64' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-cloud-arm64' KCONFIG='debian/config/config debian/config/arm64/config debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-image-cloud-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-cloud-arm64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-cloud-arm64' DH_OPTIONS='-plinux-headers-cloud-arm64' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-cloud-arm64' KCONFIG='debian/config/config debian/config/arm64/config debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-headers-cloud-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_arm64_rt:build-arch_arm64_rt_arm64 build-arch_arm64_rt_arm64:build-arch_arm64_rt_arm64_image build-arch_arm64_rt_arm64_meta build-arch_arm64_rt_arm64_image: - $(call if_package, linux-image-6.6.15-rt-arm64, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-rt-arm64' DH_OPTIONS='-plinux-image-6.6.15-rt-arm64' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-image-6.6.15-rt-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-rt-arm64, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-rt-arm64' DH_OPTIONS='-plinux-image-6.7.7-rt-arm64' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-image-6.7.7-rt-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_arm64_rt_arm64_meta: - $(call if_package, linux-image-rt-arm64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-arm64' DH_OPTIONS='-plinux-image-rt-arm64' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-rt-arm64' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-image-rt-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-rt-arm64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-rt-arm64' DH_OPTIONS='-plinux-headers-rt-arm64' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-rt-arm64' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-headers-rt-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-rt-arm64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-arm64' DH_OPTIONS='-plinux-image-rt-arm64' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-rt-arm64' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-image-rt-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-rt-arm64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-rt-arm64' DH_OPTIONS='-plinux-headers-rt-arm64' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-rt-arm64' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-headers-rt-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup:setup_arm64 setup_arm64:setup_arm64_none setup_arm64_rt setup_arm64_none:setup_arm64_none_arm64 setup_arm64_none_cloud-arm64 setup_arm64_none_arm64:setup_arm64_none_arm64_image setup_arm64_none_arm64_installer setup_arm64_none_arm64_meta setup_arm64_none_arm64_image: - $(call if_package, linux-image-6.6.15-arm64, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-arm64' DH_OPTIONS='-plinux-image-6.6.15-arm64' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-image-6.6.15-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-arm64, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-arm64' DH_OPTIONS='-plinux-image-6.7.7-arm64' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-image-6.7.7-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_arm64_none_arm64_installer: - $(call if_package, ata-modules-6.6.15-arm64-di btrfs-modules-6.6.15-arm64-di cdrom-core-modules-6.6.15-arm64-di crc-modules-6.6.15-arm64-di crypto-dm-modules-6.6.15-arm64-di crypto-modules-6.6.15-arm64-di efi-modules-6.6.15-arm64-di event-modules-6.6.15-arm64-di ext4-modules-6.6.15-arm64-di f2fs-modules-6.6.15-arm64-di fat-modules-6.6.15-arm64-di fb-modules-6.6.15-arm64-di i2c-modules-6.6.15-arm64-di input-modules-6.6.15-arm64-di isofs-modules-6.6.15-arm64-di jfs-modules-6.6.15-arm64-di kernel-image-6.6.15-arm64-di leds-modules-6.6.15-arm64-di loop-modules-6.6.15-arm64-di md-modules-6.6.15-arm64-di mmc-modules-6.6.15-arm64-di mtd-core-modules-6.6.15-arm64-di multipath-modules-6.6.15-arm64-di nbd-modules-6.6.15-arm64-di nic-modules-6.6.15-arm64-di nic-shared-modules-6.6.15-arm64-di nic-usb-modules-6.6.15-arm64-di nic-wireless-modules-6.6.15-arm64-di ppp-modules-6.6.15-arm64-di sata-modules-6.6.15-arm64-di scsi-core-modules-6.6.15-arm64-di scsi-modules-6.6.15-arm64-di scsi-nic-modules-6.6.15-arm64-di sound-modules-6.6.15-arm64-di speakup-modules-6.6.15-arm64-di squashfs-modules-6.6.15-arm64-di udf-modules-6.6.15-arm64-di uinput-modules-6.6.15-arm64-di usb-modules-6.6.15-arm64-di usb-serial-modules-6.6.15-arm64-di usb-storage-modules-6.6.15-arm64-di xfs-modules-6.6.15-arm64-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.6.15-arm64-di -pbtrfs-modules-6.6.15-arm64-di -pcdrom-core-modules-6.6.15-arm64-di -pcrc-modules-6.6.15-arm64-di -pcrypto-dm-modules-6.6.15-arm64-di -pcrypto-modules-6.6.15-arm64-di -pefi-modules-6.6.15-arm64-di -pevent-modules-6.6.15-arm64-di -pext4-modules-6.6.15-arm64-di -pf2fs-modules-6.6.15-arm64-di -pfat-modules-6.6.15-arm64-di -pfb-modules-6.6.15-arm64-di -pi2c-modules-6.6.15-arm64-di -pinput-modules-6.6.15-arm64-di -pisofs-modules-6.6.15-arm64-di -pjfs-modules-6.6.15-arm64-di -pkernel-image-6.6.15-arm64-di -pleds-modules-6.6.15-arm64-di -ploop-modules-6.6.15-arm64-di -pmd-modules-6.6.15-arm64-di -pmmc-modules-6.6.15-arm64-di -pmtd-core-modules-6.6.15-arm64-di -pmultipath-modules-6.6.15-arm64-di -pnbd-modules-6.6.15-arm64-di -pnic-modules-6.6.15-arm64-di -pnic-shared-modules-6.6.15-arm64-di -pnic-usb-modules-6.6.15-arm64-di -pnic-wireless-modules-6.6.15-arm64-di -pppp-modules-6.6.15-arm64-di -psata-modules-6.6.15-arm64-di -pscsi-core-modules-6.6.15-arm64-di -pscsi-modules-6.6.15-arm64-di -pscsi-nic-modules-6.6.15-arm64-di -psound-modules-6.6.15-arm64-di -pspeakup-modules-6.6.15-arm64-di -psquashfs-modules-6.6.15-arm64-di -pudf-modules-6.6.15-arm64-di -puinput-modules-6.6.15-arm64-di -pusb-modules-6.6.15-arm64-di -pusb-serial-modules-6.6.15-arm64-di -pusb-storage-modules-6.6.15-arm64-di -pxfs-modules-6.6.15-arm64-di' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-arm64-di' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, ata-modules-6.7.7-arm64-di btrfs-modules-6.7.7-arm64-di cdrom-core-modules-6.7.7-arm64-di crc-modules-6.7.7-arm64-di crypto-dm-modules-6.7.7-arm64-di crypto-modules-6.7.7-arm64-di efi-modules-6.7.7-arm64-di event-modules-6.7.7-arm64-di ext4-modules-6.7.7-arm64-di f2fs-modules-6.7.7-arm64-di fat-modules-6.7.7-arm64-di fb-modules-6.7.7-arm64-di i2c-modules-6.7.7-arm64-di input-modules-6.7.7-arm64-di isofs-modules-6.7.7-arm64-di jfs-modules-6.7.7-arm64-di kernel-image-6.7.7-arm64-di leds-modules-6.7.7-arm64-di loop-modules-6.7.7-arm64-di md-modules-6.7.7-arm64-di mmc-modules-6.7.7-arm64-di mtd-core-modules-6.7.7-arm64-di multipath-modules-6.7.7-arm64-di nbd-modules-6.7.7-arm64-di nic-modules-6.7.7-arm64-di nic-shared-modules-6.7.7-arm64-di nic-usb-modules-6.7.7-arm64-di nic-wireless-modules-6.7.7-arm64-di ppp-modules-6.7.7-arm64-di sata-modules-6.7.7-arm64-di scsi-core-modules-6.7.7-arm64-di scsi-modules-6.7.7-arm64-di scsi-nic-modules-6.7.7-arm64-di sound-modules-6.7.7-arm64-di speakup-modules-6.7.7-arm64-di squashfs-modules-6.7.7-arm64-di udf-modules-6.7.7-arm64-di uinput-modules-6.7.7-arm64-di usb-modules-6.7.7-arm64-di usb-serial-modules-6.7.7-arm64-di usb-storage-modules-6.7.7-arm64-di xfs-modules-6.7.7-arm64-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.7.7-arm64-di -pbtrfs-modules-6.7.7-arm64-di -pcdrom-core-modules-6.7.7-arm64-di -pcrc-modules-6.7.7-arm64-di -pcrypto-dm-modules-6.7.7-arm64-di -pcrypto-modules-6.7.7-arm64-di -pefi-modules-6.7.7-arm64-di -pevent-modules-6.7.7-arm64-di -pext4-modules-6.7.7-arm64-di -pf2fs-modules-6.7.7-arm64-di -pfat-modules-6.7.7-arm64-di -pfb-modules-6.7.7-arm64-di -pi2c-modules-6.7.7-arm64-di -pinput-modules-6.7.7-arm64-di -pisofs-modules-6.7.7-arm64-di -pjfs-modules-6.7.7-arm64-di -pkernel-image-6.7.7-arm64-di -pleds-modules-6.7.7-arm64-di -ploop-modules-6.7.7-arm64-di -pmd-modules-6.7.7-arm64-di -pmmc-modules-6.7.7-arm64-di -pmtd-core-modules-6.7.7-arm64-di -pmultipath-modules-6.7.7-arm64-di -pnbd-modules-6.7.7-arm64-di -pnic-modules-6.7.7-arm64-di -pnic-shared-modules-6.7.7-arm64-di -pnic-usb-modules-6.7.7-arm64-di -pnic-wireless-modules-6.7.7-arm64-di -pppp-modules-6.7.7-arm64-di -psata-modules-6.7.7-arm64-di -pscsi-core-modules-6.7.7-arm64-di -pscsi-modules-6.7.7-arm64-di -pscsi-nic-modules-6.7.7-arm64-di -psound-modules-6.7.7-arm64-di -pspeakup-modules-6.7.7-arm64-di -psquashfs-modules-6.7.7-arm64-di -pudf-modules-6.7.7-arm64-di -puinput-modules-6.7.7-arm64-di -pusb-modules-6.7.7-arm64-di -pusb-serial-modules-6.7.7-arm64-di -pusb-storage-modules-6.7.7-arm64-di -pxfs-modules-6.7.7-arm64-di' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-arm64-di' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_arm64_none_arm64_meta: - $(call if_package, linux-image-arm64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-arm64' DH_OPTIONS='-plinux-image-arm64' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-arm64' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-image-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-arm64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-arm64' DH_OPTIONS='-plinux-headers-arm64' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-arm64' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-headers-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-arm64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-arm64' DH_OPTIONS='-plinux-image-arm64' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-arm64' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-image-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-arm64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-arm64' DH_OPTIONS='-plinux-headers-arm64' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-arm64' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-headers-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_arm64_none_cloud-arm64:setup_arm64_none_cloud-arm64_image setup_arm64_none_cloud-arm64_meta setup_arm64_none_cloud-arm64_image: - $(call if_package, linux-image-6.6.15-cloud-arm64, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-cloud-arm64' DH_OPTIONS='-plinux-image-6.6.15-cloud-arm64' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/arm64/config.cloud-arm64 debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-image-6.6.15-cloud-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-cloud-arm64, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-cloud-arm64' DH_OPTIONS='-plinux-image-6.7.7-cloud-arm64' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-image-6.7.7-cloud-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_arm64_none_cloud-arm64_meta: - $(call if_package, linux-image-cloud-arm64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-cloud-arm64' DH_OPTIONS='-plinux-image-cloud-arm64' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-cloud-arm64' KCONFIG='debian/config/config debian/config/arm64/config debian/config/arm64/config.cloud-arm64 debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-image-cloud-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-cloud-arm64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-cloud-arm64' DH_OPTIONS='-plinux-headers-cloud-arm64' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-cloud-arm64' KCONFIG='debian/config/config debian/config/arm64/config debian/config/arm64/config.cloud-arm64 debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-headers-cloud-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-cloud-arm64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-cloud-arm64' DH_OPTIONS='-plinux-image-cloud-arm64' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-cloud-arm64' KCONFIG='debian/config/config debian/config/arm64/config debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-image-cloud-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-cloud-arm64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-cloud-arm64' DH_OPTIONS='-plinux-headers-cloud-arm64' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-cloud-arm64' KCONFIG='debian/config/config debian/config/arm64/config debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-headers-cloud-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_arm64_rt:setup_arm64_rt_arm64 setup_arm64_rt_arm64:setup_arm64_rt_arm64_image setup_arm64_rt_arm64_meta setup_arm64_rt_arm64_image: - $(call if_package, linux-image-6.6.15-rt-arm64, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-rt-arm64' DH_OPTIONS='-plinux-image-6.6.15-rt-arm64' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-image-6.6.15-rt-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-rt-arm64, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-rt-arm64' DH_OPTIONS='-plinux-image-6.7.7-rt-arm64' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-image-6.7.7-rt-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_arm64_rt_arm64_meta: - $(call if_package, linux-image-rt-arm64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-arm64' DH_OPTIONS='-plinux-image-rt-arm64' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-rt-arm64' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-image-rt-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-rt-arm64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-rt-arm64' DH_OPTIONS='-plinux-headers-rt-arm64' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-rt-arm64' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-headers-rt-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-rt-arm64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-arm64' DH_OPTIONS='-plinux-image-rt-arm64' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-rt-arm64' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-image-rt-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-rt-arm64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-rt-arm64' DH_OPTIONS='-plinux-headers-rt-arm64' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-rt-arm64' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-headers-rt-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') diff --git a/debian/installer/modules/arm64/fb-modules b/debian/installer/modules/arm64/fb-modules index 7e0ae3af2a..10758ab9dd 100644 --- a/debian/installer/modules/arm64/fb-modules +++ b/debian/installer/modules/arm64/fb-modules @@ -20,6 +20,9 @@ sun8i-mixer # For panel/backlight on Pinebook Pro pwm-rockchip +# For HDMI on some sunxi platforms (e.g. Orange Pi 1+) +sun8i-drm-hdmi + # For HDMI on some rockchip platforms (e.g. rock64-rk3328) nvmem-rockchip-efuse phy-rockchip-inno-hdmi diff --git a/debian/installer/modules/loong64/ata-modules b/debian/installer/modules/loong64/ata-modules new file mode 100644 index 0000000000..b81c0f38b7 --- /dev/null +++ b/debian/installer/modules/loong64/ata-modules @@ -0,0 +1 @@ +#include <ata-modules> diff --git a/debian/installer/modules/loong64/btrfs-modules b/debian/installer/modules/loong64/btrfs-modules new file mode 100644 index 0000000000..e261e13883 --- /dev/null +++ b/debian/installer/modules/loong64/btrfs-modules @@ -0,0 +1 @@ +#include <btrfs-modules> diff --git a/debian/installer/modules/loong64/cdrom-core-modules b/debian/installer/modules/loong64/cdrom-core-modules new file mode 100644 index 0000000000..3ff69b48f4 --- /dev/null +++ b/debian/installer/modules/loong64/cdrom-core-modules @@ -0,0 +1 @@ +#include <cdrom-core-modules> diff --git a/debian/installer/modules/loong64/crc-modules b/debian/installer/modules/loong64/crc-modules new file mode 100644 index 0000000000..7e00de705e --- /dev/null +++ b/debian/installer/modules/loong64/crc-modules @@ -0,0 +1 @@ +#include <crc-modules> diff --git a/debian/installer/modules/loong64/crypto-dm-modules b/debian/installer/modules/loong64/crypto-dm-modules new file mode 100644 index 0000000000..4c8f2354cd --- /dev/null +++ b/debian/installer/modules/loong64/crypto-dm-modules @@ -0,0 +1 @@ +#include <crypto-dm-modules> diff --git a/debian/installer/modules/loong64/crypto-modules b/debian/installer/modules/loong64/crypto-modules new file mode 100644 index 0000000000..3a1e862b4c --- /dev/null +++ b/debian/installer/modules/loong64/crypto-modules @@ -0,0 +1 @@ +#include <crypto-modules> diff --git a/debian/installer/modules/loong64/efi-modules b/debian/installer/modules/loong64/efi-modules new file mode 100644 index 0000000000..e1dc05e8f2 --- /dev/null +++ b/debian/installer/modules/loong64/efi-modules @@ -0,0 +1 @@ +#include <efi-modules> diff --git a/debian/installer/modules/loong64/event-modules b/debian/installer/modules/loong64/event-modules new file mode 100644 index 0000000000..f8819afd36 --- /dev/null +++ b/debian/installer/modules/loong64/event-modules @@ -0,0 +1 @@ +#include <event-modules> diff --git a/debian/installer/modules/loong64/ext4-modules b/debian/installer/modules/loong64/ext4-modules new file mode 100644 index 0000000000..394c577ce4 --- /dev/null +++ b/debian/installer/modules/loong64/ext4-modules @@ -0,0 +1 @@ +#include <ext4-modules> diff --git a/debian/installer/modules/loong64/f2fs-modules b/debian/installer/modules/loong64/f2fs-modules new file mode 100644 index 0000000000..34359e0411 --- /dev/null +++ b/debian/installer/modules/loong64/f2fs-modules @@ -0,0 +1 @@ +#include <f2fs-modules> diff --git a/debian/installer/modules/loong64/fat-modules b/debian/installer/modules/loong64/fat-modules new file mode 100644 index 0000000000..274584eb65 --- /dev/null +++ b/debian/installer/modules/loong64/fat-modules @@ -0,0 +1 @@ +#include <fat-modules> diff --git a/debian/installer/modules/loong64/fb-modules b/debian/installer/modules/loong64/fb-modules new file mode 100644 index 0000000000..aba524d902 --- /dev/null +++ b/debian/installer/modules/loong64/fb-modules @@ -0,0 +1 @@ +#include <fb-modules> diff --git a/debian/installer/modules/loong64/firewire-core-modules b/debian/installer/modules/loong64/firewire-core-modules new file mode 100644 index 0000000000..dcac80af96 --- /dev/null +++ b/debian/installer/modules/loong64/firewire-core-modules @@ -0,0 +1 @@ +#include <firewire-core-modules> diff --git a/debian/installer/modules/loong64/i2c-modules b/debian/installer/modules/loong64/i2c-modules new file mode 100644 index 0000000000..203a607e73 --- /dev/null +++ b/debian/installer/modules/loong64/i2c-modules @@ -0,0 +1 @@ +#include <i2c-modules> diff --git a/debian/installer/modules/loong64/input-modules b/debian/installer/modules/loong64/input-modules new file mode 100644 index 0000000000..5ecb595a4a --- /dev/null +++ b/debian/installer/modules/loong64/input-modules @@ -0,0 +1 @@ +#include <input-modules> diff --git a/debian/installer/modules/loong64/isofs-modules b/debian/installer/modules/loong64/isofs-modules new file mode 100644 index 0000000000..da4fa9a3c7 --- /dev/null +++ b/debian/installer/modules/loong64/isofs-modules @@ -0,0 +1 @@ +#include <isofs-modules> diff --git a/debian/installer/modules/loong64/jfs-modules b/debian/installer/modules/loong64/jfs-modules new file mode 100644 index 0000000000..7e4d912b95 --- /dev/null +++ b/debian/installer/modules/loong64/jfs-modules @@ -0,0 +1 @@ +#include <jfs-modules> diff --git a/debian/installer/modules/loong64/kernel-image b/debian/installer/modules/loong64/kernel-image new file mode 100644 index 0000000000..1d11b1921d --- /dev/null +++ b/debian/installer/modules/loong64/kernel-image @@ -0,0 +1 @@ +#include <kernel-image> diff --git a/debian/installer/modules/loong64/loop-modules b/debian/installer/modules/loong64/loop-modules new file mode 100644 index 0000000000..c1c948fa33 --- /dev/null +++ b/debian/installer/modules/loong64/loop-modules @@ -0,0 +1 @@ +#include <loop-modules> diff --git a/debian/installer/modules/loong64/md-modules b/debian/installer/modules/loong64/md-modules new file mode 100644 index 0000000000..26115e10b8 --- /dev/null +++ b/debian/installer/modules/loong64/md-modules @@ -0,0 +1 @@ +#include <md-modules> diff --git a/debian/installer/modules/loong64/mouse-modules b/debian/installer/modules/loong64/mouse-modules new file mode 100644 index 0000000000..15fcb00eaa --- /dev/null +++ b/debian/installer/modules/loong64/mouse-modules @@ -0,0 +1 @@ +#include <mouse-modules> diff --git a/debian/installer/modules/loong64/mtd-core-modules b/debian/installer/modules/loong64/mtd-core-modules new file mode 100644 index 0000000000..28fdada604 --- /dev/null +++ b/debian/installer/modules/loong64/mtd-core-modules @@ -0,0 +1 @@ +#include <mtd-core-modules> diff --git a/debian/installer/modules/loong64/mtd-modules b/debian/installer/modules/loong64/mtd-modules new file mode 100644 index 0000000000..5dd7997b2c --- /dev/null +++ b/debian/installer/modules/loong64/mtd-modules @@ -0,0 +1 @@ +#include <mtd-modules> diff --git a/debian/installer/modules/loong64/multipath-modules b/debian/installer/modules/loong64/multipath-modules new file mode 100644 index 0000000000..a8b69b2537 --- /dev/null +++ b/debian/installer/modules/loong64/multipath-modules @@ -0,0 +1 @@ +#include <multipath-modules> diff --git a/debian/installer/modules/loong64/nbd-modules b/debian/installer/modules/loong64/nbd-modules new file mode 100644 index 0000000000..3c9b3e5d42 --- /dev/null +++ b/debian/installer/modules/loong64/nbd-modules @@ -0,0 +1 @@ +#include <nbd-modules> diff --git a/debian/installer/modules/loong64/nic-modules b/debian/installer/modules/loong64/nic-modules new file mode 100644 index 0000000000..2512e83950 --- /dev/null +++ b/debian/installer/modules/loong64/nic-modules @@ -0,0 +1 @@ +#include <nic-modules> diff --git a/debian/installer/modules/loong64/nic-shared-modules b/debian/installer/modules/loong64/nic-shared-modules new file mode 100644 index 0000000000..cc84b14dcd --- /dev/null +++ b/debian/installer/modules/loong64/nic-shared-modules @@ -0,0 +1 @@ +#include <nic-shared-modules> diff --git a/debian/installer/modules/loong64/nic-usb-modules b/debian/installer/modules/loong64/nic-usb-modules new file mode 100644 index 0000000000..c479669b47 --- /dev/null +++ b/debian/installer/modules/loong64/nic-usb-modules @@ -0,0 +1 @@ +#include <nic-usb-modules> diff --git a/debian/installer/modules/loong64/nic-wireless-modules b/debian/installer/modules/loong64/nic-wireless-modules new file mode 100644 index 0000000000..53fd18d7f4 --- /dev/null +++ b/debian/installer/modules/loong64/nic-wireless-modules @@ -0,0 +1 @@ +#include <nic-wireless-modules> diff --git a/debian/installer/modules/loong64/pata-modules b/debian/installer/modules/loong64/pata-modules new file mode 100644 index 0000000000..b0cd6337a2 --- /dev/null +++ b/debian/installer/modules/loong64/pata-modules @@ -0,0 +1 @@ +#include <pata-modules> diff --git a/debian/installer/modules/loong64/ppp-modules b/debian/installer/modules/loong64/ppp-modules new file mode 100644 index 0000000000..1f26aa1ee6 --- /dev/null +++ b/debian/installer/modules/loong64/ppp-modules @@ -0,0 +1 @@ +#include <ppp-modules> diff --git a/debian/installer/modules/loong64/rfkill-modules b/debian/installer/modules/loong64/rfkill-modules new file mode 100644 index 0000000000..77a2245cec --- /dev/null +++ b/debian/installer/modules/loong64/rfkill-modules @@ -0,0 +1 @@ +#include <rfkill-modules> diff --git a/debian/installer/modules/loong64/sata-modules b/debian/installer/modules/loong64/sata-modules new file mode 100644 index 0000000000..01318c258b --- /dev/null +++ b/debian/installer/modules/loong64/sata-modules @@ -0,0 +1 @@ +#include <sata-modules> diff --git a/debian/installer/modules/loong64/scsi-core-modules b/debian/installer/modules/loong64/scsi-core-modules new file mode 100644 index 0000000000..dd65d66143 --- /dev/null +++ b/debian/installer/modules/loong64/scsi-core-modules @@ -0,0 +1 @@ +#include <scsi-core-modules> diff --git a/debian/installer/modules/loong64/scsi-modules b/debian/installer/modules/loong64/scsi-modules new file mode 100644 index 0000000000..8909dfb794 --- /dev/null +++ b/debian/installer/modules/loong64/scsi-modules @@ -0,0 +1 @@ +#include <scsi-modules> diff --git a/debian/installer/modules/loong64/scsi-nic-modules b/debian/installer/modules/loong64/scsi-nic-modules new file mode 100644 index 0000000000..089dd5dc6b --- /dev/null +++ b/debian/installer/modules/loong64/scsi-nic-modules @@ -0,0 +1 @@ +#include <scsi-nic-modules> diff --git a/debian/installer/modules/loong64/serial-modules b/debian/installer/modules/loong64/serial-modules new file mode 100644 index 0000000000..6ab8b8c355 --- /dev/null +++ b/debian/installer/modules/loong64/serial-modules @@ -0,0 +1 @@ +#include <serial-modules> diff --git a/debian/installer/modules/loong64/sound-modules b/debian/installer/modules/loong64/sound-modules new file mode 100644 index 0000000000..68395ab3d9 --- /dev/null +++ b/debian/installer/modules/loong64/sound-modules @@ -0,0 +1 @@ +#include <sound-modules> diff --git a/debian/installer/modules/loong64/speakup-modules b/debian/installer/modules/loong64/speakup-modules new file mode 100644 index 0000000000..29592721a7 --- /dev/null +++ b/debian/installer/modules/loong64/speakup-modules @@ -0,0 +1 @@ +#include <speakup-modules> diff --git a/debian/installer/modules/loong64/squashfs-modules b/debian/installer/modules/loong64/squashfs-modules new file mode 100644 index 0000000000..42d77887ad --- /dev/null +++ b/debian/installer/modules/loong64/squashfs-modules @@ -0,0 +1 @@ +#include <squashfs-modules> diff --git a/debian/installer/modules/loong64/udf-modules b/debian/installer/modules/loong64/udf-modules new file mode 100644 index 0000000000..b90d7ee9b5 --- /dev/null +++ b/debian/installer/modules/loong64/udf-modules @@ -0,0 +1 @@ +#include <udf-modules> diff --git a/debian/installer/modules/loong64/uinput-modules b/debian/installer/modules/loong64/uinput-modules new file mode 100644 index 0000000000..58a8337794 --- /dev/null +++ b/debian/installer/modules/loong64/uinput-modules @@ -0,0 +1 @@ +#include <uinput-modules> diff --git a/debian/installer/modules/loong64/usb-modules b/debian/installer/modules/loong64/usb-modules new file mode 100644 index 0000000000..c598dedd81 --- /dev/null +++ b/debian/installer/modules/loong64/usb-modules @@ -0,0 +1 @@ +#include <usb-modules> diff --git a/debian/installer/modules/loong64/usb-serial-modules b/debian/installer/modules/loong64/usb-serial-modules new file mode 100644 index 0000000000..c0a0dc3bd1 --- /dev/null +++ b/debian/installer/modules/loong64/usb-serial-modules @@ -0,0 +1 @@ +#include <usb-serial-modules> diff --git a/debian/installer/modules/loong64/usb-storage-modules b/debian/installer/modules/loong64/usb-storage-modules new file mode 100644 index 0000000000..8c5e81b55e --- /dev/null +++ b/debian/installer/modules/loong64/usb-storage-modules @@ -0,0 +1 @@ +#include <usb-storage-modules> diff --git a/debian/installer/modules/loong64/xfs-modules b/debian/installer/modules/loong64/xfs-modules new file mode 100644 index 0000000000..98374e2bba --- /dev/null +++ b/debian/installer/modules/loong64/xfs-modules @@ -0,0 +1 @@ +#include <xfs-modules> diff --git a/debian/installer/modules/powerpc/nic-modules b/debian/installer/modules/powerpc/nic-modules index cdf8960d9e..2512e83950 100644 --- a/debian/installer/modules/powerpc/nic-modules +++ b/debian/installer/modules/powerpc/nic-modules @@ -1,4 +1 @@ #include <nic-modules> - -# Include AppleTalk-IP driver -ipddp diff --git a/debian/installer/modules/riscv64/efi-modules b/debian/installer/modules/riscv64/efi-modules new file mode 100644 index 0000000000..e1dc05e8f2 --- /dev/null +++ b/debian/installer/modules/riscv64/efi-modules @@ -0,0 +1 @@ +#include <efi-modules> diff --git a/debian/installer/modules/riscv64/kernel-image b/debian/installer/modules/riscv64/kernel-image index 1d11b1921d..653794784c 100644 --- a/debian/installer/modules/riscv64/kernel-image +++ b/debian/installer/modules/riscv64/kernel-image @@ -1 +1,17 @@ #include <kernel-image> + +# Clocks +drivers/clk/** + +# Multifunction devices +drivers/mfd/** + +# PCIe PHYs +drivers/phy/phy-*-pcie* ? +drivers/phy/*/phy-*-pcie* ? + +# Regulators +drivers/regulator/** + +# RTC +drivers/rtc/** diff --git a/debian/installer/modules/riscv64/xfs-modules b/debian/installer/modules/riscv64/xfs-modules new file mode 100644 index 0000000000..98374e2bba --- /dev/null +++ b/debian/installer/modules/riscv64/xfs-modules @@ -0,0 +1 @@ +#include <xfs-modules> diff --git a/debian/lib/python/debian_linux/config_v2.py b/debian/lib/python/debian_linux/config_v2.py new file mode 100644 index 0000000000..1c32bc8864 --- /dev/null +++ b/debian/lib/python/debian_linux/config_v2.py @@ -0,0 +1,612 @@ +from __future__ import annotations + +import dataclasses +import functools +import subprocess +import tomllib +from collections.abc import ( + Iterable, +) +from pathlib import Path +from typing import ( + Optional, + Self, + TypeVar, +) + +import dacite + +from . import dataclasses_extra +from .debian import PackageRelationGroup + + +_dacite_config = dacite.Config( + cast=[ + PackageRelationGroup, + Path, + ], + strict=True, +) + + +@dataclasses.dataclass +class ConfigBuild: + cflags: Optional[str] = None + compiler: Optional[str] = None + compiler_gnutype: Optional[str] = None + compiler_gnutype_compat: Optional[str] = None + config: list[Path] = dataclasses.field(default_factory=list) + config_default: list[Path] = dataclasses.field(default_factory=list, repr=False) + enable_signed: Optional[bool] = None + enable_vdso: Optional[bool] = None + kernel_file: Optional[str] = None + kernel_stem: Optional[str] = None + + +@dataclasses.dataclass +class ConfigDescription: + hardware: Optional[str] = None + hardware_long: Optional[str] = None + parts: list[str] = dataclasses.field(default_factory=list) + short: dict[str, str] = dataclasses.field(default_factory=dict) + long: dict[str, str] = dataclasses.field(default_factory=dict) + + +@dataclasses.dataclass +class ConfigPackages: + docs: Optional[bool] = dataclasses.field(default=None, metadata={'default': True}) + installer: Optional[bool] = dataclasses.field(default=None, metadata={'default': False}) + libc_dev: Optional[bool] = dataclasses.field(default=None, metadata={'default': True}) + meta: Optional[bool] = dataclasses.field(default=None, metadata={'default': True}) + source: Optional[bool] = dataclasses.field(default=None, metadata={'default': True}) + tools_unversioned: Optional[bool] = dataclasses.field(default=None, metadata={'default': True}) + tools_versioned: Optional[bool] = dataclasses.field(default=None, metadata={'default': True}) + + +@dataclasses.dataclass +class ConfigRelationsSingle: + depends: list[PackageRelationGroup] = dataclasses.field(default_factory=list) + recommends: list[PackageRelationGroup] = dataclasses.field(default_factory=list) + suggests: list[PackageRelationGroup] = dataclasses.field(default_factory=list) + breaks: list[PackageRelationGroup] = dataclasses.field(default_factory=list) + + +@dataclasses.dataclass +class ConfigRelations: + image: ConfigRelationsSingle = dataclasses.field(default_factory=ConfigRelationsSingle) + + +@dataclasses.dataclass +class ConfigDebianarchDefs: + __arch: Optional[str] = dataclasses.field(default=None, init=False) + + def __post_init_defs__(self, parent: ConfigDebianarch) -> None: + self.__arch = parent.name + + @staticmethod + @functools.cache + def __dpkg_architecture(arch: str, query: str) -> str: + return subprocess.check_output( + [ + 'dpkg-architecture', + '-f', + '-a', arch, + '-q', query, + ], + stderr=subprocess.DEVNULL, + encoding='ascii', + ).strip() + + @property + def gnutype(self) -> str: + assert self.__arch is not None + return self.__dpkg_architecture(self.__arch, 'DEB_HOST_GNU_TYPE') + + @property + def gnutype_package(self) -> str: + return self.gnutype.replace("_", "-") + + @property + def multiarch(self) -> str: + assert self.__arch is not None + return self.__dpkg_architecture(self.__arch, 'DEB_HOST_MULTIARCH') + + +@dataclasses.dataclass +class ConfigFlavourDefs: + is_default: bool = False + is_quick: bool = False + + +@dataclasses.dataclass +class ConfigBase: + name: str + enable: bool = True + path: Optional[Path] = None + + build: ConfigBuild = dataclasses.field(default_factory=ConfigBuild) + description: ConfigDescription = dataclasses.field(default_factory=ConfigDescription) + packages: ConfigPackages = dataclasses.field(default_factory=ConfigPackages) + relations: ConfigRelations = dataclasses.field(default_factory=ConfigRelations) + + def __post_init_hierarchy__(self, path: Path) -> None: + ''' + Setup path and default config in the complete hierarchy + ''' + self.path = path + self.build.config_default = [path / 'config'] + + def read_replace(self, bases: Iterable[Path], path: Path) -> Self: + ''' + Read defines.toml at specified path in all bases and merged them + ''' + config = self + + try: + for base in bases: + if (file := base / path / 'defines.toml').exists(): + with file.open('rb') as f: + data = dataclasses.asdict(self) | tomllib.load(f) + + config = dataclasses_extra.merge(config, dacite.from_dict( + data_class=self.__class__, + data=data, + config=_dacite_config, + )) + except tomllib.TOMLDecodeError as e: + raise RuntimeError(f'{file}: {e}') from None + + return config + + +ConfigT = TypeVar('ConfigT', bound=ConfigBase) + + +@dataclasses.dataclass +class Config(ConfigBase): + # Disable basic fields + name: str = dataclasses.field(init=False, repr=False, default='') + enable: bool = dataclasses.field(init=False, repr=False, default=True) + + featureset: list[ConfigFeatureset] = dataclasses.field( + default_factory=list, metadata={'merge': 'assoclist'}, + ) + kernelarch: list[ConfigKernelarch] = dataclasses.field( + default_factory=list, metadata={'merge': 'assoclist'}, + ) + + def __post_init_hierarchy__(self, path: Path) -> None: + super().__post_init_hierarchy__(path) + + for featureset in self.featureset: + featureset.__post_init_hierarchy_featureset__( + Path(f'featureset-{featureset.name}'), + None, + ) + for kernelarch in self.kernelarch: + kernelarch.__post_init_hierarchy__( + Path(f'kernelarch-{kernelarch.name}'), + ) + + @property + def merged(self) -> ConfigMerged: + return ConfigMerged(root=self) + + @classmethod + def read_orig(cls, bases: Iterable[Path]) -> Config: + ''' + Read defines.toml at the root in all bases and merge them + ''' + config = cls() + found = False + + try: + for base in bases: + if (file := base / 'defines.toml').exists(): + with file.open('rb') as f: + data = tomllib.load(f) + found = True + + config = dataclasses_extra.merge(config, dacite.from_dict( + data_class=cls, + data=data, + config=_dacite_config, + )) + except (tomllib.TOMLDecodeError, dacite.exceptions.UnexpectedDataError) as e: + raise RuntimeError(f'{file}: {e}') from None + if not found: + raise FileNotFoundError('Did not find defines.toml in any directory') + + config.__post_init_hierarchy__(Path()) + + config.featureset = list(cls._read_hierarchy(bases, config.featureset)) + config.kernelarch = list(cls._read_hierarchy(bases, config.kernelarch)) + for kernelarch in config.kernelarch: + kernelarch.debianarch = list(cls._read_hierarchy(bases, kernelarch.debianarch)) + + config.__post_init_hierarchy__(Path()) + + return config + + @classmethod + def _read_hierarchy( + cls, bases: Iterable[Path], orig: Iterable[ConfigT], + ) -> Iterable[ConfigT]: + for i in orig: + try: + assert i.path is not None + yield i.read_replace(bases, i.path) + except FileNotFoundError: + yield i + + +@dataclasses.dataclass +class ConfigKernelarch(ConfigBase): + debianarch: list[ConfigDebianarch] = dataclasses.field( + default_factory=list, metadata={'merge': 'assoclist'}, + ) + + def __post_init_hierarchy__(self, path: Path) -> None: + super().__post_init_hierarchy__(path) + + for debianarch in self.debianarch: + debianarch.__post_init_hierarchy__( + Path(debianarch.name), + ) + + +@dataclasses.dataclass +class ConfigDebianarch(ConfigBase): + defs: ConfigDebianarchDefs = dataclasses.field(default_factory=ConfigDebianarchDefs) + + featureset: list[ConfigFeatureset] = dataclasses.field( + default_factory=list, metadata={'merge': 'assoclist'}, + ) + flavour: list[ConfigFlavour] = dataclasses.field( + default_factory=list, metadata={'merge': 'assoclist'}, + ) + + def __post_init__(self) -> None: + self.defs.__post_init_defs__(self) + + def __post_init_hierarchy__(self, path: Path) -> None: + super().__post_init_hierarchy__(path) + + for featureset in self.featureset: + featureset.__post_init_hierarchy_featureset__( + Path(path / featureset.name), + self, + ) + + for flavour in self.flavour: + flavour.__post_init_hierarchy__(path) + + +@dataclasses.dataclass +class ConfigFeatureset(ConfigBase): + flavour: list[ConfigFlavour] = dataclasses.field(default_factory=list) + + def __post_init_hierarchy__(self, path: Path) -> None: + super().__post_init_hierarchy__(path) + + for flavour in self.flavour: + flavour.__post_init_hierarchy__(path) + + def __post_init_hierarchy_featureset__( + self, + path: Path, + debianarch: Optional[ConfigDebianarch], + ) -> None: + # If we have no flavours defined within a featureset, we copy it from debianarch + if not self.flavour and debianarch: + self.flavour = [ + ConfigFlavour(name=flavour.name, defs=flavour.defs) + for flavour in debianarch.flavour + ] + + self.__post_init_hierarchy__(path) + + +@dataclasses.dataclass +class ConfigFlavour(ConfigBase): + defs: ConfigFlavourDefs = dataclasses.field(default_factory=ConfigFlavourDefs) + + def __post_init_hierarchy__(self, path: Path) -> None: + self.path = path + self.build.config_default = [path / f'config.{self.name}'] + + +class ConfigMergedBase: + _entries: list[ConfigBase] + + def __init__(self) -> None: + self._entries = [] + + @property + def enable(self) -> bool: + for entry in self._entries: + if not entry.enable: + return False + return True + + @property + def build(self) -> ConfigBuild: + return dataclasses_extra.merge_default( + ConfigBuild, *(i.build for i in self._entries) + ) + + @property + def config(self) -> list[Path]: + ret: list[Path] = [] + for entry in self._entries: + ret += entry.build.config + entry.build.config_default + return ret + + @property + def description(self) -> ConfigDescription: + return dataclasses_extra.merge_default( + ConfigDescription, *(i.description for i in self._entries) + ) + + @property + def packages(self) -> ConfigPackages: + return dataclasses_extra.merge_default( + ConfigPackages, *(i.packages for i in self._entries) + ) + + @property + def relations(self) -> ConfigRelations: + return dataclasses_extra.merge_default( + ConfigRelations, *(i.relations for i in self._entries) + ) + + +class ConfigMerged(ConfigMergedBase): + _root: Config + + def __init__( + self, *, + root: Optional[ConfigBase], + **kw: Optional[ConfigBase], + ) -> None: + super().__init__(**kw) + + assert isinstance(root, Config) + self._root = root + self._entries.append(root) + + @property + def root_featuresets(self) -> Iterable[ConfigMergedFeatureset]: + for featureset in self._root.featureset: + yield ConfigMergedFeatureset( + root=self._root, + root_featureset=None, + kernelarch=None, + debianarch=None, + debianarch_flavour=None, + featureset=featureset, + ) + + @property + def kernelarchs(self) -> Iterable[ConfigMergedKernelarch]: + for kernelarch in self._root.kernelarch: + yield ConfigMergedKernelarch( + root=self._root, + kernelarch=kernelarch, + ) + + +class ConfigMergedKernelarch(ConfigMerged): + _kernelarch: ConfigKernelarch + + def __init__( + self, *, + kernelarch: Optional[ConfigBase], + **kw: Optional[ConfigBase], + ) -> None: + super().__init__(**kw) + + if kernelarch is not None: + assert isinstance(kernelarch, ConfigKernelarch) + self._kernelarch = kernelarch + self._entries.append(kernelarch) + + @property + def name(self) -> str: + return self._kernelarch.name + + @property + def name_kernelarch(self) -> str: + return self._kernelarch.name + + @property + def debianarchs(self) -> Iterable[ConfigMergedDebianarch]: + for debianarch in self._kernelarch.debianarch: + yield ConfigMergedDebianarch( + root=self._root, + kernelarch=self._kernelarch, + debianarch=debianarch, + ) + + +class ConfigMergedDebianarch(ConfigMergedKernelarch): + _debianarch: ConfigDebianarch + + def __init__( + self, *, + debianarch: Optional[ConfigBase], + **kw: Optional[ConfigBase], + ) -> None: + super().__init__(**kw) + + if debianarch is not None: + assert isinstance(debianarch, ConfigDebianarch) + self._debianarch = debianarch + self._entries.append(debianarch) + + @property + def name(self) -> str: + return self._debianarch.name + + @property + def name_debianarch(self) -> str: + return self._debianarch.name + + @property + def defs_debianarch(self) -> ConfigDebianarchDefs: + return self._debianarch.defs + + @property + def featuresets(self) -> Iterable[ConfigMergedFeatureset]: + root_featureset = { + i.name: i + for i in self._root.featureset + } + + for featureset in self._debianarch.featureset: + yield ConfigMergedFeatureset( + root=self._root, + root_featureset=root_featureset[featureset.name], + kernelarch=self._kernelarch, + debianarch=self._debianarch, + debianarch_flavour=None, + featureset=featureset, + ) + + +class ConfigMergedFeatureset(ConfigMergedDebianarch): + _featureset: ConfigFeatureset + _root_featureset: Optional[ConfigFeatureset] = None + _debianarch_flavour: Optional[ConfigFlavour] = None + + def __init__( + self, *, + featureset: Optional[ConfigBase], + root_featureset: Optional[ConfigBase], + debianarch_flavour: Optional[ConfigBase], + **kw: Optional[ConfigBase], + ) -> None: + super().__init__(**kw) + + if debianarch_flavour is not None: + assert isinstance(debianarch_flavour, ConfigFlavour) + self._debianarch_flavour = debianarch_flavour + self._entries.append(debianarch_flavour) + + if root_featureset is not None: + assert isinstance(root_featureset, ConfigFeatureset) + self._root_featureset = root_featureset + self._entries.append(root_featureset) + + if featureset is not None: + assert isinstance(featureset, ConfigFeatureset) + self._featureset = featureset + self._entries.append(featureset) + + @property + def name(self) -> str: + return self._featureset.name + + @property + def name_featureset(self) -> str: + return self._featureset.name + + @property + def flavours(self) -> Iterable[ConfigMergedFlavour]: + debianarch_flavour = { + i.name: i + for i in self._debianarch.flavour + } + + for flavour in self._featureset.flavour: + yield ConfigMergedFlavour( + root=self._root, + root_featureset=self._root_featureset, + kernelarch=self._kernelarch, + debianarch=self._debianarch, + debianarch_flavour=debianarch_flavour[flavour.name], + featureset=self._featureset, + flavour=flavour, + ) + + +class ConfigMergedFlavour(ConfigMergedFeatureset): + _flavour: ConfigFlavour + + def __init__( + self, *, + flavour: Optional[ConfigBase], + **kw: Optional[ConfigBase], + ) -> None: + super().__init__(**kw) + + if flavour is not None: + assert isinstance(flavour, ConfigFlavour) + self._flavour = flavour + self._entries.append(flavour) + + @property + def name(self) -> str: + return self._flavour.name + + @property + def name_flavour(self) -> str: + return self._flavour.name + + @property + def defs_flavour(self) -> ConfigFlavourDefs: + return self._flavour.defs + + +if __name__ == "__main__": + import argparse + + parser = argparse.ArgumentParser() + parser.add_argument( + 'dir', + default=[Path('debian/config')], + nargs='+', + type=Path, + ) + args = parser.parse_args() + config = Config.read_orig(args.dir) + merged = config.merged + +# from pprint import pprint +# pprint(config) + + def print_indent(indent: int, s: str, *args: str) -> None: + print(' ' * indent * 4 + s, *args) + + for kernelarch in merged.kernelarchs: + print_indent( + 0, + f'Kernelarch: {kernelarch.name}', + f'enable={kernelarch.enable}', + ) + + for debianarch in kernelarch.debianarchs: + print_indent( + 1, + f'Debianarch: {debianarch.name}', + f'enable={debianarch.enable}', + ) + + for featureset in debianarch.featuresets: + print_indent( + 2, + f'Featureset: {featureset.name}', + f'enable={featureset.enable}', + ) + + for flavour in featureset.flavours: + print_indent( + 3, + f'Flavour: {flavour.name}', + f'enable={flavour.enable}', + f'is_default={flavour.defs_flavour.is_default}', + ) + print_indent(4, f'Config: {" ".join(str(i) for i in flavour.config)}') + + else: + print() diff --git a/debian/lib/python/debian_linux/dataclasses_extra.py b/debian/lib/python/debian_linux/dataclasses_extra.py new file mode 100644 index 0000000000..49f2410038 --- /dev/null +++ b/debian/lib/python/debian_linux/dataclasses_extra.py @@ -0,0 +1,113 @@ +from __future__ import annotations + +from dataclasses import ( + fields, + is_dataclass, + replace, +) +from typing import ( + Protocol, + TypeVar, + TYPE_CHECKING, +) + +if TYPE_CHECKING: + from _typeshed import DataclassInstance as _DataclassInstance + + class _HasName(Protocol, _DataclassInstance): + name: str + + _DataclassT = TypeVar('_DataclassT', bound=_DataclassInstance) + _HasNameT = TypeVar('_HasNameT', bound=_HasName) + + +def default( + cls: type[_DataclassT], + /, +) -> _DataclassT: + f = {} + + for field in fields(cls): + if 'default' in field.metadata: + f[field.name] = field.metadata['default'] + + return cls(**f) + + +def merge( + self: _DataclassT, + other: _DataclassT | None, /, +) -> _DataclassT: + if other is None: + return self + + f = {} + + for field in fields(self): + if not field.init: + continue + + field_default_type = object + if isinstance(field.default_factory, type): + field_default_type = field.default_factory + + self_field = getattr(self, field.name) + other_field = getattr(other, field.name) + + if field.name == 'name': + assert self_field == other_field + elif field.type == 'bool': + f[field.name] = other_field + elif field.metadata.get('merge') == 'assoclist': + f[field.name] = _merge_assoclist(self_field, other_field) + elif is_dataclass(field_default_type): + f[field.name] = merge(self_field, other_field) + elif issubclass(field_default_type, list): + f[field.name] = self_field + other_field + elif issubclass(field_default_type, dict): + f[field.name] = self_field | other_field + elif field.default is None: + if other_field is not None: + f[field.name] = other_field + else: + raise RuntimeError(f'Unable to merge for type {field.type}') + + return replace(self, **f) + + +def merge_default( + cls: type[_DataclassT], + /, + *others: _DataclassT, +) -> _DataclassT: + ret: _DataclassT = default(cls) + for o in others: + ret = merge(ret, o) + return ret + + +def _merge_assoclist( + self_list: list[_HasNameT], + other_list: list[_HasNameT], + /, +) -> list[_HasNameT]: + ''' + Merge lists where each item got a "name" attribute + ''' + if not self_list: + return other_list + if not other_list: + return self_list + + ret: list[_HasNameT] = [] + other_dict = { + i.name: i + for i in other_list + } + for i in self_list: + if i.name in other_dict: + ret.append(merge(i, other_dict.pop(i.name))) + else: + ret.append(i) + ret.extend(other_dict.values()) + return ret diff --git a/debian/lib/python/debian_linux/gencontrol.py b/debian/lib/python/debian_linux/gencontrol.py index 66769a0639..49f52e878b 100644 --- a/debian/lib/python/debian_linux/gencontrol.py +++ b/debian/lib/python/debian_linux/gencontrol.py @@ -1,6 +1,7 @@ from __future__ import annotations import contextlib +import itertools import pathlib import re from collections import OrderedDict @@ -14,6 +15,12 @@ from typing import ( IO, ) +from .config_v2 import ( + ConfigMerged, + ConfigMergedDebianarch, + ConfigMergedFeatureset, + ConfigMergedFlavour, +) from .debian import Changelog, PackageArchitecture, \ Version, _ControlFileDict from .utils import Templates @@ -365,31 +372,12 @@ class PackagesBundle: f.write('\n') -def iter_featuresets(config) -> Iterable[str]: - for featureset in config['base', ]['featuresets']: - if config.merge('base', None, featureset).get('enabled', True): - yield featureset - - -def iter_arches(config) -> Iterable[str]: - return iter(config['base', ]['arches']) - - -def iter_arch_featuresets(config, arch) -> Iterable[str]: - for featureset in config['base', arch].get('featuresets', []): - if config.merge('base', arch, featureset).get('enabled', True): - yield featureset - - -def iter_flavours(config, arch, featureset) -> Iterable[str]: - return iter(config['base', arch, featureset]['flavours']) - - class Gencontrol(object): + config: ConfigMerged vars: dict[str, str] bundles: dict[str, PackagesBundle] - def __init__(self, config, templates, version=Version) -> None: + def __init__(self, config: ConfigMerged, templates, version=Version) -> None: self.config, self.templates = config, templates self.changelog = Changelog(version=version) self.vars = {} @@ -417,27 +405,53 @@ class Gencontrol(object): makeflags = MakeFlags() - self.do_main_setup(vars, makeflags) - self.do_main_makefile(makeflags) - self.do_main_packages(vars, makeflags) - self.do_main_recurse(vars, makeflags) + self.do_main_setup(self.config, vars, makeflags) + self.do_main_makefile(self.config, vars, makeflags) + self.do_main_packages(self.config, vars, makeflags) + self.do_main_recurse(self.config, vars, makeflags) - def do_main_setup(self, vars, makeflags) -> None: + def do_main_setup( + self, + config: ConfigMerged, + vars: dict[str, str], + makeflags: MakeFlags, + ) -> None: pass - def do_main_makefile(self, makeflags) -> None: + def do_main_makefile( + self, + config: ConfigMerged, + vars: dict[str, str], + makeflags: MakeFlags, + ) -> None: pass - def do_main_packages(self, vars, makeflags) -> None: + def do_main_packages( + self, + config: ConfigMerged, + vars: dict[str, str], + makeflags: MakeFlags, + ) -> None: pass - def do_main_recurse(self, vars, makeflags) -> None: - for featureset in iter_featuresets(self.config): - self.do_indep_featureset(featureset, - vars.copy(), makeflags.copy()) - for arch in iter_arches(self.config): - self.do_arch(arch, vars.copy(), - makeflags.copy()) + def do_main_recurse( + self, + config: ConfigMerged, + vars: dict[str, str], + makeflags: MakeFlags, + ) -> None: + for featureset in config.root_featuresets: + self.do_indep_featureset(featureset, vars.copy(), makeflags.copy()) + + # Sort the output the same way as before + for arch in sorted( + itertools.chain.from_iterable( + i.debianarchs for i in config.kernelarchs + ), + key=lambda i: i.name + ): + if arch.enable: + self.do_arch(arch, vars.copy(), makeflags.copy()) def do_extra(self) -> None: try: @@ -456,81 +470,158 @@ class Gencontrol(object): self.bundle.add_packages(packages_extra, (arch, ), MakeFlags(), check_packages=False) - def do_indep_featureset(self, featureset, vars, makeflags) -> None: + def do_indep_featureset( + self, + config: ConfigMergedFeatureset, + vars: dict[str, str], + makeflags: MakeFlags, + ) -> None: vars['localversion'] = '' - if featureset != 'none': - vars['localversion'] = '-' + featureset - - self.do_indep_featureset_setup(vars, makeflags, featureset) - self.do_indep_featureset_makefile(featureset, makeflags) - self.do_indep_featureset_packages(featureset, - vars, makeflags) - - def do_indep_featureset_setup(self, vars, makeflags, featureset) -> None: + if config.name_featureset != 'none': + vars['localversion'] = '-' + config.name_featureset + + self.do_indep_featureset_setup(config, vars, makeflags) + self.do_indep_featureset_makefile(config, vars, makeflags) + self.do_indep_featureset_packages(config, vars, makeflags) + + def do_indep_featureset_setup( + self, + config: ConfigMergedFeatureset, + vars: dict[str, str], + makeflags: MakeFlags, + ) -> None: pass - def do_indep_featureset_makefile(self, featureset, makeflags) -> None: - makeflags['FEATURESET'] = featureset + def do_indep_featureset_makefile( + self, + config: ConfigMergedFeatureset, + vars: dict[str, str], + makeflags: MakeFlags, + ) -> None: + makeflags['FEATURESET'] = config.name - def do_indep_featureset_packages(self, featureset, vars, makeflags) -> None: + def do_indep_featureset_packages( + self, + config: ConfigMergedFeatureset, + vars: dict[str, str], + makeflags: MakeFlags, + ) -> None: pass - def do_arch(self, arch, vars, makeflags) -> None: - vars['arch'] = arch - - self.do_arch_setup(vars, makeflags, arch) - self.do_arch_makefile(arch, makeflags) - self.do_arch_packages(arch, vars, makeflags) - self.do_arch_recurse(arch, vars, makeflags) - - def do_arch_setup(self, vars, makeflags, arch) -> None: + def do_arch( + self, + config: ConfigMergedDebianarch, + vars: dict[str, str], + makeflags: MakeFlags, + ) -> None: + vars['arch'] = config.name + + self.do_arch_setup(config, vars, makeflags) + self.do_arch_makefile(config, vars, makeflags) + self.do_arch_packages(config, vars, makeflags) + self.do_arch_recurse(config, vars, makeflags) + + def do_arch_setup( + self, + config: ConfigMergedDebianarch, + vars: dict[str, str], + makeflags: MakeFlags, + ) -> None: pass - def do_arch_makefile(self, arch, makeflags) -> None: - makeflags['ARCH'] = arch + def do_arch_makefile( + self, + config: ConfigMergedDebianarch, + vars: dict[str, str], + makeflags: MakeFlags, + ) -> None: + makeflags['ARCH'] = config.name - def do_arch_packages(self, arch, vars, makeflags) -> None: + def do_arch_packages( + self, + config: ConfigMergedDebianarch, + vars: dict[str, str], + makeflags: MakeFlags, + ) -> None: pass - def do_arch_recurse(self, arch, vars, makeflags) -> None: - for featureset in iter_arch_featuresets(self.config, arch): - self.do_featureset(arch, featureset, - vars.copy(), makeflags.copy()) - - def do_featureset(self, arch, featureset, vars, makeflags) -> None: + def do_arch_recurse( + self, + config: ConfigMergedDebianarch, + vars: dict[str, str], + makeflags: MakeFlags, + ) -> None: + for featureset in config.featuresets: + if featureset.enable: + self.do_featureset(featureset, vars.copy(), makeflags.copy()) + + def do_featureset( + self, + config: ConfigMergedFeatureset, + vars: dict[str, str], + makeflags: MakeFlags, + ) -> None: vars['localversion'] = '' - if featureset != 'none': - vars['localversion'] = '-' + featureset - - self.do_featureset_setup(vars, makeflags, arch, featureset) - self.do_featureset_makefile(arch, featureset, makeflags) - self.do_featureset_packages(arch, featureset, vars, makeflags) - self.do_featureset_recurse(arch, featureset, vars, makeflags) - - def do_featureset_setup(self, vars, makeflags, arch, featureset) -> None: + if config.name_featureset != 'none': + vars['localversion'] = '-' + config.name_featureset + + self.do_featureset_setup(config, vars, makeflags) + self.do_featureset_makefile(config, vars, makeflags) + self.do_featureset_packages(config, vars, makeflags) + self.do_featureset_recurse(config, vars, makeflags) + + def do_featureset_setup( + self, + config: ConfigMergedFeatureset, + vars: dict[str, str], + makeflags: MakeFlags, + ) -> None: pass - def do_featureset_makefile(self, arch, featureset, makeflags) -> None: - makeflags['FEATURESET'] = featureset + def do_featureset_makefile( + self, + config: ConfigMergedFeatureset, + vars: dict[str, str], + makeflags: MakeFlags, + ) -> None: + makeflags['FEATURESET'] = config.name - def do_featureset_packages(self, arch, featureset, vars, makeflags) -> None: + def do_featureset_packages( + self, + config: ConfigMergedFeatureset, + vars: dict[str, str], + makeflags: MakeFlags, + ) -> None: pass - def do_featureset_recurse(self, arch, featureset, vars, makeflags) -> None: - for flavour in iter_flavours(self.config, arch, featureset): - self.do_flavour(arch, featureset, flavour, - vars.copy(), makeflags.copy()) - - def do_flavour(self, arch, featureset, flavour, vars, - makeflags): - vars['localversion'] += '-' + flavour + def do_featureset_recurse( + self, + config: ConfigMergedFeatureset, + vars: dict[str, str], + makeflags: MakeFlags, + ) -> None: + for flavour in config.flavours: + if flavour.enable: + self.do_flavour(flavour, vars.copy(), makeflags.copy()) + + def do_flavour( + self, + config: ConfigMergedFlavour, + vars: dict[str, str], + makeflags: MakeFlags, + ) -> None: + vars['localversion'] += '-' + config.name_flavour - self.do_flavour_setup(vars, makeflags, arch, featureset, flavour) - self.do_flavour_makefile(arch, featureset, flavour, makeflags) - self.do_flavour_packages(arch, featureset, flavour, - vars, makeflags) + self.do_flavour_setup(config, vars, makeflags) + self.do_flavour_makefile(config, vars, makeflags) + self.do_flavour_packages(config, vars, makeflags) - def do_flavour_setup(self, vars, makeflags, arch, featureset, flavour) -> None: + def do_flavour_setup( + self, + config: ConfigMergedFlavour, + vars: dict[str, str], + makeflags: MakeFlags, + ) -> None: for i in ( ('kernel-arch', 'KERNEL_ARCH'), ('localversion', 'LOCALVERSION'), @@ -538,10 +629,20 @@ class Gencontrol(object): if i[0] in vars: makeflags[i[1]] = vars[i[0]] - def do_flavour_makefile(self, arch, featureset, flavour, makeflags) -> None: - makeflags['FLAVOUR'] = flavour + def do_flavour_makefile( + self, + config: ConfigMergedFlavour, + vars: dict[str, str], + makeflags: MakeFlags, + ) -> None: + makeflags['FLAVOUR'] = config.name - def do_flavour_packages(self, arch, featureset, flavour, vars, makeflags) -> None: + def do_flavour_packages( + self, + config: ConfigMergedFlavour, + vars: dict[str, str], + makeflags: MakeFlags, + ) -> None: pass def substitute(self, s: str | list | tuple, vars) -> str | list: diff --git a/debian/linux-doc.maintscript b/debian/linux-doc.maintscript index 02e5b70d9e..3b98ca1807 100644 --- a/debian/linux-doc.maintscript +++ b/debian/linux-doc.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-doc linux-doc-6.6 5.7~rc5-1~exp1 linux-doc +dir_to_symlink /usr/share/doc/linux-doc linux-doc-6.7 5.7~rc5-1~exp1 linux-doc diff --git a/debian/linux-headers-4kc-malta.maintscript b/debian/linux-headers-4kc-malta.maintscript index e77a419b56..0d357bb11f 100644 --- a/debian/linux-headers-4kc-malta.maintscript +++ b/debian/linux-headers-4kc-malta.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-headers-4kc-malta linux-headers-6.6.15-4kc-malta 5.7~rc5-1~exp1 linux-headers-4kc-malta +dir_to_symlink /usr/share/doc/linux-headers-4kc-malta linux-headers-6.7.7-4kc-malta 5.7~rc5-1~exp1 linux-headers-4kc-malta diff --git a/debian/linux-headers-5kc-malta.maintscript b/debian/linux-headers-5kc-malta.maintscript index aef57f70a2..51cd102ab7 100644 --- a/debian/linux-headers-5kc-malta.maintscript +++ b/debian/linux-headers-5kc-malta.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-headers-5kc-malta linux-headers-6.6.15-5kc-malta 5.7~rc5-1~exp1 linux-headers-5kc-malta +dir_to_symlink /usr/share/doc/linux-headers-5kc-malta linux-headers-6.7.7-5kc-malta 5.7~rc5-1~exp1 linux-headers-5kc-malta diff --git a/debian/linux-headers-6.6.15-alpha-generic.postinst b/debian/linux-headers-6.6.15-alpha-generic.postinst deleted file mode 100644 index 9841ab49e0..0000000000 --- a/debian/linux-headers-6.6.15-alpha-generic.postinst +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/perl -# Author: Michael Gilbert <michael.s.gilbert@gmail.com> -# Origin: Stripped down version of the linux-headers postinst from Ubuntu's -# 2.6.32-14-generic kernel, which was itself derived from a -# Debian linux-image postinst script. - -$|=1; -my $version = "6.6.15-alpha-generic"; - -if (-d "/etc/kernel/header_postinst.d") { - system ("run-parts --report --exit-on-error --arg=$version " . - "/etc/kernel/header_postinst.d") && - die "Failed to process /etc/kernel/header_postinst.d"; -} - -exit 0; - -__END__ diff --git a/debian/linux-headers-6.6.15-alpha-smp.postinst b/debian/linux-headers-6.6.15-alpha-smp.postinst deleted file mode 100644 index 3ca3597127..0000000000 --- a/debian/linux-headers-6.6.15-alpha-smp.postinst +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/perl -# Author: Michael Gilbert <michael.s.gilbert@gmail.com> -# Origin: Stripped down version of the linux-headers postinst from Ubuntu's -# 2.6.32-14-generic kernel, which was itself derived from a -# Debian linux-image postinst script. - -$|=1; -my $version = "6.6.15-alpha-smp"; - -if (-d "/etc/kernel/header_postinst.d") { - system ("run-parts --report --exit-on-error --arg=$version " . - "/etc/kernel/header_postinst.d") && - die "Failed to process /etc/kernel/header_postinst.d"; -} - -exit 0; - -__END__ diff --git a/debian/linux-headers-6.6.15-armmp-lpae.postinst b/debian/linux-headers-6.6.15-armmp-lpae.postinst deleted file mode 100644 index 1027d739bf..0000000000 --- a/debian/linux-headers-6.6.15-armmp-lpae.postinst +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/perl -# Author: Michael Gilbert <michael.s.gilbert@gmail.com> -# Origin: Stripped down version of the linux-headers postinst from Ubuntu's -# 2.6.32-14-generic kernel, which was itself derived from a -# Debian linux-image postinst script. - -$|=1; -my $version = "6.6.15-armmp-lpae"; - -if (-d "/etc/kernel/header_postinst.d") { - system ("run-parts --report --exit-on-error --arg=$version " . - "/etc/kernel/header_postinst.d") && - die "Failed to process /etc/kernel/header_postinst.d"; -} - -exit 0; - -__END__ diff --git a/debian/linux-headers-6.6.15-cloud-amd64.postinst b/debian/linux-headers-6.6.15-cloud-amd64.postinst deleted file mode 100644 index fac5f66e67..0000000000 --- a/debian/linux-headers-6.6.15-cloud-amd64.postinst +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/perl -# Author: Michael Gilbert <michael.s.gilbert@gmail.com> -# Origin: Stripped down version of the linux-headers postinst from Ubuntu's -# 2.6.32-14-generic kernel, which was itself derived from a -# Debian linux-image postinst script. - -$|=1; -my $version = "6.6.15-cloud-amd64"; - -if (-d "/etc/kernel/header_postinst.d") { - system ("run-parts --report --exit-on-error --arg=$version " . - "/etc/kernel/header_postinst.d") && - die "Failed to process /etc/kernel/header_postinst.d"; -} - -exit 0; - -__END__ diff --git a/debian/linux-headers-6.6.15-cloud-arm64.postinst b/debian/linux-headers-6.6.15-cloud-arm64.postinst deleted file mode 100644 index 1a6f39b3b5..0000000000 --- a/debian/linux-headers-6.6.15-cloud-arm64.postinst +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/perl -# Author: Michael Gilbert <michael.s.gilbert@gmail.com> -# Origin: Stripped down version of the linux-headers postinst from Ubuntu's -# 2.6.32-14-generic kernel, which was itself derived from a -# Debian linux-image postinst script. - -$|=1; -my $version = "6.6.15-cloud-arm64"; - -if (-d "/etc/kernel/header_postinst.d") { - system ("run-parts --report --exit-on-error --arg=$version " . - "/etc/kernel/header_postinst.d") && - die "Failed to process /etc/kernel/header_postinst.d"; -} - -exit 0; - -__END__ diff --git a/debian/linux-headers-6.6.15-itanium.postinst b/debian/linux-headers-6.6.15-itanium.postinst deleted file mode 100644 index 32a65c8cbc..0000000000 --- a/debian/linux-headers-6.6.15-itanium.postinst +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/perl -# Author: Michael Gilbert <michael.s.gilbert@gmail.com> -# Origin: Stripped down version of the linux-headers postinst from Ubuntu's -# 2.6.32-14-generic kernel, which was itself derived from a -# Debian linux-image postinst script. - -$|=1; -my $version = "6.6.15-itanium"; - -if (-d "/etc/kernel/header_postinst.d") { - system ("run-parts --report --exit-on-error --arg=$version " . - "/etc/kernel/header_postinst.d") && - die "Failed to process /etc/kernel/header_postinst.d"; -} - -exit 0; - -__END__ diff --git a/debian/linux-headers-6.6.15-loongson-3.postinst b/debian/linux-headers-6.6.15-loongson-3.postinst deleted file mode 100644 index 4954758785..0000000000 --- a/debian/linux-headers-6.6.15-loongson-3.postinst +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/perl -# Author: Michael Gilbert <michael.s.gilbert@gmail.com> -# Origin: Stripped down version of the linux-headers postinst from Ubuntu's -# 2.6.32-14-generic kernel, which was itself derived from a -# Debian linux-image postinst script. - -$|=1; -my $version = "6.6.15-loongson-3"; - -if (-d "/etc/kernel/header_postinst.d") { - system ("run-parts --report --exit-on-error --arg=$version " . - "/etc/kernel/header_postinst.d") && - die "Failed to process /etc/kernel/header_postinst.d"; -} - -exit 0; - -__END__ diff --git a/debian/linux-headers-6.6.15-mckinley.postinst b/debian/linux-headers-6.6.15-mckinley.postinst deleted file mode 100644 index e0605e9c16..0000000000 --- a/debian/linux-headers-6.6.15-mckinley.postinst +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/perl -# Author: Michael Gilbert <michael.s.gilbert@gmail.com> -# Origin: Stripped down version of the linux-headers postinst from Ubuntu's -# 2.6.32-14-generic kernel, which was itself derived from a -# Debian linux-image postinst script. - -$|=1; -my $version = "6.6.15-mckinley"; - -if (-d "/etc/kernel/header_postinst.d") { - system ("run-parts --report --exit-on-error --arg=$version " . - "/etc/kernel/header_postinst.d") && - die "Failed to process /etc/kernel/header_postinst.d"; -} - -exit 0; - -__END__ diff --git a/debian/linux-headers-6.6.15-mips32r2eb.postinst b/debian/linux-headers-6.6.15-mips32r2eb.postinst deleted file mode 100644 index f4385ee1ee..0000000000 --- a/debian/linux-headers-6.6.15-mips32r2eb.postinst +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/perl -# Author: Michael Gilbert <michael.s.gilbert@gmail.com> -# Origin: Stripped down version of the linux-headers postinst from Ubuntu's -# 2.6.32-14-generic kernel, which was itself derived from a -# Debian linux-image postinst script. - -$|=1; -my $version = "6.6.15-mips32r2eb"; - -if (-d "/etc/kernel/header_postinst.d") { - system ("run-parts --report --exit-on-error --arg=$version " . - "/etc/kernel/header_postinst.d") && - die "Failed to process /etc/kernel/header_postinst.d"; -} - -exit 0; - -__END__ diff --git a/debian/linux-headers-6.6.15-mips32r2el.postinst b/debian/linux-headers-6.6.15-mips32r2el.postinst deleted file mode 100644 index 368e48a573..0000000000 --- a/debian/linux-headers-6.6.15-mips32r2el.postinst +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/perl -# Author: Michael Gilbert <michael.s.gilbert@gmail.com> -# Origin: Stripped down version of the linux-headers postinst from Ubuntu's -# 2.6.32-14-generic kernel, which was itself derived from a -# Debian linux-image postinst script. - -$|=1; -my $version = "6.6.15-mips32r2el"; - -if (-d "/etc/kernel/header_postinst.d") { - system ("run-parts --report --exit-on-error --arg=$version " . - "/etc/kernel/header_postinst.d") && - die "Failed to process /etc/kernel/header_postinst.d"; -} - -exit 0; - -__END__ diff --git a/debian/linux-headers-6.6.15-mips64r2eb.postinst b/debian/linux-headers-6.6.15-mips64r2eb.postinst deleted file mode 100644 index f2c24f1c68..0000000000 --- a/debian/linux-headers-6.6.15-mips64r2eb.postinst +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/perl -# Author: Michael Gilbert <michael.s.gilbert@gmail.com> -# Origin: Stripped down version of the linux-headers postinst from Ubuntu's -# 2.6.32-14-generic kernel, which was itself derived from a -# Debian linux-image postinst script. - -$|=1; -my $version = "6.6.15-mips64r2eb"; - -if (-d "/etc/kernel/header_postinst.d") { - system ("run-parts --report --exit-on-error --arg=$version " . - "/etc/kernel/header_postinst.d") && - die "Failed to process /etc/kernel/header_postinst.d"; -} - -exit 0; - -__END__ diff --git a/debian/linux-headers-6.6.15-mips64r2el.postinst b/debian/linux-headers-6.6.15-mips64r2el.postinst deleted file mode 100644 index d25bfe8ad8..0000000000 --- a/debian/linux-headers-6.6.15-mips64r2el.postinst +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/perl -# Author: Michael Gilbert <michael.s.gilbert@gmail.com> -# Origin: Stripped down version of the linux-headers postinst from Ubuntu's -# 2.6.32-14-generic kernel, which was itself derived from a -# Debian linux-image postinst script. - -$|=1; -my $version = "6.6.15-mips64r2el"; - -if (-d "/etc/kernel/header_postinst.d") { - system ("run-parts --report --exit-on-error --arg=$version " . - "/etc/kernel/header_postinst.d") && - die "Failed to process /etc/kernel/header_postinst.d"; -} - -exit 0; - -__END__ diff --git a/debian/linux-headers-6.6.15-mips64r6el.postinst b/debian/linux-headers-6.6.15-mips64r6el.postinst deleted file mode 100644 index 190bcfe61c..0000000000 --- a/debian/linux-headers-6.6.15-mips64r6el.postinst +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/perl -# Author: Michael Gilbert <michael.s.gilbert@gmail.com> -# Origin: Stripped down version of the linux-headers postinst from Ubuntu's -# 2.6.32-14-generic kernel, which was itself derived from a -# Debian linux-image postinst script. - -$|=1; -my $version = "6.6.15-mips64r6el"; - -if (-d "/etc/kernel/header_postinst.d") { - system ("run-parts --report --exit-on-error --arg=$version " . - "/etc/kernel/header_postinst.d") && - die "Failed to process /etc/kernel/header_postinst.d"; -} - -exit 0; - -__END__ diff --git a/debian/linux-headers-6.6.15-octeon.postinst b/debian/linux-headers-6.6.15-octeon.postinst deleted file mode 100644 index 6bfab0475d..0000000000 --- a/debian/linux-headers-6.6.15-octeon.postinst +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/perl -# Author: Michael Gilbert <michael.s.gilbert@gmail.com> -# Origin: Stripped down version of the linux-headers postinst from Ubuntu's -# 2.6.32-14-generic kernel, which was itself derived from a -# Debian linux-image postinst script. - -$|=1; -my $version = "6.6.15-octeon"; - -if (-d "/etc/kernel/header_postinst.d") { - system ("run-parts --report --exit-on-error --arg=$version " . - "/etc/kernel/header_postinst.d") && - die "Failed to process /etc/kernel/header_postinst.d"; -} - -exit 0; - -__END__ diff --git a/debian/linux-headers-6.6.15-parisc.postinst b/debian/linux-headers-6.6.15-parisc.postinst deleted file mode 100644 index b8ba1e04d2..0000000000 --- a/debian/linux-headers-6.6.15-parisc.postinst +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/perl -# Author: Michael Gilbert <michael.s.gilbert@gmail.com> -# Origin: Stripped down version of the linux-headers postinst from Ubuntu's -# 2.6.32-14-generic kernel, which was itself derived from a -# Debian linux-image postinst script. - -$|=1; -my $version = "6.6.15-parisc"; - -if (-d "/etc/kernel/header_postinst.d") { - system ("run-parts --report --exit-on-error --arg=$version " . - "/etc/kernel/header_postinst.d") && - die "Failed to process /etc/kernel/header_postinst.d"; -} - -exit 0; - -__END__ diff --git a/debian/linux-headers-6.6.15-parisc64.postinst b/debian/linux-headers-6.6.15-parisc64.postinst deleted file mode 100644 index 281fb1860d..0000000000 --- a/debian/linux-headers-6.6.15-parisc64.postinst +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/perl -# Author: Michael Gilbert <michael.s.gilbert@gmail.com> -# Origin: Stripped down version of the linux-headers postinst from Ubuntu's -# 2.6.32-14-generic kernel, which was itself derived from a -# Debian linux-image postinst script. - -$|=1; -my $version = "6.6.15-parisc64"; - -if (-d "/etc/kernel/header_postinst.d") { - system ("run-parts --report --exit-on-error --arg=$version " . - "/etc/kernel/header_postinst.d") && - die "Failed to process /etc/kernel/header_postinst.d"; -} - -exit 0; - -__END__ diff --git a/debian/linux-headers-6.6.15-powerpc-smp.postinst b/debian/linux-headers-6.6.15-powerpc-smp.postinst deleted file mode 100644 index 310eaf40f6..0000000000 --- a/debian/linux-headers-6.6.15-powerpc-smp.postinst +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/perl -# Author: Michael Gilbert <michael.s.gilbert@gmail.com> -# Origin: Stripped down version of the linux-headers postinst from Ubuntu's -# 2.6.32-14-generic kernel, which was itself derived from a -# Debian linux-image postinst script. - -$|=1; -my $version = "6.6.15-powerpc-smp"; - -if (-d "/etc/kernel/header_postinst.d") { - system ("run-parts --report --exit-on-error --arg=$version " . - "/etc/kernel/header_postinst.d") && - die "Failed to process /etc/kernel/header_postinst.d"; -} - -exit 0; - -__END__ diff --git a/debian/linux-headers-6.6.15-powerpc.postinst b/debian/linux-headers-6.6.15-powerpc.postinst deleted file mode 100644 index 1a8eadc6fb..0000000000 --- a/debian/linux-headers-6.6.15-powerpc.postinst +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/perl -# Author: Michael Gilbert <michael.s.gilbert@gmail.com> -# Origin: Stripped down version of the linux-headers postinst from Ubuntu's -# 2.6.32-14-generic kernel, which was itself derived from a -# Debian linux-image postinst script. - -$|=1; -my $version = "6.6.15-powerpc"; - -if (-d "/etc/kernel/header_postinst.d") { - system ("run-parts --report --exit-on-error --arg=$version " . - "/etc/kernel/header_postinst.d") && - die "Failed to process /etc/kernel/header_postinst.d"; -} - -exit 0; - -__END__ diff --git a/debian/linux-headers-6.6.15-powerpc64.postinst b/debian/linux-headers-6.6.15-powerpc64.postinst deleted file mode 100644 index b1589dca74..0000000000 --- a/debian/linux-headers-6.6.15-powerpc64.postinst +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/perl -# Author: Michael Gilbert <michael.s.gilbert@gmail.com> -# Origin: Stripped down version of the linux-headers postinst from Ubuntu's -# 2.6.32-14-generic kernel, which was itself derived from a -# Debian linux-image postinst script. - -$|=1; -my $version = "6.6.15-powerpc64"; - -if (-d "/etc/kernel/header_postinst.d") { - system ("run-parts --report --exit-on-error --arg=$version " . - "/etc/kernel/header_postinst.d") && - die "Failed to process /etc/kernel/header_postinst.d"; -} - -exit 0; - -__END__ diff --git a/debian/linux-headers-6.6.15-powerpc64le.postinst b/debian/linux-headers-6.6.15-powerpc64le.postinst deleted file mode 100644 index d584d9c971..0000000000 --- a/debian/linux-headers-6.6.15-powerpc64le.postinst +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/perl -# Author: Michael Gilbert <michael.s.gilbert@gmail.com> -# Origin: Stripped down version of the linux-headers postinst from Ubuntu's -# 2.6.32-14-generic kernel, which was itself derived from a -# Debian linux-image postinst script. - -$|=1; -my $version = "6.6.15-powerpc64le"; - -if (-d "/etc/kernel/header_postinst.d") { - system ("run-parts --report --exit-on-error --arg=$version " . - "/etc/kernel/header_postinst.d") && - die "Failed to process /etc/kernel/header_postinst.d"; -} - -exit 0; - -__END__ diff --git a/debian/linux-headers-6.6.15-riscv64.postinst b/debian/linux-headers-6.6.15-riscv64.postinst deleted file mode 100644 index 96f92018f7..0000000000 --- a/debian/linux-headers-6.6.15-riscv64.postinst +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/perl -# Author: Michael Gilbert <michael.s.gilbert@gmail.com> -# Origin: Stripped down version of the linux-headers postinst from Ubuntu's -# 2.6.32-14-generic kernel, which was itself derived from a -# Debian linux-image postinst script. - -$|=1; -my $version = "6.6.15-riscv64"; - -if (-d "/etc/kernel/header_postinst.d") { - system ("run-parts --report --exit-on-error --arg=$version " . - "/etc/kernel/header_postinst.d") && - die "Failed to process /etc/kernel/header_postinst.d"; -} - -exit 0; - -__END__ diff --git a/debian/linux-headers-6.6.15-rt-686-pae.postinst b/debian/linux-headers-6.6.15-rt-686-pae.postinst deleted file mode 100644 index f77099e01d..0000000000 --- a/debian/linux-headers-6.6.15-rt-686-pae.postinst +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/perl -# Author: Michael Gilbert <michael.s.gilbert@gmail.com> -# Origin: Stripped down version of the linux-headers postinst from Ubuntu's -# 2.6.32-14-generic kernel, which was itself derived from a -# Debian linux-image postinst script. - -$|=1; -my $version = "6.6.15-rt-686-pae"; - -if (-d "/etc/kernel/header_postinst.d") { - system ("run-parts --report --exit-on-error --arg=$version " . - "/etc/kernel/header_postinst.d") && - die "Failed to process /etc/kernel/header_postinst.d"; -} - -exit 0; - -__END__ diff --git a/debian/linux-headers-6.6.15-rt-amd64.postinst b/debian/linux-headers-6.6.15-rt-amd64.postinst deleted file mode 100644 index 2ad3ccc4e9..0000000000 --- a/debian/linux-headers-6.6.15-rt-amd64.postinst +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/perl -# Author: Michael Gilbert <michael.s.gilbert@gmail.com> -# Origin: Stripped down version of the linux-headers postinst from Ubuntu's -# 2.6.32-14-generic kernel, which was itself derived from a -# Debian linux-image postinst script. - -$|=1; -my $version = "6.6.15-rt-amd64"; - -if (-d "/etc/kernel/header_postinst.d") { - system ("run-parts --report --exit-on-error --arg=$version " . - "/etc/kernel/header_postinst.d") && - die "Failed to process /etc/kernel/header_postinst.d"; -} - -exit 0; - -__END__ diff --git a/debian/linux-headers-6.6.15-rt-arm64.postinst b/debian/linux-headers-6.6.15-rt-arm64.postinst deleted file mode 100644 index b1ff8eb098..0000000000 --- a/debian/linux-headers-6.6.15-rt-arm64.postinst +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/perl -# Author: Michael Gilbert <michael.s.gilbert@gmail.com> -# Origin: Stripped down version of the linux-headers postinst from Ubuntu's -# 2.6.32-14-generic kernel, which was itself derived from a -# Debian linux-image postinst script. - -$|=1; -my $version = "6.6.15-rt-arm64"; - -if (-d "/etc/kernel/header_postinst.d") { - system ("run-parts --report --exit-on-error --arg=$version " . - "/etc/kernel/header_postinst.d") && - die "Failed to process /etc/kernel/header_postinst.d"; -} - -exit 0; - -__END__ diff --git a/debian/linux-headers-6.6.15-rt-armmp.postinst b/debian/linux-headers-6.6.15-rt-armmp.postinst deleted file mode 100644 index a8c502bf94..0000000000 --- a/debian/linux-headers-6.6.15-rt-armmp.postinst +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/perl -# Author: Michael Gilbert <michael.s.gilbert@gmail.com> -# Origin: Stripped down version of the linux-headers postinst from Ubuntu's -# 2.6.32-14-generic kernel, which was itself derived from a -# Debian linux-image postinst script. - -$|=1; -my $version = "6.6.15-rt-armmp"; - -if (-d "/etc/kernel/header_postinst.d") { - system ("run-parts --report --exit-on-error --arg=$version " . - "/etc/kernel/header_postinst.d") && - die "Failed to process /etc/kernel/header_postinst.d"; -} - -exit 0; - -__END__ diff --git a/debian/linux-headers-6.6.15-s390x.postinst b/debian/linux-headers-6.6.15-s390x.postinst deleted file mode 100644 index ff775665aa..0000000000 --- a/debian/linux-headers-6.6.15-s390x.postinst +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/perl -# Author: Michael Gilbert <michael.s.gilbert@gmail.com> -# Origin: Stripped down version of the linux-headers postinst from Ubuntu's -# 2.6.32-14-generic kernel, which was itself derived from a -# Debian linux-image postinst script. - -$|=1; -my $version = "6.6.15-s390x"; - -if (-d "/etc/kernel/header_postinst.d") { - system ("run-parts --report --exit-on-error --arg=$version " . - "/etc/kernel/header_postinst.d") && - die "Failed to process /etc/kernel/header_postinst.d"; -} - -exit 0; - -__END__ diff --git a/debian/linux-headers-6.6.15-sh7751r.postinst b/debian/linux-headers-6.6.15-sh7751r.postinst deleted file mode 100644 index 29b80a39dd..0000000000 --- a/debian/linux-headers-6.6.15-sh7751r.postinst +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/perl -# Author: Michael Gilbert <michael.s.gilbert@gmail.com> -# Origin: Stripped down version of the linux-headers postinst from Ubuntu's -# 2.6.32-14-generic kernel, which was itself derived from a -# Debian linux-image postinst script. - -$|=1; -my $version = "6.6.15-sh7751r"; - -if (-d "/etc/kernel/header_postinst.d") { - system ("run-parts --report --exit-on-error --arg=$version " . - "/etc/kernel/header_postinst.d") && - die "Failed to process /etc/kernel/header_postinst.d"; -} - -exit 0; - -__END__ diff --git a/debian/linux-headers-6.6.15-sh7785lcr.postinst b/debian/linux-headers-6.6.15-sh7785lcr.postinst deleted file mode 100644 index f961dfd44c..0000000000 --- a/debian/linux-headers-6.6.15-sh7785lcr.postinst +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/perl -# Author: Michael Gilbert <michael.s.gilbert@gmail.com> -# Origin: Stripped down version of the linux-headers postinst from Ubuntu's -# 2.6.32-14-generic kernel, which was itself derived from a -# Debian linux-image postinst script. - -$|=1; -my $version = "6.6.15-sh7785lcr"; - -if (-d "/etc/kernel/header_postinst.d") { - system ("run-parts --report --exit-on-error --arg=$version " . - "/etc/kernel/header_postinst.d") && - die "Failed to process /etc/kernel/header_postinst.d"; -} - -exit 0; - -__END__ diff --git a/debian/linux-headers-6.6.15-sparc64-smp.postinst b/debian/linux-headers-6.6.15-sparc64-smp.postinst deleted file mode 100644 index 541d7b72d1..0000000000 --- a/debian/linux-headers-6.6.15-sparc64-smp.postinst +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/perl -# Author: Michael Gilbert <michael.s.gilbert@gmail.com> -# Origin: Stripped down version of the linux-headers postinst from Ubuntu's -# 2.6.32-14-generic kernel, which was itself derived from a -# Debian linux-image postinst script. - -$|=1; -my $version = "6.6.15-sparc64-smp"; - -if (-d "/etc/kernel/header_postinst.d") { - system ("run-parts --report --exit-on-error --arg=$version " . - "/etc/kernel/header_postinst.d") && - die "Failed to process /etc/kernel/header_postinst.d"; -} - -exit 0; - -__END__ diff --git a/debian/linux-headers-6.6.15-sparc64.postinst b/debian/linux-headers-6.6.15-sparc64.postinst deleted file mode 100644 index d03c47b1cb..0000000000 --- a/debian/linux-headers-6.6.15-sparc64.postinst +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/perl -# Author: Michael Gilbert <michael.s.gilbert@gmail.com> -# Origin: Stripped down version of the linux-headers postinst from Ubuntu's -# 2.6.32-14-generic kernel, which was itself derived from a -# Debian linux-image postinst script. - -$|=1; -my $version = "6.6.15-sparc64"; - -if (-d "/etc/kernel/header_postinst.d") { - system ("run-parts --report --exit-on-error --arg=$version " . - "/etc/kernel/header_postinst.d") && - die "Failed to process /etc/kernel/header_postinst.d"; -} - -exit 0; - -__END__ diff --git a/debian/linux-headers-6.7.7-4kc-malta.postinst b/debian/linux-headers-6.7.7-4kc-malta.postinst new file mode 100644 index 0000000000..dffdfa38f0 --- /dev/null +++ b/debian/linux-headers-6.7.7-4kc-malta.postinst @@ -0,0 +1,18 @@ +#!/usr/bin/perl +# Author: Michael Gilbert <michael.s.gilbert@gmail.com> +# Origin: Stripped down version of the linux-headers postinst from Ubuntu's +# 2.6.32-14-generic kernel, which was itself derived from a +# Debian linux-image postinst script. + +$|=1; +my $version = "6.7.7-4kc-malta"; + +if (-d "/etc/kernel/header_postinst.d") { + system ("run-parts --report --exit-on-error --arg=$version " . + "/etc/kernel/header_postinst.d") && + die "Failed to process /etc/kernel/header_postinst.d"; +} + +exit 0; + +__END__ diff --git a/debian/linux-headers-6.7.7-5kc-malta.postinst b/debian/linux-headers-6.7.7-5kc-malta.postinst new file mode 100644 index 0000000000..945ad00ecf --- /dev/null +++ b/debian/linux-headers-6.7.7-5kc-malta.postinst @@ -0,0 +1,18 @@ +#!/usr/bin/perl +# Author: Michael Gilbert <michael.s.gilbert@gmail.com> +# Origin: Stripped down version of the linux-headers postinst from Ubuntu's +# 2.6.32-14-generic kernel, which was itself derived from a +# Debian linux-image postinst script. + +$|=1; +my $version = "6.7.7-5kc-malta"; + +if (-d "/etc/kernel/header_postinst.d") { + system ("run-parts --report --exit-on-error --arg=$version " . + "/etc/kernel/header_postinst.d") && + die "Failed to process /etc/kernel/header_postinst.d"; +} + +exit 0; + +__END__ diff --git a/debian/linux-headers-6.7.7-686-pae.postinst b/debian/linux-headers-6.7.7-686-pae.postinst new file mode 100644 index 0000000000..7a301dc256 --- /dev/null +++ b/debian/linux-headers-6.7.7-686-pae.postinst @@ -0,0 +1,18 @@ +#!/usr/bin/perl +# Author: Michael Gilbert <michael.s.gilbert@gmail.com> +# Origin: Stripped down version of the linux-headers postinst from Ubuntu's +# 2.6.32-14-generic kernel, which was itself derived from a +# Debian linux-image postinst script. + +$|=1; +my $version = "6.7.7-686-pae"; + +if (-d "/etc/kernel/header_postinst.d") { + system ("run-parts --report --exit-on-error --arg=$version " . + "/etc/kernel/header_postinst.d") && + die "Failed to process /etc/kernel/header_postinst.d"; +} + +exit 0; + +__END__ diff --git a/debian/linux-headers-6.6.15-rpi.postinst b/debian/linux-headers-6.7.7-686.postinst index 70bb494ea0..4e66efcb63 100644 --- a/debian/linux-headers-6.6.15-rpi.postinst +++ b/debian/linux-headers-6.7.7-686.postinst @@ -5,7 +5,7 @@ # Debian linux-image postinst script. $|=1; -my $version = "6.6.15-rpi"; +my $version = "6.7.7-686"; if (-d "/etc/kernel/header_postinst.d") { system ("run-parts --report --exit-on-error --arg=$version " . diff --git a/debian/linux-headers-6.7.7-alpha-generic.postinst b/debian/linux-headers-6.7.7-alpha-generic.postinst new file mode 100644 index 0000000000..e556dcd91a --- /dev/null +++ b/debian/linux-headers-6.7.7-alpha-generic.postinst @@ -0,0 +1,18 @@ +#!/usr/bin/perl +# Author: Michael Gilbert <michael.s.gilbert@gmail.com> +# Origin: Stripped down version of the linux-headers postinst from Ubuntu's +# 2.6.32-14-generic kernel, which was itself derived from a +# Debian linux-image postinst script. + +$|=1; +my $version = "6.7.7-alpha-generic"; + +if (-d "/etc/kernel/header_postinst.d") { + system ("run-parts --report --exit-on-error --arg=$version " . + "/etc/kernel/header_postinst.d") && + die "Failed to process /etc/kernel/header_postinst.d"; +} + +exit 0; + +__END__ diff --git a/debian/linux-headers-6.7.7-alpha-smp.postinst b/debian/linux-headers-6.7.7-alpha-smp.postinst new file mode 100644 index 0000000000..2786903022 --- /dev/null +++ b/debian/linux-headers-6.7.7-alpha-smp.postinst @@ -0,0 +1,18 @@ +#!/usr/bin/perl +# Author: Michael Gilbert <michael.s.gilbert@gmail.com> +# Origin: Stripped down version of the linux-headers postinst from Ubuntu's +# 2.6.32-14-generic kernel, which was itself derived from a +# Debian linux-image postinst script. + +$|=1; +my $version = "6.7.7-alpha-smp"; + +if (-d "/etc/kernel/header_postinst.d") { + system ("run-parts --report --exit-on-error --arg=$version " . + "/etc/kernel/header_postinst.d") && + die "Failed to process /etc/kernel/header_postinst.d"; +} + +exit 0; + +__END__ diff --git a/debian/linux-headers-6.6.15-m68k.postinst b/debian/linux-headers-6.7.7-amd64.postinst index 777af66b3f..cb225949a7 100644 --- a/debian/linux-headers-6.6.15-m68k.postinst +++ b/debian/linux-headers-6.7.7-amd64.postinst @@ -5,7 +5,7 @@ # Debian linux-image postinst script. $|=1; -my $version = "6.6.15-m68k"; +my $version = "6.7.7-amd64"; if (-d "/etc/kernel/header_postinst.d") { system ("run-parts --report --exit-on-error --arg=$version " . diff --git a/debian/linux-headers-6.6.15-armmp.postinst b/debian/linux-headers-6.7.7-arm64.postinst index 1bf55e2228..e6dba378a1 100644 --- a/debian/linux-headers-6.6.15-armmp.postinst +++ b/debian/linux-headers-6.7.7-arm64.postinst @@ -5,7 +5,7 @@ # Debian linux-image postinst script. $|=1; -my $version = "6.6.15-armmp"; +my $version = "6.7.7-arm64"; if (-d "/etc/kernel/header_postinst.d") { system ("run-parts --report --exit-on-error --arg=$version " . diff --git a/debian/linux-headers-6.6.15-4kc-malta.postinst b/debian/linux-headers-6.7.7-armmp-lpae.postinst index da56839376..5eb40af288 100644 --- a/debian/linux-headers-6.6.15-4kc-malta.postinst +++ b/debian/linux-headers-6.7.7-armmp-lpae.postinst @@ -5,7 +5,7 @@ # Debian linux-image postinst script. $|=1; -my $version = "6.6.15-4kc-malta"; +my $version = "6.7.7-armmp-lpae"; if (-d "/etc/kernel/header_postinst.d") { system ("run-parts --report --exit-on-error --arg=$version " . diff --git a/debian/linux-headers-6.7.7-armmp.postinst b/debian/linux-headers-6.7.7-armmp.postinst new file mode 100644 index 0000000000..e360740bd7 --- /dev/null +++ b/debian/linux-headers-6.7.7-armmp.postinst @@ -0,0 +1,18 @@ +#!/usr/bin/perl +# Author: Michael Gilbert <michael.s.gilbert@gmail.com> +# Origin: Stripped down version of the linux-headers postinst from Ubuntu's +# 2.6.32-14-generic kernel, which was itself derived from a +# Debian linux-image postinst script. + +$|=1; +my $version = "6.7.7-armmp"; + +if (-d "/etc/kernel/header_postinst.d") { + system ("run-parts --report --exit-on-error --arg=$version " . + "/etc/kernel/header_postinst.d") && + die "Failed to process /etc/kernel/header_postinst.d"; +} + +exit 0; + +__END__ diff --git a/debian/linux-headers-6.7.7-cloud-amd64.postinst b/debian/linux-headers-6.7.7-cloud-amd64.postinst new file mode 100644 index 0000000000..ff8d9abd70 --- /dev/null +++ b/debian/linux-headers-6.7.7-cloud-amd64.postinst @@ -0,0 +1,18 @@ +#!/usr/bin/perl +# Author: Michael Gilbert <michael.s.gilbert@gmail.com> +# Origin: Stripped down version of the linux-headers postinst from Ubuntu's +# 2.6.32-14-generic kernel, which was itself derived from a +# Debian linux-image postinst script. + +$|=1; +my $version = "6.7.7-cloud-amd64"; + +if (-d "/etc/kernel/header_postinst.d") { + system ("run-parts --report --exit-on-error --arg=$version " . + "/etc/kernel/header_postinst.d") && + die "Failed to process /etc/kernel/header_postinst.d"; +} + +exit 0; + +__END__ diff --git a/debian/linux-headers-6.7.7-cloud-arm64.postinst b/debian/linux-headers-6.7.7-cloud-arm64.postinst new file mode 100644 index 0000000000..d8d4395011 --- /dev/null +++ b/debian/linux-headers-6.7.7-cloud-arm64.postinst @@ -0,0 +1,18 @@ +#!/usr/bin/perl +# Author: Michael Gilbert <michael.s.gilbert@gmail.com> +# Origin: Stripped down version of the linux-headers postinst from Ubuntu's +# 2.6.32-14-generic kernel, which was itself derived from a +# Debian linux-image postinst script. + +$|=1; +my $version = "6.7.7-cloud-arm64"; + +if (-d "/etc/kernel/header_postinst.d") { + system ("run-parts --report --exit-on-error --arg=$version " . + "/etc/kernel/header_postinst.d") && + die "Failed to process /etc/kernel/header_postinst.d"; +} + +exit 0; + +__END__ diff --git a/debian/linux-headers-6.7.7-loong64.postinst b/debian/linux-headers-6.7.7-loong64.postinst new file mode 100644 index 0000000000..294682abff --- /dev/null +++ b/debian/linux-headers-6.7.7-loong64.postinst @@ -0,0 +1,18 @@ +#!/usr/bin/perl +# Author: Michael Gilbert <michael.s.gilbert@gmail.com> +# Origin: Stripped down version of the linux-headers postinst from Ubuntu's +# 2.6.32-14-generic kernel, which was itself derived from a +# Debian linux-image postinst script. + +$|=1; +my $version = "6.7.7-loong64"; + +if (-d "/etc/kernel/header_postinst.d") { + system ("run-parts --report --exit-on-error --arg=$version " . + "/etc/kernel/header_postinst.d") && + die "Failed to process /etc/kernel/header_postinst.d"; +} + +exit 0; + +__END__ diff --git a/debian/linux-headers-6.6.15-5kc-malta.postinst b/debian/linux-headers-6.7.7-loongson-3.postinst index abcb0a8b73..6c46bc4696 100644 --- a/debian/linux-headers-6.6.15-5kc-malta.postinst +++ b/debian/linux-headers-6.7.7-loongson-3.postinst @@ -5,7 +5,7 @@ # Debian linux-image postinst script. $|=1; -my $version = "6.6.15-5kc-malta"; +my $version = "6.7.7-loongson-3"; if (-d "/etc/kernel/header_postinst.d") { system ("run-parts --report --exit-on-error --arg=$version " . diff --git a/debian/linux-headers-6.6.15-686.postinst b/debian/linux-headers-6.7.7-m68k.postinst index d07e492ec1..308aa9b802 100644 --- a/debian/linux-headers-6.6.15-686.postinst +++ b/debian/linux-headers-6.7.7-m68k.postinst @@ -5,7 +5,7 @@ # Debian linux-image postinst script. $|=1; -my $version = "6.6.15-686"; +my $version = "6.7.7-m68k"; if (-d "/etc/kernel/header_postinst.d") { system ("run-parts --report --exit-on-error --arg=$version " . diff --git a/debian/linux-headers-6.7.7-mips32r2eb.postinst b/debian/linux-headers-6.7.7-mips32r2eb.postinst new file mode 100644 index 0000000000..94ecbfabc5 --- /dev/null +++ b/debian/linux-headers-6.7.7-mips32r2eb.postinst @@ -0,0 +1,18 @@ +#!/usr/bin/perl +# Author: Michael Gilbert <michael.s.gilbert@gmail.com> +# Origin: Stripped down version of the linux-headers postinst from Ubuntu's +# 2.6.32-14-generic kernel, which was itself derived from a +# Debian linux-image postinst script. + +$|=1; +my $version = "6.7.7-mips32r2eb"; + +if (-d "/etc/kernel/header_postinst.d") { + system ("run-parts --report --exit-on-error --arg=$version " . + "/etc/kernel/header_postinst.d") && + die "Failed to process /etc/kernel/header_postinst.d"; +} + +exit 0; + +__END__ diff --git a/debian/linux-headers-6.7.7-mips32r2el.postinst b/debian/linux-headers-6.7.7-mips32r2el.postinst new file mode 100644 index 0000000000..ff44252b2e --- /dev/null +++ b/debian/linux-headers-6.7.7-mips32r2el.postinst @@ -0,0 +1,18 @@ +#!/usr/bin/perl +# Author: Michael Gilbert <michael.s.gilbert@gmail.com> +# Origin: Stripped down version of the linux-headers postinst from Ubuntu's +# 2.6.32-14-generic kernel, which was itself derived from a +# Debian linux-image postinst script. + +$|=1; +my $version = "6.7.7-mips32r2el"; + +if (-d "/etc/kernel/header_postinst.d") { + system ("run-parts --report --exit-on-error --arg=$version " . + "/etc/kernel/header_postinst.d") && + die "Failed to process /etc/kernel/header_postinst.d"; +} + +exit 0; + +__END__ diff --git a/debian/linux-headers-6.7.7-mips64r2eb.postinst b/debian/linux-headers-6.7.7-mips64r2eb.postinst new file mode 100644 index 0000000000..be6631d6f3 --- /dev/null +++ b/debian/linux-headers-6.7.7-mips64r2eb.postinst @@ -0,0 +1,18 @@ +#!/usr/bin/perl +# Author: Michael Gilbert <michael.s.gilbert@gmail.com> +# Origin: Stripped down version of the linux-headers postinst from Ubuntu's +# 2.6.32-14-generic kernel, which was itself derived from a +# Debian linux-image postinst script. + +$|=1; +my $version = "6.7.7-mips64r2eb"; + +if (-d "/etc/kernel/header_postinst.d") { + system ("run-parts --report --exit-on-error --arg=$version " . + "/etc/kernel/header_postinst.d") && + die "Failed to process /etc/kernel/header_postinst.d"; +} + +exit 0; + +__END__ diff --git a/debian/linux-headers-6.7.7-mips64r2el.postinst b/debian/linux-headers-6.7.7-mips64r2el.postinst new file mode 100644 index 0000000000..ae709b624e --- /dev/null +++ b/debian/linux-headers-6.7.7-mips64r2el.postinst @@ -0,0 +1,18 @@ +#!/usr/bin/perl +# Author: Michael Gilbert <michael.s.gilbert@gmail.com> +# Origin: Stripped down version of the linux-headers postinst from Ubuntu's +# 2.6.32-14-generic kernel, which was itself derived from a +# Debian linux-image postinst script. + +$|=1; +my $version = "6.7.7-mips64r2el"; + +if (-d "/etc/kernel/header_postinst.d") { + system ("run-parts --report --exit-on-error --arg=$version " . + "/etc/kernel/header_postinst.d") && + die "Failed to process /etc/kernel/header_postinst.d"; +} + +exit 0; + +__END__ diff --git a/debian/linux-headers-6.7.7-mips64r6el.postinst b/debian/linux-headers-6.7.7-mips64r6el.postinst new file mode 100644 index 0000000000..2cc722e657 --- /dev/null +++ b/debian/linux-headers-6.7.7-mips64r6el.postinst @@ -0,0 +1,18 @@ +#!/usr/bin/perl +# Author: Michael Gilbert <michael.s.gilbert@gmail.com> +# Origin: Stripped down version of the linux-headers postinst from Ubuntu's +# 2.6.32-14-generic kernel, which was itself derived from a +# Debian linux-image postinst script. + +$|=1; +my $version = "6.7.7-mips64r6el"; + +if (-d "/etc/kernel/header_postinst.d") { + system ("run-parts --report --exit-on-error --arg=$version " . + "/etc/kernel/header_postinst.d") && + die "Failed to process /etc/kernel/header_postinst.d"; +} + +exit 0; + +__END__ diff --git a/debian/linux-headers-6.6.15-amd64.postinst b/debian/linux-headers-6.7.7-octeon.postinst index 5b4909f6f1..c6b3a8745e 100644 --- a/debian/linux-headers-6.6.15-amd64.postinst +++ b/debian/linux-headers-6.7.7-octeon.postinst @@ -5,7 +5,7 @@ # Debian linux-image postinst script. $|=1; -my $version = "6.6.15-amd64"; +my $version = "6.7.7-octeon"; if (-d "/etc/kernel/header_postinst.d") { system ("run-parts --report --exit-on-error --arg=$version " . diff --git a/debian/linux-headers-6.6.15-arm64.postinst b/debian/linux-headers-6.7.7-parisc.postinst index 50db646d84..42db246612 100644 --- a/debian/linux-headers-6.6.15-arm64.postinst +++ b/debian/linux-headers-6.7.7-parisc.postinst @@ -5,7 +5,7 @@ # Debian linux-image postinst script. $|=1; -my $version = "6.6.15-arm64"; +my $version = "6.7.7-parisc"; if (-d "/etc/kernel/header_postinst.d") { system ("run-parts --report --exit-on-error --arg=$version " . diff --git a/debian/linux-headers-6.6.15-686-pae.postinst b/debian/linux-headers-6.7.7-parisc64.postinst index 8ea24c4485..11ac6f110a 100644 --- a/debian/linux-headers-6.6.15-686-pae.postinst +++ b/debian/linux-headers-6.7.7-parisc64.postinst @@ -5,7 +5,7 @@ # Debian linux-image postinst script. $|=1; -my $version = "6.6.15-686-pae"; +my $version = "6.7.7-parisc64"; if (-d "/etc/kernel/header_postinst.d") { system ("run-parts --report --exit-on-error --arg=$version " . diff --git a/debian/linux-headers-6.7.7-powerpc-smp.postinst b/debian/linux-headers-6.7.7-powerpc-smp.postinst new file mode 100644 index 0000000000..fb3805e217 --- /dev/null +++ b/debian/linux-headers-6.7.7-powerpc-smp.postinst @@ -0,0 +1,18 @@ +#!/usr/bin/perl +# Author: Michael Gilbert <michael.s.gilbert@gmail.com> +# Origin: Stripped down version of the linux-headers postinst from Ubuntu's +# 2.6.32-14-generic kernel, which was itself derived from a +# Debian linux-image postinst script. + +$|=1; +my $version = "6.7.7-powerpc-smp"; + +if (-d "/etc/kernel/header_postinst.d") { + system ("run-parts --report --exit-on-error --arg=$version " . + "/etc/kernel/header_postinst.d") && + die "Failed to process /etc/kernel/header_postinst.d"; +} + +exit 0; + +__END__ diff --git a/debian/linux-headers-6.7.7-powerpc.postinst b/debian/linux-headers-6.7.7-powerpc.postinst new file mode 100644 index 0000000000..621df5ec54 --- /dev/null +++ b/debian/linux-headers-6.7.7-powerpc.postinst @@ -0,0 +1,18 @@ +#!/usr/bin/perl +# Author: Michael Gilbert <michael.s.gilbert@gmail.com> +# Origin: Stripped down version of the linux-headers postinst from Ubuntu's +# 2.6.32-14-generic kernel, which was itself derived from a +# Debian linux-image postinst script. + +$|=1; +my $version = "6.7.7-powerpc"; + +if (-d "/etc/kernel/header_postinst.d") { + system ("run-parts --report --exit-on-error --arg=$version " . + "/etc/kernel/header_postinst.d") && + die "Failed to process /etc/kernel/header_postinst.d"; +} + +exit 0; + +__END__ diff --git a/debian/linux-headers-6.7.7-powerpc64.postinst b/debian/linux-headers-6.7.7-powerpc64.postinst new file mode 100644 index 0000000000..c6e66485d7 --- /dev/null +++ b/debian/linux-headers-6.7.7-powerpc64.postinst @@ -0,0 +1,18 @@ +#!/usr/bin/perl +# Author: Michael Gilbert <michael.s.gilbert@gmail.com> +# Origin: Stripped down version of the linux-headers postinst from Ubuntu's +# 2.6.32-14-generic kernel, which was itself derived from a +# Debian linux-image postinst script. + +$|=1; +my $version = "6.7.7-powerpc64"; + +if (-d "/etc/kernel/header_postinst.d") { + system ("run-parts --report --exit-on-error --arg=$version " . + "/etc/kernel/header_postinst.d") && + die "Failed to process /etc/kernel/header_postinst.d"; +} + +exit 0; + +__END__ diff --git a/debian/linux-headers-6.7.7-powerpc64le.postinst b/debian/linux-headers-6.7.7-powerpc64le.postinst new file mode 100644 index 0000000000..247def08a8 --- /dev/null +++ b/debian/linux-headers-6.7.7-powerpc64le.postinst @@ -0,0 +1,18 @@ +#!/usr/bin/perl +# Author: Michael Gilbert <michael.s.gilbert@gmail.com> +# Origin: Stripped down version of the linux-headers postinst from Ubuntu's +# 2.6.32-14-generic kernel, which was itself derived from a +# Debian linux-image postinst script. + +$|=1; +my $version = "6.7.7-powerpc64le"; + +if (-d "/etc/kernel/header_postinst.d") { + system ("run-parts --report --exit-on-error --arg=$version " . + "/etc/kernel/header_postinst.d") && + die "Failed to process /etc/kernel/header_postinst.d"; +} + +exit 0; + +__END__ diff --git a/debian/linux-headers-6.7.7-riscv64.postinst b/debian/linux-headers-6.7.7-riscv64.postinst new file mode 100644 index 0000000000..c6b11cd14f --- /dev/null +++ b/debian/linux-headers-6.7.7-riscv64.postinst @@ -0,0 +1,18 @@ +#!/usr/bin/perl +# Author: Michael Gilbert <michael.s.gilbert@gmail.com> +# Origin: Stripped down version of the linux-headers postinst from Ubuntu's +# 2.6.32-14-generic kernel, which was itself derived from a +# Debian linux-image postinst script. + +$|=1; +my $version = "6.7.7-riscv64"; + +if (-d "/etc/kernel/header_postinst.d") { + system ("run-parts --report --exit-on-error --arg=$version " . + "/etc/kernel/header_postinst.d") && + die "Failed to process /etc/kernel/header_postinst.d"; +} + +exit 0; + +__END__ diff --git a/debian/linux-headers-6.7.7-rpi.postinst b/debian/linux-headers-6.7.7-rpi.postinst new file mode 100644 index 0000000000..75cf309dce --- /dev/null +++ b/debian/linux-headers-6.7.7-rpi.postinst @@ -0,0 +1,18 @@ +#!/usr/bin/perl +# Author: Michael Gilbert <michael.s.gilbert@gmail.com> +# Origin: Stripped down version of the linux-headers postinst from Ubuntu's +# 2.6.32-14-generic kernel, which was itself derived from a +# Debian linux-image postinst script. + +$|=1; +my $version = "6.7.7-rpi"; + +if (-d "/etc/kernel/header_postinst.d") { + system ("run-parts --report --exit-on-error --arg=$version " . + "/etc/kernel/header_postinst.d") && + die "Failed to process /etc/kernel/header_postinst.d"; +} + +exit 0; + +__END__ diff --git a/debian/linux-headers-6.7.7-rt-686-pae.postinst b/debian/linux-headers-6.7.7-rt-686-pae.postinst new file mode 100644 index 0000000000..1f6348c7e3 --- /dev/null +++ b/debian/linux-headers-6.7.7-rt-686-pae.postinst @@ -0,0 +1,18 @@ +#!/usr/bin/perl +# Author: Michael Gilbert <michael.s.gilbert@gmail.com> +# Origin: Stripped down version of the linux-headers postinst from Ubuntu's +# 2.6.32-14-generic kernel, which was itself derived from a +# Debian linux-image postinst script. + +$|=1; +my $version = "6.7.7-rt-686-pae"; + +if (-d "/etc/kernel/header_postinst.d") { + system ("run-parts --report --exit-on-error --arg=$version " . + "/etc/kernel/header_postinst.d") && + die "Failed to process /etc/kernel/header_postinst.d"; +} + +exit 0; + +__END__ diff --git a/debian/linux-headers-6.7.7-rt-amd64.postinst b/debian/linux-headers-6.7.7-rt-amd64.postinst new file mode 100644 index 0000000000..ec2982c9cd --- /dev/null +++ b/debian/linux-headers-6.7.7-rt-amd64.postinst @@ -0,0 +1,18 @@ +#!/usr/bin/perl +# Author: Michael Gilbert <michael.s.gilbert@gmail.com> +# Origin: Stripped down version of the linux-headers postinst from Ubuntu's +# 2.6.32-14-generic kernel, which was itself derived from a +# Debian linux-image postinst script. + +$|=1; +my $version = "6.7.7-rt-amd64"; + +if (-d "/etc/kernel/header_postinst.d") { + system ("run-parts --report --exit-on-error --arg=$version " . + "/etc/kernel/header_postinst.d") && + die "Failed to process /etc/kernel/header_postinst.d"; +} + +exit 0; + +__END__ diff --git a/debian/linux-headers-6.7.7-rt-arm64.postinst b/debian/linux-headers-6.7.7-rt-arm64.postinst new file mode 100644 index 0000000000..b4ffc039e2 --- /dev/null +++ b/debian/linux-headers-6.7.7-rt-arm64.postinst @@ -0,0 +1,18 @@ +#!/usr/bin/perl +# Author: Michael Gilbert <michael.s.gilbert@gmail.com> +# Origin: Stripped down version of the linux-headers postinst from Ubuntu's +# 2.6.32-14-generic kernel, which was itself derived from a +# Debian linux-image postinst script. + +$|=1; +my $version = "6.7.7-rt-arm64"; + +if (-d "/etc/kernel/header_postinst.d") { + system ("run-parts --report --exit-on-error --arg=$version " . + "/etc/kernel/header_postinst.d") && + die "Failed to process /etc/kernel/header_postinst.d"; +} + +exit 0; + +__END__ diff --git a/debian/linux-headers-6.7.7-rt-armmp.postinst b/debian/linux-headers-6.7.7-rt-armmp.postinst new file mode 100644 index 0000000000..bc37da714d --- /dev/null +++ b/debian/linux-headers-6.7.7-rt-armmp.postinst @@ -0,0 +1,18 @@ +#!/usr/bin/perl +# Author: Michael Gilbert <michael.s.gilbert@gmail.com> +# Origin: Stripped down version of the linux-headers postinst from Ubuntu's +# 2.6.32-14-generic kernel, which was itself derived from a +# Debian linux-image postinst script. + +$|=1; +my $version = "6.7.7-rt-armmp"; + +if (-d "/etc/kernel/header_postinst.d") { + system ("run-parts --report --exit-on-error --arg=$version " . + "/etc/kernel/header_postinst.d") && + die "Failed to process /etc/kernel/header_postinst.d"; +} + +exit 0; + +__END__ diff --git a/debian/linux-headers-6.7.7-s390x.postinst b/debian/linux-headers-6.7.7-s390x.postinst new file mode 100644 index 0000000000..e018bc9757 --- /dev/null +++ b/debian/linux-headers-6.7.7-s390x.postinst @@ -0,0 +1,18 @@ +#!/usr/bin/perl +# Author: Michael Gilbert <michael.s.gilbert@gmail.com> +# Origin: Stripped down version of the linux-headers postinst from Ubuntu's +# 2.6.32-14-generic kernel, which was itself derived from a +# Debian linux-image postinst script. + +$|=1; +my $version = "6.7.7-s390x"; + +if (-d "/etc/kernel/header_postinst.d") { + system ("run-parts --report --exit-on-error --arg=$version " . + "/etc/kernel/header_postinst.d") && + die "Failed to process /etc/kernel/header_postinst.d"; +} + +exit 0; + +__END__ diff --git a/debian/linux-headers-6.7.7-sh7751r.postinst b/debian/linux-headers-6.7.7-sh7751r.postinst new file mode 100644 index 0000000000..3d4eba0042 --- /dev/null +++ b/debian/linux-headers-6.7.7-sh7751r.postinst @@ -0,0 +1,18 @@ +#!/usr/bin/perl +# Author: Michael Gilbert <michael.s.gilbert@gmail.com> +# Origin: Stripped down version of the linux-headers postinst from Ubuntu's +# 2.6.32-14-generic kernel, which was itself derived from a +# Debian linux-image postinst script. + +$|=1; +my $version = "6.7.7-sh7751r"; + +if (-d "/etc/kernel/header_postinst.d") { + system ("run-parts --report --exit-on-error --arg=$version " . + "/etc/kernel/header_postinst.d") && + die "Failed to process /etc/kernel/header_postinst.d"; +} + +exit 0; + +__END__ diff --git a/debian/linux-headers-6.7.7-sh7785lcr.postinst b/debian/linux-headers-6.7.7-sh7785lcr.postinst new file mode 100644 index 0000000000..3e8625f4c3 --- /dev/null +++ b/debian/linux-headers-6.7.7-sh7785lcr.postinst @@ -0,0 +1,18 @@ +#!/usr/bin/perl +# Author: Michael Gilbert <michael.s.gilbert@gmail.com> +# Origin: Stripped down version of the linux-headers postinst from Ubuntu's +# 2.6.32-14-generic kernel, which was itself derived from a +# Debian linux-image postinst script. + +$|=1; +my $version = "6.7.7-sh7785lcr"; + +if (-d "/etc/kernel/header_postinst.d") { + system ("run-parts --report --exit-on-error --arg=$version " . + "/etc/kernel/header_postinst.d") && + die "Failed to process /etc/kernel/header_postinst.d"; +} + +exit 0; + +__END__ diff --git a/debian/linux-headers-6.7.7-sparc64-smp.postinst b/debian/linux-headers-6.7.7-sparc64-smp.postinst new file mode 100644 index 0000000000..ae156672d1 --- /dev/null +++ b/debian/linux-headers-6.7.7-sparc64-smp.postinst @@ -0,0 +1,18 @@ +#!/usr/bin/perl +# Author: Michael Gilbert <michael.s.gilbert@gmail.com> +# Origin: Stripped down version of the linux-headers postinst from Ubuntu's +# 2.6.32-14-generic kernel, which was itself derived from a +# Debian linux-image postinst script. + +$|=1; +my $version = "6.7.7-sparc64-smp"; + +if (-d "/etc/kernel/header_postinst.d") { + system ("run-parts --report --exit-on-error --arg=$version " . + "/etc/kernel/header_postinst.d") && + die "Failed to process /etc/kernel/header_postinst.d"; +} + +exit 0; + +__END__ diff --git a/debian/linux-headers-6.7.7-sparc64.postinst b/debian/linux-headers-6.7.7-sparc64.postinst new file mode 100644 index 0000000000..14351eb085 --- /dev/null +++ b/debian/linux-headers-6.7.7-sparc64.postinst @@ -0,0 +1,18 @@ +#!/usr/bin/perl +# Author: Michael Gilbert <michael.s.gilbert@gmail.com> +# Origin: Stripped down version of the linux-headers postinst from Ubuntu's +# 2.6.32-14-generic kernel, which was itself derived from a +# Debian linux-image postinst script. + +$|=1; +my $version = "6.7.7-sparc64"; + +if (-d "/etc/kernel/header_postinst.d") { + system ("run-parts --report --exit-on-error --arg=$version " . + "/etc/kernel/header_postinst.d") && + die "Failed to process /etc/kernel/header_postinst.d"; +} + +exit 0; + +__END__ diff --git a/debian/linux-headers-686-pae.maintscript b/debian/linux-headers-686-pae.maintscript index 3e0ba0004b..f4f176c350 100644 --- a/debian/linux-headers-686-pae.maintscript +++ b/debian/linux-headers-686-pae.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-headers-686-pae linux-headers-6.6.15-686-pae 5.7~rc5-1~exp1 linux-headers-686-pae +dir_to_symlink /usr/share/doc/linux-headers-686-pae linux-headers-6.7.7-686-pae 5.7~rc5-1~exp1 linux-headers-686-pae diff --git a/debian/linux-headers-686.maintscript b/debian/linux-headers-686.maintscript index ac05d075a1..3d5d0648a2 100644 --- a/debian/linux-headers-686.maintscript +++ b/debian/linux-headers-686.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-headers-686 linux-headers-6.6.15-686 5.7~rc5-1~exp1 linux-headers-686 +dir_to_symlink /usr/share/doc/linux-headers-686 linux-headers-6.7.7-686 5.7~rc5-1~exp1 linux-headers-686 diff --git a/debian/linux-headers-alpha-generic.maintscript b/debian/linux-headers-alpha-generic.maintscript index 103388add8..28b694fb0d 100644 --- a/debian/linux-headers-alpha-generic.maintscript +++ b/debian/linux-headers-alpha-generic.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-headers-alpha-generic linux-headers-6.6.15-alpha-generic 5.7~rc5-1~exp1 linux-headers-alpha-generic +dir_to_symlink /usr/share/doc/linux-headers-alpha-generic linux-headers-6.7.7-alpha-generic 5.7~rc5-1~exp1 linux-headers-alpha-generic diff --git a/debian/linux-headers-alpha-smp.maintscript b/debian/linux-headers-alpha-smp.maintscript index 53aa5f7bb1..1f78e38ebe 100644 --- a/debian/linux-headers-alpha-smp.maintscript +++ b/debian/linux-headers-alpha-smp.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-headers-alpha-smp linux-headers-6.6.15-alpha-smp 5.7~rc5-1~exp1 linux-headers-alpha-smp +dir_to_symlink /usr/share/doc/linux-headers-alpha-smp linux-headers-6.7.7-alpha-smp 5.7~rc5-1~exp1 linux-headers-alpha-smp diff --git a/debian/linux-headers-armmp-lpae.maintscript b/debian/linux-headers-armmp-lpae.maintscript index f0de8625f7..5f983e096f 100644 --- a/debian/linux-headers-armmp-lpae.maintscript +++ b/debian/linux-headers-armmp-lpae.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-headers-armmp-lpae linux-headers-6.6.15-armmp-lpae 5.7~rc5-1~exp1 linux-headers-armmp-lpae +dir_to_symlink /usr/share/doc/linux-headers-armmp-lpae linux-headers-6.7.7-armmp-lpae 5.7~rc5-1~exp1 linux-headers-armmp-lpae diff --git a/debian/linux-headers-armmp.maintscript b/debian/linux-headers-armmp.maintscript index 513832cc3a..297af59f7c 100644 --- a/debian/linux-headers-armmp.maintscript +++ b/debian/linux-headers-armmp.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-headers-armmp linux-headers-6.6.15-armmp 5.7~rc5-1~exp1 linux-headers-armmp +dir_to_symlink /usr/share/doc/linux-headers-armmp linux-headers-6.7.7-armmp 5.7~rc5-1~exp1 linux-headers-armmp diff --git a/debian/linux-headers-itanium.maintscript b/debian/linux-headers-itanium.maintscript deleted file mode 100644 index 969073e2d3..0000000000 --- a/debian/linux-headers-itanium.maintscript +++ /dev/null @@ -1 +0,0 @@ -dir_to_symlink /usr/share/doc/linux-headers-itanium linux-headers-6.6.15-itanium 5.7~rc5-1~exp1 linux-headers-itanium diff --git a/debian/linux-headers-loong64.maintscript b/debian/linux-headers-loong64.maintscript new file mode 100644 index 0000000000..7061f82211 --- /dev/null +++ b/debian/linux-headers-loong64.maintscript @@ -0,0 +1 @@ +dir_to_symlink /usr/share/doc/linux-headers-loong64 linux-headers-6.7.7-loong64 5.7~rc5-1~exp1 linux-headers-loong64 diff --git a/debian/linux-headers-loongson-3.maintscript b/debian/linux-headers-loongson-3.maintscript index 8b512bf728..fcc941b9da 100644 --- a/debian/linux-headers-loongson-3.maintscript +++ b/debian/linux-headers-loongson-3.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-headers-loongson-3 linux-headers-6.6.15-loongson-3 5.7~rc5-1~exp1 linux-headers-loongson-3 +dir_to_symlink /usr/share/doc/linux-headers-loongson-3 linux-headers-6.7.7-loongson-3 5.7~rc5-1~exp1 linux-headers-loongson-3 diff --git a/debian/linux-headers-m68k.maintscript b/debian/linux-headers-m68k.maintscript index 70e9e27aed..9fb7efadc7 100644 --- a/debian/linux-headers-m68k.maintscript +++ b/debian/linux-headers-m68k.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-headers-m68k linux-headers-6.6.15-m68k 5.7~rc5-1~exp1 linux-headers-m68k +dir_to_symlink /usr/share/doc/linux-headers-m68k linux-headers-6.7.7-m68k 5.7~rc5-1~exp1 linux-headers-m68k diff --git a/debian/linux-headers-mckinley.maintscript b/debian/linux-headers-mckinley.maintscript deleted file mode 100644 index 84abb55136..0000000000 --- a/debian/linux-headers-mckinley.maintscript +++ /dev/null @@ -1 +0,0 @@ -dir_to_symlink /usr/share/doc/linux-headers-mckinley linux-headers-6.6.15-mckinley 5.7~rc5-1~exp1 linux-headers-mckinley diff --git a/debian/linux-headers-mips32r2eb.maintscript b/debian/linux-headers-mips32r2eb.maintscript index da4c84513d..928aa90510 100644 --- a/debian/linux-headers-mips32r2eb.maintscript +++ b/debian/linux-headers-mips32r2eb.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-headers-mips32r2eb linux-headers-6.6.15-mips32r2eb 5.7~rc5-1~exp1 linux-headers-mips32r2eb +dir_to_symlink /usr/share/doc/linux-headers-mips32r2eb linux-headers-6.7.7-mips32r2eb 5.7~rc5-1~exp1 linux-headers-mips32r2eb diff --git a/debian/linux-headers-mips32r2el.maintscript b/debian/linux-headers-mips32r2el.maintscript index a4220b4c22..5a6dd19108 100644 --- a/debian/linux-headers-mips32r2el.maintscript +++ b/debian/linux-headers-mips32r2el.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-headers-mips32r2el linux-headers-6.6.15-mips32r2el 5.7~rc5-1~exp1 linux-headers-mips32r2el +dir_to_symlink /usr/share/doc/linux-headers-mips32r2el linux-headers-6.7.7-mips32r2el 5.7~rc5-1~exp1 linux-headers-mips32r2el diff --git a/debian/linux-headers-mips64r2eb.maintscript b/debian/linux-headers-mips64r2eb.maintscript index 8d44d38202..6d7111fdaf 100644 --- a/debian/linux-headers-mips64r2eb.maintscript +++ b/debian/linux-headers-mips64r2eb.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-headers-mips64r2eb linux-headers-6.6.15-mips64r2eb 5.7~rc5-1~exp1 linux-headers-mips64r2eb +dir_to_symlink /usr/share/doc/linux-headers-mips64r2eb linux-headers-6.7.7-mips64r2eb 5.7~rc5-1~exp1 linux-headers-mips64r2eb diff --git a/debian/linux-headers-mips64r2el.maintscript b/debian/linux-headers-mips64r2el.maintscript index 75920d3172..c3d834207d 100644 --- a/debian/linux-headers-mips64r2el.maintscript +++ b/debian/linux-headers-mips64r2el.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-headers-mips64r2el linux-headers-6.6.15-mips64r2el 5.7~rc5-1~exp1 linux-headers-mips64r2el +dir_to_symlink /usr/share/doc/linux-headers-mips64r2el linux-headers-6.7.7-mips64r2el 5.7~rc5-1~exp1 linux-headers-mips64r2el diff --git a/debian/linux-headers-mips64r6el.maintscript b/debian/linux-headers-mips64r6el.maintscript index 99a2c1b2d6..e732d5e6f1 100644 --- a/debian/linux-headers-mips64r6el.maintscript +++ b/debian/linux-headers-mips64r6el.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-headers-mips64r6el linux-headers-6.6.15-mips64r6el 5.7~rc5-1~exp1 linux-headers-mips64r6el +dir_to_symlink /usr/share/doc/linux-headers-mips64r6el linux-headers-6.7.7-mips64r6el 5.7~rc5-1~exp1 linux-headers-mips64r6el diff --git a/debian/linux-headers-octeon.maintscript b/debian/linux-headers-octeon.maintscript index 404d2ec85c..561937b873 100644 --- a/debian/linux-headers-octeon.maintscript +++ b/debian/linux-headers-octeon.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-headers-octeon linux-headers-6.6.15-octeon 5.7~rc5-1~exp1 linux-headers-octeon +dir_to_symlink /usr/share/doc/linux-headers-octeon linux-headers-6.7.7-octeon 5.7~rc5-1~exp1 linux-headers-octeon diff --git a/debian/linux-headers-parisc.maintscript b/debian/linux-headers-parisc.maintscript index f98a832f83..cfdff683b1 100644 --- a/debian/linux-headers-parisc.maintscript +++ b/debian/linux-headers-parisc.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-headers-parisc linux-headers-6.6.15-parisc 5.7~rc5-1~exp1 linux-headers-parisc +dir_to_symlink /usr/share/doc/linux-headers-parisc linux-headers-6.7.7-parisc 5.7~rc5-1~exp1 linux-headers-parisc diff --git a/debian/linux-headers-parisc64.maintscript b/debian/linux-headers-parisc64.maintscript index daedd40549..0a6000044f 100644 --- a/debian/linux-headers-parisc64.maintscript +++ b/debian/linux-headers-parisc64.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-headers-parisc64 linux-headers-6.6.15-parisc64 5.7~rc5-1~exp1 linux-headers-parisc64 +dir_to_symlink /usr/share/doc/linux-headers-parisc64 linux-headers-6.7.7-parisc64 5.7~rc5-1~exp1 linux-headers-parisc64 diff --git a/debian/linux-headers-powerpc-smp.maintscript b/debian/linux-headers-powerpc-smp.maintscript index 8ff56494bc..8d5a4b2b0b 100644 --- a/debian/linux-headers-powerpc-smp.maintscript +++ b/debian/linux-headers-powerpc-smp.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-headers-powerpc-smp linux-headers-6.6.15-powerpc-smp 5.7~rc5-1~exp1 linux-headers-powerpc-smp +dir_to_symlink /usr/share/doc/linux-headers-powerpc-smp linux-headers-6.7.7-powerpc-smp 5.7~rc5-1~exp1 linux-headers-powerpc-smp diff --git a/debian/linux-headers-powerpc.maintscript b/debian/linux-headers-powerpc.maintscript index 48c213d394..917965137d 100644 --- a/debian/linux-headers-powerpc.maintscript +++ b/debian/linux-headers-powerpc.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-headers-powerpc linux-headers-6.6.15-powerpc 5.7~rc5-1~exp1 linux-headers-powerpc +dir_to_symlink /usr/share/doc/linux-headers-powerpc linux-headers-6.7.7-powerpc 5.7~rc5-1~exp1 linux-headers-powerpc diff --git a/debian/linux-headers-powerpc64.maintscript b/debian/linux-headers-powerpc64.maintscript index 573a4bff39..9db843db0f 100644 --- a/debian/linux-headers-powerpc64.maintscript +++ b/debian/linux-headers-powerpc64.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-headers-powerpc64 linux-headers-6.6.15-powerpc64 5.7~rc5-1~exp1 linux-headers-powerpc64 +dir_to_symlink /usr/share/doc/linux-headers-powerpc64 linux-headers-6.7.7-powerpc64 5.7~rc5-1~exp1 linux-headers-powerpc64 diff --git a/debian/linux-headers-powerpc64le.maintscript b/debian/linux-headers-powerpc64le.maintscript index 90f79c5b56..097578d581 100644 --- a/debian/linux-headers-powerpc64le.maintscript +++ b/debian/linux-headers-powerpc64le.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-headers-powerpc64le linux-headers-6.6.15-powerpc64le 5.7~rc5-1~exp1 linux-headers-powerpc64le +dir_to_symlink /usr/share/doc/linux-headers-powerpc64le linux-headers-6.7.7-powerpc64le 5.7~rc5-1~exp1 linux-headers-powerpc64le diff --git a/debian/linux-headers-riscv64.maintscript b/debian/linux-headers-riscv64.maintscript index ec31bad145..04945a5273 100644 --- a/debian/linux-headers-riscv64.maintscript +++ b/debian/linux-headers-riscv64.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-headers-riscv64 linux-headers-6.6.15-riscv64 5.7~rc5-1~exp1 linux-headers-riscv64 +dir_to_symlink /usr/share/doc/linux-headers-riscv64 linux-headers-6.7.7-riscv64 5.7~rc5-1~exp1 linux-headers-riscv64 diff --git a/debian/linux-headers-rpi.maintscript b/debian/linux-headers-rpi.maintscript index b4f345e458..4a7f6cbc33 100644 --- a/debian/linux-headers-rpi.maintscript +++ b/debian/linux-headers-rpi.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-headers-rpi linux-headers-6.6.15-rpi 5.7~rc5-1~exp1 linux-headers-rpi +dir_to_symlink /usr/share/doc/linux-headers-rpi linux-headers-6.7.7-rpi 5.7~rc5-1~exp1 linux-headers-rpi diff --git a/debian/linux-headers-rt-686-pae.maintscript b/debian/linux-headers-rt-686-pae.maintscript index 1bc029d8fd..e14e42e76b 100644 --- a/debian/linux-headers-rt-686-pae.maintscript +++ b/debian/linux-headers-rt-686-pae.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-headers-rt-686-pae linux-headers-6.6.15-rt-686-pae 5.7~rc5-1~exp1 linux-headers-rt-686-pae +dir_to_symlink /usr/share/doc/linux-headers-rt-686-pae linux-headers-6.7.7-rt-686-pae 5.7~rc5-1~exp1 linux-headers-rt-686-pae diff --git a/debian/linux-headers-rt-armmp.maintscript b/debian/linux-headers-rt-armmp.maintscript index 7e13184225..14c5053c67 100644 --- a/debian/linux-headers-rt-armmp.maintscript +++ b/debian/linux-headers-rt-armmp.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-headers-rt-armmp linux-headers-6.6.15-rt-armmp 5.7~rc5-1~exp1 linux-headers-rt-armmp +dir_to_symlink /usr/share/doc/linux-headers-rt-armmp linux-headers-6.7.7-rt-armmp 5.7~rc5-1~exp1 linux-headers-rt-armmp diff --git a/debian/linux-headers-s390x.maintscript b/debian/linux-headers-s390x.maintscript index 7587dde8ea..29fa28347d 100644 --- a/debian/linux-headers-s390x.maintscript +++ b/debian/linux-headers-s390x.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-headers-s390x linux-headers-6.6.15-s390x 5.7~rc5-1~exp1 linux-headers-s390x +dir_to_symlink /usr/share/doc/linux-headers-s390x linux-headers-6.7.7-s390x 5.7~rc5-1~exp1 linux-headers-s390x diff --git a/debian/linux-headers-sh7751r.maintscript b/debian/linux-headers-sh7751r.maintscript index 25d674d4bc..860597c8dd 100644 --- a/debian/linux-headers-sh7751r.maintscript +++ b/debian/linux-headers-sh7751r.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-headers-sh7751r linux-headers-6.6.15-sh7751r 5.7~rc5-1~exp1 linux-headers-sh7751r +dir_to_symlink /usr/share/doc/linux-headers-sh7751r linux-headers-6.7.7-sh7751r 5.7~rc5-1~exp1 linux-headers-sh7751r diff --git a/debian/linux-headers-sh7785lcr.maintscript b/debian/linux-headers-sh7785lcr.maintscript index c32253fa24..6c711a46b9 100644 --- a/debian/linux-headers-sh7785lcr.maintscript +++ b/debian/linux-headers-sh7785lcr.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-headers-sh7785lcr linux-headers-6.6.15-sh7785lcr 5.7~rc5-1~exp1 linux-headers-sh7785lcr +dir_to_symlink /usr/share/doc/linux-headers-sh7785lcr linux-headers-6.7.7-sh7785lcr 5.7~rc5-1~exp1 linux-headers-sh7785lcr diff --git a/debian/linux-headers-sparc64-smp.maintscript b/debian/linux-headers-sparc64-smp.maintscript index 19ee87a605..f7fd9ae41c 100644 --- a/debian/linux-headers-sparc64-smp.maintscript +++ b/debian/linux-headers-sparc64-smp.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-headers-sparc64-smp linux-headers-6.6.15-sparc64-smp 5.7~rc5-1~exp1 linux-headers-sparc64-smp +dir_to_symlink /usr/share/doc/linux-headers-sparc64-smp linux-headers-6.7.7-sparc64-smp 5.7~rc5-1~exp1 linux-headers-sparc64-smp diff --git a/debian/linux-headers-sparc64.maintscript b/debian/linux-headers-sparc64.maintscript index 695e641dcc..9700c9aeb6 100644 --- a/debian/linux-headers-sparc64.maintscript +++ b/debian/linux-headers-sparc64.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-headers-sparc64 linux-headers-6.6.15-sparc64 5.7~rc5-1~exp1 linux-headers-sparc64 +dir_to_symlink /usr/share/doc/linux-headers-sparc64 linux-headers-6.7.7-sparc64 5.7~rc5-1~exp1 linux-headers-sparc64 diff --git a/debian/linux-image-4kc-malta-dbg.maintscript b/debian/linux-image-4kc-malta-dbg.maintscript index ab2a8c3ec4..bf306c7bfe 100644 --- a/debian/linux-image-4kc-malta-dbg.maintscript +++ b/debian/linux-image-4kc-malta-dbg.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-4kc-malta-dbg linux-image-6.6.15-4kc-malta-dbg 5.7~rc5-1~exp1 linux-image-4kc-malta-dbg +dir_to_symlink /usr/share/doc/linux-image-4kc-malta-dbg linux-image-6.7.7-4kc-malta-dbg 5.7~rc5-1~exp1 linux-image-4kc-malta-dbg diff --git a/debian/linux-image-4kc-malta.bug-presubj b/debian/linux-image-4kc-malta.bug-presubj index c44266d805..a36d333721 100644 --- a/debian/linux-image-4kc-malta.bug-presubj +++ b/debian/linux-image-4kc-malta.bug-presubj @@ -2,4 +2,4 @@ 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-6.6.15-4kc-malta instead. +the package name linux-image-6.7.7-4kc-malta instead. diff --git a/debian/linux-image-4kc-malta.maintscript b/debian/linux-image-4kc-malta.maintscript index 2a8c7fc405..c934ce6608 100644 --- a/debian/linux-image-4kc-malta.maintscript +++ b/debian/linux-image-4kc-malta.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-4kc-malta linux-image-6.6.15-4kc-malta 5.7~rc5-1~exp1 linux-image-4kc-malta +dir_to_symlink /usr/share/doc/linux-image-4kc-malta linux-image-6.7.7-4kc-malta 5.7~rc5-1~exp1 linux-image-4kc-malta diff --git a/debian/linux-image-5kc-malta-dbg.maintscript b/debian/linux-image-5kc-malta-dbg.maintscript index 67bf4eca72..81074b6480 100644 --- a/debian/linux-image-5kc-malta-dbg.maintscript +++ b/debian/linux-image-5kc-malta-dbg.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-5kc-malta-dbg linux-image-6.6.15-5kc-malta-dbg 5.7~rc5-1~exp1 linux-image-5kc-malta-dbg +dir_to_symlink /usr/share/doc/linux-image-5kc-malta-dbg linux-image-6.7.7-5kc-malta-dbg 5.7~rc5-1~exp1 linux-image-5kc-malta-dbg diff --git a/debian/linux-image-5kc-malta.bug-presubj b/debian/linux-image-5kc-malta.bug-presubj index 39c7e88a0a..ca90321e11 100644 --- a/debian/linux-image-5kc-malta.bug-presubj +++ b/debian/linux-image-5kc-malta.bug-presubj @@ -2,4 +2,4 @@ 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-6.6.15-5kc-malta instead. +the package name linux-image-6.7.7-5kc-malta instead. diff --git a/debian/linux-image-5kc-malta.maintscript b/debian/linux-image-5kc-malta.maintscript index 7afadf4063..2c5de56d2e 100644 --- a/debian/linux-image-5kc-malta.maintscript +++ b/debian/linux-image-5kc-malta.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-5kc-malta linux-image-6.6.15-5kc-malta 5.7~rc5-1~exp1 linux-image-5kc-malta +dir_to_symlink /usr/share/doc/linux-image-5kc-malta linux-image-6.7.7-5kc-malta 5.7~rc5-1~exp1 linux-image-5kc-malta diff --git a/debian/linux-image-6.6.15-4kc-malta.postinst b/debian/linux-image-6.6.15-4kc-malta.postinst deleted file mode 100644 index 7d11a4628d..0000000000 --- a/debian/linux-image-6.6.15-4kc-malta.postinst +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-4kc-malta -image_path=/boot/vmlinuz-$version - -if [ "$1" != configure ]; then - exit 0 -fi - -depmod $version - -if [ -f /lib/modules/$version/.fresh-install ]; then - change=install -else - change=upgrade -fi -linux-update-symlinks $change $version $image_path -rm -f /lib/modules/$version/.fresh-install - -if [ -d /etc/kernel/postinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-4kc-malta.postrm b/debian/linux-image-6.6.15-4kc-malta.postrm deleted file mode 100644 index 116da04ed4..0000000000 --- a/debian/linux-image-6.6.15-4kc-malta.postrm +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-4kc-malta -image_path=/boot/vmlinuz-$version - -rm -f /lib/modules/$version/.fresh-install - -if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then - linux-update-symlinks remove $version $image_path -fi - -if [ -d /etc/kernel/postrm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postrm.d -fi - -if [ "$1" = purge ]; then - for extra_file in modules.dep modules.isapnpmap modules.pcimap \ - modules.usbmap modules.parportmap \ - modules.generic_string modules.ieee1394map \ - modules.ieee1394map modules.pnpbiosmap \ - modules.alias modules.ccwmap modules.inputmap \ - modules.symbols modules.ofmap \ - modules.seriomap modules.\*.bin \ - modules.softdep modules.devname; do - eval rm -f /lib/modules/$version/$extra_file - done - rmdir /lib/modules/$version || true -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-4kc-malta.preinst b/debian/linux-image-6.6.15-4kc-malta.preinst deleted file mode 100644 index 7a39c34fbe..0000000000 --- a/debian/linux-image-6.6.15-4kc-malta.preinst +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-4kc-malta -image_path=/boot/vmlinuz-$version - -if [ "$1" = abort-upgrade ]; then - exit 0 -fi - -if [ "$1" = install ]; then - # Create a flag file for postinst - mkdir -p /lib/modules/$version - touch /lib/modules/$version/.fresh-install -fi - -if [ -d /etc/kernel/preinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/preinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-4kc-malta.prerm b/debian/linux-image-6.6.15-4kc-malta.prerm deleted file mode 100644 index 83e6eb0ef2..0000000000 --- a/debian/linux-image-6.6.15-4kc-malta.prerm +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-4kc-malta -image_path=/boot/vmlinuz-$version - -if [ "$1" != remove ]; then - exit 0 -fi - -linux-check-removal $version - -if [ -d /etc/kernel/prerm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/prerm.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-5kc-malta.postinst b/debian/linux-image-6.6.15-5kc-malta.postinst deleted file mode 100644 index 578dec7806..0000000000 --- a/debian/linux-image-6.6.15-5kc-malta.postinst +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-5kc-malta -image_path=/boot/vmlinuz-$version - -if [ "$1" != configure ]; then - exit 0 -fi - -depmod $version - -if [ -f /lib/modules/$version/.fresh-install ]; then - change=install -else - change=upgrade -fi -linux-update-symlinks $change $version $image_path -rm -f /lib/modules/$version/.fresh-install - -if [ -d /etc/kernel/postinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-5kc-malta.postrm b/debian/linux-image-6.6.15-5kc-malta.postrm deleted file mode 100644 index 548125a961..0000000000 --- a/debian/linux-image-6.6.15-5kc-malta.postrm +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-5kc-malta -image_path=/boot/vmlinuz-$version - -rm -f /lib/modules/$version/.fresh-install - -if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then - linux-update-symlinks remove $version $image_path -fi - -if [ -d /etc/kernel/postrm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postrm.d -fi - -if [ "$1" = purge ]; then - for extra_file in modules.dep modules.isapnpmap modules.pcimap \ - modules.usbmap modules.parportmap \ - modules.generic_string modules.ieee1394map \ - modules.ieee1394map modules.pnpbiosmap \ - modules.alias modules.ccwmap modules.inputmap \ - modules.symbols modules.ofmap \ - modules.seriomap modules.\*.bin \ - modules.softdep modules.devname; do - eval rm -f /lib/modules/$version/$extra_file - done - rmdir /lib/modules/$version || true -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-5kc-malta.preinst b/debian/linux-image-6.6.15-5kc-malta.preinst deleted file mode 100644 index 75303eb718..0000000000 --- a/debian/linux-image-6.6.15-5kc-malta.preinst +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-5kc-malta -image_path=/boot/vmlinuz-$version - -if [ "$1" = abort-upgrade ]; then - exit 0 -fi - -if [ "$1" = install ]; then - # Create a flag file for postinst - mkdir -p /lib/modules/$version - touch /lib/modules/$version/.fresh-install -fi - -if [ -d /etc/kernel/preinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/preinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-5kc-malta.prerm b/debian/linux-image-6.6.15-5kc-malta.prerm deleted file mode 100644 index 7bf37a57de..0000000000 --- a/debian/linux-image-6.6.15-5kc-malta.prerm +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-5kc-malta -image_path=/boot/vmlinuz-$version - -if [ "$1" != remove ]; then - exit 0 -fi - -linux-check-removal $version - -if [ -d /etc/kernel/prerm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/prerm.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-alpha-generic.postinst b/debian/linux-image-6.6.15-alpha-generic.postinst deleted file mode 100644 index 15d2ee18d9..0000000000 --- a/debian/linux-image-6.6.15-alpha-generic.postinst +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-alpha-generic -image_path=/boot/vmlinuz-$version - -if [ "$1" != configure ]; then - exit 0 -fi - -depmod $version - -if [ -f /lib/modules/$version/.fresh-install ]; then - change=install -else - change=upgrade -fi -linux-update-symlinks $change $version $image_path -rm -f /lib/modules/$version/.fresh-install - -if [ -d /etc/kernel/postinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-alpha-generic.postrm b/debian/linux-image-6.6.15-alpha-generic.postrm deleted file mode 100644 index 7619756106..0000000000 --- a/debian/linux-image-6.6.15-alpha-generic.postrm +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-alpha-generic -image_path=/boot/vmlinuz-$version - -rm -f /lib/modules/$version/.fresh-install - -if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then - linux-update-symlinks remove $version $image_path -fi - -if [ -d /etc/kernel/postrm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postrm.d -fi - -if [ "$1" = purge ]; then - for extra_file in modules.dep modules.isapnpmap modules.pcimap \ - modules.usbmap modules.parportmap \ - modules.generic_string modules.ieee1394map \ - modules.ieee1394map modules.pnpbiosmap \ - modules.alias modules.ccwmap modules.inputmap \ - modules.symbols modules.ofmap \ - modules.seriomap modules.\*.bin \ - modules.softdep modules.devname; do - eval rm -f /lib/modules/$version/$extra_file - done - rmdir /lib/modules/$version || true -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-alpha-generic.preinst b/debian/linux-image-6.6.15-alpha-generic.preinst deleted file mode 100644 index f538a3b8b2..0000000000 --- a/debian/linux-image-6.6.15-alpha-generic.preinst +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-alpha-generic -image_path=/boot/vmlinuz-$version - -if [ "$1" = abort-upgrade ]; then - exit 0 -fi - -if [ "$1" = install ]; then - # Create a flag file for postinst - mkdir -p /lib/modules/$version - touch /lib/modules/$version/.fresh-install -fi - -if [ -d /etc/kernel/preinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/preinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-alpha-generic.prerm b/debian/linux-image-6.6.15-alpha-generic.prerm deleted file mode 100644 index 35789574da..0000000000 --- a/debian/linux-image-6.6.15-alpha-generic.prerm +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-alpha-generic -image_path=/boot/vmlinuz-$version - -if [ "$1" != remove ]; then - exit 0 -fi - -linux-check-removal $version - -if [ -d /etc/kernel/prerm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/prerm.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-alpha-smp.postinst b/debian/linux-image-6.6.15-alpha-smp.postinst deleted file mode 100644 index 333de1b604..0000000000 --- a/debian/linux-image-6.6.15-alpha-smp.postinst +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-alpha-smp -image_path=/boot/vmlinuz-$version - -if [ "$1" != configure ]; then - exit 0 -fi - -depmod $version - -if [ -f /lib/modules/$version/.fresh-install ]; then - change=install -else - change=upgrade -fi -linux-update-symlinks $change $version $image_path -rm -f /lib/modules/$version/.fresh-install - -if [ -d /etc/kernel/postinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-alpha-smp.postrm b/debian/linux-image-6.6.15-alpha-smp.postrm deleted file mode 100644 index 70118f61fd..0000000000 --- a/debian/linux-image-6.6.15-alpha-smp.postrm +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-alpha-smp -image_path=/boot/vmlinuz-$version - -rm -f /lib/modules/$version/.fresh-install - -if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then - linux-update-symlinks remove $version $image_path -fi - -if [ -d /etc/kernel/postrm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postrm.d -fi - -if [ "$1" = purge ]; then - for extra_file in modules.dep modules.isapnpmap modules.pcimap \ - modules.usbmap modules.parportmap \ - modules.generic_string modules.ieee1394map \ - modules.ieee1394map modules.pnpbiosmap \ - modules.alias modules.ccwmap modules.inputmap \ - modules.symbols modules.ofmap \ - modules.seriomap modules.\*.bin \ - modules.softdep modules.devname; do - eval rm -f /lib/modules/$version/$extra_file - done - rmdir /lib/modules/$version || true -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-alpha-smp.preinst b/debian/linux-image-6.6.15-alpha-smp.preinst deleted file mode 100644 index 9c1660dec8..0000000000 --- a/debian/linux-image-6.6.15-alpha-smp.preinst +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-alpha-smp -image_path=/boot/vmlinuz-$version - -if [ "$1" = abort-upgrade ]; then - exit 0 -fi - -if [ "$1" = install ]; then - # Create a flag file for postinst - mkdir -p /lib/modules/$version - touch /lib/modules/$version/.fresh-install -fi - -if [ -d /etc/kernel/preinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/preinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-alpha-smp.prerm b/debian/linux-image-6.6.15-alpha-smp.prerm deleted file mode 100644 index 6decea5e12..0000000000 --- a/debian/linux-image-6.6.15-alpha-smp.prerm +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-alpha-smp -image_path=/boot/vmlinuz-$version - -if [ "$1" != remove ]; then - exit 0 -fi - -linux-check-removal $version - -if [ -d /etc/kernel/prerm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/prerm.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-amd64-dbg.lintian-overrides b/debian/linux-image-6.6.15-amd64-dbg.lintian-overrides deleted file mode 100644 index 56877161fd..0000000000 --- a/debian/linux-image-6.6.15-amd64-dbg.lintian-overrides +++ /dev/null @@ -1,15 +0,0 @@ -# Kernel dbg packages contain a full image with debug data -linux-image-6.6.15-amd64-dbg: dbg-package-missing-depends - -# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so -# it's OK that they don't have it -linux-image-6.6.15-amd64-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.6.15-amd64/vdso/vdso32.so* -linux-image-6.6.15-amd64-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.6.15-amd64/vdso/vdso64.so* -linux-image-6.6.15-amd64-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.6.15-amd64/vdso/vdsox32.so* - -# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. -# lintian currently allows i386 executables on amd64. -linux-image-6.6.15-amd64-dbg: binary-from-other-architecture *usr/lib/debug/lib/modules/6.6.15-amd64/vdso/vdsox32.so* - -# Some 32-bit architectures need 64-bit kernels and we still build -# these as the "wrong" architecture rather than mandating multiarch. diff --git a/debian/linux-image-6.6.15-arm64-dbg.lintian-overrides b/debian/linux-image-6.6.15-arm64-dbg.lintian-overrides deleted file mode 100644 index 76ae93fc4e..0000000000 --- a/debian/linux-image-6.6.15-arm64-dbg.lintian-overrides +++ /dev/null @@ -1,14 +0,0 @@ -# Kernel dbg packages contain a full image with debug data -linux-image-6.6.15-arm64-dbg: dbg-package-missing-depends - -# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so -# it's OK that they don't have it -linux-image-6.6.15-arm64-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.6.15-arm64/vdso/vdso.so* -linux-image-6.6.15-arm64-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.6.15-arm64/vdso/vdso32.so* - -# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. -# lintian currently allows i386 executables on amd64. -linux-image-6.6.15-arm64-dbg: binary-from-other-architecture *usr/lib/debug/lib/modules/6.6.15-arm64/vdso/vdso32.so* - -# Some 32-bit architectures need 64-bit kernels and we still build -# these as the "wrong" architecture rather than mandating multiarch. diff --git a/debian/linux-image-6.6.15-arm64-unsigned.postinst b/debian/linux-image-6.6.15-arm64-unsigned.postinst deleted file mode 100644 index f8c92e5e04..0000000000 --- a/debian/linux-image-6.6.15-arm64-unsigned.postinst +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-arm64 -image_path=/boot/vmlinuz-$version - -if [ "$1" != configure ]; then - exit 0 -fi - -depmod $version - -if [ -f /lib/modules/$version/.fresh-install ]; then - change=install -else - change=upgrade -fi -linux-update-symlinks $change $version $image_path -rm -f /lib/modules/$version/.fresh-install - -if [ -d /etc/kernel/postinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-arm64-unsigned.postrm b/debian/linux-image-6.6.15-arm64-unsigned.postrm deleted file mode 100644 index d2dc6d7963..0000000000 --- a/debian/linux-image-6.6.15-arm64-unsigned.postrm +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-arm64 -image_path=/boot/vmlinuz-$version - -rm -f /lib/modules/$version/.fresh-install - -if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then - linux-update-symlinks remove $version $image_path -fi - -if [ -d /etc/kernel/postrm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postrm.d -fi - -if [ "$1" = purge ]; then - for extra_file in modules.dep modules.isapnpmap modules.pcimap \ - modules.usbmap modules.parportmap \ - modules.generic_string modules.ieee1394map \ - modules.ieee1394map modules.pnpbiosmap \ - modules.alias modules.ccwmap modules.inputmap \ - modules.symbols modules.ofmap \ - modules.seriomap modules.\*.bin \ - modules.softdep modules.devname; do - eval rm -f /lib/modules/$version/$extra_file - done - rmdir /lib/modules/$version || true -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-arm64-unsigned.preinst b/debian/linux-image-6.6.15-arm64-unsigned.preinst deleted file mode 100644 index 76deed2762..0000000000 --- a/debian/linux-image-6.6.15-arm64-unsigned.preinst +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-arm64 -image_path=/boot/vmlinuz-$version - -if [ "$1" = abort-upgrade ]; then - exit 0 -fi - -if [ "$1" = install ]; then - # Create a flag file for postinst - mkdir -p /lib/modules/$version - touch /lib/modules/$version/.fresh-install -fi - -if [ -d /etc/kernel/preinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/preinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-arm64-unsigned.prerm b/debian/linux-image-6.6.15-arm64-unsigned.prerm deleted file mode 100644 index f43fba1b25..0000000000 --- a/debian/linux-image-6.6.15-arm64-unsigned.prerm +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-arm64 -image_path=/boot/vmlinuz-$version - -if [ "$1" != remove ]; then - exit 0 -fi - -linux-check-removal $version - -if [ -d /etc/kernel/prerm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/prerm.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-armmp-dbg.lintian-overrides b/debian/linux-image-6.6.15-armmp-dbg.lintian-overrides deleted file mode 100644 index 168b47b9c1..0000000000 --- a/debian/linux-image-6.6.15-armmp-dbg.lintian-overrides +++ /dev/null @@ -1,12 +0,0 @@ -# Kernel dbg packages contain a full image with debug data -linux-image-6.6.15-armmp-dbg: dbg-package-missing-depends - -# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so -# it's OK that they don't have it -linux-image-6.6.15-armmp-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.6.15-armmp/vdso/vdso.so* - -# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. -# lintian currently allows i386 executables on amd64. - -# Some 32-bit architectures need 64-bit kernels and we still build -# these as the "wrong" architecture rather than mandating multiarch. diff --git a/debian/linux-image-6.6.15-armmp-lpae.postinst b/debian/linux-image-6.6.15-armmp-lpae.postinst deleted file mode 100644 index 2a58b17503..0000000000 --- a/debian/linux-image-6.6.15-armmp-lpae.postinst +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-armmp-lpae -image_path=/boot/vmlinuz-$version - -if [ "$1" != configure ]; then - exit 0 -fi - -depmod $version - -if [ -f /lib/modules/$version/.fresh-install ]; then - change=install -else - change=upgrade -fi -linux-update-symlinks $change $version $image_path -rm -f /lib/modules/$version/.fresh-install - -if [ -d /etc/kernel/postinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-armmp-lpae.postrm b/debian/linux-image-6.6.15-armmp-lpae.postrm deleted file mode 100644 index 9a8d17b54a..0000000000 --- a/debian/linux-image-6.6.15-armmp-lpae.postrm +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-armmp-lpae -image_path=/boot/vmlinuz-$version - -rm -f /lib/modules/$version/.fresh-install - -if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then - linux-update-symlinks remove $version $image_path -fi - -if [ -d /etc/kernel/postrm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postrm.d -fi - -if [ "$1" = purge ]; then - for extra_file in modules.dep modules.isapnpmap modules.pcimap \ - modules.usbmap modules.parportmap \ - modules.generic_string modules.ieee1394map \ - modules.ieee1394map modules.pnpbiosmap \ - modules.alias modules.ccwmap modules.inputmap \ - modules.symbols modules.ofmap \ - modules.seriomap modules.\*.bin \ - modules.softdep modules.devname; do - eval rm -f /lib/modules/$version/$extra_file - done - rmdir /lib/modules/$version || true -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-armmp-lpae.preinst b/debian/linux-image-6.6.15-armmp-lpae.preinst deleted file mode 100644 index 608662acbc..0000000000 --- a/debian/linux-image-6.6.15-armmp-lpae.preinst +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-armmp-lpae -image_path=/boot/vmlinuz-$version - -if [ "$1" = abort-upgrade ]; then - exit 0 -fi - -if [ "$1" = install ]; then - # Create a flag file for postinst - mkdir -p /lib/modules/$version - touch /lib/modules/$version/.fresh-install -fi - -if [ -d /etc/kernel/preinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/preinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-armmp-lpae.prerm b/debian/linux-image-6.6.15-armmp-lpae.prerm deleted file mode 100644 index 9f21a4b1b8..0000000000 --- a/debian/linux-image-6.6.15-armmp-lpae.prerm +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-armmp-lpae -image_path=/boot/vmlinuz-$version - -if [ "$1" != remove ]; then - exit 0 -fi - -linux-check-removal $version - -if [ -d /etc/kernel/prerm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/prerm.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-armmp.postinst b/debian/linux-image-6.6.15-armmp.postinst deleted file mode 100644 index 912d41d9fb..0000000000 --- a/debian/linux-image-6.6.15-armmp.postinst +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-armmp -image_path=/boot/vmlinuz-$version - -if [ "$1" != configure ]; then - exit 0 -fi - -depmod $version - -if [ -f /lib/modules/$version/.fresh-install ]; then - change=install -else - change=upgrade -fi -linux-update-symlinks $change $version $image_path -rm -f /lib/modules/$version/.fresh-install - -if [ -d /etc/kernel/postinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-armmp.postrm b/debian/linux-image-6.6.15-armmp.postrm deleted file mode 100644 index 25b6e69e1e..0000000000 --- a/debian/linux-image-6.6.15-armmp.postrm +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-armmp -image_path=/boot/vmlinuz-$version - -rm -f /lib/modules/$version/.fresh-install - -if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then - linux-update-symlinks remove $version $image_path -fi - -if [ -d /etc/kernel/postrm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postrm.d -fi - -if [ "$1" = purge ]; then - for extra_file in modules.dep modules.isapnpmap modules.pcimap \ - modules.usbmap modules.parportmap \ - modules.generic_string modules.ieee1394map \ - modules.ieee1394map modules.pnpbiosmap \ - modules.alias modules.ccwmap modules.inputmap \ - modules.symbols modules.ofmap \ - modules.seriomap modules.\*.bin \ - modules.softdep modules.devname; do - eval rm -f /lib/modules/$version/$extra_file - done - rmdir /lib/modules/$version || true -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-armmp.preinst b/debian/linux-image-6.6.15-armmp.preinst deleted file mode 100644 index ca73914532..0000000000 --- a/debian/linux-image-6.6.15-armmp.preinst +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-armmp -image_path=/boot/vmlinuz-$version - -if [ "$1" = abort-upgrade ]; then - exit 0 -fi - -if [ "$1" = install ]; then - # Create a flag file for postinst - mkdir -p /lib/modules/$version - touch /lib/modules/$version/.fresh-install -fi - -if [ -d /etc/kernel/preinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/preinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-armmp.prerm b/debian/linux-image-6.6.15-armmp.prerm deleted file mode 100644 index 2dddede29d..0000000000 --- a/debian/linux-image-6.6.15-armmp.prerm +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-armmp -image_path=/boot/vmlinuz-$version - -if [ "$1" != remove ]; then - exit 0 -fi - -linux-check-removal $version - -if [ -d /etc/kernel/prerm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/prerm.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-cloud-amd64-dbg.lintian-overrides b/debian/linux-image-6.6.15-cloud-amd64-dbg.lintian-overrides deleted file mode 100644 index 99c6bb8482..0000000000 --- a/debian/linux-image-6.6.15-cloud-amd64-dbg.lintian-overrides +++ /dev/null @@ -1,15 +0,0 @@ -# Kernel dbg packages contain a full image with debug data -linux-image-6.6.15-cloud-amd64-dbg: dbg-package-missing-depends - -# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so -# it's OK that they don't have it -linux-image-6.6.15-cloud-amd64-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.6.15-cloud-amd64/vdso/vdso32.so* -linux-image-6.6.15-cloud-amd64-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.6.15-cloud-amd64/vdso/vdso64.so* -linux-image-6.6.15-cloud-amd64-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.6.15-cloud-amd64/vdso/vdsox32.so* - -# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. -# lintian currently allows i386 executables on amd64. -linux-image-6.6.15-cloud-amd64-dbg: binary-from-other-architecture *usr/lib/debug/lib/modules/6.6.15-cloud-amd64/vdso/vdsox32.so* - -# Some 32-bit architectures need 64-bit kernels and we still build -# these as the "wrong" architecture rather than mandating multiarch. diff --git a/debian/linux-image-6.6.15-cloud-amd64-unsigned.postinst b/debian/linux-image-6.6.15-cloud-amd64-unsigned.postinst deleted file mode 100644 index 9608036561..0000000000 --- a/debian/linux-image-6.6.15-cloud-amd64-unsigned.postinst +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-cloud-amd64 -image_path=/boot/vmlinuz-$version - -if [ "$1" != configure ]; then - exit 0 -fi - -depmod $version - -if [ -f /lib/modules/$version/.fresh-install ]; then - change=install -else - change=upgrade -fi -linux-update-symlinks $change $version $image_path -rm -f /lib/modules/$version/.fresh-install - -if [ -d /etc/kernel/postinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-cloud-amd64-unsigned.postrm b/debian/linux-image-6.6.15-cloud-amd64-unsigned.postrm deleted file mode 100644 index 4edf0e0e55..0000000000 --- a/debian/linux-image-6.6.15-cloud-amd64-unsigned.postrm +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-cloud-amd64 -image_path=/boot/vmlinuz-$version - -rm -f /lib/modules/$version/.fresh-install - -if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then - linux-update-symlinks remove $version $image_path -fi - -if [ -d /etc/kernel/postrm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postrm.d -fi - -if [ "$1" = purge ]; then - for extra_file in modules.dep modules.isapnpmap modules.pcimap \ - modules.usbmap modules.parportmap \ - modules.generic_string modules.ieee1394map \ - modules.ieee1394map modules.pnpbiosmap \ - modules.alias modules.ccwmap modules.inputmap \ - modules.symbols modules.ofmap \ - modules.seriomap modules.\*.bin \ - modules.softdep modules.devname; do - eval rm -f /lib/modules/$version/$extra_file - done - rmdir /lib/modules/$version || true -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-cloud-amd64-unsigned.preinst b/debian/linux-image-6.6.15-cloud-amd64-unsigned.preinst deleted file mode 100644 index b51902f932..0000000000 --- a/debian/linux-image-6.6.15-cloud-amd64-unsigned.preinst +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-cloud-amd64 -image_path=/boot/vmlinuz-$version - -if [ "$1" = abort-upgrade ]; then - exit 0 -fi - -if [ "$1" = install ]; then - # Create a flag file for postinst - mkdir -p /lib/modules/$version - touch /lib/modules/$version/.fresh-install -fi - -if [ -d /etc/kernel/preinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/preinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-cloud-amd64-unsigned.prerm b/debian/linux-image-6.6.15-cloud-amd64-unsigned.prerm deleted file mode 100644 index 4938f371ef..0000000000 --- a/debian/linux-image-6.6.15-cloud-amd64-unsigned.prerm +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-cloud-amd64 -image_path=/boot/vmlinuz-$version - -if [ "$1" != remove ]; then - exit 0 -fi - -linux-check-removal $version - -if [ -d /etc/kernel/prerm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/prerm.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-cloud-arm64-dbg.lintian-overrides b/debian/linux-image-6.6.15-cloud-arm64-dbg.lintian-overrides deleted file mode 100644 index 769170e80a..0000000000 --- a/debian/linux-image-6.6.15-cloud-arm64-dbg.lintian-overrides +++ /dev/null @@ -1,14 +0,0 @@ -# Kernel dbg packages contain a full image with debug data -linux-image-6.6.15-cloud-arm64-dbg: dbg-package-missing-depends - -# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so -# it's OK that they don't have it -linux-image-6.6.15-cloud-arm64-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.6.15-cloud-arm64/vdso/vdso.so* -linux-image-6.6.15-cloud-arm64-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.6.15-cloud-arm64/vdso/vdso32.so* - -# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. -# lintian currently allows i386 executables on amd64. -linux-image-6.6.15-cloud-arm64-dbg: binary-from-other-architecture *usr/lib/debug/lib/modules/6.6.15-cloud-arm64/vdso/vdso32.so* - -# Some 32-bit architectures need 64-bit kernels and we still build -# these as the "wrong" architecture rather than mandating multiarch. diff --git a/debian/linux-image-6.6.15-cloud-arm64-unsigned.postinst b/debian/linux-image-6.6.15-cloud-arm64-unsigned.postinst deleted file mode 100644 index 72c2fbde50..0000000000 --- a/debian/linux-image-6.6.15-cloud-arm64-unsigned.postinst +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-cloud-arm64 -image_path=/boot/vmlinuz-$version - -if [ "$1" != configure ]; then - exit 0 -fi - -depmod $version - -if [ -f /lib/modules/$version/.fresh-install ]; then - change=install -else - change=upgrade -fi -linux-update-symlinks $change $version $image_path -rm -f /lib/modules/$version/.fresh-install - -if [ -d /etc/kernel/postinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-cloud-arm64-unsigned.postrm b/debian/linux-image-6.6.15-cloud-arm64-unsigned.postrm deleted file mode 100644 index 0aa77d6eae..0000000000 --- a/debian/linux-image-6.6.15-cloud-arm64-unsigned.postrm +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-cloud-arm64 -image_path=/boot/vmlinuz-$version - -rm -f /lib/modules/$version/.fresh-install - -if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then - linux-update-symlinks remove $version $image_path -fi - -if [ -d /etc/kernel/postrm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postrm.d -fi - -if [ "$1" = purge ]; then - for extra_file in modules.dep modules.isapnpmap modules.pcimap \ - modules.usbmap modules.parportmap \ - modules.generic_string modules.ieee1394map \ - modules.ieee1394map modules.pnpbiosmap \ - modules.alias modules.ccwmap modules.inputmap \ - modules.symbols modules.ofmap \ - modules.seriomap modules.\*.bin \ - modules.softdep modules.devname; do - eval rm -f /lib/modules/$version/$extra_file - done - rmdir /lib/modules/$version || true -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-cloud-arm64-unsigned.preinst b/debian/linux-image-6.6.15-cloud-arm64-unsigned.preinst deleted file mode 100644 index c4724afb71..0000000000 --- a/debian/linux-image-6.6.15-cloud-arm64-unsigned.preinst +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-cloud-arm64 -image_path=/boot/vmlinuz-$version - -if [ "$1" = abort-upgrade ]; then - exit 0 -fi - -if [ "$1" = install ]; then - # Create a flag file for postinst - mkdir -p /lib/modules/$version - touch /lib/modules/$version/.fresh-install -fi - -if [ -d /etc/kernel/preinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/preinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-cloud-arm64-unsigned.prerm b/debian/linux-image-6.6.15-cloud-arm64-unsigned.prerm deleted file mode 100644 index d7a4196216..0000000000 --- a/debian/linux-image-6.6.15-cloud-arm64-unsigned.prerm +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-cloud-arm64 -image_path=/boot/vmlinuz-$version - -if [ "$1" != remove ]; then - exit 0 -fi - -linux-check-removal $version - -if [ -d /etc/kernel/prerm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/prerm.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-itanium.postinst b/debian/linux-image-6.6.15-itanium.postinst deleted file mode 100644 index 670cf00343..0000000000 --- a/debian/linux-image-6.6.15-itanium.postinst +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-itanium -image_path=/boot/vmlinuz-$version - -if [ "$1" != configure ]; then - exit 0 -fi - -depmod $version - -if [ -f /lib/modules/$version/.fresh-install ]; then - change=install -else - change=upgrade -fi -linux-update-symlinks $change $version $image_path -rm -f /lib/modules/$version/.fresh-install - -if [ -d /etc/kernel/postinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-itanium.postrm b/debian/linux-image-6.6.15-itanium.postrm deleted file mode 100644 index 23f223f3de..0000000000 --- a/debian/linux-image-6.6.15-itanium.postrm +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-itanium -image_path=/boot/vmlinuz-$version - -rm -f /lib/modules/$version/.fresh-install - -if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then - linux-update-symlinks remove $version $image_path -fi - -if [ -d /etc/kernel/postrm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postrm.d -fi - -if [ "$1" = purge ]; then - for extra_file in modules.dep modules.isapnpmap modules.pcimap \ - modules.usbmap modules.parportmap \ - modules.generic_string modules.ieee1394map \ - modules.ieee1394map modules.pnpbiosmap \ - modules.alias modules.ccwmap modules.inputmap \ - modules.symbols modules.ofmap \ - modules.seriomap modules.\*.bin \ - modules.softdep modules.devname; do - eval rm -f /lib/modules/$version/$extra_file - done - rmdir /lib/modules/$version || true -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-itanium.preinst b/debian/linux-image-6.6.15-itanium.preinst deleted file mode 100644 index fb13d00e01..0000000000 --- a/debian/linux-image-6.6.15-itanium.preinst +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-itanium -image_path=/boot/vmlinuz-$version - -if [ "$1" = abort-upgrade ]; then - exit 0 -fi - -if [ "$1" = install ]; then - # Create a flag file for postinst - mkdir -p /lib/modules/$version - touch /lib/modules/$version/.fresh-install -fi - -if [ -d /etc/kernel/preinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/preinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-itanium.prerm b/debian/linux-image-6.6.15-itanium.prerm deleted file mode 100644 index 84344fa064..0000000000 --- a/debian/linux-image-6.6.15-itanium.prerm +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-itanium -image_path=/boot/vmlinuz-$version - -if [ "$1" != remove ]; then - exit 0 -fi - -linux-check-removal $version - -if [ -d /etc/kernel/prerm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/prerm.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-loongson-3.lintian-overrides b/debian/linux-image-6.6.15-loongson-3.lintian-overrides deleted file mode 100644 index f2960f2fc4..0000000000 --- a/debian/linux-image-6.6.15-loongson-3.lintian-overrides +++ /dev/null @@ -1,7 +0,0 @@ -# Some 32-bit architectures need 64-bit kernels and we still build -# these as the "wrong" architecture rather than mandating multiarch. -linux-image-6.6.15-loongson-3: binary-from-other-architecture *boot/vmlinu* -linux-image-6.6.15-loongson-3: binary-from-other-architecture *lib/modules/* - -# vmlinux needs extra sections that would normally be stripped. -linux-image-6.6.15-loongson-3: unstripped-binary-or-object *boot/vmlinu* diff --git a/debian/linux-image-6.6.15-loongson-3.postinst b/debian/linux-image-6.6.15-loongson-3.postinst deleted file mode 100644 index 8f131c98cc..0000000000 --- a/debian/linux-image-6.6.15-loongson-3.postinst +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-loongson-3 -image_path=/boot/vmlinuz-$version - -if [ "$1" != configure ]; then - exit 0 -fi - -depmod $version - -if [ -f /lib/modules/$version/.fresh-install ]; then - change=install -else - change=upgrade -fi -linux-update-symlinks $change $version $image_path -rm -f /lib/modules/$version/.fresh-install - -if [ -d /etc/kernel/postinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-loongson-3.postrm b/debian/linux-image-6.6.15-loongson-3.postrm deleted file mode 100644 index 369790246d..0000000000 --- a/debian/linux-image-6.6.15-loongson-3.postrm +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-loongson-3 -image_path=/boot/vmlinuz-$version - -rm -f /lib/modules/$version/.fresh-install - -if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then - linux-update-symlinks remove $version $image_path -fi - -if [ -d /etc/kernel/postrm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postrm.d -fi - -if [ "$1" = purge ]; then - for extra_file in modules.dep modules.isapnpmap modules.pcimap \ - modules.usbmap modules.parportmap \ - modules.generic_string modules.ieee1394map \ - modules.ieee1394map modules.pnpbiosmap \ - modules.alias modules.ccwmap modules.inputmap \ - modules.symbols modules.ofmap \ - modules.seriomap modules.\*.bin \ - modules.softdep modules.devname; do - eval rm -f /lib/modules/$version/$extra_file - done - rmdir /lib/modules/$version || true -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-loongson-3.preinst b/debian/linux-image-6.6.15-loongson-3.preinst deleted file mode 100644 index cf55559008..0000000000 --- a/debian/linux-image-6.6.15-loongson-3.preinst +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-loongson-3 -image_path=/boot/vmlinuz-$version - -if [ "$1" = abort-upgrade ]; then - exit 0 -fi - -if [ "$1" = install ]; then - # Create a flag file for postinst - mkdir -p /lib/modules/$version - touch /lib/modules/$version/.fresh-install -fi - -if [ -d /etc/kernel/preinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/preinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-loongson-3.prerm b/debian/linux-image-6.6.15-loongson-3.prerm deleted file mode 100644 index f20786fa7b..0000000000 --- a/debian/linux-image-6.6.15-loongson-3.prerm +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-loongson-3 -image_path=/boot/vmlinuz-$version - -if [ "$1" != remove ]; then - exit 0 -fi - -linux-check-removal $version - -if [ -d /etc/kernel/prerm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/prerm.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-mckinley.postinst b/debian/linux-image-6.6.15-mckinley.postinst deleted file mode 100644 index 92736daa8a..0000000000 --- a/debian/linux-image-6.6.15-mckinley.postinst +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-mckinley -image_path=/boot/vmlinuz-$version - -if [ "$1" != configure ]; then - exit 0 -fi - -depmod $version - -if [ -f /lib/modules/$version/.fresh-install ]; then - change=install -else - change=upgrade -fi -linux-update-symlinks $change $version $image_path -rm -f /lib/modules/$version/.fresh-install - -if [ -d /etc/kernel/postinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-mckinley.postrm b/debian/linux-image-6.6.15-mckinley.postrm deleted file mode 100644 index b52dc04386..0000000000 --- a/debian/linux-image-6.6.15-mckinley.postrm +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-mckinley -image_path=/boot/vmlinuz-$version - -rm -f /lib/modules/$version/.fresh-install - -if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then - linux-update-symlinks remove $version $image_path -fi - -if [ -d /etc/kernel/postrm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postrm.d -fi - -if [ "$1" = purge ]; then - for extra_file in modules.dep modules.isapnpmap modules.pcimap \ - modules.usbmap modules.parportmap \ - modules.generic_string modules.ieee1394map \ - modules.ieee1394map modules.pnpbiosmap \ - modules.alias modules.ccwmap modules.inputmap \ - modules.symbols modules.ofmap \ - modules.seriomap modules.\*.bin \ - modules.softdep modules.devname; do - eval rm -f /lib/modules/$version/$extra_file - done - rmdir /lib/modules/$version || true -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-mckinley.preinst b/debian/linux-image-6.6.15-mckinley.preinst deleted file mode 100644 index b98210d0fd..0000000000 --- a/debian/linux-image-6.6.15-mckinley.preinst +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-mckinley -image_path=/boot/vmlinuz-$version - -if [ "$1" = abort-upgrade ]; then - exit 0 -fi - -if [ "$1" = install ]; then - # Create a flag file for postinst - mkdir -p /lib/modules/$version - touch /lib/modules/$version/.fresh-install -fi - -if [ -d /etc/kernel/preinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/preinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-mckinley.prerm b/debian/linux-image-6.6.15-mckinley.prerm deleted file mode 100644 index 1deb40edbc..0000000000 --- a/debian/linux-image-6.6.15-mckinley.prerm +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-mckinley -image_path=/boot/vmlinuz-$version - -if [ "$1" != remove ]; then - exit 0 -fi - -linux-check-removal $version - -if [ -d /etc/kernel/prerm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/prerm.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-mips32r2eb-dbg.lintian-overrides b/debian/linux-image-6.6.15-mips32r2eb-dbg.lintian-overrides deleted file mode 100644 index 45c909f31d..0000000000 --- a/debian/linux-image-6.6.15-mips32r2eb-dbg.lintian-overrides +++ /dev/null @@ -1,12 +0,0 @@ -# Kernel dbg packages contain a full image with debug data -linux-image-6.6.15-mips32r2eb-dbg: dbg-package-missing-depends - -# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so -# it's OK that they don't have it - -# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. -# lintian currently allows i386 executables on amd64. - -# Some 32-bit architectures need 64-bit kernels and we still build -# these as the "wrong" architecture rather than mandating multiarch. -linux-image-6.6.15-mips32r2eb-dbg: binary-from-other-architecture *usr/lib/debug/* diff --git a/debian/linux-image-6.6.15-mips32r2eb.lintian-overrides b/debian/linux-image-6.6.15-mips32r2eb.lintian-overrides deleted file mode 100644 index 4a8e5116c6..0000000000 --- a/debian/linux-image-6.6.15-mips32r2eb.lintian-overrides +++ /dev/null @@ -1,6 +0,0 @@ -# Some 32-bit architectures need 64-bit kernels and we still build -# these as the "wrong" architecture rather than mandating multiarch. -linux-image-6.6.15-mips32r2eb: binary-from-other-architecture *boot/vmlinu* -linux-image-6.6.15-mips32r2eb: binary-from-other-architecture *lib/modules/* - -# vmlinux needs extra sections that would normally be stripped. diff --git a/debian/linux-image-6.6.15-mips32r2eb.postinst b/debian/linux-image-6.6.15-mips32r2eb.postinst deleted file mode 100644 index bd67983b01..0000000000 --- a/debian/linux-image-6.6.15-mips32r2eb.postinst +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-mips32r2eb -image_path=/boot/vmlinuz-$version - -if [ "$1" != configure ]; then - exit 0 -fi - -depmod $version - -if [ -f /lib/modules/$version/.fresh-install ]; then - change=install -else - change=upgrade -fi -linux-update-symlinks $change $version $image_path -rm -f /lib/modules/$version/.fresh-install - -if [ -d /etc/kernel/postinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-mips32r2eb.postrm b/debian/linux-image-6.6.15-mips32r2eb.postrm deleted file mode 100644 index 4d2fae5e8c..0000000000 --- a/debian/linux-image-6.6.15-mips32r2eb.postrm +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-mips32r2eb -image_path=/boot/vmlinuz-$version - -rm -f /lib/modules/$version/.fresh-install - -if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then - linux-update-symlinks remove $version $image_path -fi - -if [ -d /etc/kernel/postrm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postrm.d -fi - -if [ "$1" = purge ]; then - for extra_file in modules.dep modules.isapnpmap modules.pcimap \ - modules.usbmap modules.parportmap \ - modules.generic_string modules.ieee1394map \ - modules.ieee1394map modules.pnpbiosmap \ - modules.alias modules.ccwmap modules.inputmap \ - modules.symbols modules.ofmap \ - modules.seriomap modules.\*.bin \ - modules.softdep modules.devname; do - eval rm -f /lib/modules/$version/$extra_file - done - rmdir /lib/modules/$version || true -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-mips32r2eb.preinst b/debian/linux-image-6.6.15-mips32r2eb.preinst deleted file mode 100644 index b2cb3a69df..0000000000 --- a/debian/linux-image-6.6.15-mips32r2eb.preinst +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-mips32r2eb -image_path=/boot/vmlinuz-$version - -if [ "$1" = abort-upgrade ]; then - exit 0 -fi - -if [ "$1" = install ]; then - # Create a flag file for postinst - mkdir -p /lib/modules/$version - touch /lib/modules/$version/.fresh-install -fi - -if [ -d /etc/kernel/preinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/preinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-mips32r2eb.prerm b/debian/linux-image-6.6.15-mips32r2eb.prerm deleted file mode 100644 index a7f5e30d1e..0000000000 --- a/debian/linux-image-6.6.15-mips32r2eb.prerm +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-mips32r2eb -image_path=/boot/vmlinuz-$version - -if [ "$1" != remove ]; then - exit 0 -fi - -linux-check-removal $version - -if [ -d /etc/kernel/prerm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/prerm.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-mips32r2el-dbg.lintian-overrides b/debian/linux-image-6.6.15-mips32r2el-dbg.lintian-overrides deleted file mode 100644 index 198f866c01..0000000000 --- a/debian/linux-image-6.6.15-mips32r2el-dbg.lintian-overrides +++ /dev/null @@ -1,12 +0,0 @@ -# Kernel dbg packages contain a full image with debug data -linux-image-6.6.15-mips32r2el-dbg: dbg-package-missing-depends - -# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so -# it's OK that they don't have it - -# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. -# lintian currently allows i386 executables on amd64. - -# Some 32-bit architectures need 64-bit kernels and we still build -# these as the "wrong" architecture rather than mandating multiarch. -linux-image-6.6.15-mips32r2el-dbg: binary-from-other-architecture *usr/lib/debug/* diff --git a/debian/linux-image-6.6.15-mips32r2el.lintian-overrides b/debian/linux-image-6.6.15-mips32r2el.lintian-overrides deleted file mode 100644 index 8eed5ac3e2..0000000000 --- a/debian/linux-image-6.6.15-mips32r2el.lintian-overrides +++ /dev/null @@ -1,7 +0,0 @@ -# Some 32-bit architectures need 64-bit kernels and we still build -# these as the "wrong" architecture rather than mandating multiarch. -linux-image-6.6.15-mips32r2el: binary-from-other-architecture *boot/vmlinu* -linux-image-6.6.15-mips32r2el: binary-from-other-architecture *lib/modules/* - -# vmlinux needs extra sections that would normally be stripped. -linux-image-6.6.15-mips32r2el: unstripped-binary-or-object *boot/vmlinu* diff --git a/debian/linux-image-6.6.15-mips32r2el.postinst b/debian/linux-image-6.6.15-mips32r2el.postinst deleted file mode 100644 index cb5b0e352a..0000000000 --- a/debian/linux-image-6.6.15-mips32r2el.postinst +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-mips32r2el -image_path=/boot/vmlinuz-$version - -if [ "$1" != configure ]; then - exit 0 -fi - -depmod $version - -if [ -f /lib/modules/$version/.fresh-install ]; then - change=install -else - change=upgrade -fi -linux-update-symlinks $change $version $image_path -rm -f /lib/modules/$version/.fresh-install - -if [ -d /etc/kernel/postinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-mips32r2el.postrm b/debian/linux-image-6.6.15-mips32r2el.postrm deleted file mode 100644 index bd4e99aa6c..0000000000 --- a/debian/linux-image-6.6.15-mips32r2el.postrm +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-mips32r2el -image_path=/boot/vmlinuz-$version - -rm -f /lib/modules/$version/.fresh-install - -if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then - linux-update-symlinks remove $version $image_path -fi - -if [ -d /etc/kernel/postrm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postrm.d -fi - -if [ "$1" = purge ]; then - for extra_file in modules.dep modules.isapnpmap modules.pcimap \ - modules.usbmap modules.parportmap \ - modules.generic_string modules.ieee1394map \ - modules.ieee1394map modules.pnpbiosmap \ - modules.alias modules.ccwmap modules.inputmap \ - modules.symbols modules.ofmap \ - modules.seriomap modules.\*.bin \ - modules.softdep modules.devname; do - eval rm -f /lib/modules/$version/$extra_file - done - rmdir /lib/modules/$version || true -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-mips32r2el.preinst b/debian/linux-image-6.6.15-mips32r2el.preinst deleted file mode 100644 index 8c6df4b631..0000000000 --- a/debian/linux-image-6.6.15-mips32r2el.preinst +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-mips32r2el -image_path=/boot/vmlinuz-$version - -if [ "$1" = abort-upgrade ]; then - exit 0 -fi - -if [ "$1" = install ]; then - # Create a flag file for postinst - mkdir -p /lib/modules/$version - touch /lib/modules/$version/.fresh-install -fi - -if [ -d /etc/kernel/preinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/preinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-mips32r2el.prerm b/debian/linux-image-6.6.15-mips32r2el.prerm deleted file mode 100644 index edcddf3884..0000000000 --- a/debian/linux-image-6.6.15-mips32r2el.prerm +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-mips32r2el -image_path=/boot/vmlinuz-$version - -if [ "$1" != remove ]; then - exit 0 -fi - -linux-check-removal $version - -if [ -d /etc/kernel/prerm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/prerm.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-mips64r2eb-dbg.lintian-overrides b/debian/linux-image-6.6.15-mips64r2eb-dbg.lintian-overrides deleted file mode 100644 index 28d02f2edb..0000000000 --- a/debian/linux-image-6.6.15-mips64r2eb-dbg.lintian-overrides +++ /dev/null @@ -1,11 +0,0 @@ -# Kernel dbg packages contain a full image with debug data -linux-image-6.6.15-mips64r2eb-dbg: dbg-package-missing-depends - -# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so -# it's OK that they don't have it - -# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. -# lintian currently allows i386 executables on amd64. - -# Some 32-bit architectures need 64-bit kernels and we still build -# these as the "wrong" architecture rather than mandating multiarch. diff --git a/debian/linux-image-6.6.15-mips64r2eb.postinst b/debian/linux-image-6.6.15-mips64r2eb.postinst deleted file mode 100644 index 0df864fb45..0000000000 --- a/debian/linux-image-6.6.15-mips64r2eb.postinst +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-mips64r2eb -image_path=/boot/vmlinuz-$version - -if [ "$1" != configure ]; then - exit 0 -fi - -depmod $version - -if [ -f /lib/modules/$version/.fresh-install ]; then - change=install -else - change=upgrade -fi -linux-update-symlinks $change $version $image_path -rm -f /lib/modules/$version/.fresh-install - -if [ -d /etc/kernel/postinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-mips64r2eb.postrm b/debian/linux-image-6.6.15-mips64r2eb.postrm deleted file mode 100644 index 5b1fccb67e..0000000000 --- a/debian/linux-image-6.6.15-mips64r2eb.postrm +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-mips64r2eb -image_path=/boot/vmlinuz-$version - -rm -f /lib/modules/$version/.fresh-install - -if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then - linux-update-symlinks remove $version $image_path -fi - -if [ -d /etc/kernel/postrm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postrm.d -fi - -if [ "$1" = purge ]; then - for extra_file in modules.dep modules.isapnpmap modules.pcimap \ - modules.usbmap modules.parportmap \ - modules.generic_string modules.ieee1394map \ - modules.ieee1394map modules.pnpbiosmap \ - modules.alias modules.ccwmap modules.inputmap \ - modules.symbols modules.ofmap \ - modules.seriomap modules.\*.bin \ - modules.softdep modules.devname; do - eval rm -f /lib/modules/$version/$extra_file - done - rmdir /lib/modules/$version || true -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-mips64r2eb.preinst b/debian/linux-image-6.6.15-mips64r2eb.preinst deleted file mode 100644 index f6ae788390..0000000000 --- a/debian/linux-image-6.6.15-mips64r2eb.preinst +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-mips64r2eb -image_path=/boot/vmlinuz-$version - -if [ "$1" = abort-upgrade ]; then - exit 0 -fi - -if [ "$1" = install ]; then - # Create a flag file for postinst - mkdir -p /lib/modules/$version - touch /lib/modules/$version/.fresh-install -fi - -if [ -d /etc/kernel/preinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/preinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-mips64r2eb.prerm b/debian/linux-image-6.6.15-mips64r2eb.prerm deleted file mode 100644 index d4f59ca780..0000000000 --- a/debian/linux-image-6.6.15-mips64r2eb.prerm +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-mips64r2eb -image_path=/boot/vmlinuz-$version - -if [ "$1" != remove ]; then - exit 0 -fi - -linux-check-removal $version - -if [ -d /etc/kernel/prerm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/prerm.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-mips64r2el-dbg.lintian-overrides b/debian/linux-image-6.6.15-mips64r2el-dbg.lintian-overrides deleted file mode 100644 index daa9035735..0000000000 --- a/debian/linux-image-6.6.15-mips64r2el-dbg.lintian-overrides +++ /dev/null @@ -1,11 +0,0 @@ -# Kernel dbg packages contain a full image with debug data -linux-image-6.6.15-mips64r2el-dbg: dbg-package-missing-depends - -# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so -# it's OK that they don't have it - -# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. -# lintian currently allows i386 executables on amd64. - -# Some 32-bit architectures need 64-bit kernels and we still build -# these as the "wrong" architecture rather than mandating multiarch. diff --git a/debian/linux-image-6.6.15-mips64r2el.postinst b/debian/linux-image-6.6.15-mips64r2el.postinst deleted file mode 100644 index 60c02d0deb..0000000000 --- a/debian/linux-image-6.6.15-mips64r2el.postinst +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-mips64r2el -image_path=/boot/vmlinuz-$version - -if [ "$1" != configure ]; then - exit 0 -fi - -depmod $version - -if [ -f /lib/modules/$version/.fresh-install ]; then - change=install -else - change=upgrade -fi -linux-update-symlinks $change $version $image_path -rm -f /lib/modules/$version/.fresh-install - -if [ -d /etc/kernel/postinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-mips64r2el.postrm b/debian/linux-image-6.6.15-mips64r2el.postrm deleted file mode 100644 index 4a390c6d23..0000000000 --- a/debian/linux-image-6.6.15-mips64r2el.postrm +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-mips64r2el -image_path=/boot/vmlinuz-$version - -rm -f /lib/modules/$version/.fresh-install - -if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then - linux-update-symlinks remove $version $image_path -fi - -if [ -d /etc/kernel/postrm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postrm.d -fi - -if [ "$1" = purge ]; then - for extra_file in modules.dep modules.isapnpmap modules.pcimap \ - modules.usbmap modules.parportmap \ - modules.generic_string modules.ieee1394map \ - modules.ieee1394map modules.pnpbiosmap \ - modules.alias modules.ccwmap modules.inputmap \ - modules.symbols modules.ofmap \ - modules.seriomap modules.\*.bin \ - modules.softdep modules.devname; do - eval rm -f /lib/modules/$version/$extra_file - done - rmdir /lib/modules/$version || true -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-mips64r2el.preinst b/debian/linux-image-6.6.15-mips64r2el.preinst deleted file mode 100644 index 04ef8edea8..0000000000 --- a/debian/linux-image-6.6.15-mips64r2el.preinst +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-mips64r2el -image_path=/boot/vmlinuz-$version - -if [ "$1" = abort-upgrade ]; then - exit 0 -fi - -if [ "$1" = install ]; then - # Create a flag file for postinst - mkdir -p /lib/modules/$version - touch /lib/modules/$version/.fresh-install -fi - -if [ -d /etc/kernel/preinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/preinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-mips64r2el.prerm b/debian/linux-image-6.6.15-mips64r2el.prerm deleted file mode 100644 index 2e3a5bd34a..0000000000 --- a/debian/linux-image-6.6.15-mips64r2el.prerm +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-mips64r2el -image_path=/boot/vmlinuz-$version - -if [ "$1" != remove ]; then - exit 0 -fi - -linux-check-removal $version - -if [ -d /etc/kernel/prerm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/prerm.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-mips64r6el-dbg.lintian-overrides b/debian/linux-image-6.6.15-mips64r6el-dbg.lintian-overrides deleted file mode 100644 index 4dd4a07f5c..0000000000 --- a/debian/linux-image-6.6.15-mips64r6el-dbg.lintian-overrides +++ /dev/null @@ -1,11 +0,0 @@ -# Kernel dbg packages contain a full image with debug data -linux-image-6.6.15-mips64r6el-dbg: dbg-package-missing-depends - -# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so -# it's OK that they don't have it - -# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. -# lintian currently allows i386 executables on amd64. - -# Some 32-bit architectures need 64-bit kernels and we still build -# these as the "wrong" architecture rather than mandating multiarch. diff --git a/debian/linux-image-6.6.15-mips64r6el.postinst b/debian/linux-image-6.6.15-mips64r6el.postinst deleted file mode 100644 index b57572869f..0000000000 --- a/debian/linux-image-6.6.15-mips64r6el.postinst +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-mips64r6el -image_path=/boot/vmlinuz-$version - -if [ "$1" != configure ]; then - exit 0 -fi - -depmod $version - -if [ -f /lib/modules/$version/.fresh-install ]; then - change=install -else - change=upgrade -fi -linux-update-symlinks $change $version $image_path -rm -f /lib/modules/$version/.fresh-install - -if [ -d /etc/kernel/postinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-mips64r6el.postrm b/debian/linux-image-6.6.15-mips64r6el.postrm deleted file mode 100644 index 908c5ac7bd..0000000000 --- a/debian/linux-image-6.6.15-mips64r6el.postrm +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-mips64r6el -image_path=/boot/vmlinuz-$version - -rm -f /lib/modules/$version/.fresh-install - -if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then - linux-update-symlinks remove $version $image_path -fi - -if [ -d /etc/kernel/postrm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postrm.d -fi - -if [ "$1" = purge ]; then - for extra_file in modules.dep modules.isapnpmap modules.pcimap \ - modules.usbmap modules.parportmap \ - modules.generic_string modules.ieee1394map \ - modules.ieee1394map modules.pnpbiosmap \ - modules.alias modules.ccwmap modules.inputmap \ - modules.symbols modules.ofmap \ - modules.seriomap modules.\*.bin \ - modules.softdep modules.devname; do - eval rm -f /lib/modules/$version/$extra_file - done - rmdir /lib/modules/$version || true -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-mips64r6el.preinst b/debian/linux-image-6.6.15-mips64r6el.preinst deleted file mode 100644 index 6ac995032a..0000000000 --- a/debian/linux-image-6.6.15-mips64r6el.preinst +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-mips64r6el -image_path=/boot/vmlinuz-$version - -if [ "$1" = abort-upgrade ]; then - exit 0 -fi - -if [ "$1" = install ]; then - # Create a flag file for postinst - mkdir -p /lib/modules/$version - touch /lib/modules/$version/.fresh-install -fi - -if [ -d /etc/kernel/preinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/preinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-mips64r6el.prerm b/debian/linux-image-6.6.15-mips64r6el.prerm deleted file mode 100644 index 28b99d2d61..0000000000 --- a/debian/linux-image-6.6.15-mips64r6el.prerm +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-mips64r6el -image_path=/boot/vmlinuz-$version - -if [ "$1" != remove ]; then - exit 0 -fi - -linux-check-removal $version - -if [ -d /etc/kernel/prerm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/prerm.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-octeon.lintian-overrides b/debian/linux-image-6.6.15-octeon.lintian-overrides deleted file mode 100644 index 5f2d2962f4..0000000000 --- a/debian/linux-image-6.6.15-octeon.lintian-overrides +++ /dev/null @@ -1,7 +0,0 @@ -# Some 32-bit architectures need 64-bit kernels and we still build -# these as the "wrong" architecture rather than mandating multiarch. -linux-image-6.6.15-octeon: binary-from-other-architecture *boot/vmlinu* -linux-image-6.6.15-octeon: binary-from-other-architecture *lib/modules/* - -# vmlinux needs extra sections that would normally be stripped. -linux-image-6.6.15-octeon: unstripped-binary-or-object *boot/vmlinu* diff --git a/debian/linux-image-6.6.15-parisc-dbg.lintian-overrides b/debian/linux-image-6.6.15-parisc-dbg.lintian-overrides deleted file mode 100644 index b60dfaef00..0000000000 --- a/debian/linux-image-6.6.15-parisc-dbg.lintian-overrides +++ /dev/null @@ -1,12 +0,0 @@ -# Kernel dbg packages contain a full image with debug data -linux-image-6.6.15-parisc-dbg: dbg-package-missing-depends - -# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so -# it's OK that they don't have it - -# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. -# lintian currently allows i386 executables on amd64. - -# Some 32-bit architectures need 64-bit kernels and we still build -# these as the "wrong" architecture rather than mandating multiarch. -linux-image-6.6.15-parisc-dbg: binary-from-other-architecture *usr/lib/debug/* diff --git a/debian/linux-image-6.6.15-parisc.postinst b/debian/linux-image-6.6.15-parisc.postinst deleted file mode 100644 index 0df58eb48e..0000000000 --- a/debian/linux-image-6.6.15-parisc.postinst +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-parisc -image_path=/boot/vmlinuz-$version - -if [ "$1" != configure ]; then - exit 0 -fi - -depmod $version - -if [ -f /lib/modules/$version/.fresh-install ]; then - change=install -else - change=upgrade -fi -linux-update-symlinks $change $version $image_path -rm -f /lib/modules/$version/.fresh-install - -if [ -d /etc/kernel/postinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-parisc.postrm b/debian/linux-image-6.6.15-parisc.postrm deleted file mode 100644 index 8c82f7b926..0000000000 --- a/debian/linux-image-6.6.15-parisc.postrm +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-parisc -image_path=/boot/vmlinuz-$version - -rm -f /lib/modules/$version/.fresh-install - -if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then - linux-update-symlinks remove $version $image_path -fi - -if [ -d /etc/kernel/postrm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postrm.d -fi - -if [ "$1" = purge ]; then - for extra_file in modules.dep modules.isapnpmap modules.pcimap \ - modules.usbmap modules.parportmap \ - modules.generic_string modules.ieee1394map \ - modules.ieee1394map modules.pnpbiosmap \ - modules.alias modules.ccwmap modules.inputmap \ - modules.symbols modules.ofmap \ - modules.seriomap modules.\*.bin \ - modules.softdep modules.devname; do - eval rm -f /lib/modules/$version/$extra_file - done - rmdir /lib/modules/$version || true -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-parisc.preinst b/debian/linux-image-6.6.15-parisc.preinst deleted file mode 100644 index 1ec579a13e..0000000000 --- a/debian/linux-image-6.6.15-parisc.preinst +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-parisc -image_path=/boot/vmlinuz-$version - -if [ "$1" = abort-upgrade ]; then - exit 0 -fi - -if [ "$1" = install ]; then - # Create a flag file for postinst - mkdir -p /lib/modules/$version - touch /lib/modules/$version/.fresh-install -fi - -if [ -d /etc/kernel/preinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/preinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-parisc.prerm b/debian/linux-image-6.6.15-parisc.prerm deleted file mode 100644 index b5ae15ccb6..0000000000 --- a/debian/linux-image-6.6.15-parisc.prerm +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-parisc -image_path=/boot/vmlinuz-$version - -if [ "$1" != remove ]; then - exit 0 -fi - -linux-check-removal $version - -if [ -d /etc/kernel/prerm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/prerm.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-parisc64.postinst b/debian/linux-image-6.6.15-parisc64.postinst deleted file mode 100644 index bf99e11b4e..0000000000 --- a/debian/linux-image-6.6.15-parisc64.postinst +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-parisc64 -image_path=/boot/vmlinuz-$version - -if [ "$1" != configure ]; then - exit 0 -fi - -depmod $version - -if [ -f /lib/modules/$version/.fresh-install ]; then - change=install -else - change=upgrade -fi -linux-update-symlinks $change $version $image_path -rm -f /lib/modules/$version/.fresh-install - -if [ -d /etc/kernel/postinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-parisc64.postrm b/debian/linux-image-6.6.15-parisc64.postrm deleted file mode 100644 index de552c1bf8..0000000000 --- a/debian/linux-image-6.6.15-parisc64.postrm +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-parisc64 -image_path=/boot/vmlinuz-$version - -rm -f /lib/modules/$version/.fresh-install - -if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then - linux-update-symlinks remove $version $image_path -fi - -if [ -d /etc/kernel/postrm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postrm.d -fi - -if [ "$1" = purge ]; then - for extra_file in modules.dep modules.isapnpmap modules.pcimap \ - modules.usbmap modules.parportmap \ - modules.generic_string modules.ieee1394map \ - modules.ieee1394map modules.pnpbiosmap \ - modules.alias modules.ccwmap modules.inputmap \ - modules.symbols modules.ofmap \ - modules.seriomap modules.\*.bin \ - modules.softdep modules.devname; do - eval rm -f /lib/modules/$version/$extra_file - done - rmdir /lib/modules/$version || true -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-parisc64.preinst b/debian/linux-image-6.6.15-parisc64.preinst deleted file mode 100644 index f873c8c426..0000000000 --- a/debian/linux-image-6.6.15-parisc64.preinst +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-parisc64 -image_path=/boot/vmlinuz-$version - -if [ "$1" = abort-upgrade ]; then - exit 0 -fi - -if [ "$1" = install ]; then - # Create a flag file for postinst - mkdir -p /lib/modules/$version - touch /lib/modules/$version/.fresh-install -fi - -if [ -d /etc/kernel/preinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/preinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-parisc64.prerm b/debian/linux-image-6.6.15-parisc64.prerm deleted file mode 100644 index e94616e9d6..0000000000 --- a/debian/linux-image-6.6.15-parisc64.prerm +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-parisc64 -image_path=/boot/vmlinuz-$version - -if [ "$1" != remove ]; then - exit 0 -fi - -linux-check-removal $version - -if [ -d /etc/kernel/prerm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/prerm.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-powerpc-smp-dbg.lintian-overrides b/debian/linux-image-6.6.15-powerpc-smp-dbg.lintian-overrides deleted file mode 100644 index 733edb7a88..0000000000 --- a/debian/linux-image-6.6.15-powerpc-smp-dbg.lintian-overrides +++ /dev/null @@ -1,12 +0,0 @@ -# Kernel dbg packages contain a full image with debug data -linux-image-6.6.15-powerpc-smp-dbg: dbg-package-missing-depends - -# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so -# it's OK that they don't have it - -# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. -# lintian currently allows i386 executables on amd64. - -# Some 32-bit architectures need 64-bit kernels and we still build -# these as the "wrong" architecture rather than mandating multiarch. -linux-image-6.6.15-powerpc-smp-dbg: binary-from-other-architecture *usr/lib/debug/* diff --git a/debian/linux-image-6.6.15-powerpc-smp.lintian-overrides b/debian/linux-image-6.6.15-powerpc-smp.lintian-overrides deleted file mode 100644 index d9cb9520fe..0000000000 --- a/debian/linux-image-6.6.15-powerpc-smp.lintian-overrides +++ /dev/null @@ -1,5 +0,0 @@ -# Some 32-bit architectures need 64-bit kernels and we still build -# these as the "wrong" architecture rather than mandating multiarch. -linux-image-6.6.15-powerpc-smp: binary-from-other-architecture *lib/modules/* - -# vmlinux needs extra sections that would normally be stripped. diff --git a/debian/linux-image-6.6.15-powerpc-smp.postinst b/debian/linux-image-6.6.15-powerpc-smp.postinst deleted file mode 100644 index e6305878a3..0000000000 --- a/debian/linux-image-6.6.15-powerpc-smp.postinst +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-powerpc-smp -image_path=/boot/vmlinux-$version - -if [ "$1" != configure ]; then - exit 0 -fi - -depmod $version - -if [ -f /lib/modules/$version/.fresh-install ]; then - change=install -else - change=upgrade -fi -linux-update-symlinks $change $version $image_path -rm -f /lib/modules/$version/.fresh-install - -if [ -d /etc/kernel/postinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-powerpc-smp.postrm b/debian/linux-image-6.6.15-powerpc-smp.postrm deleted file mode 100644 index 23398b64cf..0000000000 --- a/debian/linux-image-6.6.15-powerpc-smp.postrm +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-powerpc-smp -image_path=/boot/vmlinux-$version - -rm -f /lib/modules/$version/.fresh-install - -if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then - linux-update-symlinks remove $version $image_path -fi - -if [ -d /etc/kernel/postrm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postrm.d -fi - -if [ "$1" = purge ]; then - for extra_file in modules.dep modules.isapnpmap modules.pcimap \ - modules.usbmap modules.parportmap \ - modules.generic_string modules.ieee1394map \ - modules.ieee1394map modules.pnpbiosmap \ - modules.alias modules.ccwmap modules.inputmap \ - modules.symbols modules.ofmap \ - modules.seriomap modules.\*.bin \ - modules.softdep modules.devname; do - eval rm -f /lib/modules/$version/$extra_file - done - rmdir /lib/modules/$version || true -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-powerpc-smp.preinst b/debian/linux-image-6.6.15-powerpc-smp.preinst deleted file mode 100644 index 6c0331ce5d..0000000000 --- a/debian/linux-image-6.6.15-powerpc-smp.preinst +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-powerpc-smp -image_path=/boot/vmlinux-$version - -if [ "$1" = abort-upgrade ]; then - exit 0 -fi - -if [ "$1" = install ]; then - # Create a flag file for postinst - mkdir -p /lib/modules/$version - touch /lib/modules/$version/.fresh-install -fi - -if [ -d /etc/kernel/preinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/preinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-powerpc-smp.prerm b/debian/linux-image-6.6.15-powerpc-smp.prerm deleted file mode 100644 index 9e3be9ad8b..0000000000 --- a/debian/linux-image-6.6.15-powerpc-smp.prerm +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-powerpc-smp -image_path=/boot/vmlinux-$version - -if [ "$1" != remove ]; then - exit 0 -fi - -linux-check-removal $version - -if [ -d /etc/kernel/prerm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/prerm.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-powerpc64-dbg.lintian-overrides b/debian/linux-image-6.6.15-powerpc64-dbg.lintian-overrides deleted file mode 100644 index bb289f25ef..0000000000 --- a/debian/linux-image-6.6.15-powerpc64-dbg.lintian-overrides +++ /dev/null @@ -1,11 +0,0 @@ -# Kernel dbg packages contain a full image with debug data -linux-image-6.6.15-powerpc64-dbg: dbg-package-missing-depends - -# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so -# it's OK that they don't have it - -# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. -# lintian currently allows i386 executables on amd64. - -# Some 32-bit architectures need 64-bit kernels and we still build -# these as the "wrong" architecture rather than mandating multiarch. diff --git a/debian/linux-image-6.6.15-powerpc64le-dbg.lintian-overrides b/debian/linux-image-6.6.15-powerpc64le-dbg.lintian-overrides deleted file mode 100644 index 3e791d02d0..0000000000 --- a/debian/linux-image-6.6.15-powerpc64le-dbg.lintian-overrides +++ /dev/null @@ -1,14 +0,0 @@ -# Kernel dbg packages contain a full image with debug data -linux-image-6.6.15-powerpc64le-dbg: dbg-package-missing-depends - -# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so -# it's OK that they don't have it -linux-image-6.6.15-powerpc64le-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.6.15-powerpc64le/vdso/vdso32.so* -linux-image-6.6.15-powerpc64le-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.6.15-powerpc64le/vdso/vdso64.so* - -# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. -# lintian currently allows i386 executables on amd64. -linux-image-6.6.15-powerpc64le-dbg: binary-from-other-architecture *usr/lib/debug/lib/modules/6.6.15-powerpc64le/vdso/vdso32.so* - -# Some 32-bit architectures need 64-bit kernels and we still build -# these as the "wrong" architecture rather than mandating multiarch. diff --git a/debian/linux-image-6.6.15-powerpc64le.postinst b/debian/linux-image-6.6.15-powerpc64le.postinst deleted file mode 100644 index 668a3f0b1b..0000000000 --- a/debian/linux-image-6.6.15-powerpc64le.postinst +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-powerpc64le -image_path=/boot/vmlinux-$version - -if [ "$1" != configure ]; then - exit 0 -fi - -depmod $version - -if [ -f /lib/modules/$version/.fresh-install ]; then - change=install -else - change=upgrade -fi -linux-update-symlinks $change $version $image_path -rm -f /lib/modules/$version/.fresh-install - -if [ -d /etc/kernel/postinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-powerpc64le.postrm b/debian/linux-image-6.6.15-powerpc64le.postrm deleted file mode 100644 index 67972ffd7b..0000000000 --- a/debian/linux-image-6.6.15-powerpc64le.postrm +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-powerpc64le -image_path=/boot/vmlinux-$version - -rm -f /lib/modules/$version/.fresh-install - -if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then - linux-update-symlinks remove $version $image_path -fi - -if [ -d /etc/kernel/postrm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postrm.d -fi - -if [ "$1" = purge ]; then - for extra_file in modules.dep modules.isapnpmap modules.pcimap \ - modules.usbmap modules.parportmap \ - modules.generic_string modules.ieee1394map \ - modules.ieee1394map modules.pnpbiosmap \ - modules.alias modules.ccwmap modules.inputmap \ - modules.symbols modules.ofmap \ - modules.seriomap modules.\*.bin \ - modules.softdep modules.devname; do - eval rm -f /lib/modules/$version/$extra_file - done - rmdir /lib/modules/$version || true -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-powerpc64le.preinst b/debian/linux-image-6.6.15-powerpc64le.preinst deleted file mode 100644 index 61b7de5721..0000000000 --- a/debian/linux-image-6.6.15-powerpc64le.preinst +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-powerpc64le -image_path=/boot/vmlinux-$version - -if [ "$1" = abort-upgrade ]; then - exit 0 -fi - -if [ "$1" = install ]; then - # Create a flag file for postinst - mkdir -p /lib/modules/$version - touch /lib/modules/$version/.fresh-install -fi - -if [ -d /etc/kernel/preinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/preinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-powerpc64le.prerm b/debian/linux-image-6.6.15-powerpc64le.prerm deleted file mode 100644 index 4eb1c80644..0000000000 --- a/debian/linux-image-6.6.15-powerpc64le.prerm +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-powerpc64le -image_path=/boot/vmlinux-$version - -if [ "$1" != remove ]; then - exit 0 -fi - -linux-check-removal $version - -if [ -d /etc/kernel/prerm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/prerm.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-rt-686-pae-dbg.lintian-overrides b/debian/linux-image-6.6.15-rt-686-pae-dbg.lintian-overrides deleted file mode 100644 index 207b44ac5b..0000000000 --- a/debian/linux-image-6.6.15-rt-686-pae-dbg.lintian-overrides +++ /dev/null @@ -1,12 +0,0 @@ -# Kernel dbg packages contain a full image with debug data -linux-image-6.6.15-rt-686-pae-dbg: dbg-package-missing-depends - -# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so -# it's OK that they don't have it -linux-image-6.6.15-rt-686-pae-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.6.15-rt-686-pae/vdso/vdso32.so* - -# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. -# lintian currently allows i386 executables on amd64. - -# Some 32-bit architectures need 64-bit kernels and we still build -# these as the "wrong" architecture rather than mandating multiarch. diff --git a/debian/linux-image-6.6.15-rt-686-pae.postinst b/debian/linux-image-6.6.15-rt-686-pae.postinst deleted file mode 100644 index e2dd1f14fe..0000000000 --- a/debian/linux-image-6.6.15-rt-686-pae.postinst +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-rt-686-pae -image_path=/boot/vmlinuz-$version - -if [ "$1" != configure ]; then - exit 0 -fi - -depmod $version - -if [ -f /lib/modules/$version/.fresh-install ]; then - change=install -else - change=upgrade -fi -linux-update-symlinks $change $version $image_path -rm -f /lib/modules/$version/.fresh-install - -if [ -d /etc/kernel/postinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-rt-686-pae.postrm b/debian/linux-image-6.6.15-rt-686-pae.postrm deleted file mode 100644 index 0b3a7f4e10..0000000000 --- a/debian/linux-image-6.6.15-rt-686-pae.postrm +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-rt-686-pae -image_path=/boot/vmlinuz-$version - -rm -f /lib/modules/$version/.fresh-install - -if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then - linux-update-symlinks remove $version $image_path -fi - -if [ -d /etc/kernel/postrm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postrm.d -fi - -if [ "$1" = purge ]; then - for extra_file in modules.dep modules.isapnpmap modules.pcimap \ - modules.usbmap modules.parportmap \ - modules.generic_string modules.ieee1394map \ - modules.ieee1394map modules.pnpbiosmap \ - modules.alias modules.ccwmap modules.inputmap \ - modules.symbols modules.ofmap \ - modules.seriomap modules.\*.bin \ - modules.softdep modules.devname; do - eval rm -f /lib/modules/$version/$extra_file - done - rmdir /lib/modules/$version || true -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-rt-686-pae.preinst b/debian/linux-image-6.6.15-rt-686-pae.preinst deleted file mode 100644 index 9b96408243..0000000000 --- a/debian/linux-image-6.6.15-rt-686-pae.preinst +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-rt-686-pae -image_path=/boot/vmlinuz-$version - -if [ "$1" = abort-upgrade ]; then - exit 0 -fi - -if [ "$1" = install ]; then - # Create a flag file for postinst - mkdir -p /lib/modules/$version - touch /lib/modules/$version/.fresh-install -fi - -if [ -d /etc/kernel/preinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/preinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-rt-686-pae.prerm b/debian/linux-image-6.6.15-rt-686-pae.prerm deleted file mode 100644 index 7c05f83f9f..0000000000 --- a/debian/linux-image-6.6.15-rt-686-pae.prerm +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-rt-686-pae -image_path=/boot/vmlinuz-$version - -if [ "$1" != remove ]; then - exit 0 -fi - -linux-check-removal $version - -if [ -d /etc/kernel/prerm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/prerm.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-rt-amd64-dbg.lintian-overrides b/debian/linux-image-6.6.15-rt-amd64-dbg.lintian-overrides deleted file mode 100644 index bea04aa09a..0000000000 --- a/debian/linux-image-6.6.15-rt-amd64-dbg.lintian-overrides +++ /dev/null @@ -1,15 +0,0 @@ -# Kernel dbg packages contain a full image with debug data -linux-image-6.6.15-rt-amd64-dbg: dbg-package-missing-depends - -# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so -# it's OK that they don't have it -linux-image-6.6.15-rt-amd64-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.6.15-rt-amd64/vdso/vdso32.so* -linux-image-6.6.15-rt-amd64-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.6.15-rt-amd64/vdso/vdso64.so* -linux-image-6.6.15-rt-amd64-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.6.15-rt-amd64/vdso/vdsox32.so* - -# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. -# lintian currently allows i386 executables on amd64. -linux-image-6.6.15-rt-amd64-dbg: binary-from-other-architecture *usr/lib/debug/lib/modules/6.6.15-rt-amd64/vdso/vdsox32.so* - -# Some 32-bit architectures need 64-bit kernels and we still build -# these as the "wrong" architecture rather than mandating multiarch. diff --git a/debian/linux-image-6.6.15-rt-amd64-unsigned.postinst b/debian/linux-image-6.6.15-rt-amd64-unsigned.postinst deleted file mode 100644 index 587a11381f..0000000000 --- a/debian/linux-image-6.6.15-rt-amd64-unsigned.postinst +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-rt-amd64 -image_path=/boot/vmlinuz-$version - -if [ "$1" != configure ]; then - exit 0 -fi - -depmod $version - -if [ -f /lib/modules/$version/.fresh-install ]; then - change=install -else - change=upgrade -fi -linux-update-symlinks $change $version $image_path -rm -f /lib/modules/$version/.fresh-install - -if [ -d /etc/kernel/postinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-rt-amd64-unsigned.postrm b/debian/linux-image-6.6.15-rt-amd64-unsigned.postrm deleted file mode 100644 index 27485d84e2..0000000000 --- a/debian/linux-image-6.6.15-rt-amd64-unsigned.postrm +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-rt-amd64 -image_path=/boot/vmlinuz-$version - -rm -f /lib/modules/$version/.fresh-install - -if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then - linux-update-symlinks remove $version $image_path -fi - -if [ -d /etc/kernel/postrm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postrm.d -fi - -if [ "$1" = purge ]; then - for extra_file in modules.dep modules.isapnpmap modules.pcimap \ - modules.usbmap modules.parportmap \ - modules.generic_string modules.ieee1394map \ - modules.ieee1394map modules.pnpbiosmap \ - modules.alias modules.ccwmap modules.inputmap \ - modules.symbols modules.ofmap \ - modules.seriomap modules.\*.bin \ - modules.softdep modules.devname; do - eval rm -f /lib/modules/$version/$extra_file - done - rmdir /lib/modules/$version || true -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-rt-amd64-unsigned.preinst b/debian/linux-image-6.6.15-rt-amd64-unsigned.preinst deleted file mode 100644 index 407de403ba..0000000000 --- a/debian/linux-image-6.6.15-rt-amd64-unsigned.preinst +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-rt-amd64 -image_path=/boot/vmlinuz-$version - -if [ "$1" = abort-upgrade ]; then - exit 0 -fi - -if [ "$1" = install ]; then - # Create a flag file for postinst - mkdir -p /lib/modules/$version - touch /lib/modules/$version/.fresh-install -fi - -if [ -d /etc/kernel/preinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/preinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-rt-amd64-unsigned.prerm b/debian/linux-image-6.6.15-rt-amd64-unsigned.prerm deleted file mode 100644 index 6944a0bccb..0000000000 --- a/debian/linux-image-6.6.15-rt-amd64-unsigned.prerm +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-rt-amd64 -image_path=/boot/vmlinuz-$version - -if [ "$1" != remove ]; then - exit 0 -fi - -linux-check-removal $version - -if [ -d /etc/kernel/prerm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/prerm.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-rt-arm64-dbg.lintian-overrides b/debian/linux-image-6.6.15-rt-arm64-dbg.lintian-overrides deleted file mode 100644 index e4a0cf4bd9..0000000000 --- a/debian/linux-image-6.6.15-rt-arm64-dbg.lintian-overrides +++ /dev/null @@ -1,14 +0,0 @@ -# Kernel dbg packages contain a full image with debug data -linux-image-6.6.15-rt-arm64-dbg: dbg-package-missing-depends - -# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so -# it's OK that they don't have it -linux-image-6.6.15-rt-arm64-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.6.15-rt-arm64/vdso/vdso.so* -linux-image-6.6.15-rt-arm64-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.6.15-rt-arm64/vdso/vdso32.so* - -# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. -# lintian currently allows i386 executables on amd64. -linux-image-6.6.15-rt-arm64-dbg: binary-from-other-architecture *usr/lib/debug/lib/modules/6.6.15-rt-arm64/vdso/vdso32.so* - -# Some 32-bit architectures need 64-bit kernels and we still build -# these as the "wrong" architecture rather than mandating multiarch. diff --git a/debian/linux-image-6.6.15-rt-arm64-unsigned.postinst b/debian/linux-image-6.6.15-rt-arm64-unsigned.postinst deleted file mode 100644 index e55c6c4e7f..0000000000 --- a/debian/linux-image-6.6.15-rt-arm64-unsigned.postinst +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-rt-arm64 -image_path=/boot/vmlinuz-$version - -if [ "$1" != configure ]; then - exit 0 -fi - -depmod $version - -if [ -f /lib/modules/$version/.fresh-install ]; then - change=install -else - change=upgrade -fi -linux-update-symlinks $change $version $image_path -rm -f /lib/modules/$version/.fresh-install - -if [ -d /etc/kernel/postinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-rt-arm64-unsigned.postrm b/debian/linux-image-6.6.15-rt-arm64-unsigned.postrm deleted file mode 100644 index 1e5145146e..0000000000 --- a/debian/linux-image-6.6.15-rt-arm64-unsigned.postrm +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-rt-arm64 -image_path=/boot/vmlinuz-$version - -rm -f /lib/modules/$version/.fresh-install - -if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then - linux-update-symlinks remove $version $image_path -fi - -if [ -d /etc/kernel/postrm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postrm.d -fi - -if [ "$1" = purge ]; then - for extra_file in modules.dep modules.isapnpmap modules.pcimap \ - modules.usbmap modules.parportmap \ - modules.generic_string modules.ieee1394map \ - modules.ieee1394map modules.pnpbiosmap \ - modules.alias modules.ccwmap modules.inputmap \ - modules.symbols modules.ofmap \ - modules.seriomap modules.\*.bin \ - modules.softdep modules.devname; do - eval rm -f /lib/modules/$version/$extra_file - done - rmdir /lib/modules/$version || true -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-rt-arm64-unsigned.preinst b/debian/linux-image-6.6.15-rt-arm64-unsigned.preinst deleted file mode 100644 index d1c197ec5d..0000000000 --- a/debian/linux-image-6.6.15-rt-arm64-unsigned.preinst +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-rt-arm64 -image_path=/boot/vmlinuz-$version - -if [ "$1" = abort-upgrade ]; then - exit 0 -fi - -if [ "$1" = install ]; then - # Create a flag file for postinst - mkdir -p /lib/modules/$version - touch /lib/modules/$version/.fresh-install -fi - -if [ -d /etc/kernel/preinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/preinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-rt-arm64-unsigned.prerm b/debian/linux-image-6.6.15-rt-arm64-unsigned.prerm deleted file mode 100644 index 5f70b7358c..0000000000 --- a/debian/linux-image-6.6.15-rt-arm64-unsigned.prerm +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-rt-arm64 -image_path=/boot/vmlinuz-$version - -if [ "$1" != remove ]; then - exit 0 -fi - -linux-check-removal $version - -if [ -d /etc/kernel/prerm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/prerm.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-rt-armmp-dbg.lintian-overrides b/debian/linux-image-6.6.15-rt-armmp-dbg.lintian-overrides deleted file mode 100644 index 51a67411d2..0000000000 --- a/debian/linux-image-6.6.15-rt-armmp-dbg.lintian-overrides +++ /dev/null @@ -1,12 +0,0 @@ -# Kernel dbg packages contain a full image with debug data -linux-image-6.6.15-rt-armmp-dbg: dbg-package-missing-depends - -# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so -# it's OK that they don't have it -linux-image-6.6.15-rt-armmp-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.6.15-rt-armmp/vdso/vdso.so* - -# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. -# lintian currently allows i386 executables on amd64. - -# Some 32-bit architectures need 64-bit kernels and we still build -# these as the "wrong" architecture rather than mandating multiarch. diff --git a/debian/linux-image-6.6.15-rt-armmp.postinst b/debian/linux-image-6.6.15-rt-armmp.postinst deleted file mode 100644 index 1e16169ec0..0000000000 --- a/debian/linux-image-6.6.15-rt-armmp.postinst +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-rt-armmp -image_path=/boot/vmlinuz-$version - -if [ "$1" != configure ]; then - exit 0 -fi - -depmod $version - -if [ -f /lib/modules/$version/.fresh-install ]; then - change=install -else - change=upgrade -fi -linux-update-symlinks $change $version $image_path -rm -f /lib/modules/$version/.fresh-install - -if [ -d /etc/kernel/postinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-rt-armmp.postrm b/debian/linux-image-6.6.15-rt-armmp.postrm deleted file mode 100644 index 741410dd76..0000000000 --- a/debian/linux-image-6.6.15-rt-armmp.postrm +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-rt-armmp -image_path=/boot/vmlinuz-$version - -rm -f /lib/modules/$version/.fresh-install - -if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then - linux-update-symlinks remove $version $image_path -fi - -if [ -d /etc/kernel/postrm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postrm.d -fi - -if [ "$1" = purge ]; then - for extra_file in modules.dep modules.isapnpmap modules.pcimap \ - modules.usbmap modules.parportmap \ - modules.generic_string modules.ieee1394map \ - modules.ieee1394map modules.pnpbiosmap \ - modules.alias modules.ccwmap modules.inputmap \ - modules.symbols modules.ofmap \ - modules.seriomap modules.\*.bin \ - modules.softdep modules.devname; do - eval rm -f /lib/modules/$version/$extra_file - done - rmdir /lib/modules/$version || true -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-rt-armmp.preinst b/debian/linux-image-6.6.15-rt-armmp.preinst deleted file mode 100644 index 08e2dd75fd..0000000000 --- a/debian/linux-image-6.6.15-rt-armmp.preinst +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-rt-armmp -image_path=/boot/vmlinuz-$version - -if [ "$1" = abort-upgrade ]; then - exit 0 -fi - -if [ "$1" = install ]; then - # Create a flag file for postinst - mkdir -p /lib/modules/$version - touch /lib/modules/$version/.fresh-install -fi - -if [ -d /etc/kernel/preinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/preinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-rt-armmp.prerm b/debian/linux-image-6.6.15-rt-armmp.prerm deleted file mode 100644 index c551a168f1..0000000000 --- a/debian/linux-image-6.6.15-rt-armmp.prerm +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-rt-armmp -image_path=/boot/vmlinuz-$version - -if [ "$1" != remove ]; then - exit 0 -fi - -linux-check-removal $version - -if [ -d /etc/kernel/prerm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/prerm.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-s390x-dbg.lintian-overrides b/debian/linux-image-6.6.15-s390x-dbg.lintian-overrides deleted file mode 100644 index ba7a213fcf..0000000000 --- a/debian/linux-image-6.6.15-s390x-dbg.lintian-overrides +++ /dev/null @@ -1,14 +0,0 @@ -# Kernel dbg packages contain a full image with debug data -linux-image-6.6.15-s390x-dbg: dbg-package-missing-depends - -# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so -# it's OK that they don't have it -linux-image-6.6.15-s390x-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.6.15-s390x/vdso/vdso32.so* -linux-image-6.6.15-s390x-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.6.15-s390x/vdso/vdso64.so* - -# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. -# lintian currently allows i386 executables on amd64. -linux-image-6.6.15-s390x-dbg: binary-from-other-architecture *usr/lib/debug/lib/modules/6.6.15-s390x/vdso/vdso32.so* - -# Some 32-bit architectures need 64-bit kernels and we still build -# these as the "wrong" architecture rather than mandating multiarch. diff --git a/debian/linux-image-6.6.15-s390x.postinst b/debian/linux-image-6.6.15-s390x.postinst deleted file mode 100644 index 902cad1ce2..0000000000 --- a/debian/linux-image-6.6.15-s390x.postinst +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-s390x -image_path=/boot/vmlinuz-$version - -if [ "$1" != configure ]; then - exit 0 -fi - -depmod $version - -if [ -f /lib/modules/$version/.fresh-install ]; then - change=install -else - change=upgrade -fi -linux-update-symlinks $change $version $image_path -rm -f /lib/modules/$version/.fresh-install - -if [ -d /etc/kernel/postinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-s390x.postrm b/debian/linux-image-6.6.15-s390x.postrm deleted file mode 100644 index e5a2b62501..0000000000 --- a/debian/linux-image-6.6.15-s390x.postrm +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-s390x -image_path=/boot/vmlinuz-$version - -rm -f /lib/modules/$version/.fresh-install - -if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then - linux-update-symlinks remove $version $image_path -fi - -if [ -d /etc/kernel/postrm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postrm.d -fi - -if [ "$1" = purge ]; then - for extra_file in modules.dep modules.isapnpmap modules.pcimap \ - modules.usbmap modules.parportmap \ - modules.generic_string modules.ieee1394map \ - modules.ieee1394map modules.pnpbiosmap \ - modules.alias modules.ccwmap modules.inputmap \ - modules.symbols modules.ofmap \ - modules.seriomap modules.\*.bin \ - modules.softdep modules.devname; do - eval rm -f /lib/modules/$version/$extra_file - done - rmdir /lib/modules/$version || true -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-s390x.preinst b/debian/linux-image-6.6.15-s390x.preinst deleted file mode 100644 index 72d2d35a9d..0000000000 --- a/debian/linux-image-6.6.15-s390x.preinst +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-s390x -image_path=/boot/vmlinuz-$version - -if [ "$1" = abort-upgrade ]; then - exit 0 -fi - -if [ "$1" = install ]; then - # Create a flag file for postinst - mkdir -p /lib/modules/$version - touch /lib/modules/$version/.fresh-install -fi - -if [ -d /etc/kernel/preinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/preinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-s390x.prerm b/debian/linux-image-6.6.15-s390x.prerm deleted file mode 100644 index 1c11da6894..0000000000 --- a/debian/linux-image-6.6.15-s390x.prerm +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-s390x -image_path=/boot/vmlinuz-$version - -if [ "$1" != remove ]; then - exit 0 -fi - -linux-check-removal $version - -if [ -d /etc/kernel/prerm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/prerm.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-sh7751r-dbg.lintian-overrides b/debian/linux-image-6.6.15-sh7751r-dbg.lintian-overrides deleted file mode 100644 index b218fc29d8..0000000000 --- a/debian/linux-image-6.6.15-sh7751r-dbg.lintian-overrides +++ /dev/null @@ -1,11 +0,0 @@ -# Kernel dbg packages contain a full image with debug data -linux-image-6.6.15-sh7751r-dbg: dbg-package-missing-depends - -# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so -# it's OK that they don't have it - -# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. -# lintian currently allows i386 executables on amd64. - -# Some 32-bit architectures need 64-bit kernels and we still build -# these as the "wrong" architecture rather than mandating multiarch. diff --git a/debian/linux-image-6.6.15-sh7751r.postinst b/debian/linux-image-6.6.15-sh7751r.postinst deleted file mode 100644 index 5c90e392c2..0000000000 --- a/debian/linux-image-6.6.15-sh7751r.postinst +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-sh7751r -image_path=/boot/vmlinuz-$version - -if [ "$1" != configure ]; then - exit 0 -fi - -depmod $version - -if [ -f /lib/modules/$version/.fresh-install ]; then - change=install -else - change=upgrade -fi -linux-update-symlinks $change $version $image_path -rm -f /lib/modules/$version/.fresh-install - -if [ -d /etc/kernel/postinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-sh7751r.postrm b/debian/linux-image-6.6.15-sh7751r.postrm deleted file mode 100644 index 26d4abe2a9..0000000000 --- a/debian/linux-image-6.6.15-sh7751r.postrm +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-sh7751r -image_path=/boot/vmlinuz-$version - -rm -f /lib/modules/$version/.fresh-install - -if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then - linux-update-symlinks remove $version $image_path -fi - -if [ -d /etc/kernel/postrm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postrm.d -fi - -if [ "$1" = purge ]; then - for extra_file in modules.dep modules.isapnpmap modules.pcimap \ - modules.usbmap modules.parportmap \ - modules.generic_string modules.ieee1394map \ - modules.ieee1394map modules.pnpbiosmap \ - modules.alias modules.ccwmap modules.inputmap \ - modules.symbols modules.ofmap \ - modules.seriomap modules.\*.bin \ - modules.softdep modules.devname; do - eval rm -f /lib/modules/$version/$extra_file - done - rmdir /lib/modules/$version || true -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-sh7751r.preinst b/debian/linux-image-6.6.15-sh7751r.preinst deleted file mode 100644 index b13cfc3294..0000000000 --- a/debian/linux-image-6.6.15-sh7751r.preinst +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-sh7751r -image_path=/boot/vmlinuz-$version - -if [ "$1" = abort-upgrade ]; then - exit 0 -fi - -if [ "$1" = install ]; then - # Create a flag file for postinst - mkdir -p /lib/modules/$version - touch /lib/modules/$version/.fresh-install -fi - -if [ -d /etc/kernel/preinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/preinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-sh7751r.prerm b/debian/linux-image-6.6.15-sh7751r.prerm deleted file mode 100644 index 4f9678d76f..0000000000 --- a/debian/linux-image-6.6.15-sh7751r.prerm +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-sh7751r -image_path=/boot/vmlinuz-$version - -if [ "$1" != remove ]; then - exit 0 -fi - -linux-check-removal $version - -if [ -d /etc/kernel/prerm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/prerm.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-sh7785lcr-dbg.lintian-overrides b/debian/linux-image-6.6.15-sh7785lcr-dbg.lintian-overrides deleted file mode 100644 index c2f9c7ff89..0000000000 --- a/debian/linux-image-6.6.15-sh7785lcr-dbg.lintian-overrides +++ /dev/null @@ -1,11 +0,0 @@ -# Kernel dbg packages contain a full image with debug data -linux-image-6.6.15-sh7785lcr-dbg: dbg-package-missing-depends - -# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so -# it's OK that they don't have it - -# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. -# lintian currently allows i386 executables on amd64. - -# Some 32-bit architectures need 64-bit kernels and we still build -# these as the "wrong" architecture rather than mandating multiarch. diff --git a/debian/linux-image-6.6.15-sh7785lcr.postinst b/debian/linux-image-6.6.15-sh7785lcr.postinst deleted file mode 100644 index df0ab688b4..0000000000 --- a/debian/linux-image-6.6.15-sh7785lcr.postinst +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-sh7785lcr -image_path=/boot/vmlinuz-$version - -if [ "$1" != configure ]; then - exit 0 -fi - -depmod $version - -if [ -f /lib/modules/$version/.fresh-install ]; then - change=install -else - change=upgrade -fi -linux-update-symlinks $change $version $image_path -rm -f /lib/modules/$version/.fresh-install - -if [ -d /etc/kernel/postinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-sh7785lcr.postrm b/debian/linux-image-6.6.15-sh7785lcr.postrm deleted file mode 100644 index 1c61dcf055..0000000000 --- a/debian/linux-image-6.6.15-sh7785lcr.postrm +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-sh7785lcr -image_path=/boot/vmlinuz-$version - -rm -f /lib/modules/$version/.fresh-install - -if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then - linux-update-symlinks remove $version $image_path -fi - -if [ -d /etc/kernel/postrm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postrm.d -fi - -if [ "$1" = purge ]; then - for extra_file in modules.dep modules.isapnpmap modules.pcimap \ - modules.usbmap modules.parportmap \ - modules.generic_string modules.ieee1394map \ - modules.ieee1394map modules.pnpbiosmap \ - modules.alias modules.ccwmap modules.inputmap \ - modules.symbols modules.ofmap \ - modules.seriomap modules.\*.bin \ - modules.softdep modules.devname; do - eval rm -f /lib/modules/$version/$extra_file - done - rmdir /lib/modules/$version || true -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-sh7785lcr.preinst b/debian/linux-image-6.6.15-sh7785lcr.preinst deleted file mode 100644 index b9eaa78a53..0000000000 --- a/debian/linux-image-6.6.15-sh7785lcr.preinst +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-sh7785lcr -image_path=/boot/vmlinuz-$version - -if [ "$1" = abort-upgrade ]; then - exit 0 -fi - -if [ "$1" = install ]; then - # Create a flag file for postinst - mkdir -p /lib/modules/$version - touch /lib/modules/$version/.fresh-install -fi - -if [ -d /etc/kernel/preinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/preinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-sh7785lcr.prerm b/debian/linux-image-6.6.15-sh7785lcr.prerm deleted file mode 100644 index e6270ef14b..0000000000 --- a/debian/linux-image-6.6.15-sh7785lcr.prerm +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-sh7785lcr -image_path=/boot/vmlinuz-$version - -if [ "$1" != remove ]; then - exit 0 -fi - -linux-check-removal $version - -if [ -d /etc/kernel/prerm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/prerm.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-sparc64-dbg.lintian-overrides b/debian/linux-image-6.6.15-sparc64-dbg.lintian-overrides deleted file mode 100644 index d2b80b45ac..0000000000 --- a/debian/linux-image-6.6.15-sparc64-dbg.lintian-overrides +++ /dev/null @@ -1,11 +0,0 @@ -# Kernel dbg packages contain a full image with debug data -linux-image-6.6.15-sparc64-dbg: dbg-package-missing-depends - -# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so -# it's OK that they don't have it - -# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. -# lintian currently allows i386 executables on amd64. - -# Some 32-bit architectures need 64-bit kernels and we still build -# these as the "wrong" architecture rather than mandating multiarch. diff --git a/debian/linux-image-6.6.15-sparc64-smp-dbg.lintian-overrides b/debian/linux-image-6.6.15-sparc64-smp-dbg.lintian-overrides deleted file mode 100644 index 14008d8f58..0000000000 --- a/debian/linux-image-6.6.15-sparc64-smp-dbg.lintian-overrides +++ /dev/null @@ -1,11 +0,0 @@ -# Kernel dbg packages contain a full image with debug data -linux-image-6.6.15-sparc64-smp-dbg: dbg-package-missing-depends - -# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so -# it's OK that they don't have it - -# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. -# lintian currently allows i386 executables on amd64. - -# Some 32-bit architectures need 64-bit kernels and we still build -# these as the "wrong" architecture rather than mandating multiarch. diff --git a/debian/linux-image-6.6.15-sparc64-smp.postinst b/debian/linux-image-6.6.15-sparc64-smp.postinst deleted file mode 100644 index a129be57d0..0000000000 --- a/debian/linux-image-6.6.15-sparc64-smp.postinst +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-sparc64-smp -image_path=/boot/vmlinux-$version - -if [ "$1" != configure ]; then - exit 0 -fi - -depmod $version - -if [ -f /lib/modules/$version/.fresh-install ]; then - change=install -else - change=upgrade -fi -linux-update-symlinks $change $version $image_path -rm -f /lib/modules/$version/.fresh-install - -if [ -d /etc/kernel/postinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-sparc64-smp.postrm b/debian/linux-image-6.6.15-sparc64-smp.postrm deleted file mode 100644 index 84f9e59ef7..0000000000 --- a/debian/linux-image-6.6.15-sparc64-smp.postrm +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-sparc64-smp -image_path=/boot/vmlinux-$version - -rm -f /lib/modules/$version/.fresh-install - -if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then - linux-update-symlinks remove $version $image_path -fi - -if [ -d /etc/kernel/postrm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postrm.d -fi - -if [ "$1" = purge ]; then - for extra_file in modules.dep modules.isapnpmap modules.pcimap \ - modules.usbmap modules.parportmap \ - modules.generic_string modules.ieee1394map \ - modules.ieee1394map modules.pnpbiosmap \ - modules.alias modules.ccwmap modules.inputmap \ - modules.symbols modules.ofmap \ - modules.seriomap modules.\*.bin \ - modules.softdep modules.devname; do - eval rm -f /lib/modules/$version/$extra_file - done - rmdir /lib/modules/$version || true -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-sparc64-smp.preinst b/debian/linux-image-6.6.15-sparc64-smp.preinst deleted file mode 100644 index 63fdf3bead..0000000000 --- a/debian/linux-image-6.6.15-sparc64-smp.preinst +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-sparc64-smp -image_path=/boot/vmlinux-$version - -if [ "$1" = abort-upgrade ]; then - exit 0 -fi - -if [ "$1" = install ]; then - # Create a flag file for postinst - mkdir -p /lib/modules/$version - touch /lib/modules/$version/.fresh-install -fi - -if [ -d /etc/kernel/preinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/preinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-sparc64-smp.prerm b/debian/linux-image-6.6.15-sparc64-smp.prerm deleted file mode 100644 index 050ca3afb6..0000000000 --- a/debian/linux-image-6.6.15-sparc64-smp.prerm +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-sparc64-smp -image_path=/boot/vmlinux-$version - -if [ "$1" != remove ]; then - exit 0 -fi - -linux-check-removal $version - -if [ -d /etc/kernel/prerm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/prerm.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-sparc64.NEWS b/debian/linux-image-6.6.15-sparc64.NEWS deleted file mode 100644 index f8e1fc0229..0000000000 --- a/debian/linux-image-6.6.15-sparc64.NEWS +++ /dev/null @@ -1,83 +0,0 @@ -linux (5.10.46-4) unstable; urgency=medium - - * From Linux 5.10.46-4, unprivileged calls to bpf() are disabled by - default, mitigating several security issues. However, an admin can - still change this setting later on, if needed, by writing 0 or 1 to - the kernel.unprivileged_bpf_disabled sysctl. - - If you prefer to keep unprivileged calls to bpf() enabled, set the - sysctl: - - kernel.unprivileged_bpf_disabled = 0 - - which is the upstream default. - - -- Salvatore Bonaccorso <carnil@debian.org> Mon, 02 Aug 2021 22:59:24 +0200 - -linux (5.10~rc7-1~exp2) unstable; urgency=medium - - * From Linux 5.10, all users are allowed to create user namespaces by - default. This will allow programs such as web browsers and container - managers to create more restricted sandboxes for untrusted or - less-trusted code, without the need to run as root or to use a - setuid-root helper. - - The previous Debian default was to restrict this feature to processes - running as root, because it exposed more security issues in the - kernel. However, the security benefits of more widespread sandboxing - probably now outweigh this risk. - - If you prefer to keep this feature restricted, set the sysctl: - - kernel.unprivileged_userns_clone = 0 - - -- Ben Hutchings <benh@debian.org> Sun, 13 Dec 2020 17:11:36 +0100 - -linux-latest (86) unstable; urgency=medium - - * From Linux 4.13.10-1, AppArmor is enabled by default. This allows - defining a "profile" for each installed program that can mitigate - security vulnerabilities in it. However, an incorrect profile might - disable some functionality of the program. - - In case you suspect that an AppArmor profile is incorrect, see - <https://lists.debian.org/debian-devel/2017/11/msg00178.html> and - consider reporting a bug in the package providing the profile. The - profile may be part of the program's package or apparmor-profiles. - - -- Ben Hutchings <ben@decadent.org.uk> Thu, 30 Nov 2017 20:08:25 +0000 - -linux-latest (81) unstable; urgency=medium - - * From Linux 4.10, the old 'virtual syscall' interface on 64-bit PCs - (amd64) is disabled. This breaks chroot environments and containers - that use (e)glibc 2.13 and earlier, including those based on Debian 7 - or RHEL/CentOS 6. To re-enable it, set the kernel parameter: - vsyscall=emulate - - -- Ben Hutchings <ben@decadent.org.uk> Fri, 30 Jun 2017 23:50:03 +0100 - -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 <ben@decadent.org.uk> 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 - <https://home.regit.org/netfilter-en/secure-use-of-helpers/>. - - -- Ben Hutchings <ben@decadent.org.uk> Sat, 29 Oct 2016 01:53:18 +0100 diff --git a/debian/linux-image-6.6.15-sparc64.postinst b/debian/linux-image-6.6.15-sparc64.postinst deleted file mode 100644 index 88504e1bde..0000000000 --- a/debian/linux-image-6.6.15-sparc64.postinst +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-sparc64 -image_path=/boot/vmlinux-$version - -if [ "$1" != configure ]; then - exit 0 -fi - -depmod $version - -if [ -f /lib/modules/$version/.fresh-install ]; then - change=install -else - change=upgrade -fi -linux-update-symlinks $change $version $image_path -rm -f /lib/modules/$version/.fresh-install - -if [ -d /etc/kernel/postinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-sparc64.postrm b/debian/linux-image-6.6.15-sparc64.postrm deleted file mode 100644 index f7a9ce842e..0000000000 --- a/debian/linux-image-6.6.15-sparc64.postrm +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-sparc64 -image_path=/boot/vmlinux-$version - -rm -f /lib/modules/$version/.fresh-install - -if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then - linux-update-symlinks remove $version $image_path -fi - -if [ -d /etc/kernel/postrm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/postrm.d -fi - -if [ "$1" = purge ]; then - for extra_file in modules.dep modules.isapnpmap modules.pcimap \ - modules.usbmap modules.parportmap \ - modules.generic_string modules.ieee1394map \ - modules.ieee1394map modules.pnpbiosmap \ - modules.alias modules.ccwmap modules.inputmap \ - modules.symbols modules.ofmap \ - modules.seriomap modules.\*.bin \ - modules.softdep modules.devname; do - eval rm -f /lib/modules/$version/$extra_file - done - rmdir /lib/modules/$version || true -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-sparc64.preinst b/debian/linux-image-6.6.15-sparc64.preinst deleted file mode 100644 index e6389d358c..0000000000 --- a/debian/linux-image-6.6.15-sparc64.preinst +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-sparc64 -image_path=/boot/vmlinux-$version - -if [ "$1" = abort-upgrade ]; then - exit 0 -fi - -if [ "$1" = install ]; then - # Create a flag file for postinst - mkdir -p /lib/modules/$version - touch /lib/modules/$version/.fresh-install -fi - -if [ -d /etc/kernel/preinst.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/preinst.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-sparc64.prerm b/debian/linux-image-6.6.15-sparc64.prerm deleted file mode 100644 index 3a92a8ddb2..0000000000 --- a/debian/linux-image-6.6.15-sparc64.prerm +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-sparc64 -image_path=/boot/vmlinux-$version - -if [ "$1" != remove ]; then - exit 0 -fi - -linux-check-removal $version - -if [ -d /etc/kernel/prerm.d ]; then - DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ - --arg=$image_path /etc/kernel/prerm.d -fi - -exit 0 diff --git a/debian/linux-image-6.6.15-parisc64-dbg.lintian-overrides b/debian/linux-image-6.7.7-4kc-malta-dbg.lintian-overrides index 5db378c1b1..8e5dcba23e 100644 --- a/debian/linux-image-6.6.15-parisc64-dbg.lintian-overrides +++ b/debian/linux-image-6.7.7-4kc-malta-dbg.lintian-overrides @@ -1,5 +1,5 @@ # Kernel dbg packages contain a full image with debug data -linux-image-6.6.15-parisc64-dbg: dbg-package-missing-depends +linux-image-6.7.7-4kc-malta-dbg: dbg-package-missing-depends # glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so # it's OK that they don't have it @@ -9,4 +9,4 @@ linux-image-6.6.15-parisc64-dbg: dbg-package-missing-depends # Some 32-bit architectures need 64-bit kernels and we still build # these as the "wrong" architecture rather than mandating multiarch. -linux-image-6.6.15-parisc64-dbg: binary-from-other-architecture *usr/lib/debug/* +linux-image-6.7.7-4kc-malta-dbg: binary-from-other-architecture *usr/lib/debug/* diff --git a/debian/linux-image-6.6.15-4kc-malta.NEWS b/debian/linux-image-6.7.7-4kc-malta.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/linux-image-6.6.15-4kc-malta.NEWS +++ b/debian/linux-image-6.7.7-4kc-malta.NEWS diff --git a/debian/linux-image-6.6.15-powerpc64le.lintian-overrides b/debian/linux-image-6.7.7-4kc-malta.lintian-overrides index cbb93fb7ab..14de16dce5 100644 --- a/debian/linux-image-6.6.15-powerpc64le.lintian-overrides +++ b/debian/linux-image-6.7.7-4kc-malta.lintian-overrides @@ -1,5 +1,7 @@ # Some 32-bit architectures need 64-bit kernels and we still build # these as the "wrong" architecture rather than mandating multiarch. +linux-image-6.7.7-4kc-malta: binary-from-other-architecture *boot/vmlinu* +linux-image-6.7.7-4kc-malta: binary-from-other-architecture *lib/modules/* # vmlinux needs extra sections that would normally be stripped. -linux-image-6.6.15-powerpc64le: unstripped-binary-or-object *boot/vmlinu* +linux-image-6.7.7-4kc-malta: unstripped-binary-or-object *boot/vmlinu* diff --git a/debian/generated.signed-amd64/linux-image-6.6.15-rt-amd64.postinst b/debian/linux-image-6.7.7-4kc-malta.postinst index 587a11381f..1b56490f1e 100644 --- a/debian/generated.signed-amd64/linux-image-6.6.15-rt-amd64.postinst +++ b/debian/linux-image-6.7.7-4kc-malta.postinst @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-rt-amd64 +version=6.7.7-4kc-malta image_path=/boot/vmlinuz-$version if [ "$1" != configure ]; then diff --git a/debian/generated.signed-arm64/linux-image-6.6.15-rt-arm64.postrm b/debian/linux-image-6.7.7-4kc-malta.postrm index 1e5145146e..4c0d49736b 100644 --- a/debian/generated.signed-arm64/linux-image-6.6.15-rt-arm64.postrm +++ b/debian/linux-image-6.7.7-4kc-malta.postrm @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-rt-arm64 +version=6.7.7-4kc-malta image_path=/boot/vmlinuz-$version rm -f /lib/modules/$version/.fresh-install diff --git a/debian/generated.signed-amd64/linux-image-6.6.15-rt-amd64.preinst b/debian/linux-image-6.7.7-4kc-malta.preinst index 407de403ba..7ee00b9583 100644 --- a/debian/generated.signed-amd64/linux-image-6.6.15-rt-amd64.preinst +++ b/debian/linux-image-6.7.7-4kc-malta.preinst @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-rt-amd64 +version=6.7.7-4kc-malta image_path=/boot/vmlinuz-$version if [ "$1" = abort-upgrade ]; then diff --git a/debian/generated.signed-amd64/linux-image-6.6.15-rt-amd64.prerm b/debian/linux-image-6.7.7-4kc-malta.prerm index 6944a0bccb..e99c5fdadd 100644 --- a/debian/generated.signed-amd64/linux-image-6.6.15-rt-amd64.prerm +++ b/debian/linux-image-6.7.7-4kc-malta.prerm @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-rt-amd64 +version=6.7.7-4kc-malta image_path=/boot/vmlinuz-$version if [ "$1" != remove ]; then diff --git a/debian/linux-image-6.6.15-mckinley-dbg.lintian-overrides b/debian/linux-image-6.7.7-5kc-malta-dbg.lintian-overrides index 404aaf0d66..874029d426 100644 --- a/debian/linux-image-6.6.15-mckinley-dbg.lintian-overrides +++ b/debian/linux-image-6.7.7-5kc-malta-dbg.lintian-overrides @@ -1,5 +1,5 @@ # Kernel dbg packages contain a full image with debug data -linux-image-6.6.15-mckinley-dbg: dbg-package-missing-depends +linux-image-6.7.7-5kc-malta-dbg: dbg-package-missing-depends # glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so # it's OK that they don't have it diff --git a/debian/linux-image-6.6.15-5kc-malta.NEWS b/debian/linux-image-6.7.7-5kc-malta.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/linux-image-6.6.15-5kc-malta.NEWS +++ b/debian/linux-image-6.7.7-5kc-malta.NEWS diff --git a/debian/linux-image-6.6.15-sparc64.lintian-overrides b/debian/linux-image-6.7.7-5kc-malta.lintian-overrides index 5e255135cd..9ab89cf008 100644 --- a/debian/linux-image-6.6.15-sparc64.lintian-overrides +++ b/debian/linux-image-6.7.7-5kc-malta.lintian-overrides @@ -2,3 +2,4 @@ # these as the "wrong" architecture rather than mandating multiarch. # vmlinux needs extra sections that would normally be stripped. +linux-image-6.7.7-5kc-malta: unstripped-binary-or-object *boot/vmlinu* diff --git a/debian/generated.signed-arm64/linux-image-6.6.15-rt-arm64.postinst b/debian/linux-image-6.7.7-5kc-malta.postinst index e55c6c4e7f..1ca27b6ade 100644 --- a/debian/generated.signed-arm64/linux-image-6.6.15-rt-arm64.postinst +++ b/debian/linux-image-6.7.7-5kc-malta.postinst @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-rt-arm64 +version=6.7.7-5kc-malta image_path=/boot/vmlinuz-$version if [ "$1" != configure ]; then diff --git a/debian/generated.signed-amd64/linux-image-6.6.15-rt-amd64.postrm b/debian/linux-image-6.7.7-5kc-malta.postrm index 27485d84e2..a0443542db 100644 --- a/debian/generated.signed-amd64/linux-image-6.6.15-rt-amd64.postrm +++ b/debian/linux-image-6.7.7-5kc-malta.postrm @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-rt-amd64 +version=6.7.7-5kc-malta image_path=/boot/vmlinuz-$version rm -f /lib/modules/$version/.fresh-install diff --git a/debian/generated.signed-arm64/linux-image-6.6.15-rt-arm64.preinst b/debian/linux-image-6.7.7-5kc-malta.preinst index d1c197ec5d..8301f67b5a 100644 --- a/debian/generated.signed-arm64/linux-image-6.6.15-rt-arm64.preinst +++ b/debian/linux-image-6.7.7-5kc-malta.preinst @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-rt-arm64 +version=6.7.7-5kc-malta image_path=/boot/vmlinuz-$version if [ "$1" = abort-upgrade ]; then diff --git a/debian/generated.signed-arm64/linux-image-6.6.15-rt-arm64.prerm b/debian/linux-image-6.7.7-5kc-malta.prerm index 5f70b7358c..337fdb92ef 100644 --- a/debian/generated.signed-arm64/linux-image-6.6.15-rt-arm64.prerm +++ b/debian/linux-image-6.7.7-5kc-malta.prerm @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-rt-arm64 +version=6.7.7-5kc-malta image_path=/boot/vmlinuz-$version if [ "$1" != remove ]; then diff --git a/debian/linux-image-6.7.7-686-dbg.lintian-overrides b/debian/linux-image-6.7.7-686-dbg.lintian-overrides new file mode 100644 index 0000000000..e1d57e7177 --- /dev/null +++ b/debian/linux-image-6.7.7-686-dbg.lintian-overrides @@ -0,0 +1,12 @@ +# Kernel dbg packages contain a full image with debug data +linux-image-6.7.7-686-dbg: dbg-package-missing-depends + +# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so +# it's OK that they don't have it +linux-image-6.7.7-686-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.7.7-686/vdso/vdso32.so* + +# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. +# lintian currently allows i386 executables on amd64. + +# Some 32-bit architectures need 64-bit kernels and we still build +# these as the "wrong" architecture rather than mandating multiarch. diff --git a/debian/linux-image-6.7.7-686-pae-dbg.lintian-overrides b/debian/linux-image-6.7.7-686-pae-dbg.lintian-overrides new file mode 100644 index 0000000000..50f6440af8 --- /dev/null +++ b/debian/linux-image-6.7.7-686-pae-dbg.lintian-overrides @@ -0,0 +1,12 @@ +# Kernel dbg packages contain a full image with debug data +linux-image-6.7.7-686-pae-dbg: dbg-package-missing-depends + +# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so +# it's OK that they don't have it +linux-image-6.7.7-686-pae-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.7.7-686-pae/vdso/vdso32.so* + +# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. +# lintian currently allows i386 executables on amd64. + +# Some 32-bit architectures need 64-bit kernels and we still build +# these as the "wrong" architecture rather than mandating multiarch. diff --git a/debian/linux-image-6.6.15-686-pae.NEWS b/debian/linux-image-6.7.7-686-pae.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/linux-image-6.6.15-686-pae.NEWS +++ b/debian/linux-image-6.7.7-686-pae.NEWS diff --git a/debian/linux-image-6.6.15-686-pae.lintian-overrides b/debian/linux-image-6.7.7-686-pae.lintian-overrides index 5e255135cd..5e255135cd 100644 --- a/debian/linux-image-6.6.15-686-pae.lintian-overrides +++ b/debian/linux-image-6.7.7-686-pae.lintian-overrides diff --git a/debian/linux-image-6.7.7-686-pae.postinst b/debian/linux-image-6.7.7-686-pae.postinst new file mode 100644 index 0000000000..cd2e7f7763 --- /dev/null +++ b/debian/linux-image-6.7.7-686-pae.postinst @@ -0,0 +1,25 @@ +#!/bin/sh -e + +version=6.7.7-686-pae +image_path=/boot/vmlinuz-$version + +if [ "$1" != configure ]; then + exit 0 +fi + +depmod $version + +if [ -f /lib/modules/$version/.fresh-install ]; then + change=install +else + change=upgrade +fi +linux-update-symlinks $change $version $image_path +rm -f /lib/modules/$version/.fresh-install + +if [ -d /etc/kernel/postinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-686-pae.postrm b/debian/linux-image-6.7.7-686-pae.postrm new file mode 100644 index 0000000000..827f9251d3 --- /dev/null +++ b/debian/linux-image-6.7.7-686-pae.postrm @@ -0,0 +1,31 @@ +#!/bin/sh -e + +version=6.7.7-686-pae +image_path=/boot/vmlinuz-$version + +rm -f /lib/modules/$version/.fresh-install + +if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then + linux-update-symlinks remove $version $image_path +fi + +if [ -d /etc/kernel/postrm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postrm.d +fi + +if [ "$1" = purge ]; then + for extra_file in modules.dep modules.isapnpmap modules.pcimap \ + modules.usbmap modules.parportmap \ + modules.generic_string modules.ieee1394map \ + modules.ieee1394map modules.pnpbiosmap \ + modules.alias modules.ccwmap modules.inputmap \ + modules.symbols modules.ofmap \ + modules.seriomap modules.\*.bin \ + modules.softdep modules.devname; do + eval rm -f /lib/modules/$version/$extra_file + done + rmdir /lib/modules/$version || true +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-686-pae.preinst b/debian/linux-image-6.7.7-686-pae.preinst new file mode 100644 index 0000000000..9d4ce16b37 --- /dev/null +++ b/debian/linux-image-6.7.7-686-pae.preinst @@ -0,0 +1,21 @@ +#!/bin/sh -e + +version=6.7.7-686-pae +image_path=/boot/vmlinuz-$version + +if [ "$1" = abort-upgrade ]; then + exit 0 +fi + +if [ "$1" = install ]; then + # Create a flag file for postinst + mkdir -p /lib/modules/$version + touch /lib/modules/$version/.fresh-install +fi + +if [ -d /etc/kernel/preinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/preinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-686-pae.prerm b/debian/linux-image-6.7.7-686-pae.prerm new file mode 100644 index 0000000000..c62ca4413f --- /dev/null +++ b/debian/linux-image-6.7.7-686-pae.prerm @@ -0,0 +1,17 @@ +#!/bin/sh -e + +version=6.7.7-686-pae +image_path=/boot/vmlinuz-$version + +if [ "$1" != remove ]; then + exit 0 +fi + +linux-check-removal $version + +if [ -d /etc/kernel/prerm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/prerm.d +fi + +exit 0 diff --git a/debian/linux-image-6.6.15-686.NEWS b/debian/linux-image-6.7.7-686.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/linux-image-6.6.15-686.NEWS +++ b/debian/linux-image-6.7.7-686.NEWS diff --git a/debian/linux-image-6.6.15-686.lintian-overrides b/debian/linux-image-6.7.7-686.lintian-overrides index 5e255135cd..5e255135cd 100644 --- a/debian/linux-image-6.6.15-686.lintian-overrides +++ b/debian/linux-image-6.7.7-686.lintian-overrides diff --git a/debian/linux-image-6.6.15-rpi.postinst b/debian/linux-image-6.7.7-686.postinst index ee5ad4179f..6e3a54d6af 100644 --- a/debian/linux-image-6.6.15-rpi.postinst +++ b/debian/linux-image-6.7.7-686.postinst @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-rpi +version=6.7.7-686 image_path=/boot/vmlinuz-$version if [ "$1" != configure ]; then diff --git a/debian/linux-image-6.6.15-rpi.postrm b/debian/linux-image-6.7.7-686.postrm index 369749fcee..ee9a47b889 100644 --- a/debian/linux-image-6.6.15-rpi.postrm +++ b/debian/linux-image-6.7.7-686.postrm @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-rpi +version=6.7.7-686 image_path=/boot/vmlinuz-$version rm -f /lib/modules/$version/.fresh-install diff --git a/debian/linux-image-6.6.15-rpi.preinst b/debian/linux-image-6.7.7-686.preinst index 342c3f2f4d..9558c2a1c0 100644 --- a/debian/linux-image-6.6.15-rpi.preinst +++ b/debian/linux-image-6.7.7-686.preinst @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-rpi +version=6.7.7-686 image_path=/boot/vmlinuz-$version if [ "$1" = abort-upgrade ]; then diff --git a/debian/linux-image-6.6.15-rpi.prerm b/debian/linux-image-6.7.7-686.prerm index dc3e89c265..30ee4dad97 100644 --- a/debian/linux-image-6.6.15-rpi.prerm +++ b/debian/linux-image-6.7.7-686.prerm @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-rpi +version=6.7.7-686 image_path=/boot/vmlinuz-$version if [ "$1" != remove ]; then diff --git a/debian/linux-image-6.7.7-alpha-generic-dbg.lintian-overrides b/debian/linux-image-6.7.7-alpha-generic-dbg.lintian-overrides new file mode 100644 index 0000000000..98a175e031 --- /dev/null +++ b/debian/linux-image-6.7.7-alpha-generic-dbg.lintian-overrides @@ -0,0 +1,11 @@ +# Kernel dbg packages contain a full image with debug data +linux-image-6.7.7-alpha-generic-dbg: dbg-package-missing-depends + +# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so +# it's OK that they don't have it + +# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. +# lintian currently allows i386 executables on amd64. + +# Some 32-bit architectures need 64-bit kernels and we still build +# these as the "wrong" architecture rather than mandating multiarch. diff --git a/debian/linux-image-6.6.15-alpha-generic.NEWS b/debian/linux-image-6.7.7-alpha-generic.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/linux-image-6.6.15-alpha-generic.NEWS +++ b/debian/linux-image-6.7.7-alpha-generic.NEWS diff --git a/debian/linux-image-6.6.15-alpha-generic.lintian-overrides b/debian/linux-image-6.7.7-alpha-generic.lintian-overrides index 5e255135cd..5e255135cd 100644 --- a/debian/linux-image-6.6.15-alpha-generic.lintian-overrides +++ b/debian/linux-image-6.7.7-alpha-generic.lintian-overrides diff --git a/debian/generated.signed-amd64/linux-image-6.6.15-cloud-amd64.postinst b/debian/linux-image-6.7.7-alpha-generic.postinst index 9608036561..a9dcf5bb3c 100644 --- a/debian/generated.signed-amd64/linux-image-6.6.15-cloud-amd64.postinst +++ b/debian/linux-image-6.7.7-alpha-generic.postinst @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-cloud-amd64 +version=6.7.7-alpha-generic image_path=/boot/vmlinuz-$version if [ "$1" != configure ]; then diff --git a/debian/generated.signed-amd64/linux-image-6.6.15-cloud-amd64.postrm b/debian/linux-image-6.7.7-alpha-generic.postrm index 4edf0e0e55..744c034769 100644 --- a/debian/generated.signed-amd64/linux-image-6.6.15-cloud-amd64.postrm +++ b/debian/linux-image-6.7.7-alpha-generic.postrm @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-cloud-amd64 +version=6.7.7-alpha-generic image_path=/boot/vmlinuz-$version rm -f /lib/modules/$version/.fresh-install diff --git a/debian/generated.signed-amd64/linux-image-6.6.15-cloud-amd64.preinst b/debian/linux-image-6.7.7-alpha-generic.preinst index b51902f932..0c2a7b04ce 100644 --- a/debian/generated.signed-amd64/linux-image-6.6.15-cloud-amd64.preinst +++ b/debian/linux-image-6.7.7-alpha-generic.preinst @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-cloud-amd64 +version=6.7.7-alpha-generic image_path=/boot/vmlinuz-$version if [ "$1" = abort-upgrade ]; then diff --git a/debian/generated.signed-amd64/linux-image-6.6.15-cloud-amd64.prerm b/debian/linux-image-6.7.7-alpha-generic.prerm index 4938f371ef..8c30601c64 100644 --- a/debian/generated.signed-amd64/linux-image-6.6.15-cloud-amd64.prerm +++ b/debian/linux-image-6.7.7-alpha-generic.prerm @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-cloud-amd64 +version=6.7.7-alpha-generic image_path=/boot/vmlinuz-$version if [ "$1" != remove ]; then diff --git a/debian/linux-image-6.7.7-alpha-smp-dbg.lintian-overrides b/debian/linux-image-6.7.7-alpha-smp-dbg.lintian-overrides new file mode 100644 index 0000000000..bf518c83f6 --- /dev/null +++ b/debian/linux-image-6.7.7-alpha-smp-dbg.lintian-overrides @@ -0,0 +1,11 @@ +# Kernel dbg packages contain a full image with debug data +linux-image-6.7.7-alpha-smp-dbg: dbg-package-missing-depends + +# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so +# it's OK that they don't have it + +# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. +# lintian currently allows i386 executables on amd64. + +# Some 32-bit architectures need 64-bit kernels and we still build +# these as the "wrong" architecture rather than mandating multiarch. diff --git a/debian/linux-image-6.6.15-alpha-smp.NEWS b/debian/linux-image-6.7.7-alpha-smp.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/linux-image-6.6.15-alpha-smp.NEWS +++ b/debian/linux-image-6.7.7-alpha-smp.NEWS diff --git a/debian/linux-image-6.6.15-alpha-smp.lintian-overrides b/debian/linux-image-6.7.7-alpha-smp.lintian-overrides index 5e255135cd..5e255135cd 100644 --- a/debian/linux-image-6.6.15-alpha-smp.lintian-overrides +++ b/debian/linux-image-6.7.7-alpha-smp.lintian-overrides diff --git a/debian/linux-image-6.7.7-alpha-smp.postinst b/debian/linux-image-6.7.7-alpha-smp.postinst new file mode 100644 index 0000000000..8ad667a264 --- /dev/null +++ b/debian/linux-image-6.7.7-alpha-smp.postinst @@ -0,0 +1,25 @@ +#!/bin/sh -e + +version=6.7.7-alpha-smp +image_path=/boot/vmlinuz-$version + +if [ "$1" != configure ]; then + exit 0 +fi + +depmod $version + +if [ -f /lib/modules/$version/.fresh-install ]; then + change=install +else + change=upgrade +fi +linux-update-symlinks $change $version $image_path +rm -f /lib/modules/$version/.fresh-install + +if [ -d /etc/kernel/postinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-alpha-smp.postrm b/debian/linux-image-6.7.7-alpha-smp.postrm new file mode 100644 index 0000000000..9ce027b156 --- /dev/null +++ b/debian/linux-image-6.7.7-alpha-smp.postrm @@ -0,0 +1,31 @@ +#!/bin/sh -e + +version=6.7.7-alpha-smp +image_path=/boot/vmlinuz-$version + +rm -f /lib/modules/$version/.fresh-install + +if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then + linux-update-symlinks remove $version $image_path +fi + +if [ -d /etc/kernel/postrm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postrm.d +fi + +if [ "$1" = purge ]; then + for extra_file in modules.dep modules.isapnpmap modules.pcimap \ + modules.usbmap modules.parportmap \ + modules.generic_string modules.ieee1394map \ + modules.ieee1394map modules.pnpbiosmap \ + modules.alias modules.ccwmap modules.inputmap \ + modules.symbols modules.ofmap \ + modules.seriomap modules.\*.bin \ + modules.softdep modules.devname; do + eval rm -f /lib/modules/$version/$extra_file + done + rmdir /lib/modules/$version || true +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-alpha-smp.preinst b/debian/linux-image-6.7.7-alpha-smp.preinst new file mode 100644 index 0000000000..b7375ceb6c --- /dev/null +++ b/debian/linux-image-6.7.7-alpha-smp.preinst @@ -0,0 +1,21 @@ +#!/bin/sh -e + +version=6.7.7-alpha-smp +image_path=/boot/vmlinuz-$version + +if [ "$1" = abort-upgrade ]; then + exit 0 +fi + +if [ "$1" = install ]; then + # Create a flag file for postinst + mkdir -p /lib/modules/$version + touch /lib/modules/$version/.fresh-install +fi + +if [ -d /etc/kernel/preinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/preinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-alpha-smp.prerm b/debian/linux-image-6.7.7-alpha-smp.prerm new file mode 100644 index 0000000000..29be0f0ba0 --- /dev/null +++ b/debian/linux-image-6.7.7-alpha-smp.prerm @@ -0,0 +1,17 @@ +#!/bin/sh -e + +version=6.7.7-alpha-smp +image_path=/boot/vmlinuz-$version + +if [ "$1" != remove ]; then + exit 0 +fi + +linux-check-removal $version + +if [ -d /etc/kernel/prerm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/prerm.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-amd64-dbg.lintian-overrides b/debian/linux-image-6.7.7-amd64-dbg.lintian-overrides new file mode 100644 index 0000000000..0331af7d4b --- /dev/null +++ b/debian/linux-image-6.7.7-amd64-dbg.lintian-overrides @@ -0,0 +1,15 @@ +# Kernel dbg packages contain a full image with debug data +linux-image-6.7.7-amd64-dbg: dbg-package-missing-depends + +# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so +# it's OK that they don't have it +linux-image-6.7.7-amd64-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.7.7-amd64/vdso/vdso32.so* +linux-image-6.7.7-amd64-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.7.7-amd64/vdso/vdso64.so* +linux-image-6.7.7-amd64-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.7.7-amd64/vdso/vdsox32.so* + +# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. +# lintian currently allows i386 executables on amd64. +linux-image-6.7.7-amd64-dbg: binary-from-other-architecture *usr/lib/debug/lib/modules/6.7.7-amd64/vdso/vdsox32.so* + +# Some 32-bit architectures need 64-bit kernels and we still build +# these as the "wrong" architecture rather than mandating multiarch. diff --git a/debian/linux-image-6.6.15-amd64-unsigned.NEWS b/debian/linux-image-6.7.7-amd64-unsigned.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/linux-image-6.6.15-amd64-unsigned.NEWS +++ b/debian/linux-image-6.7.7-amd64-unsigned.NEWS diff --git a/debian/linux-image-6.6.15-amd64-unsigned.lintian-overrides b/debian/linux-image-6.7.7-amd64-unsigned.lintian-overrides index 5e255135cd..5e255135cd 100644 --- a/debian/linux-image-6.6.15-amd64-unsigned.lintian-overrides +++ b/debian/linux-image-6.7.7-amd64-unsigned.lintian-overrides diff --git a/debian/linux-image-6.7.7-amd64-unsigned.postinst b/debian/linux-image-6.7.7-amd64-unsigned.postinst new file mode 100644 index 0000000000..d0f8e6c804 --- /dev/null +++ b/debian/linux-image-6.7.7-amd64-unsigned.postinst @@ -0,0 +1,25 @@ +#!/bin/sh -e + +version=6.7.7-amd64 +image_path=/boot/vmlinuz-$version + +if [ "$1" != configure ]; then + exit 0 +fi + +depmod $version + +if [ -f /lib/modules/$version/.fresh-install ]; then + change=install +else + change=upgrade +fi +linux-update-symlinks $change $version $image_path +rm -f /lib/modules/$version/.fresh-install + +if [ -d /etc/kernel/postinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-amd64-unsigned.postrm b/debian/linux-image-6.7.7-amd64-unsigned.postrm new file mode 100644 index 0000000000..87eebf9801 --- /dev/null +++ b/debian/linux-image-6.7.7-amd64-unsigned.postrm @@ -0,0 +1,31 @@ +#!/bin/sh -e + +version=6.7.7-amd64 +image_path=/boot/vmlinuz-$version + +rm -f /lib/modules/$version/.fresh-install + +if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then + linux-update-symlinks remove $version $image_path +fi + +if [ -d /etc/kernel/postrm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postrm.d +fi + +if [ "$1" = purge ]; then + for extra_file in modules.dep modules.isapnpmap modules.pcimap \ + modules.usbmap modules.parportmap \ + modules.generic_string modules.ieee1394map \ + modules.ieee1394map modules.pnpbiosmap \ + modules.alias modules.ccwmap modules.inputmap \ + modules.symbols modules.ofmap \ + modules.seriomap modules.\*.bin \ + modules.softdep modules.devname; do + eval rm -f /lib/modules/$version/$extra_file + done + rmdir /lib/modules/$version || true +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-amd64-unsigned.preinst b/debian/linux-image-6.7.7-amd64-unsigned.preinst new file mode 100644 index 0000000000..6769f48470 --- /dev/null +++ b/debian/linux-image-6.7.7-amd64-unsigned.preinst @@ -0,0 +1,21 @@ +#!/bin/sh -e + +version=6.7.7-amd64 +image_path=/boot/vmlinuz-$version + +if [ "$1" = abort-upgrade ]; then + exit 0 +fi + +if [ "$1" = install ]; then + # Create a flag file for postinst + mkdir -p /lib/modules/$version + touch /lib/modules/$version/.fresh-install +fi + +if [ -d /etc/kernel/preinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/preinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-amd64-unsigned.prerm b/debian/linux-image-6.7.7-amd64-unsigned.prerm new file mode 100644 index 0000000000..e755aa500b --- /dev/null +++ b/debian/linux-image-6.7.7-amd64-unsigned.prerm @@ -0,0 +1,17 @@ +#!/bin/sh -e + +version=6.7.7-amd64 +image_path=/boot/vmlinuz-$version + +if [ "$1" != remove ]; then + exit 0 +fi + +linux-check-removal $version + +if [ -d /etc/kernel/prerm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/prerm.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-arm64-dbg.lintian-overrides b/debian/linux-image-6.7.7-arm64-dbg.lintian-overrides new file mode 100644 index 0000000000..3863c2b9f6 --- /dev/null +++ b/debian/linux-image-6.7.7-arm64-dbg.lintian-overrides @@ -0,0 +1,14 @@ +# Kernel dbg packages contain a full image with debug data +linux-image-6.7.7-arm64-dbg: dbg-package-missing-depends + +# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so +# it's OK that they don't have it +linux-image-6.7.7-arm64-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.7.7-arm64/vdso/vdso.so* +linux-image-6.7.7-arm64-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.7.7-arm64/vdso/vdso32.so* + +# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. +# lintian currently allows i386 executables on amd64. +linux-image-6.7.7-arm64-dbg: binary-from-other-architecture *usr/lib/debug/lib/modules/6.7.7-arm64/vdso/vdso32.so* + +# Some 32-bit architectures need 64-bit kernels and we still build +# these as the "wrong" architecture rather than mandating multiarch. diff --git a/debian/linux-image-6.6.15-arm64-unsigned.NEWS b/debian/linux-image-6.7.7-arm64-unsigned.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/linux-image-6.6.15-arm64-unsigned.NEWS +++ b/debian/linux-image-6.7.7-arm64-unsigned.NEWS diff --git a/debian/linux-image-6.6.15-arm64-unsigned.lintian-overrides b/debian/linux-image-6.7.7-arm64-unsigned.lintian-overrides index 5e255135cd..5e255135cd 100644 --- a/debian/linux-image-6.6.15-arm64-unsigned.lintian-overrides +++ b/debian/linux-image-6.7.7-arm64-unsigned.lintian-overrides diff --git a/debian/linux-image-6.7.7-arm64-unsigned.postinst b/debian/linux-image-6.7.7-arm64-unsigned.postinst new file mode 100644 index 0000000000..4f9d54bea9 --- /dev/null +++ b/debian/linux-image-6.7.7-arm64-unsigned.postinst @@ -0,0 +1,25 @@ +#!/bin/sh -e + +version=6.7.7-arm64 +image_path=/boot/vmlinuz-$version + +if [ "$1" != configure ]; then + exit 0 +fi + +depmod $version + +if [ -f /lib/modules/$version/.fresh-install ]; then + change=install +else + change=upgrade +fi +linux-update-symlinks $change $version $image_path +rm -f /lib/modules/$version/.fresh-install + +if [ -d /etc/kernel/postinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-arm64-unsigned.postrm b/debian/linux-image-6.7.7-arm64-unsigned.postrm new file mode 100644 index 0000000000..78977ffe81 --- /dev/null +++ b/debian/linux-image-6.7.7-arm64-unsigned.postrm @@ -0,0 +1,31 @@ +#!/bin/sh -e + +version=6.7.7-arm64 +image_path=/boot/vmlinuz-$version + +rm -f /lib/modules/$version/.fresh-install + +if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then + linux-update-symlinks remove $version $image_path +fi + +if [ -d /etc/kernel/postrm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postrm.d +fi + +if [ "$1" = purge ]; then + for extra_file in modules.dep modules.isapnpmap modules.pcimap \ + modules.usbmap modules.parportmap \ + modules.generic_string modules.ieee1394map \ + modules.ieee1394map modules.pnpbiosmap \ + modules.alias modules.ccwmap modules.inputmap \ + modules.symbols modules.ofmap \ + modules.seriomap modules.\*.bin \ + modules.softdep modules.devname; do + eval rm -f /lib/modules/$version/$extra_file + done + rmdir /lib/modules/$version || true +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-arm64-unsigned.preinst b/debian/linux-image-6.7.7-arm64-unsigned.preinst new file mode 100644 index 0000000000..7a8c286978 --- /dev/null +++ b/debian/linux-image-6.7.7-arm64-unsigned.preinst @@ -0,0 +1,21 @@ +#!/bin/sh -e + +version=6.7.7-arm64 +image_path=/boot/vmlinuz-$version + +if [ "$1" = abort-upgrade ]; then + exit 0 +fi + +if [ "$1" = install ]; then + # Create a flag file for postinst + mkdir -p /lib/modules/$version + touch /lib/modules/$version/.fresh-install +fi + +if [ -d /etc/kernel/preinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/preinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-arm64-unsigned.prerm b/debian/linux-image-6.7.7-arm64-unsigned.prerm new file mode 100644 index 0000000000..1638b15c9a --- /dev/null +++ b/debian/linux-image-6.7.7-arm64-unsigned.prerm @@ -0,0 +1,17 @@ +#!/bin/sh -e + +version=6.7.7-arm64 +image_path=/boot/vmlinuz-$version + +if [ "$1" != remove ]; then + exit 0 +fi + +linux-check-removal $version + +if [ -d /etc/kernel/prerm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/prerm.d +fi + +exit 0 diff --git a/debian/linux-image-6.6.15-686-dbg.lintian-overrides b/debian/linux-image-6.7.7-armmp-dbg.lintian-overrides index 37ee32be9e..9e0fc9ee2c 100644 --- a/debian/linux-image-6.6.15-686-dbg.lintian-overrides +++ b/debian/linux-image-6.7.7-armmp-dbg.lintian-overrides @@ -1,9 +1,9 @@ # Kernel dbg packages contain a full image with debug data -linux-image-6.6.15-686-dbg: dbg-package-missing-depends +linux-image-6.7.7-armmp-dbg: dbg-package-missing-depends # glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so # it's OK that they don't have it -linux-image-6.6.15-686-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.6.15-686/vdso/vdso32.so* +linux-image-6.7.7-armmp-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.7.7-armmp/vdso/vdso.so* # It is intended that 64-bit kernels provide vDSOs for 32-bit executables. # lintian currently allows i386 executables on amd64. diff --git a/debian/linux-image-6.6.15-686-pae-dbg.lintian-overrides b/debian/linux-image-6.7.7-armmp-lpae-dbg.lintian-overrides index 22b0f74cab..20d91f139d 100644 --- a/debian/linux-image-6.6.15-686-pae-dbg.lintian-overrides +++ b/debian/linux-image-6.7.7-armmp-lpae-dbg.lintian-overrides @@ -1,9 +1,9 @@ # Kernel dbg packages contain a full image with debug data -linux-image-6.6.15-686-pae-dbg: dbg-package-missing-depends +linux-image-6.7.7-armmp-lpae-dbg: dbg-package-missing-depends # glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so # it's OK that they don't have it -linux-image-6.6.15-686-pae-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.6.15-686-pae/vdso/vdso32.so* +linux-image-6.7.7-armmp-lpae-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.7.7-armmp-lpae/vdso/vdso.so* # It is intended that 64-bit kernels provide vDSOs for 32-bit executables. # lintian currently allows i386 executables on amd64. diff --git a/debian/linux-image-6.6.15-armmp-lpae.NEWS b/debian/linux-image-6.7.7-armmp-lpae.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/linux-image-6.6.15-armmp-lpae.NEWS +++ b/debian/linux-image-6.7.7-armmp-lpae.NEWS diff --git a/debian/linux-image-6.6.15-armmp-lpae.lintian-overrides b/debian/linux-image-6.7.7-armmp-lpae.lintian-overrides index 5e255135cd..5e255135cd 100644 --- a/debian/linux-image-6.6.15-armmp-lpae.lintian-overrides +++ b/debian/linux-image-6.7.7-armmp-lpae.lintian-overrides diff --git a/debian/linux-image-6.7.7-armmp-lpae.postinst b/debian/linux-image-6.7.7-armmp-lpae.postinst new file mode 100644 index 0000000000..bfc6f41470 --- /dev/null +++ b/debian/linux-image-6.7.7-armmp-lpae.postinst @@ -0,0 +1,25 @@ +#!/bin/sh -e + +version=6.7.7-armmp-lpae +image_path=/boot/vmlinuz-$version + +if [ "$1" != configure ]; then + exit 0 +fi + +depmod $version + +if [ -f /lib/modules/$version/.fresh-install ]; then + change=install +else + change=upgrade +fi +linux-update-symlinks $change $version $image_path +rm -f /lib/modules/$version/.fresh-install + +if [ -d /etc/kernel/postinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-armmp-lpae.postrm b/debian/linux-image-6.7.7-armmp-lpae.postrm new file mode 100644 index 0000000000..3a4b17e79d --- /dev/null +++ b/debian/linux-image-6.7.7-armmp-lpae.postrm @@ -0,0 +1,31 @@ +#!/bin/sh -e + +version=6.7.7-armmp-lpae +image_path=/boot/vmlinuz-$version + +rm -f /lib/modules/$version/.fresh-install + +if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then + linux-update-symlinks remove $version $image_path +fi + +if [ -d /etc/kernel/postrm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postrm.d +fi + +if [ "$1" = purge ]; then + for extra_file in modules.dep modules.isapnpmap modules.pcimap \ + modules.usbmap modules.parportmap \ + modules.generic_string modules.ieee1394map \ + modules.ieee1394map modules.pnpbiosmap \ + modules.alias modules.ccwmap modules.inputmap \ + modules.symbols modules.ofmap \ + modules.seriomap modules.\*.bin \ + modules.softdep modules.devname; do + eval rm -f /lib/modules/$version/$extra_file + done + rmdir /lib/modules/$version || true +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-armmp-lpae.preinst b/debian/linux-image-6.7.7-armmp-lpae.preinst new file mode 100644 index 0000000000..4f3913c33b --- /dev/null +++ b/debian/linux-image-6.7.7-armmp-lpae.preinst @@ -0,0 +1,21 @@ +#!/bin/sh -e + +version=6.7.7-armmp-lpae +image_path=/boot/vmlinuz-$version + +if [ "$1" = abort-upgrade ]; then + exit 0 +fi + +if [ "$1" = install ]; then + # Create a flag file for postinst + mkdir -p /lib/modules/$version + touch /lib/modules/$version/.fresh-install +fi + +if [ -d /etc/kernel/preinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/preinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-armmp-lpae.prerm b/debian/linux-image-6.7.7-armmp-lpae.prerm new file mode 100644 index 0000000000..009f320aa2 --- /dev/null +++ b/debian/linux-image-6.7.7-armmp-lpae.prerm @@ -0,0 +1,17 @@ +#!/bin/sh -e + +version=6.7.7-armmp-lpae +image_path=/boot/vmlinuz-$version + +if [ "$1" != remove ]; then + exit 0 +fi + +linux-check-removal $version + +if [ -d /etc/kernel/prerm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/prerm.d +fi + +exit 0 diff --git a/debian/linux-image-6.6.15-armmp.NEWS b/debian/linux-image-6.7.7-armmp.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/linux-image-6.6.15-armmp.NEWS +++ b/debian/linux-image-6.7.7-armmp.NEWS diff --git a/debian/linux-image-6.6.15-armmp.lintian-overrides b/debian/linux-image-6.7.7-armmp.lintian-overrides index 5e255135cd..5e255135cd 100644 --- a/debian/linux-image-6.6.15-armmp.lintian-overrides +++ b/debian/linux-image-6.7.7-armmp.lintian-overrides diff --git a/debian/linux-image-6.7.7-armmp.postinst b/debian/linux-image-6.7.7-armmp.postinst new file mode 100644 index 0000000000..a09eb44d75 --- /dev/null +++ b/debian/linux-image-6.7.7-armmp.postinst @@ -0,0 +1,25 @@ +#!/bin/sh -e + +version=6.7.7-armmp +image_path=/boot/vmlinuz-$version + +if [ "$1" != configure ]; then + exit 0 +fi + +depmod $version + +if [ -f /lib/modules/$version/.fresh-install ]; then + change=install +else + change=upgrade +fi +linux-update-symlinks $change $version $image_path +rm -f /lib/modules/$version/.fresh-install + +if [ -d /etc/kernel/postinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-armmp.postrm b/debian/linux-image-6.7.7-armmp.postrm new file mode 100644 index 0000000000..348982e9bc --- /dev/null +++ b/debian/linux-image-6.7.7-armmp.postrm @@ -0,0 +1,31 @@ +#!/bin/sh -e + +version=6.7.7-armmp +image_path=/boot/vmlinuz-$version + +rm -f /lib/modules/$version/.fresh-install + +if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then + linux-update-symlinks remove $version $image_path +fi + +if [ -d /etc/kernel/postrm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postrm.d +fi + +if [ "$1" = purge ]; then + for extra_file in modules.dep modules.isapnpmap modules.pcimap \ + modules.usbmap modules.parportmap \ + modules.generic_string modules.ieee1394map \ + modules.ieee1394map modules.pnpbiosmap \ + modules.alias modules.ccwmap modules.inputmap \ + modules.symbols modules.ofmap \ + modules.seriomap modules.\*.bin \ + modules.softdep modules.devname; do + eval rm -f /lib/modules/$version/$extra_file + done + rmdir /lib/modules/$version || true +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-armmp.preinst b/debian/linux-image-6.7.7-armmp.preinst new file mode 100644 index 0000000000..490c036ea6 --- /dev/null +++ b/debian/linux-image-6.7.7-armmp.preinst @@ -0,0 +1,21 @@ +#!/bin/sh -e + +version=6.7.7-armmp +image_path=/boot/vmlinuz-$version + +if [ "$1" = abort-upgrade ]; then + exit 0 +fi + +if [ "$1" = install ]; then + # Create a flag file for postinst + mkdir -p /lib/modules/$version + touch /lib/modules/$version/.fresh-install +fi + +if [ -d /etc/kernel/preinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/preinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-armmp.prerm b/debian/linux-image-6.7.7-armmp.prerm new file mode 100644 index 0000000000..a17d38c2b6 --- /dev/null +++ b/debian/linux-image-6.7.7-armmp.prerm @@ -0,0 +1,17 @@ +#!/bin/sh -e + +version=6.7.7-armmp +image_path=/boot/vmlinuz-$version + +if [ "$1" != remove ]; then + exit 0 +fi + +linux-check-removal $version + +if [ -d /etc/kernel/prerm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/prerm.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-cloud-amd64-dbg.lintian-overrides b/debian/linux-image-6.7.7-cloud-amd64-dbg.lintian-overrides new file mode 100644 index 0000000000..7dcc2ad277 --- /dev/null +++ b/debian/linux-image-6.7.7-cloud-amd64-dbg.lintian-overrides @@ -0,0 +1,15 @@ +# Kernel dbg packages contain a full image with debug data +linux-image-6.7.7-cloud-amd64-dbg: dbg-package-missing-depends + +# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so +# it's OK that they don't have it +linux-image-6.7.7-cloud-amd64-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.7.7-cloud-amd64/vdso/vdso32.so* +linux-image-6.7.7-cloud-amd64-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.7.7-cloud-amd64/vdso/vdso64.so* +linux-image-6.7.7-cloud-amd64-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.7.7-cloud-amd64/vdso/vdsox32.so* + +# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. +# lintian currently allows i386 executables on amd64. +linux-image-6.7.7-cloud-amd64-dbg: binary-from-other-architecture *usr/lib/debug/lib/modules/6.7.7-cloud-amd64/vdso/vdsox32.so* + +# Some 32-bit architectures need 64-bit kernels and we still build +# these as the "wrong" architecture rather than mandating multiarch. diff --git a/debian/linux-image-6.6.15-cloud-amd64-unsigned.NEWS b/debian/linux-image-6.7.7-cloud-amd64-unsigned.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/linux-image-6.6.15-cloud-amd64-unsigned.NEWS +++ b/debian/linux-image-6.7.7-cloud-amd64-unsigned.NEWS diff --git a/debian/linux-image-6.6.15-cloud-amd64-unsigned.lintian-overrides b/debian/linux-image-6.7.7-cloud-amd64-unsigned.lintian-overrides index 5e255135cd..5e255135cd 100644 --- a/debian/linux-image-6.6.15-cloud-amd64-unsigned.lintian-overrides +++ b/debian/linux-image-6.7.7-cloud-amd64-unsigned.lintian-overrides diff --git a/debian/linux-image-6.7.7-cloud-amd64-unsigned.postinst b/debian/linux-image-6.7.7-cloud-amd64-unsigned.postinst new file mode 100644 index 0000000000..256582d345 --- /dev/null +++ b/debian/linux-image-6.7.7-cloud-amd64-unsigned.postinst @@ -0,0 +1,25 @@ +#!/bin/sh -e + +version=6.7.7-cloud-amd64 +image_path=/boot/vmlinuz-$version + +if [ "$1" != configure ]; then + exit 0 +fi + +depmod $version + +if [ -f /lib/modules/$version/.fresh-install ]; then + change=install +else + change=upgrade +fi +linux-update-symlinks $change $version $image_path +rm -f /lib/modules/$version/.fresh-install + +if [ -d /etc/kernel/postinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-cloud-amd64-unsigned.postrm b/debian/linux-image-6.7.7-cloud-amd64-unsigned.postrm new file mode 100644 index 0000000000..cda89f6c43 --- /dev/null +++ b/debian/linux-image-6.7.7-cloud-amd64-unsigned.postrm @@ -0,0 +1,31 @@ +#!/bin/sh -e + +version=6.7.7-cloud-amd64 +image_path=/boot/vmlinuz-$version + +rm -f /lib/modules/$version/.fresh-install + +if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then + linux-update-symlinks remove $version $image_path +fi + +if [ -d /etc/kernel/postrm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postrm.d +fi + +if [ "$1" = purge ]; then + for extra_file in modules.dep modules.isapnpmap modules.pcimap \ + modules.usbmap modules.parportmap \ + modules.generic_string modules.ieee1394map \ + modules.ieee1394map modules.pnpbiosmap \ + modules.alias modules.ccwmap modules.inputmap \ + modules.symbols modules.ofmap \ + modules.seriomap modules.\*.bin \ + modules.softdep modules.devname; do + eval rm -f /lib/modules/$version/$extra_file + done + rmdir /lib/modules/$version || true +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-cloud-amd64-unsigned.preinst b/debian/linux-image-6.7.7-cloud-amd64-unsigned.preinst new file mode 100644 index 0000000000..ab35edc28f --- /dev/null +++ b/debian/linux-image-6.7.7-cloud-amd64-unsigned.preinst @@ -0,0 +1,21 @@ +#!/bin/sh -e + +version=6.7.7-cloud-amd64 +image_path=/boot/vmlinuz-$version + +if [ "$1" = abort-upgrade ]; then + exit 0 +fi + +if [ "$1" = install ]; then + # Create a flag file for postinst + mkdir -p /lib/modules/$version + touch /lib/modules/$version/.fresh-install +fi + +if [ -d /etc/kernel/preinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/preinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-cloud-amd64-unsigned.prerm b/debian/linux-image-6.7.7-cloud-amd64-unsigned.prerm new file mode 100644 index 0000000000..4e1a186bb3 --- /dev/null +++ b/debian/linux-image-6.7.7-cloud-amd64-unsigned.prerm @@ -0,0 +1,17 @@ +#!/bin/sh -e + +version=6.7.7-cloud-amd64 +image_path=/boot/vmlinuz-$version + +if [ "$1" != remove ]; then + exit 0 +fi + +linux-check-removal $version + +if [ -d /etc/kernel/prerm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/prerm.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-cloud-arm64-dbg.lintian-overrides b/debian/linux-image-6.7.7-cloud-arm64-dbg.lintian-overrides new file mode 100644 index 0000000000..341efe6ebc --- /dev/null +++ b/debian/linux-image-6.7.7-cloud-arm64-dbg.lintian-overrides @@ -0,0 +1,14 @@ +# Kernel dbg packages contain a full image with debug data +linux-image-6.7.7-cloud-arm64-dbg: dbg-package-missing-depends + +# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so +# it's OK that they don't have it +linux-image-6.7.7-cloud-arm64-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.7.7-cloud-arm64/vdso/vdso.so* +linux-image-6.7.7-cloud-arm64-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.7.7-cloud-arm64/vdso/vdso32.so* + +# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. +# lintian currently allows i386 executables on amd64. +linux-image-6.7.7-cloud-arm64-dbg: binary-from-other-architecture *usr/lib/debug/lib/modules/6.7.7-cloud-arm64/vdso/vdso32.so* + +# Some 32-bit architectures need 64-bit kernels and we still build +# these as the "wrong" architecture rather than mandating multiarch. diff --git a/debian/linux-image-6.6.15-cloud-arm64-unsigned.NEWS b/debian/linux-image-6.7.7-cloud-arm64-unsigned.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/linux-image-6.6.15-cloud-arm64-unsigned.NEWS +++ b/debian/linux-image-6.7.7-cloud-arm64-unsigned.NEWS diff --git a/debian/linux-image-6.6.15-cloud-arm64-unsigned.lintian-overrides b/debian/linux-image-6.7.7-cloud-arm64-unsigned.lintian-overrides index 5e255135cd..5e255135cd 100644 --- a/debian/linux-image-6.6.15-cloud-arm64-unsigned.lintian-overrides +++ b/debian/linux-image-6.7.7-cloud-arm64-unsigned.lintian-overrides diff --git a/debian/linux-image-6.7.7-cloud-arm64-unsigned.postinst b/debian/linux-image-6.7.7-cloud-arm64-unsigned.postinst new file mode 100644 index 0000000000..b800c147a5 --- /dev/null +++ b/debian/linux-image-6.7.7-cloud-arm64-unsigned.postinst @@ -0,0 +1,25 @@ +#!/bin/sh -e + +version=6.7.7-cloud-arm64 +image_path=/boot/vmlinuz-$version + +if [ "$1" != configure ]; then + exit 0 +fi + +depmod $version + +if [ -f /lib/modules/$version/.fresh-install ]; then + change=install +else + change=upgrade +fi +linux-update-symlinks $change $version $image_path +rm -f /lib/modules/$version/.fresh-install + +if [ -d /etc/kernel/postinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-cloud-arm64-unsigned.postrm b/debian/linux-image-6.7.7-cloud-arm64-unsigned.postrm new file mode 100644 index 0000000000..82a12e06a2 --- /dev/null +++ b/debian/linux-image-6.7.7-cloud-arm64-unsigned.postrm @@ -0,0 +1,31 @@ +#!/bin/sh -e + +version=6.7.7-cloud-arm64 +image_path=/boot/vmlinuz-$version + +rm -f /lib/modules/$version/.fresh-install + +if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then + linux-update-symlinks remove $version $image_path +fi + +if [ -d /etc/kernel/postrm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postrm.d +fi + +if [ "$1" = purge ]; then + for extra_file in modules.dep modules.isapnpmap modules.pcimap \ + modules.usbmap modules.parportmap \ + modules.generic_string modules.ieee1394map \ + modules.ieee1394map modules.pnpbiosmap \ + modules.alias modules.ccwmap modules.inputmap \ + modules.symbols modules.ofmap \ + modules.seriomap modules.\*.bin \ + modules.softdep modules.devname; do + eval rm -f /lib/modules/$version/$extra_file + done + rmdir /lib/modules/$version || true +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-cloud-arm64-unsigned.preinst b/debian/linux-image-6.7.7-cloud-arm64-unsigned.preinst new file mode 100644 index 0000000000..6b1cbc74ff --- /dev/null +++ b/debian/linux-image-6.7.7-cloud-arm64-unsigned.preinst @@ -0,0 +1,21 @@ +#!/bin/sh -e + +version=6.7.7-cloud-arm64 +image_path=/boot/vmlinuz-$version + +if [ "$1" = abort-upgrade ]; then + exit 0 +fi + +if [ "$1" = install ]; then + # Create a flag file for postinst + mkdir -p /lib/modules/$version + touch /lib/modules/$version/.fresh-install +fi + +if [ -d /etc/kernel/preinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/preinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-cloud-arm64-unsigned.prerm b/debian/linux-image-6.7.7-cloud-arm64-unsigned.prerm new file mode 100644 index 0000000000..89397bf5cd --- /dev/null +++ b/debian/linux-image-6.7.7-cloud-arm64-unsigned.prerm @@ -0,0 +1,17 @@ +#!/bin/sh -e + +version=6.7.7-cloud-arm64 +image_path=/boot/vmlinuz-$version + +if [ "$1" != remove ]; then + exit 0 +fi + +linux-check-removal $version + +if [ -d /etc/kernel/prerm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/prerm.d +fi + +exit 0 diff --git a/debian/linux-image-6.6.15-itanium-dbg.lintian-overrides b/debian/linux-image-6.7.7-loong64-dbg.lintian-overrides index 930eadd3c8..21078666e7 100644 --- a/debian/linux-image-6.6.15-itanium-dbg.lintian-overrides +++ b/debian/linux-image-6.7.7-loong64-dbg.lintian-overrides @@ -1,5 +1,5 @@ # Kernel dbg packages contain a full image with debug data -linux-image-6.6.15-itanium-dbg: dbg-package-missing-depends +linux-image-6.7.7-loong64-dbg: dbg-package-missing-depends # glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so # it's OK that they don't have it diff --git a/debian/linux-image-6.6.15-itanium.NEWS b/debian/linux-image-6.7.7-loong64.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/linux-image-6.6.15-itanium.NEWS +++ b/debian/linux-image-6.7.7-loong64.NEWS diff --git a/debian/linux-image-6.6.15-itanium.lintian-overrides b/debian/linux-image-6.7.7-loong64.lintian-overrides index 5e255135cd..5e255135cd 100644 --- a/debian/linux-image-6.6.15-itanium.lintian-overrides +++ b/debian/linux-image-6.7.7-loong64.lintian-overrides diff --git a/debian/linux-image-6.7.7-loong64.postinst b/debian/linux-image-6.7.7-loong64.postinst new file mode 100644 index 0000000000..637b494e16 --- /dev/null +++ b/debian/linux-image-6.7.7-loong64.postinst @@ -0,0 +1,25 @@ +#!/bin/sh -e + +version=6.7.7-loong64 +image_path=/boot/vmlinuz-$version + +if [ "$1" != configure ]; then + exit 0 +fi + +depmod $version + +if [ -f /lib/modules/$version/.fresh-install ]; then + change=install +else + change=upgrade +fi +linux-update-symlinks $change $version $image_path +rm -f /lib/modules/$version/.fresh-install + +if [ -d /etc/kernel/postinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-loong64.postrm b/debian/linux-image-6.7.7-loong64.postrm new file mode 100644 index 0000000000..bf7b275d1d --- /dev/null +++ b/debian/linux-image-6.7.7-loong64.postrm @@ -0,0 +1,31 @@ +#!/bin/sh -e + +version=6.7.7-loong64 +image_path=/boot/vmlinuz-$version + +rm -f /lib/modules/$version/.fresh-install + +if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then + linux-update-symlinks remove $version $image_path +fi + +if [ -d /etc/kernel/postrm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postrm.d +fi + +if [ "$1" = purge ]; then + for extra_file in modules.dep modules.isapnpmap modules.pcimap \ + modules.usbmap modules.parportmap \ + modules.generic_string modules.ieee1394map \ + modules.ieee1394map modules.pnpbiosmap \ + modules.alias modules.ccwmap modules.inputmap \ + modules.symbols modules.ofmap \ + modules.seriomap modules.\*.bin \ + modules.softdep modules.devname; do + eval rm -f /lib/modules/$version/$extra_file + done + rmdir /lib/modules/$version || true +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-loong64.preinst b/debian/linux-image-6.7.7-loong64.preinst new file mode 100644 index 0000000000..a862d5ab67 --- /dev/null +++ b/debian/linux-image-6.7.7-loong64.preinst @@ -0,0 +1,21 @@ +#!/bin/sh -e + +version=6.7.7-loong64 +image_path=/boot/vmlinuz-$version + +if [ "$1" = abort-upgrade ]; then + exit 0 +fi + +if [ "$1" = install ]; then + # Create a flag file for postinst + mkdir -p /lib/modules/$version + touch /lib/modules/$version/.fresh-install +fi + +if [ -d /etc/kernel/preinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/preinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-loong64.prerm b/debian/linux-image-6.7.7-loong64.prerm new file mode 100644 index 0000000000..fabb00f9f9 --- /dev/null +++ b/debian/linux-image-6.7.7-loong64.prerm @@ -0,0 +1,17 @@ +#!/bin/sh -e + +version=6.7.7-loong64 +image_path=/boot/vmlinuz-$version + +if [ "$1" != remove ]; then + exit 0 +fi + +linux-check-removal $version + +if [ -d /etc/kernel/prerm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/prerm.d +fi + +exit 0 diff --git a/debian/linux-image-6.6.15-4kc-malta-dbg.lintian-overrides b/debian/linux-image-6.7.7-loongson-3-dbg.lintian-overrides index 8928b3afec..f5347d89fb 100644 --- a/debian/linux-image-6.6.15-4kc-malta-dbg.lintian-overrides +++ b/debian/linux-image-6.7.7-loongson-3-dbg.lintian-overrides @@ -1,5 +1,5 @@ # Kernel dbg packages contain a full image with debug data -linux-image-6.6.15-4kc-malta-dbg: dbg-package-missing-depends +linux-image-6.7.7-loongson-3-dbg: dbg-package-missing-depends # glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so # it's OK that they don't have it @@ -9,4 +9,4 @@ linux-image-6.6.15-4kc-malta-dbg: dbg-package-missing-depends # Some 32-bit architectures need 64-bit kernels and we still build # these as the "wrong" architecture rather than mandating multiarch. -linux-image-6.6.15-4kc-malta-dbg: binary-from-other-architecture *usr/lib/debug/* +linux-image-6.7.7-loongson-3-dbg: binary-from-other-architecture *usr/lib/debug/* diff --git a/debian/linux-image-6.6.15-loongson-3.NEWS b/debian/linux-image-6.7.7-loongson-3.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/linux-image-6.6.15-loongson-3.NEWS +++ b/debian/linux-image-6.7.7-loongson-3.NEWS diff --git a/debian/linux-image-6.6.15-4kc-malta.lintian-overrides b/debian/linux-image-6.7.7-loongson-3.lintian-overrides index f8ad854700..182effb5d9 100644 --- a/debian/linux-image-6.6.15-4kc-malta.lintian-overrides +++ b/debian/linux-image-6.7.7-loongson-3.lintian-overrides @@ -1,7 +1,7 @@ # Some 32-bit architectures need 64-bit kernels and we still build # these as the "wrong" architecture rather than mandating multiarch. -linux-image-6.6.15-4kc-malta: binary-from-other-architecture *boot/vmlinu* -linux-image-6.6.15-4kc-malta: binary-from-other-architecture *lib/modules/* +linux-image-6.7.7-loongson-3: binary-from-other-architecture *boot/vmlinu* +linux-image-6.7.7-loongson-3: binary-from-other-architecture *lib/modules/* # vmlinux needs extra sections that would normally be stripped. -linux-image-6.6.15-4kc-malta: unstripped-binary-or-object *boot/vmlinu* +linux-image-6.7.7-loongson-3: unstripped-binary-or-object *boot/vmlinu* diff --git a/debian/linux-image-6.7.7-loongson-3.postinst b/debian/linux-image-6.7.7-loongson-3.postinst new file mode 100644 index 0000000000..9d0059a2a7 --- /dev/null +++ b/debian/linux-image-6.7.7-loongson-3.postinst @@ -0,0 +1,25 @@ +#!/bin/sh -e + +version=6.7.7-loongson-3 +image_path=/boot/vmlinuz-$version + +if [ "$1" != configure ]; then + exit 0 +fi + +depmod $version + +if [ -f /lib/modules/$version/.fresh-install ]; then + change=install +else + change=upgrade +fi +linux-update-symlinks $change $version $image_path +rm -f /lib/modules/$version/.fresh-install + +if [ -d /etc/kernel/postinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-loongson-3.postrm b/debian/linux-image-6.7.7-loongson-3.postrm new file mode 100644 index 0000000000..ec27b6046c --- /dev/null +++ b/debian/linux-image-6.7.7-loongson-3.postrm @@ -0,0 +1,31 @@ +#!/bin/sh -e + +version=6.7.7-loongson-3 +image_path=/boot/vmlinuz-$version + +rm -f /lib/modules/$version/.fresh-install + +if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then + linux-update-symlinks remove $version $image_path +fi + +if [ -d /etc/kernel/postrm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postrm.d +fi + +if [ "$1" = purge ]; then + for extra_file in modules.dep modules.isapnpmap modules.pcimap \ + modules.usbmap modules.parportmap \ + modules.generic_string modules.ieee1394map \ + modules.ieee1394map modules.pnpbiosmap \ + modules.alias modules.ccwmap modules.inputmap \ + modules.symbols modules.ofmap \ + modules.seriomap modules.\*.bin \ + modules.softdep modules.devname; do + eval rm -f /lib/modules/$version/$extra_file + done + rmdir /lib/modules/$version || true +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-loongson-3.preinst b/debian/linux-image-6.7.7-loongson-3.preinst new file mode 100644 index 0000000000..50f3338dc5 --- /dev/null +++ b/debian/linux-image-6.7.7-loongson-3.preinst @@ -0,0 +1,21 @@ +#!/bin/sh -e + +version=6.7.7-loongson-3 +image_path=/boot/vmlinuz-$version + +if [ "$1" = abort-upgrade ]; then + exit 0 +fi + +if [ "$1" = install ]; then + # Create a flag file for postinst + mkdir -p /lib/modules/$version + touch /lib/modules/$version/.fresh-install +fi + +if [ -d /etc/kernel/preinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/preinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-loongson-3.prerm b/debian/linux-image-6.7.7-loongson-3.prerm new file mode 100644 index 0000000000..276dbf7ee8 --- /dev/null +++ b/debian/linux-image-6.7.7-loongson-3.prerm @@ -0,0 +1,17 @@ +#!/bin/sh -e + +version=6.7.7-loongson-3 +image_path=/boot/vmlinuz-$version + +if [ "$1" != remove ]; then + exit 0 +fi + +linux-check-removal $version + +if [ -d /etc/kernel/prerm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/prerm.d +fi + +exit 0 diff --git a/debian/linux-image-6.6.15-rpi-dbg.lintian-overrides b/debian/linux-image-6.7.7-m68k-dbg.lintian-overrides index c7ecfbf591..306b295ace 100644 --- a/debian/linux-image-6.6.15-rpi-dbg.lintian-overrides +++ b/debian/linux-image-6.7.7-m68k-dbg.lintian-overrides @@ -1,5 +1,5 @@ # Kernel dbg packages contain a full image with debug data -linux-image-6.6.15-rpi-dbg: dbg-package-missing-depends +linux-image-6.7.7-m68k-dbg: dbg-package-missing-depends # glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so # it's OK that they don't have it diff --git a/debian/linux-image-6.6.15-m68k.NEWS b/debian/linux-image-6.7.7-m68k.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/linux-image-6.6.15-m68k.NEWS +++ b/debian/linux-image-6.7.7-m68k.NEWS diff --git a/debian/linux-image-6.6.15-m68k.lintian-overrides b/debian/linux-image-6.7.7-m68k.lintian-overrides index 5e255135cd..5e255135cd 100644 --- a/debian/linux-image-6.6.15-m68k.lintian-overrides +++ b/debian/linux-image-6.7.7-m68k.lintian-overrides diff --git a/debian/linux-image-6.6.15-m68k.postinst b/debian/linux-image-6.7.7-m68k.postinst index cac1b29490..046fb6e72e 100644 --- a/debian/linux-image-6.6.15-m68k.postinst +++ b/debian/linux-image-6.7.7-m68k.postinst @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-m68k +version=6.7.7-m68k image_path=/boot/vmlinux-$version if [ "$1" != configure ]; then diff --git a/debian/linux-image-6.6.15-m68k.postrm b/debian/linux-image-6.7.7-m68k.postrm index 29ab2b3cce..4843e7f5c7 100644 --- a/debian/linux-image-6.6.15-m68k.postrm +++ b/debian/linux-image-6.7.7-m68k.postrm @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-m68k +version=6.7.7-m68k image_path=/boot/vmlinux-$version rm -f /lib/modules/$version/.fresh-install diff --git a/debian/linux-image-6.6.15-m68k.preinst b/debian/linux-image-6.7.7-m68k.preinst index 2cbc8f2ab8..64d31e2f11 100644 --- a/debian/linux-image-6.6.15-m68k.preinst +++ b/debian/linux-image-6.7.7-m68k.preinst @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-m68k +version=6.7.7-m68k image_path=/boot/vmlinux-$version if [ "$1" = abort-upgrade ]; then diff --git a/debian/linux-image-6.6.15-m68k.prerm b/debian/linux-image-6.7.7-m68k.prerm index f83842236c..14c0031b1d 100644 --- a/debian/linux-image-6.6.15-m68k.prerm +++ b/debian/linux-image-6.7.7-m68k.prerm @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-m68k +version=6.7.7-m68k image_path=/boot/vmlinux-$version if [ "$1" != remove ]; then diff --git a/debian/linux-image-6.7.7-mips32r2eb-dbg.lintian-overrides b/debian/linux-image-6.7.7-mips32r2eb-dbg.lintian-overrides new file mode 100644 index 0000000000..a2da59ffe7 --- /dev/null +++ b/debian/linux-image-6.7.7-mips32r2eb-dbg.lintian-overrides @@ -0,0 +1,12 @@ +# Kernel dbg packages contain a full image with debug data +linux-image-6.7.7-mips32r2eb-dbg: dbg-package-missing-depends + +# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so +# it's OK that they don't have it + +# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. +# lintian currently allows i386 executables on amd64. + +# Some 32-bit architectures need 64-bit kernels and we still build +# these as the "wrong" architecture rather than mandating multiarch. +linux-image-6.7.7-mips32r2eb-dbg: binary-from-other-architecture *usr/lib/debug/* diff --git a/debian/linux-image-6.6.15-mckinley.NEWS b/debian/linux-image-6.7.7-mips32r2eb.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/linux-image-6.6.15-mckinley.NEWS +++ b/debian/linux-image-6.7.7-mips32r2eb.NEWS diff --git a/debian/linux-image-6.7.7-mips32r2eb.lintian-overrides b/debian/linux-image-6.7.7-mips32r2eb.lintian-overrides new file mode 100644 index 0000000000..49fcea3145 --- /dev/null +++ b/debian/linux-image-6.7.7-mips32r2eb.lintian-overrides @@ -0,0 +1,6 @@ +# Some 32-bit architectures need 64-bit kernels and we still build +# these as the "wrong" architecture rather than mandating multiarch. +linux-image-6.7.7-mips32r2eb: binary-from-other-architecture *boot/vmlinu* +linux-image-6.7.7-mips32r2eb: binary-from-other-architecture *lib/modules/* + +# vmlinux needs extra sections that would normally be stripped. diff --git a/debian/linux-image-6.7.7-mips32r2eb.postinst b/debian/linux-image-6.7.7-mips32r2eb.postinst new file mode 100644 index 0000000000..f839ed7092 --- /dev/null +++ b/debian/linux-image-6.7.7-mips32r2eb.postinst @@ -0,0 +1,25 @@ +#!/bin/sh -e + +version=6.7.7-mips32r2eb +image_path=/boot/vmlinuz-$version + +if [ "$1" != configure ]; then + exit 0 +fi + +depmod $version + +if [ -f /lib/modules/$version/.fresh-install ]; then + change=install +else + change=upgrade +fi +linux-update-symlinks $change $version $image_path +rm -f /lib/modules/$version/.fresh-install + +if [ -d /etc/kernel/postinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-mips32r2eb.postrm b/debian/linux-image-6.7.7-mips32r2eb.postrm new file mode 100644 index 0000000000..c0d9900fd2 --- /dev/null +++ b/debian/linux-image-6.7.7-mips32r2eb.postrm @@ -0,0 +1,31 @@ +#!/bin/sh -e + +version=6.7.7-mips32r2eb +image_path=/boot/vmlinuz-$version + +rm -f /lib/modules/$version/.fresh-install + +if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then + linux-update-symlinks remove $version $image_path +fi + +if [ -d /etc/kernel/postrm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postrm.d +fi + +if [ "$1" = purge ]; then + for extra_file in modules.dep modules.isapnpmap modules.pcimap \ + modules.usbmap modules.parportmap \ + modules.generic_string modules.ieee1394map \ + modules.ieee1394map modules.pnpbiosmap \ + modules.alias modules.ccwmap modules.inputmap \ + modules.symbols modules.ofmap \ + modules.seriomap modules.\*.bin \ + modules.softdep modules.devname; do + eval rm -f /lib/modules/$version/$extra_file + done + rmdir /lib/modules/$version || true +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-mips32r2eb.preinst b/debian/linux-image-6.7.7-mips32r2eb.preinst new file mode 100644 index 0000000000..6c1fcdf7a3 --- /dev/null +++ b/debian/linux-image-6.7.7-mips32r2eb.preinst @@ -0,0 +1,21 @@ +#!/bin/sh -e + +version=6.7.7-mips32r2eb +image_path=/boot/vmlinuz-$version + +if [ "$1" = abort-upgrade ]; then + exit 0 +fi + +if [ "$1" = install ]; then + # Create a flag file for postinst + mkdir -p /lib/modules/$version + touch /lib/modules/$version/.fresh-install +fi + +if [ -d /etc/kernel/preinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/preinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-mips32r2eb.prerm b/debian/linux-image-6.7.7-mips32r2eb.prerm new file mode 100644 index 0000000000..ce5891276e --- /dev/null +++ b/debian/linux-image-6.7.7-mips32r2eb.prerm @@ -0,0 +1,17 @@ +#!/bin/sh -e + +version=6.7.7-mips32r2eb +image_path=/boot/vmlinuz-$version + +if [ "$1" != remove ]; then + exit 0 +fi + +linux-check-removal $version + +if [ -d /etc/kernel/prerm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/prerm.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-mips32r2el-dbg.lintian-overrides b/debian/linux-image-6.7.7-mips32r2el-dbg.lintian-overrides new file mode 100644 index 0000000000..8f116ca81c --- /dev/null +++ b/debian/linux-image-6.7.7-mips32r2el-dbg.lintian-overrides @@ -0,0 +1,12 @@ +# Kernel dbg packages contain a full image with debug data +linux-image-6.7.7-mips32r2el-dbg: dbg-package-missing-depends + +# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so +# it's OK that they don't have it + +# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. +# lintian currently allows i386 executables on amd64. + +# Some 32-bit architectures need 64-bit kernels and we still build +# these as the "wrong" architecture rather than mandating multiarch. +linux-image-6.7.7-mips32r2el-dbg: binary-from-other-architecture *usr/lib/debug/* diff --git a/debian/linux-image-6.6.15-mips32r2eb.NEWS b/debian/linux-image-6.7.7-mips32r2el.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/linux-image-6.6.15-mips32r2eb.NEWS +++ b/debian/linux-image-6.7.7-mips32r2el.NEWS diff --git a/debian/linux-image-6.7.7-mips32r2el.lintian-overrides b/debian/linux-image-6.7.7-mips32r2el.lintian-overrides new file mode 100644 index 0000000000..cd416927c6 --- /dev/null +++ b/debian/linux-image-6.7.7-mips32r2el.lintian-overrides @@ -0,0 +1,7 @@ +# Some 32-bit architectures need 64-bit kernels and we still build +# these as the "wrong" architecture rather than mandating multiarch. +linux-image-6.7.7-mips32r2el: binary-from-other-architecture *boot/vmlinu* +linux-image-6.7.7-mips32r2el: binary-from-other-architecture *lib/modules/* + +# vmlinux needs extra sections that would normally be stripped. +linux-image-6.7.7-mips32r2el: unstripped-binary-or-object *boot/vmlinu* diff --git a/debian/linux-image-6.7.7-mips32r2el.postinst b/debian/linux-image-6.7.7-mips32r2el.postinst new file mode 100644 index 0000000000..f8b085ff8a --- /dev/null +++ b/debian/linux-image-6.7.7-mips32r2el.postinst @@ -0,0 +1,25 @@ +#!/bin/sh -e + +version=6.7.7-mips32r2el +image_path=/boot/vmlinuz-$version + +if [ "$1" != configure ]; then + exit 0 +fi + +depmod $version + +if [ -f /lib/modules/$version/.fresh-install ]; then + change=install +else + change=upgrade +fi +linux-update-symlinks $change $version $image_path +rm -f /lib/modules/$version/.fresh-install + +if [ -d /etc/kernel/postinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-mips32r2el.postrm b/debian/linux-image-6.7.7-mips32r2el.postrm new file mode 100644 index 0000000000..14cd03ed7e --- /dev/null +++ b/debian/linux-image-6.7.7-mips32r2el.postrm @@ -0,0 +1,31 @@ +#!/bin/sh -e + +version=6.7.7-mips32r2el +image_path=/boot/vmlinuz-$version + +rm -f /lib/modules/$version/.fresh-install + +if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then + linux-update-symlinks remove $version $image_path +fi + +if [ -d /etc/kernel/postrm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postrm.d +fi + +if [ "$1" = purge ]; then + for extra_file in modules.dep modules.isapnpmap modules.pcimap \ + modules.usbmap modules.parportmap \ + modules.generic_string modules.ieee1394map \ + modules.ieee1394map modules.pnpbiosmap \ + modules.alias modules.ccwmap modules.inputmap \ + modules.symbols modules.ofmap \ + modules.seriomap modules.\*.bin \ + modules.softdep modules.devname; do + eval rm -f /lib/modules/$version/$extra_file + done + rmdir /lib/modules/$version || true +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-mips32r2el.preinst b/debian/linux-image-6.7.7-mips32r2el.preinst new file mode 100644 index 0000000000..e7f759c8ea --- /dev/null +++ b/debian/linux-image-6.7.7-mips32r2el.preinst @@ -0,0 +1,21 @@ +#!/bin/sh -e + +version=6.7.7-mips32r2el +image_path=/boot/vmlinuz-$version + +if [ "$1" = abort-upgrade ]; then + exit 0 +fi + +if [ "$1" = install ]; then + # Create a flag file for postinst + mkdir -p /lib/modules/$version + touch /lib/modules/$version/.fresh-install +fi + +if [ -d /etc/kernel/preinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/preinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-mips32r2el.prerm b/debian/linux-image-6.7.7-mips32r2el.prerm new file mode 100644 index 0000000000..2cead70dc9 --- /dev/null +++ b/debian/linux-image-6.7.7-mips32r2el.prerm @@ -0,0 +1,17 @@ +#!/bin/sh -e + +version=6.7.7-mips32r2el +image_path=/boot/vmlinuz-$version + +if [ "$1" != remove ]; then + exit 0 +fi + +linux-check-removal $version + +if [ -d /etc/kernel/prerm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/prerm.d +fi + +exit 0 diff --git a/debian/linux-image-6.6.15-alpha-smp-dbg.lintian-overrides b/debian/linux-image-6.7.7-mips64r2eb-dbg.lintian-overrides index 1717760d3c..2e2353b8a4 100644 --- a/debian/linux-image-6.6.15-alpha-smp-dbg.lintian-overrides +++ b/debian/linux-image-6.7.7-mips64r2eb-dbg.lintian-overrides @@ -1,5 +1,5 @@ # Kernel dbg packages contain a full image with debug data -linux-image-6.6.15-alpha-smp-dbg: dbg-package-missing-depends +linux-image-6.7.7-mips64r2eb-dbg: dbg-package-missing-depends # glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so # it's OK that they don't have it diff --git a/debian/linux-image-6.6.15-mips32r2el.NEWS b/debian/linux-image-6.7.7-mips64r2eb.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/linux-image-6.6.15-mips32r2el.NEWS +++ b/debian/linux-image-6.7.7-mips64r2eb.NEWS diff --git a/debian/linux-image-6.6.15-mckinley.lintian-overrides b/debian/linux-image-6.7.7-mips64r2eb.lintian-overrides index 5e255135cd..5e255135cd 100644 --- a/debian/linux-image-6.6.15-mckinley.lintian-overrides +++ b/debian/linux-image-6.7.7-mips64r2eb.lintian-overrides diff --git a/debian/linux-image-6.7.7-mips64r2eb.postinst b/debian/linux-image-6.7.7-mips64r2eb.postinst new file mode 100644 index 0000000000..4a599dd882 --- /dev/null +++ b/debian/linux-image-6.7.7-mips64r2eb.postinst @@ -0,0 +1,25 @@ +#!/bin/sh -e + +version=6.7.7-mips64r2eb +image_path=/boot/vmlinuz-$version + +if [ "$1" != configure ]; then + exit 0 +fi + +depmod $version + +if [ -f /lib/modules/$version/.fresh-install ]; then + change=install +else + change=upgrade +fi +linux-update-symlinks $change $version $image_path +rm -f /lib/modules/$version/.fresh-install + +if [ -d /etc/kernel/postinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-mips64r2eb.postrm b/debian/linux-image-6.7.7-mips64r2eb.postrm new file mode 100644 index 0000000000..5e9afffa2a --- /dev/null +++ b/debian/linux-image-6.7.7-mips64r2eb.postrm @@ -0,0 +1,31 @@ +#!/bin/sh -e + +version=6.7.7-mips64r2eb +image_path=/boot/vmlinuz-$version + +rm -f /lib/modules/$version/.fresh-install + +if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then + linux-update-symlinks remove $version $image_path +fi + +if [ -d /etc/kernel/postrm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postrm.d +fi + +if [ "$1" = purge ]; then + for extra_file in modules.dep modules.isapnpmap modules.pcimap \ + modules.usbmap modules.parportmap \ + modules.generic_string modules.ieee1394map \ + modules.ieee1394map modules.pnpbiosmap \ + modules.alias modules.ccwmap modules.inputmap \ + modules.symbols modules.ofmap \ + modules.seriomap modules.\*.bin \ + modules.softdep modules.devname; do + eval rm -f /lib/modules/$version/$extra_file + done + rmdir /lib/modules/$version || true +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-mips64r2eb.preinst b/debian/linux-image-6.7.7-mips64r2eb.preinst new file mode 100644 index 0000000000..0f437cffaf --- /dev/null +++ b/debian/linux-image-6.7.7-mips64r2eb.preinst @@ -0,0 +1,21 @@ +#!/bin/sh -e + +version=6.7.7-mips64r2eb +image_path=/boot/vmlinuz-$version + +if [ "$1" = abort-upgrade ]; then + exit 0 +fi + +if [ "$1" = install ]; then + # Create a flag file for postinst + mkdir -p /lib/modules/$version + touch /lib/modules/$version/.fresh-install +fi + +if [ -d /etc/kernel/preinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/preinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-mips64r2eb.prerm b/debian/linux-image-6.7.7-mips64r2eb.prerm new file mode 100644 index 0000000000..e5e656d91c --- /dev/null +++ b/debian/linux-image-6.7.7-mips64r2eb.prerm @@ -0,0 +1,17 @@ +#!/bin/sh -e + +version=6.7.7-mips64r2eb +image_path=/boot/vmlinuz-$version + +if [ "$1" != remove ]; then + exit 0 +fi + +linux-check-removal $version + +if [ -d /etc/kernel/prerm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/prerm.d +fi + +exit 0 diff --git a/debian/linux-image-6.6.15-5kc-malta-dbg.lintian-overrides b/debian/linux-image-6.7.7-mips64r2el-dbg.lintian-overrides index ad59408c0a..be380ba4d7 100644 --- a/debian/linux-image-6.6.15-5kc-malta-dbg.lintian-overrides +++ b/debian/linux-image-6.7.7-mips64r2el-dbg.lintian-overrides @@ -1,5 +1,5 @@ # Kernel dbg packages contain a full image with debug data -linux-image-6.6.15-5kc-malta-dbg: dbg-package-missing-depends +linux-image-6.7.7-mips64r2el-dbg: dbg-package-missing-depends # glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so # it's OK that they don't have it diff --git a/debian/linux-image-6.6.15-mips64r2eb.NEWS b/debian/linux-image-6.7.7-mips64r2el.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/linux-image-6.6.15-mips64r2eb.NEWS +++ b/debian/linux-image-6.7.7-mips64r2el.NEWS diff --git a/debian/linux-image-6.6.15-5kc-malta.lintian-overrides b/debian/linux-image-6.7.7-mips64r2el.lintian-overrides index e43f61a53d..b13285c7fb 100644 --- a/debian/linux-image-6.6.15-5kc-malta.lintian-overrides +++ b/debian/linux-image-6.7.7-mips64r2el.lintian-overrides @@ -2,4 +2,4 @@ # these as the "wrong" architecture rather than mandating multiarch. # vmlinux needs extra sections that would normally be stripped. -linux-image-6.6.15-5kc-malta: unstripped-binary-or-object *boot/vmlinu* +linux-image-6.7.7-mips64r2el: unstripped-binary-or-object *boot/vmlinu* diff --git a/debian/linux-image-6.7.7-mips64r2el.postinst b/debian/linux-image-6.7.7-mips64r2el.postinst new file mode 100644 index 0000000000..ac61f037b9 --- /dev/null +++ b/debian/linux-image-6.7.7-mips64r2el.postinst @@ -0,0 +1,25 @@ +#!/bin/sh -e + +version=6.7.7-mips64r2el +image_path=/boot/vmlinuz-$version + +if [ "$1" != configure ]; then + exit 0 +fi + +depmod $version + +if [ -f /lib/modules/$version/.fresh-install ]; then + change=install +else + change=upgrade +fi +linux-update-symlinks $change $version $image_path +rm -f /lib/modules/$version/.fresh-install + +if [ -d /etc/kernel/postinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-mips64r2el.postrm b/debian/linux-image-6.7.7-mips64r2el.postrm new file mode 100644 index 0000000000..5578bbecb4 --- /dev/null +++ b/debian/linux-image-6.7.7-mips64r2el.postrm @@ -0,0 +1,31 @@ +#!/bin/sh -e + +version=6.7.7-mips64r2el +image_path=/boot/vmlinuz-$version + +rm -f /lib/modules/$version/.fresh-install + +if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then + linux-update-symlinks remove $version $image_path +fi + +if [ -d /etc/kernel/postrm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postrm.d +fi + +if [ "$1" = purge ]; then + for extra_file in modules.dep modules.isapnpmap modules.pcimap \ + modules.usbmap modules.parportmap \ + modules.generic_string modules.ieee1394map \ + modules.ieee1394map modules.pnpbiosmap \ + modules.alias modules.ccwmap modules.inputmap \ + modules.symbols modules.ofmap \ + modules.seriomap modules.\*.bin \ + modules.softdep modules.devname; do + eval rm -f /lib/modules/$version/$extra_file + done + rmdir /lib/modules/$version || true +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-mips64r2el.preinst b/debian/linux-image-6.7.7-mips64r2el.preinst new file mode 100644 index 0000000000..9858005cb1 --- /dev/null +++ b/debian/linux-image-6.7.7-mips64r2el.preinst @@ -0,0 +1,21 @@ +#!/bin/sh -e + +version=6.7.7-mips64r2el +image_path=/boot/vmlinuz-$version + +if [ "$1" = abort-upgrade ]; then + exit 0 +fi + +if [ "$1" = install ]; then + # Create a flag file for postinst + mkdir -p /lib/modules/$version + touch /lib/modules/$version/.fresh-install +fi + +if [ -d /etc/kernel/preinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/preinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-mips64r2el.prerm b/debian/linux-image-6.7.7-mips64r2el.prerm new file mode 100644 index 0000000000..b7b8a241f6 --- /dev/null +++ b/debian/linux-image-6.7.7-mips64r2el.prerm @@ -0,0 +1,17 @@ +#!/bin/sh -e + +version=6.7.7-mips64r2el +image_path=/boot/vmlinuz-$version + +if [ "$1" != remove ]; then + exit 0 +fi + +linux-check-removal $version + +if [ -d /etc/kernel/prerm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/prerm.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-mips64r6el-dbg.lintian-overrides b/debian/linux-image-6.7.7-mips64r6el-dbg.lintian-overrides new file mode 100644 index 0000000000..1a10f487ff --- /dev/null +++ b/debian/linux-image-6.7.7-mips64r6el-dbg.lintian-overrides @@ -0,0 +1,11 @@ +# Kernel dbg packages contain a full image with debug data +linux-image-6.7.7-mips64r6el-dbg: dbg-package-missing-depends + +# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so +# it's OK that they don't have it + +# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. +# lintian currently allows i386 executables on amd64. + +# Some 32-bit architectures need 64-bit kernels and we still build +# these as the "wrong" architecture rather than mandating multiarch. diff --git a/debian/linux-image-6.6.15-mips64r2el.NEWS b/debian/linux-image-6.7.7-mips64r6el.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/linux-image-6.6.15-mips64r2el.NEWS +++ b/debian/linux-image-6.7.7-mips64r6el.NEWS diff --git a/debian/linux-image-6.6.15-mips64r2eb.lintian-overrides b/debian/linux-image-6.7.7-mips64r6el.lintian-overrides index 5e255135cd..5e255135cd 100644 --- a/debian/linux-image-6.6.15-mips64r2eb.lintian-overrides +++ b/debian/linux-image-6.7.7-mips64r6el.lintian-overrides diff --git a/debian/linux-image-6.7.7-mips64r6el.postinst b/debian/linux-image-6.7.7-mips64r6el.postinst new file mode 100644 index 0000000000..e9c563e95d --- /dev/null +++ b/debian/linux-image-6.7.7-mips64r6el.postinst @@ -0,0 +1,25 @@ +#!/bin/sh -e + +version=6.7.7-mips64r6el +image_path=/boot/vmlinuz-$version + +if [ "$1" != configure ]; then + exit 0 +fi + +depmod $version + +if [ -f /lib/modules/$version/.fresh-install ]; then + change=install +else + change=upgrade +fi +linux-update-symlinks $change $version $image_path +rm -f /lib/modules/$version/.fresh-install + +if [ -d /etc/kernel/postinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-mips64r6el.postrm b/debian/linux-image-6.7.7-mips64r6el.postrm new file mode 100644 index 0000000000..18dd8614a8 --- /dev/null +++ b/debian/linux-image-6.7.7-mips64r6el.postrm @@ -0,0 +1,31 @@ +#!/bin/sh -e + +version=6.7.7-mips64r6el +image_path=/boot/vmlinuz-$version + +rm -f /lib/modules/$version/.fresh-install + +if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then + linux-update-symlinks remove $version $image_path +fi + +if [ -d /etc/kernel/postrm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postrm.d +fi + +if [ "$1" = purge ]; then + for extra_file in modules.dep modules.isapnpmap modules.pcimap \ + modules.usbmap modules.parportmap \ + modules.generic_string modules.ieee1394map \ + modules.ieee1394map modules.pnpbiosmap \ + modules.alias modules.ccwmap modules.inputmap \ + modules.symbols modules.ofmap \ + modules.seriomap modules.\*.bin \ + modules.softdep modules.devname; do + eval rm -f /lib/modules/$version/$extra_file + done + rmdir /lib/modules/$version || true +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-mips64r6el.preinst b/debian/linux-image-6.7.7-mips64r6el.preinst new file mode 100644 index 0000000000..cc3d3f3df0 --- /dev/null +++ b/debian/linux-image-6.7.7-mips64r6el.preinst @@ -0,0 +1,21 @@ +#!/bin/sh -e + +version=6.7.7-mips64r6el +image_path=/boot/vmlinuz-$version + +if [ "$1" = abort-upgrade ]; then + exit 0 +fi + +if [ "$1" = install ]; then + # Create a flag file for postinst + mkdir -p /lib/modules/$version + touch /lib/modules/$version/.fresh-install +fi + +if [ -d /etc/kernel/preinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/preinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-mips64r6el.prerm b/debian/linux-image-6.7.7-mips64r6el.prerm new file mode 100644 index 0000000000..4efd2fc610 --- /dev/null +++ b/debian/linux-image-6.7.7-mips64r6el.prerm @@ -0,0 +1,17 @@ +#!/bin/sh -e + +version=6.7.7-mips64r6el +image_path=/boot/vmlinuz-$version + +if [ "$1" != remove ]; then + exit 0 +fi + +linux-check-removal $version + +if [ -d /etc/kernel/prerm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/prerm.d +fi + +exit 0 diff --git a/debian/linux-image-6.6.15-alpha-generic-dbg.lintian-overrides b/debian/linux-image-6.7.7-octeon-dbg.lintian-overrides index 339e81332e..dc13f4b453 100644 --- a/debian/linux-image-6.6.15-alpha-generic-dbg.lintian-overrides +++ b/debian/linux-image-6.7.7-octeon-dbg.lintian-overrides @@ -1,5 +1,5 @@ # Kernel dbg packages contain a full image with debug data -linux-image-6.6.15-alpha-generic-dbg: dbg-package-missing-depends +linux-image-6.7.7-octeon-dbg: dbg-package-missing-depends # glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so # it's OK that they don't have it @@ -9,3 +9,4 @@ linux-image-6.6.15-alpha-generic-dbg: dbg-package-missing-depends # Some 32-bit architectures need 64-bit kernels and we still build # these as the "wrong" architecture rather than mandating multiarch. +linux-image-6.7.7-octeon-dbg: binary-from-other-architecture *usr/lib/debug/* diff --git a/debian/linux-image-6.6.15-mips64r6el.NEWS b/debian/linux-image-6.7.7-octeon.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/linux-image-6.6.15-mips64r6el.NEWS +++ b/debian/linux-image-6.7.7-octeon.NEWS diff --git a/debian/linux-image-6.7.7-octeon.lintian-overrides b/debian/linux-image-6.7.7-octeon.lintian-overrides new file mode 100644 index 0000000000..948b0394ea --- /dev/null +++ b/debian/linux-image-6.7.7-octeon.lintian-overrides @@ -0,0 +1,7 @@ +# Some 32-bit architectures need 64-bit kernels and we still build +# these as the "wrong" architecture rather than mandating multiarch. +linux-image-6.7.7-octeon: binary-from-other-architecture *boot/vmlinu* +linux-image-6.7.7-octeon: binary-from-other-architecture *lib/modules/* + +# vmlinux needs extra sections that would normally be stripped. +linux-image-6.7.7-octeon: unstripped-binary-or-object *boot/vmlinu* diff --git a/debian/linux-image-6.6.15-octeon.postinst b/debian/linux-image-6.7.7-octeon.postinst index 7377d03d29..ecb0249d72 100644 --- a/debian/linux-image-6.6.15-octeon.postinst +++ b/debian/linux-image-6.7.7-octeon.postinst @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-octeon +version=6.7.7-octeon image_path=/boot/vmlinux-$version if [ "$1" != configure ]; then diff --git a/debian/linux-image-6.6.15-octeon.postrm b/debian/linux-image-6.7.7-octeon.postrm index 2ddd164f5b..704e449de6 100644 --- a/debian/linux-image-6.6.15-octeon.postrm +++ b/debian/linux-image-6.7.7-octeon.postrm @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-octeon +version=6.7.7-octeon image_path=/boot/vmlinux-$version rm -f /lib/modules/$version/.fresh-install diff --git a/debian/linux-image-6.6.15-octeon.preinst b/debian/linux-image-6.7.7-octeon.preinst index 27d4ba56ee..4af1db51d5 100644 --- a/debian/linux-image-6.6.15-octeon.preinst +++ b/debian/linux-image-6.7.7-octeon.preinst @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-octeon +version=6.7.7-octeon image_path=/boot/vmlinux-$version if [ "$1" = abort-upgrade ]; then diff --git a/debian/linux-image-6.6.15-octeon.prerm b/debian/linux-image-6.7.7-octeon.prerm index 968c4a219b..7a7b365c92 100644 --- a/debian/linux-image-6.6.15-octeon.prerm +++ b/debian/linux-image-6.7.7-octeon.prerm @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-octeon +version=6.7.7-octeon image_path=/boot/vmlinux-$version if [ "$1" != remove ]; then diff --git a/debian/linux-image-6.7.7-parisc-dbg.lintian-overrides b/debian/linux-image-6.7.7-parisc-dbg.lintian-overrides new file mode 100644 index 0000000000..e11e5e6eb8 --- /dev/null +++ b/debian/linux-image-6.7.7-parisc-dbg.lintian-overrides @@ -0,0 +1,12 @@ +# Kernel dbg packages contain a full image with debug data +linux-image-6.7.7-parisc-dbg: dbg-package-missing-depends + +# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so +# it's OK that they don't have it + +# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. +# lintian currently allows i386 executables on amd64. + +# Some 32-bit architectures need 64-bit kernels and we still build +# these as the "wrong" architecture rather than mandating multiarch. +linux-image-6.7.7-parisc-dbg: binary-from-other-architecture *usr/lib/debug/* diff --git a/debian/linux-image-6.6.15-octeon.NEWS b/debian/linux-image-6.7.7-parisc.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/linux-image-6.6.15-octeon.NEWS +++ b/debian/linux-image-6.7.7-parisc.NEWS diff --git a/debian/linux-image-6.7.7-parisc.lintian-overrides b/debian/linux-image-6.7.7-parisc.lintian-overrides new file mode 100644 index 0000000000..103a29840c --- /dev/null +++ b/debian/linux-image-6.7.7-parisc.lintian-overrides @@ -0,0 +1,5 @@ +# Some 32-bit architectures need 64-bit kernels and we still build +# these as the "wrong" architecture rather than mandating multiarch. +linux-image-6.7.7-parisc: binary-from-other-architecture *lib/modules/* + +# vmlinux needs extra sections that would normally be stripped. diff --git a/debian/generated.signed-amd64/linux-image-6.6.15-amd64.postinst b/debian/linux-image-6.7.7-parisc.postinst index 9c38b5d48b..5796030c54 100644 --- a/debian/generated.signed-amd64/linux-image-6.6.15-amd64.postinst +++ b/debian/linux-image-6.7.7-parisc.postinst @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-amd64 +version=6.7.7-parisc image_path=/boot/vmlinuz-$version if [ "$1" != configure ]; then diff --git a/debian/generated.signed-amd64/linux-image-6.6.15-amd64.postrm b/debian/linux-image-6.7.7-parisc.postrm index 925e71cbfc..1c208ccee1 100644 --- a/debian/generated.signed-amd64/linux-image-6.6.15-amd64.postrm +++ b/debian/linux-image-6.7.7-parisc.postrm @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-amd64 +version=6.7.7-parisc image_path=/boot/vmlinuz-$version rm -f /lib/modules/$version/.fresh-install diff --git a/debian/linux-image-6.6.15-amd64-unsigned.preinst b/debian/linux-image-6.7.7-parisc.preinst index 8389435aa9..87038d61f0 100644 --- a/debian/linux-image-6.6.15-amd64-unsigned.preinst +++ b/debian/linux-image-6.7.7-parisc.preinst @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-amd64 +version=6.7.7-parisc image_path=/boot/vmlinuz-$version if [ "$1" = abort-upgrade ]; then diff --git a/debian/linux-image-6.6.15-amd64-unsigned.prerm b/debian/linux-image-6.7.7-parisc.prerm index d8f30e5bd5..29a9ebed07 100644 --- a/debian/linux-image-6.6.15-amd64-unsigned.prerm +++ b/debian/linux-image-6.7.7-parisc.prerm @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-amd64 +version=6.7.7-parisc image_path=/boot/vmlinuz-$version if [ "$1" != remove ]; then diff --git a/debian/linux-image-6.6.15-powerpc-dbg.lintian-overrides b/debian/linux-image-6.7.7-parisc64-dbg.lintian-overrides index 21577cd68d..e70a7f6255 100644 --- a/debian/linux-image-6.6.15-powerpc-dbg.lintian-overrides +++ b/debian/linux-image-6.7.7-parisc64-dbg.lintian-overrides @@ -1,5 +1,5 @@ # Kernel dbg packages contain a full image with debug data -linux-image-6.6.15-powerpc-dbg: dbg-package-missing-depends +linux-image-6.7.7-parisc64-dbg: dbg-package-missing-depends # glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so # it's OK that they don't have it @@ -9,4 +9,4 @@ linux-image-6.6.15-powerpc-dbg: dbg-package-missing-depends # Some 32-bit architectures need 64-bit kernels and we still build # these as the "wrong" architecture rather than mandating multiarch. -linux-image-6.6.15-powerpc-dbg: binary-from-other-architecture *usr/lib/debug/* +linux-image-6.7.7-parisc64-dbg: binary-from-other-architecture *usr/lib/debug/* diff --git a/debian/linux-image-6.6.15-parisc.NEWS b/debian/linux-image-6.7.7-parisc64.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/linux-image-6.6.15-parisc.NEWS +++ b/debian/linux-image-6.7.7-parisc64.NEWS diff --git a/debian/linux-image-6.6.15-powerpc.lintian-overrides b/debian/linux-image-6.7.7-parisc64.lintian-overrides index ce0c94c27d..c67c716601 100644 --- a/debian/linux-image-6.6.15-powerpc.lintian-overrides +++ b/debian/linux-image-6.7.7-parisc64.lintian-overrides @@ -1,5 +1,5 @@ # Some 32-bit architectures need 64-bit kernels and we still build # these as the "wrong" architecture rather than mandating multiarch. -linux-image-6.6.15-powerpc: binary-from-other-architecture *lib/modules/* +linux-image-6.7.7-parisc64: binary-from-other-architecture *lib/modules/* # vmlinux needs extra sections that would normally be stripped. diff --git a/debian/linux-image-6.7.7-parisc64.postinst b/debian/linux-image-6.7.7-parisc64.postinst new file mode 100644 index 0000000000..5ef2022ced --- /dev/null +++ b/debian/linux-image-6.7.7-parisc64.postinst @@ -0,0 +1,25 @@ +#!/bin/sh -e + +version=6.7.7-parisc64 +image_path=/boot/vmlinuz-$version + +if [ "$1" != configure ]; then + exit 0 +fi + +depmod $version + +if [ -f /lib/modules/$version/.fresh-install ]; then + change=install +else + change=upgrade +fi +linux-update-symlinks $change $version $image_path +rm -f /lib/modules/$version/.fresh-install + +if [ -d /etc/kernel/postinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-parisc64.postrm b/debian/linux-image-6.7.7-parisc64.postrm new file mode 100644 index 0000000000..546fcc300f --- /dev/null +++ b/debian/linux-image-6.7.7-parisc64.postrm @@ -0,0 +1,31 @@ +#!/bin/sh -e + +version=6.7.7-parisc64 +image_path=/boot/vmlinuz-$version + +rm -f /lib/modules/$version/.fresh-install + +if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then + linux-update-symlinks remove $version $image_path +fi + +if [ -d /etc/kernel/postrm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postrm.d +fi + +if [ "$1" = purge ]; then + for extra_file in modules.dep modules.isapnpmap modules.pcimap \ + modules.usbmap modules.parportmap \ + modules.generic_string modules.ieee1394map \ + modules.ieee1394map modules.pnpbiosmap \ + modules.alias modules.ccwmap modules.inputmap \ + modules.symbols modules.ofmap \ + modules.seriomap modules.\*.bin \ + modules.softdep modules.devname; do + eval rm -f /lib/modules/$version/$extra_file + done + rmdir /lib/modules/$version || true +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-parisc64.preinst b/debian/linux-image-6.7.7-parisc64.preinst new file mode 100644 index 0000000000..6b3b74b0ef --- /dev/null +++ b/debian/linux-image-6.7.7-parisc64.preinst @@ -0,0 +1,21 @@ +#!/bin/sh -e + +version=6.7.7-parisc64 +image_path=/boot/vmlinuz-$version + +if [ "$1" = abort-upgrade ]; then + exit 0 +fi + +if [ "$1" = install ]; then + # Create a flag file for postinst + mkdir -p /lib/modules/$version + touch /lib/modules/$version/.fresh-install +fi + +if [ -d /etc/kernel/preinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/preinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-parisc64.prerm b/debian/linux-image-6.7.7-parisc64.prerm new file mode 100644 index 0000000000..fcb02097f9 --- /dev/null +++ b/debian/linux-image-6.7.7-parisc64.prerm @@ -0,0 +1,17 @@ +#!/bin/sh -e + +version=6.7.7-parisc64 +image_path=/boot/vmlinuz-$version + +if [ "$1" != remove ]; then + exit 0 +fi + +linux-check-removal $version + +if [ -d /etc/kernel/prerm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/prerm.d +fi + +exit 0 diff --git a/debian/linux-image-6.6.15-octeon-dbg.lintian-overrides b/debian/linux-image-6.7.7-powerpc-dbg.lintian-overrides index 238fce1541..129046d5b8 100644 --- a/debian/linux-image-6.6.15-octeon-dbg.lintian-overrides +++ b/debian/linux-image-6.7.7-powerpc-dbg.lintian-overrides @@ -1,5 +1,5 @@ # Kernel dbg packages contain a full image with debug data -linux-image-6.6.15-octeon-dbg: dbg-package-missing-depends +linux-image-6.7.7-powerpc-dbg: dbg-package-missing-depends # glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so # it's OK that they don't have it @@ -9,4 +9,4 @@ linux-image-6.6.15-octeon-dbg: dbg-package-missing-depends # Some 32-bit architectures need 64-bit kernels and we still build # these as the "wrong" architecture rather than mandating multiarch. -linux-image-6.6.15-octeon-dbg: binary-from-other-architecture *usr/lib/debug/* +linux-image-6.7.7-powerpc-dbg: binary-from-other-architecture *usr/lib/debug/* diff --git a/debian/linux-image-6.6.15-loongson-3-dbg.lintian-overrides b/debian/linux-image-6.7.7-powerpc-smp-dbg.lintian-overrides index d256df27b1..817f2235ac 100644 --- a/debian/linux-image-6.6.15-loongson-3-dbg.lintian-overrides +++ b/debian/linux-image-6.7.7-powerpc-smp-dbg.lintian-overrides @@ -1,5 +1,5 @@ # Kernel dbg packages contain a full image with debug data -linux-image-6.6.15-loongson-3-dbg: dbg-package-missing-depends +linux-image-6.7.7-powerpc-smp-dbg: dbg-package-missing-depends # glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so # it's OK that they don't have it @@ -9,4 +9,4 @@ linux-image-6.6.15-loongson-3-dbg: dbg-package-missing-depends # Some 32-bit architectures need 64-bit kernels and we still build # these as the "wrong" architecture rather than mandating multiarch. -linux-image-6.6.15-loongson-3-dbg: binary-from-other-architecture *usr/lib/debug/* +linux-image-6.7.7-powerpc-smp-dbg: binary-from-other-architecture *usr/lib/debug/* diff --git a/debian/linux-image-6.6.15-parisc64.NEWS b/debian/linux-image-6.7.7-powerpc-smp.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/linux-image-6.6.15-parisc64.NEWS +++ b/debian/linux-image-6.7.7-powerpc-smp.NEWS diff --git a/debian/linux-image-6.6.15-parisc64.lintian-overrides b/debian/linux-image-6.7.7-powerpc-smp.lintian-overrides index 346c3015df..0d550b97da 100644 --- a/debian/linux-image-6.6.15-parisc64.lintian-overrides +++ b/debian/linux-image-6.7.7-powerpc-smp.lintian-overrides @@ -1,5 +1,5 @@ # Some 32-bit architectures need 64-bit kernels and we still build # these as the "wrong" architecture rather than mandating multiarch. -linux-image-6.6.15-parisc64: binary-from-other-architecture *lib/modules/* +linux-image-6.7.7-powerpc-smp: binary-from-other-architecture *lib/modules/* # vmlinux needs extra sections that would normally be stripped. diff --git a/debian/linux-image-6.6.15-powerpc64.postinst b/debian/linux-image-6.7.7-powerpc-smp.postinst index 3b39caf49b..39f564237b 100644 --- a/debian/linux-image-6.6.15-powerpc64.postinst +++ b/debian/linux-image-6.7.7-powerpc-smp.postinst @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-powerpc64 +version=6.7.7-powerpc-smp image_path=/boot/vmlinux-$version if [ "$1" != configure ]; then diff --git a/debian/linux-image-6.6.15-powerpc64.postrm b/debian/linux-image-6.7.7-powerpc-smp.postrm index 0718c60e38..1dd5eff064 100644 --- a/debian/linux-image-6.6.15-powerpc64.postrm +++ b/debian/linux-image-6.7.7-powerpc-smp.postrm @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-powerpc64 +version=6.7.7-powerpc-smp image_path=/boot/vmlinux-$version rm -f /lib/modules/$version/.fresh-install diff --git a/debian/linux-image-6.6.15-powerpc64.preinst b/debian/linux-image-6.7.7-powerpc-smp.preinst index a2b2a3a1ba..2006aafbd3 100644 --- a/debian/linux-image-6.6.15-powerpc64.preinst +++ b/debian/linux-image-6.7.7-powerpc-smp.preinst @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-powerpc64 +version=6.7.7-powerpc-smp image_path=/boot/vmlinux-$version if [ "$1" = abort-upgrade ]; then diff --git a/debian/linux-image-6.6.15-powerpc64.prerm b/debian/linux-image-6.7.7-powerpc-smp.prerm index 9cdf818bac..32bc4aad01 100644 --- a/debian/linux-image-6.6.15-powerpc64.prerm +++ b/debian/linux-image-6.7.7-powerpc-smp.prerm @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-powerpc64 +version=6.7.7-powerpc-smp image_path=/boot/vmlinux-$version if [ "$1" != remove ]; then diff --git a/debian/linux-image-6.6.15-powerpc-smp.NEWS b/debian/linux-image-6.7.7-powerpc.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/linux-image-6.6.15-powerpc-smp.NEWS +++ b/debian/linux-image-6.7.7-powerpc.NEWS diff --git a/debian/linux-image-6.6.15-parisc.lintian-overrides b/debian/linux-image-6.7.7-powerpc.lintian-overrides index 9d95f0920e..73202f4136 100644 --- a/debian/linux-image-6.6.15-parisc.lintian-overrides +++ b/debian/linux-image-6.7.7-powerpc.lintian-overrides @@ -1,5 +1,5 @@ # Some 32-bit architectures need 64-bit kernels and we still build # these as the "wrong" architecture rather than mandating multiarch. -linux-image-6.6.15-parisc: binary-from-other-architecture *lib/modules/* +linux-image-6.7.7-powerpc: binary-from-other-architecture *lib/modules/* # vmlinux needs extra sections that would normally be stripped. diff --git a/debian/linux-image-6.6.15-riscv64.postinst b/debian/linux-image-6.7.7-powerpc.postinst index 4f25d45615..bacf87e185 100644 --- a/debian/linux-image-6.6.15-riscv64.postinst +++ b/debian/linux-image-6.7.7-powerpc.postinst @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-riscv64 +version=6.7.7-powerpc image_path=/boot/vmlinux-$version if [ "$1" != configure ]; then diff --git a/debian/linux-image-6.6.15-riscv64.postrm b/debian/linux-image-6.7.7-powerpc.postrm index ce84d076ba..5165d13014 100644 --- a/debian/linux-image-6.6.15-riscv64.postrm +++ b/debian/linux-image-6.7.7-powerpc.postrm @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-riscv64 +version=6.7.7-powerpc image_path=/boot/vmlinux-$version rm -f /lib/modules/$version/.fresh-install diff --git a/debian/linux-image-6.6.15-riscv64.preinst b/debian/linux-image-6.7.7-powerpc.preinst index 762c5c745e..1e4c07f69d 100644 --- a/debian/linux-image-6.6.15-riscv64.preinst +++ b/debian/linux-image-6.7.7-powerpc.preinst @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-riscv64 +version=6.7.7-powerpc image_path=/boot/vmlinux-$version if [ "$1" = abort-upgrade ]; then diff --git a/debian/linux-image-6.6.15-riscv64.prerm b/debian/linux-image-6.7.7-powerpc.prerm index 10f199d282..02439e0356 100644 --- a/debian/linux-image-6.6.15-riscv64.prerm +++ b/debian/linux-image-6.7.7-powerpc.prerm @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-riscv64 +version=6.7.7-powerpc image_path=/boot/vmlinux-$version if [ "$1" != remove ]; then diff --git a/debian/linux-image-6.7.7-powerpc64-dbg.lintian-overrides b/debian/linux-image-6.7.7-powerpc64-dbg.lintian-overrides new file mode 100644 index 0000000000..1c1a80a10c --- /dev/null +++ b/debian/linux-image-6.7.7-powerpc64-dbg.lintian-overrides @@ -0,0 +1,11 @@ +# Kernel dbg packages contain a full image with debug data +linux-image-6.7.7-powerpc64-dbg: dbg-package-missing-depends + +# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so +# it's OK that they don't have it + +# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. +# lintian currently allows i386 executables on amd64. + +# Some 32-bit architectures need 64-bit kernels and we still build +# these as the "wrong" architecture rather than mandating multiarch. diff --git a/debian/linux-image-6.6.15-powerpc.NEWS b/debian/linux-image-6.7.7-powerpc64.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/linux-image-6.6.15-powerpc.NEWS +++ b/debian/linux-image-6.7.7-powerpc64.NEWS diff --git a/debian/linux-image-6.6.15-mips64r6el.lintian-overrides b/debian/linux-image-6.7.7-powerpc64.lintian-overrides index 5e255135cd..5e255135cd 100644 --- a/debian/linux-image-6.6.15-mips64r6el.lintian-overrides +++ b/debian/linux-image-6.7.7-powerpc64.lintian-overrides diff --git a/debian/linux-image-6.7.7-powerpc64.postinst b/debian/linux-image-6.7.7-powerpc64.postinst new file mode 100644 index 0000000000..23f106a403 --- /dev/null +++ b/debian/linux-image-6.7.7-powerpc64.postinst @@ -0,0 +1,25 @@ +#!/bin/sh -e + +version=6.7.7-powerpc64 +image_path=/boot/vmlinux-$version + +if [ "$1" != configure ]; then + exit 0 +fi + +depmod $version + +if [ -f /lib/modules/$version/.fresh-install ]; then + change=install +else + change=upgrade +fi +linux-update-symlinks $change $version $image_path +rm -f /lib/modules/$version/.fresh-install + +if [ -d /etc/kernel/postinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-powerpc64.postrm b/debian/linux-image-6.7.7-powerpc64.postrm new file mode 100644 index 0000000000..a9fc451f20 --- /dev/null +++ b/debian/linux-image-6.7.7-powerpc64.postrm @@ -0,0 +1,31 @@ +#!/bin/sh -e + +version=6.7.7-powerpc64 +image_path=/boot/vmlinux-$version + +rm -f /lib/modules/$version/.fresh-install + +if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then + linux-update-symlinks remove $version $image_path +fi + +if [ -d /etc/kernel/postrm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postrm.d +fi + +if [ "$1" = purge ]; then + for extra_file in modules.dep modules.isapnpmap modules.pcimap \ + modules.usbmap modules.parportmap \ + modules.generic_string modules.ieee1394map \ + modules.ieee1394map modules.pnpbiosmap \ + modules.alias modules.ccwmap modules.inputmap \ + modules.symbols modules.ofmap \ + modules.seriomap modules.\*.bin \ + modules.softdep modules.devname; do + eval rm -f /lib/modules/$version/$extra_file + done + rmdir /lib/modules/$version || true +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-powerpc64.preinst b/debian/linux-image-6.7.7-powerpc64.preinst new file mode 100644 index 0000000000..1472d99ed2 --- /dev/null +++ b/debian/linux-image-6.7.7-powerpc64.preinst @@ -0,0 +1,21 @@ +#!/bin/sh -e + +version=6.7.7-powerpc64 +image_path=/boot/vmlinux-$version + +if [ "$1" = abort-upgrade ]; then + exit 0 +fi + +if [ "$1" = install ]; then + # Create a flag file for postinst + mkdir -p /lib/modules/$version + touch /lib/modules/$version/.fresh-install +fi + +if [ -d /etc/kernel/preinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/preinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-powerpc64.prerm b/debian/linux-image-6.7.7-powerpc64.prerm new file mode 100644 index 0000000000..3860a023ea --- /dev/null +++ b/debian/linux-image-6.7.7-powerpc64.prerm @@ -0,0 +1,17 @@ +#!/bin/sh -e + +version=6.7.7-powerpc64 +image_path=/boot/vmlinux-$version + +if [ "$1" != remove ]; then + exit 0 +fi + +linux-check-removal $version + +if [ -d /etc/kernel/prerm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/prerm.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-powerpc64le-dbg.lintian-overrides b/debian/linux-image-6.7.7-powerpc64le-dbg.lintian-overrides new file mode 100644 index 0000000000..f5631179ab --- /dev/null +++ b/debian/linux-image-6.7.7-powerpc64le-dbg.lintian-overrides @@ -0,0 +1,14 @@ +# Kernel dbg packages contain a full image with debug data +linux-image-6.7.7-powerpc64le-dbg: dbg-package-missing-depends + +# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so +# it's OK that they don't have it +linux-image-6.7.7-powerpc64le-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.7.7-powerpc64le/vdso/vdso32.so* +linux-image-6.7.7-powerpc64le-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.7.7-powerpc64le/vdso/vdso64.so* + +# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. +# lintian currently allows i386 executables on amd64. +linux-image-6.7.7-powerpc64le-dbg: binary-from-other-architecture *usr/lib/debug/lib/modules/6.7.7-powerpc64le/vdso/vdso32.so* + +# Some 32-bit architectures need 64-bit kernels and we still build +# these as the "wrong" architecture rather than mandating multiarch. diff --git a/debian/linux-image-6.6.15-powerpc64.NEWS b/debian/linux-image-6.7.7-powerpc64le.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/linux-image-6.6.15-powerpc64.NEWS +++ b/debian/linux-image-6.7.7-powerpc64le.NEWS diff --git a/debian/linux-image-6.6.15-mips64r2el.lintian-overrides b/debian/linux-image-6.7.7-powerpc64le.lintian-overrides index 73c3365a8a..854c32da1f 100644 --- a/debian/linux-image-6.6.15-mips64r2el.lintian-overrides +++ b/debian/linux-image-6.7.7-powerpc64le.lintian-overrides @@ -2,4 +2,4 @@ # these as the "wrong" architecture rather than mandating multiarch. # vmlinux needs extra sections that would normally be stripped. -linux-image-6.6.15-mips64r2el: unstripped-binary-or-object *boot/vmlinu* +linux-image-6.7.7-powerpc64le: unstripped-binary-or-object *boot/vmlinu* diff --git a/debian/linux-image-6.7.7-powerpc64le.postinst b/debian/linux-image-6.7.7-powerpc64le.postinst new file mode 100644 index 0000000000..bdae65a5ff --- /dev/null +++ b/debian/linux-image-6.7.7-powerpc64le.postinst @@ -0,0 +1,25 @@ +#!/bin/sh -e + +version=6.7.7-powerpc64le +image_path=/boot/vmlinux-$version + +if [ "$1" != configure ]; then + exit 0 +fi + +depmod $version + +if [ -f /lib/modules/$version/.fresh-install ]; then + change=install +else + change=upgrade +fi +linux-update-symlinks $change $version $image_path +rm -f /lib/modules/$version/.fresh-install + +if [ -d /etc/kernel/postinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-powerpc64le.postrm b/debian/linux-image-6.7.7-powerpc64le.postrm new file mode 100644 index 0000000000..5f958a2a54 --- /dev/null +++ b/debian/linux-image-6.7.7-powerpc64le.postrm @@ -0,0 +1,31 @@ +#!/bin/sh -e + +version=6.7.7-powerpc64le +image_path=/boot/vmlinux-$version + +rm -f /lib/modules/$version/.fresh-install + +if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then + linux-update-symlinks remove $version $image_path +fi + +if [ -d /etc/kernel/postrm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postrm.d +fi + +if [ "$1" = purge ]; then + for extra_file in modules.dep modules.isapnpmap modules.pcimap \ + modules.usbmap modules.parportmap \ + modules.generic_string modules.ieee1394map \ + modules.ieee1394map modules.pnpbiosmap \ + modules.alias modules.ccwmap modules.inputmap \ + modules.symbols modules.ofmap \ + modules.seriomap modules.\*.bin \ + modules.softdep modules.devname; do + eval rm -f /lib/modules/$version/$extra_file + done + rmdir /lib/modules/$version || true +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-powerpc64le.preinst b/debian/linux-image-6.7.7-powerpc64le.preinst new file mode 100644 index 0000000000..0b07d98a96 --- /dev/null +++ b/debian/linux-image-6.7.7-powerpc64le.preinst @@ -0,0 +1,21 @@ +#!/bin/sh -e + +version=6.7.7-powerpc64le +image_path=/boot/vmlinux-$version + +if [ "$1" = abort-upgrade ]; then + exit 0 +fi + +if [ "$1" = install ]; then + # Create a flag file for postinst + mkdir -p /lib/modules/$version + touch /lib/modules/$version/.fresh-install +fi + +if [ -d /etc/kernel/preinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/preinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-powerpc64le.prerm b/debian/linux-image-6.7.7-powerpc64le.prerm new file mode 100644 index 0000000000..e00b61fd60 --- /dev/null +++ b/debian/linux-image-6.7.7-powerpc64le.prerm @@ -0,0 +1,17 @@ +#!/bin/sh -e + +version=6.7.7-powerpc64le +image_path=/boot/vmlinux-$version + +if [ "$1" != remove ]; then + exit 0 +fi + +linux-check-removal $version + +if [ -d /etc/kernel/prerm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/prerm.d +fi + +exit 0 diff --git a/debian/linux-image-6.6.15-riscv64-dbg.lintian-overrides b/debian/linux-image-6.7.7-riscv64-dbg.lintian-overrides index 866607ef83..2272102f83 100644 --- a/debian/linux-image-6.6.15-riscv64-dbg.lintian-overrides +++ b/debian/linux-image-6.7.7-riscv64-dbg.lintian-overrides @@ -1,5 +1,5 @@ # Kernel dbg packages contain a full image with debug data -linux-image-6.6.15-riscv64-dbg: dbg-package-missing-depends +linux-image-6.7.7-riscv64-dbg: dbg-package-missing-depends # glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so # it's OK that they don't have it diff --git a/debian/linux-image-6.6.15-powerpc64le.NEWS b/debian/linux-image-6.7.7-riscv64.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/linux-image-6.6.15-powerpc64le.NEWS +++ b/debian/linux-image-6.7.7-riscv64.NEWS diff --git a/debian/linux-image-6.6.15-powerpc64.lintian-overrides b/debian/linux-image-6.7.7-riscv64.lintian-overrides index 5e255135cd..5e255135cd 100644 --- a/debian/linux-image-6.6.15-powerpc64.lintian-overrides +++ b/debian/linux-image-6.7.7-riscv64.lintian-overrides diff --git a/debian/linux-image-6.6.15-powerpc.postinst b/debian/linux-image-6.7.7-riscv64.postinst index 722d1acbd2..1ea8ddddcb 100644 --- a/debian/linux-image-6.6.15-powerpc.postinst +++ b/debian/linux-image-6.7.7-riscv64.postinst @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-powerpc +version=6.7.7-riscv64 image_path=/boot/vmlinux-$version if [ "$1" != configure ]; then diff --git a/debian/linux-image-6.6.15-powerpc.postrm b/debian/linux-image-6.7.7-riscv64.postrm index cb1da929ab..178e492b3b 100644 --- a/debian/linux-image-6.6.15-powerpc.postrm +++ b/debian/linux-image-6.7.7-riscv64.postrm @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-powerpc +version=6.7.7-riscv64 image_path=/boot/vmlinux-$version rm -f /lib/modules/$version/.fresh-install diff --git a/debian/linux-image-6.6.15-powerpc.preinst b/debian/linux-image-6.7.7-riscv64.preinst index f2ff683241..a5bd3697ac 100644 --- a/debian/linux-image-6.6.15-powerpc.preinst +++ b/debian/linux-image-6.7.7-riscv64.preinst @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-powerpc +version=6.7.7-riscv64 image_path=/boot/vmlinux-$version if [ "$1" = abort-upgrade ]; then diff --git a/debian/linux-image-6.6.15-powerpc.prerm b/debian/linux-image-6.7.7-riscv64.prerm index 51ee98672a..cfba906cd6 100644 --- a/debian/linux-image-6.6.15-powerpc.prerm +++ b/debian/linux-image-6.7.7-riscv64.prerm @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-powerpc +version=6.7.7-riscv64 image_path=/boot/vmlinux-$version if [ "$1" != remove ]; then diff --git a/debian/linux-image-6.6.15-m68k-dbg.lintian-overrides b/debian/linux-image-6.7.7-rpi-dbg.lintian-overrides index d598449ef5..a93cc33cb1 100644 --- a/debian/linux-image-6.6.15-m68k-dbg.lintian-overrides +++ b/debian/linux-image-6.7.7-rpi-dbg.lintian-overrides @@ -1,5 +1,5 @@ # Kernel dbg packages contain a full image with debug data -linux-image-6.6.15-m68k-dbg: dbg-package-missing-depends +linux-image-6.7.7-rpi-dbg: dbg-package-missing-depends # glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so # it's OK that they don't have it diff --git a/debian/linux-image-6.6.15-riscv64.NEWS b/debian/linux-image-6.7.7-rpi.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/linux-image-6.6.15-riscv64.NEWS +++ b/debian/linux-image-6.7.7-rpi.NEWS diff --git a/debian/linux-image-6.6.15-riscv64.lintian-overrides b/debian/linux-image-6.7.7-rpi.lintian-overrides index 5e255135cd..5e255135cd 100644 --- a/debian/linux-image-6.6.15-riscv64.lintian-overrides +++ b/debian/linux-image-6.7.7-rpi.lintian-overrides diff --git a/debian/linux-image-6.6.15-686.postinst b/debian/linux-image-6.7.7-rpi.postinst index 8d22b74641..ca5bc0dcee 100644 --- a/debian/linux-image-6.6.15-686.postinst +++ b/debian/linux-image-6.7.7-rpi.postinst @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-686 +version=6.7.7-rpi image_path=/boot/vmlinuz-$version if [ "$1" != configure ]; then diff --git a/debian/linux-image-6.6.15-686.postrm b/debian/linux-image-6.7.7-rpi.postrm index 3a03a36ab5..1a441fe185 100644 --- a/debian/linux-image-6.6.15-686.postrm +++ b/debian/linux-image-6.7.7-rpi.postrm @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-686 +version=6.7.7-rpi image_path=/boot/vmlinuz-$version rm -f /lib/modules/$version/.fresh-install diff --git a/debian/linux-image-6.6.15-686.preinst b/debian/linux-image-6.7.7-rpi.preinst index 13f3a43ac6..b5d18762a6 100644 --- a/debian/linux-image-6.6.15-686.preinst +++ b/debian/linux-image-6.7.7-rpi.preinst @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-686 +version=6.7.7-rpi image_path=/boot/vmlinuz-$version if [ "$1" = abort-upgrade ]; then diff --git a/debian/linux-image-6.6.15-686.prerm b/debian/linux-image-6.7.7-rpi.prerm index 9fd4067da7..b93ff5df6a 100644 --- a/debian/linux-image-6.6.15-686.prerm +++ b/debian/linux-image-6.7.7-rpi.prerm @@ -1,6 +1,6 @@ #!/bin/sh -e -version=6.6.15-686 +version=6.7.7-rpi image_path=/boot/vmlinuz-$version if [ "$1" != remove ]; then diff --git a/debian/linux-image-6.6.15-armmp-lpae-dbg.lintian-overrides b/debian/linux-image-6.7.7-rt-686-pae-dbg.lintian-overrides index 9cb687c086..4e09571469 100644 --- a/debian/linux-image-6.6.15-armmp-lpae-dbg.lintian-overrides +++ b/debian/linux-image-6.7.7-rt-686-pae-dbg.lintian-overrides @@ -1,9 +1,9 @@ # Kernel dbg packages contain a full image with debug data -linux-image-6.6.15-armmp-lpae-dbg: dbg-package-missing-depends +linux-image-6.7.7-rt-686-pae-dbg: dbg-package-missing-depends # glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so # it's OK that they don't have it -linux-image-6.6.15-armmp-lpae-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.6.15-armmp-lpae/vdso/vdso.so* +linux-image-6.7.7-rt-686-pae-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.7.7-rt-686-pae/vdso/vdso32.so* # It is intended that 64-bit kernels provide vDSOs for 32-bit executables. # lintian currently allows i386 executables on amd64. diff --git a/debian/linux-image-6.6.15-rpi.NEWS b/debian/linux-image-6.7.7-rt-686-pae.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/linux-image-6.6.15-rpi.NEWS +++ b/debian/linux-image-6.7.7-rt-686-pae.NEWS diff --git a/debian/linux-image-6.6.15-rpi.lintian-overrides b/debian/linux-image-6.7.7-rt-686-pae.lintian-overrides index 5e255135cd..5e255135cd 100644 --- a/debian/linux-image-6.6.15-rpi.lintian-overrides +++ b/debian/linux-image-6.7.7-rt-686-pae.lintian-overrides diff --git a/debian/linux-image-6.7.7-rt-686-pae.postinst b/debian/linux-image-6.7.7-rt-686-pae.postinst new file mode 100644 index 0000000000..969fbdee25 --- /dev/null +++ b/debian/linux-image-6.7.7-rt-686-pae.postinst @@ -0,0 +1,25 @@ +#!/bin/sh -e + +version=6.7.7-rt-686-pae +image_path=/boot/vmlinuz-$version + +if [ "$1" != configure ]; then + exit 0 +fi + +depmod $version + +if [ -f /lib/modules/$version/.fresh-install ]; then + change=install +else + change=upgrade +fi +linux-update-symlinks $change $version $image_path +rm -f /lib/modules/$version/.fresh-install + +if [ -d /etc/kernel/postinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-rt-686-pae.postrm b/debian/linux-image-6.7.7-rt-686-pae.postrm new file mode 100644 index 0000000000..ea8d9f218f --- /dev/null +++ b/debian/linux-image-6.7.7-rt-686-pae.postrm @@ -0,0 +1,31 @@ +#!/bin/sh -e + +version=6.7.7-rt-686-pae +image_path=/boot/vmlinuz-$version + +rm -f /lib/modules/$version/.fresh-install + +if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then + linux-update-symlinks remove $version $image_path +fi + +if [ -d /etc/kernel/postrm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postrm.d +fi + +if [ "$1" = purge ]; then + for extra_file in modules.dep modules.isapnpmap modules.pcimap \ + modules.usbmap modules.parportmap \ + modules.generic_string modules.ieee1394map \ + modules.ieee1394map modules.pnpbiosmap \ + modules.alias modules.ccwmap modules.inputmap \ + modules.symbols modules.ofmap \ + modules.seriomap modules.\*.bin \ + modules.softdep modules.devname; do + eval rm -f /lib/modules/$version/$extra_file + done + rmdir /lib/modules/$version || true +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-rt-686-pae.preinst b/debian/linux-image-6.7.7-rt-686-pae.preinst new file mode 100644 index 0000000000..df46fbfc71 --- /dev/null +++ b/debian/linux-image-6.7.7-rt-686-pae.preinst @@ -0,0 +1,21 @@ +#!/bin/sh -e + +version=6.7.7-rt-686-pae +image_path=/boot/vmlinuz-$version + +if [ "$1" = abort-upgrade ]; then + exit 0 +fi + +if [ "$1" = install ]; then + # Create a flag file for postinst + mkdir -p /lib/modules/$version + touch /lib/modules/$version/.fresh-install +fi + +if [ -d /etc/kernel/preinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/preinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-rt-686-pae.prerm b/debian/linux-image-6.7.7-rt-686-pae.prerm new file mode 100644 index 0000000000..be2c16ff3e --- /dev/null +++ b/debian/linux-image-6.7.7-rt-686-pae.prerm @@ -0,0 +1,17 @@ +#!/bin/sh -e + +version=6.7.7-rt-686-pae +image_path=/boot/vmlinuz-$version + +if [ "$1" != remove ]; then + exit 0 +fi + +linux-check-removal $version + +if [ -d /etc/kernel/prerm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/prerm.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-rt-amd64-dbg.lintian-overrides b/debian/linux-image-6.7.7-rt-amd64-dbg.lintian-overrides new file mode 100644 index 0000000000..67d124a067 --- /dev/null +++ b/debian/linux-image-6.7.7-rt-amd64-dbg.lintian-overrides @@ -0,0 +1,15 @@ +# Kernel dbg packages contain a full image with debug data +linux-image-6.7.7-rt-amd64-dbg: dbg-package-missing-depends + +# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so +# it's OK that they don't have it +linux-image-6.7.7-rt-amd64-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.7.7-rt-amd64/vdso/vdso32.so* +linux-image-6.7.7-rt-amd64-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.7.7-rt-amd64/vdso/vdso64.so* +linux-image-6.7.7-rt-amd64-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.7.7-rt-amd64/vdso/vdsox32.so* + +# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. +# lintian currently allows i386 executables on amd64. +linux-image-6.7.7-rt-amd64-dbg: binary-from-other-architecture *usr/lib/debug/lib/modules/6.7.7-rt-amd64/vdso/vdsox32.so* + +# Some 32-bit architectures need 64-bit kernels and we still build +# these as the "wrong" architecture rather than mandating multiarch. diff --git a/debian/linux-image-6.6.15-rt-686-pae.NEWS b/debian/linux-image-6.7.7-rt-amd64-unsigned.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/linux-image-6.6.15-rt-686-pae.NEWS +++ b/debian/linux-image-6.7.7-rt-amd64-unsigned.NEWS diff --git a/debian/linux-image-6.6.15-rt-686-pae.lintian-overrides b/debian/linux-image-6.7.7-rt-amd64-unsigned.lintian-overrides index 5e255135cd..5e255135cd 100644 --- a/debian/linux-image-6.6.15-rt-686-pae.lintian-overrides +++ b/debian/linux-image-6.7.7-rt-amd64-unsigned.lintian-overrides diff --git a/debian/linux-image-6.7.7-rt-amd64-unsigned.postinst b/debian/linux-image-6.7.7-rt-amd64-unsigned.postinst new file mode 100644 index 0000000000..95ff5904d4 --- /dev/null +++ b/debian/linux-image-6.7.7-rt-amd64-unsigned.postinst @@ -0,0 +1,25 @@ +#!/bin/sh -e + +version=6.7.7-rt-amd64 +image_path=/boot/vmlinuz-$version + +if [ "$1" != configure ]; then + exit 0 +fi + +depmod $version + +if [ -f /lib/modules/$version/.fresh-install ]; then + change=install +else + change=upgrade +fi +linux-update-symlinks $change $version $image_path +rm -f /lib/modules/$version/.fresh-install + +if [ -d /etc/kernel/postinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-rt-amd64-unsigned.postrm b/debian/linux-image-6.7.7-rt-amd64-unsigned.postrm new file mode 100644 index 0000000000..e68808c4db --- /dev/null +++ b/debian/linux-image-6.7.7-rt-amd64-unsigned.postrm @@ -0,0 +1,31 @@ +#!/bin/sh -e + +version=6.7.7-rt-amd64 +image_path=/boot/vmlinuz-$version + +rm -f /lib/modules/$version/.fresh-install + +if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then + linux-update-symlinks remove $version $image_path +fi + +if [ -d /etc/kernel/postrm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postrm.d +fi + +if [ "$1" = purge ]; then + for extra_file in modules.dep modules.isapnpmap modules.pcimap \ + modules.usbmap modules.parportmap \ + modules.generic_string modules.ieee1394map \ + modules.ieee1394map modules.pnpbiosmap \ + modules.alias modules.ccwmap modules.inputmap \ + modules.symbols modules.ofmap \ + modules.seriomap modules.\*.bin \ + modules.softdep modules.devname; do + eval rm -f /lib/modules/$version/$extra_file + done + rmdir /lib/modules/$version || true +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-rt-amd64-unsigned.preinst b/debian/linux-image-6.7.7-rt-amd64-unsigned.preinst new file mode 100644 index 0000000000..abedaa0db9 --- /dev/null +++ b/debian/linux-image-6.7.7-rt-amd64-unsigned.preinst @@ -0,0 +1,21 @@ +#!/bin/sh -e + +version=6.7.7-rt-amd64 +image_path=/boot/vmlinuz-$version + +if [ "$1" = abort-upgrade ]; then + exit 0 +fi + +if [ "$1" = install ]; then + # Create a flag file for postinst + mkdir -p /lib/modules/$version + touch /lib/modules/$version/.fresh-install +fi + +if [ -d /etc/kernel/preinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/preinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-rt-amd64-unsigned.prerm b/debian/linux-image-6.7.7-rt-amd64-unsigned.prerm new file mode 100644 index 0000000000..14a7eb4cd4 --- /dev/null +++ b/debian/linux-image-6.7.7-rt-amd64-unsigned.prerm @@ -0,0 +1,17 @@ +#!/bin/sh -e + +version=6.7.7-rt-amd64 +image_path=/boot/vmlinuz-$version + +if [ "$1" != remove ]; then + exit 0 +fi + +linux-check-removal $version + +if [ -d /etc/kernel/prerm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/prerm.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-rt-arm64-dbg.lintian-overrides b/debian/linux-image-6.7.7-rt-arm64-dbg.lintian-overrides new file mode 100644 index 0000000000..0ca60bcb6f --- /dev/null +++ b/debian/linux-image-6.7.7-rt-arm64-dbg.lintian-overrides @@ -0,0 +1,14 @@ +# Kernel dbg packages contain a full image with debug data +linux-image-6.7.7-rt-arm64-dbg: dbg-package-missing-depends + +# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so +# it's OK that they don't have it +linux-image-6.7.7-rt-arm64-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.7.7-rt-arm64/vdso/vdso.so* +linux-image-6.7.7-rt-arm64-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.7.7-rt-arm64/vdso/vdso32.so* + +# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. +# lintian currently allows i386 executables on amd64. +linux-image-6.7.7-rt-arm64-dbg: binary-from-other-architecture *usr/lib/debug/lib/modules/6.7.7-rt-arm64/vdso/vdso32.so* + +# Some 32-bit architectures need 64-bit kernels and we still build +# these as the "wrong" architecture rather than mandating multiarch. diff --git a/debian/linux-image-6.6.15-rt-amd64-unsigned.NEWS b/debian/linux-image-6.7.7-rt-arm64-unsigned.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/linux-image-6.6.15-rt-amd64-unsigned.NEWS +++ b/debian/linux-image-6.7.7-rt-arm64-unsigned.NEWS diff --git a/debian/linux-image-6.6.15-rt-amd64-unsigned.lintian-overrides b/debian/linux-image-6.7.7-rt-arm64-unsigned.lintian-overrides index 5e255135cd..5e255135cd 100644 --- a/debian/linux-image-6.6.15-rt-amd64-unsigned.lintian-overrides +++ b/debian/linux-image-6.7.7-rt-arm64-unsigned.lintian-overrides diff --git a/debian/linux-image-6.7.7-rt-arm64-unsigned.postinst b/debian/linux-image-6.7.7-rt-arm64-unsigned.postinst new file mode 100644 index 0000000000..e6e7facb0d --- /dev/null +++ b/debian/linux-image-6.7.7-rt-arm64-unsigned.postinst @@ -0,0 +1,25 @@ +#!/bin/sh -e + +version=6.7.7-rt-arm64 +image_path=/boot/vmlinuz-$version + +if [ "$1" != configure ]; then + exit 0 +fi + +depmod $version + +if [ -f /lib/modules/$version/.fresh-install ]; then + change=install +else + change=upgrade +fi +linux-update-symlinks $change $version $image_path +rm -f /lib/modules/$version/.fresh-install + +if [ -d /etc/kernel/postinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-rt-arm64-unsigned.postrm b/debian/linux-image-6.7.7-rt-arm64-unsigned.postrm new file mode 100644 index 0000000000..d2744313ce --- /dev/null +++ b/debian/linux-image-6.7.7-rt-arm64-unsigned.postrm @@ -0,0 +1,31 @@ +#!/bin/sh -e + +version=6.7.7-rt-arm64 +image_path=/boot/vmlinuz-$version + +rm -f /lib/modules/$version/.fresh-install + +if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then + linux-update-symlinks remove $version $image_path +fi + +if [ -d /etc/kernel/postrm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postrm.d +fi + +if [ "$1" = purge ]; then + for extra_file in modules.dep modules.isapnpmap modules.pcimap \ + modules.usbmap modules.parportmap \ + modules.generic_string modules.ieee1394map \ + modules.ieee1394map modules.pnpbiosmap \ + modules.alias modules.ccwmap modules.inputmap \ + modules.symbols modules.ofmap \ + modules.seriomap modules.\*.bin \ + modules.softdep modules.devname; do + eval rm -f /lib/modules/$version/$extra_file + done + rmdir /lib/modules/$version || true +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-rt-arm64-unsigned.preinst b/debian/linux-image-6.7.7-rt-arm64-unsigned.preinst new file mode 100644 index 0000000000..c61617bcef --- /dev/null +++ b/debian/linux-image-6.7.7-rt-arm64-unsigned.preinst @@ -0,0 +1,21 @@ +#!/bin/sh -e + +version=6.7.7-rt-arm64 +image_path=/boot/vmlinuz-$version + +if [ "$1" = abort-upgrade ]; then + exit 0 +fi + +if [ "$1" = install ]; then + # Create a flag file for postinst + mkdir -p /lib/modules/$version + touch /lib/modules/$version/.fresh-install +fi + +if [ -d /etc/kernel/preinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/preinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-rt-arm64-unsigned.prerm b/debian/linux-image-6.7.7-rt-arm64-unsigned.prerm new file mode 100644 index 0000000000..1ee33711e2 --- /dev/null +++ b/debian/linux-image-6.7.7-rt-arm64-unsigned.prerm @@ -0,0 +1,17 @@ +#!/bin/sh -e + +version=6.7.7-rt-arm64 +image_path=/boot/vmlinuz-$version + +if [ "$1" != remove ]; then + exit 0 +fi + +linux-check-removal $version + +if [ -d /etc/kernel/prerm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/prerm.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-rt-armmp-dbg.lintian-overrides b/debian/linux-image-6.7.7-rt-armmp-dbg.lintian-overrides new file mode 100644 index 0000000000..7eb2ced382 --- /dev/null +++ b/debian/linux-image-6.7.7-rt-armmp-dbg.lintian-overrides @@ -0,0 +1,12 @@ +# Kernel dbg packages contain a full image with debug data +linux-image-6.7.7-rt-armmp-dbg: dbg-package-missing-depends + +# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so +# it's OK that they don't have it +linux-image-6.7.7-rt-armmp-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.7.7-rt-armmp/vdso/vdso.so* + +# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. +# lintian currently allows i386 executables on amd64. + +# Some 32-bit architectures need 64-bit kernels and we still build +# these as the "wrong" architecture rather than mandating multiarch. diff --git a/debian/linux-image-6.6.15-rt-arm64-unsigned.NEWS b/debian/linux-image-6.7.7-rt-armmp.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/linux-image-6.6.15-rt-arm64-unsigned.NEWS +++ b/debian/linux-image-6.7.7-rt-armmp.NEWS diff --git a/debian/linux-image-6.6.15-rt-arm64-unsigned.lintian-overrides b/debian/linux-image-6.7.7-rt-armmp.lintian-overrides index 5e255135cd..5e255135cd 100644 --- a/debian/linux-image-6.6.15-rt-arm64-unsigned.lintian-overrides +++ b/debian/linux-image-6.7.7-rt-armmp.lintian-overrides diff --git a/debian/linux-image-6.7.7-rt-armmp.postinst b/debian/linux-image-6.7.7-rt-armmp.postinst new file mode 100644 index 0000000000..48175cae6b --- /dev/null +++ b/debian/linux-image-6.7.7-rt-armmp.postinst @@ -0,0 +1,25 @@ +#!/bin/sh -e + +version=6.7.7-rt-armmp +image_path=/boot/vmlinuz-$version + +if [ "$1" != configure ]; then + exit 0 +fi + +depmod $version + +if [ -f /lib/modules/$version/.fresh-install ]; then + change=install +else + change=upgrade +fi +linux-update-symlinks $change $version $image_path +rm -f /lib/modules/$version/.fresh-install + +if [ -d /etc/kernel/postinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-rt-armmp.postrm b/debian/linux-image-6.7.7-rt-armmp.postrm new file mode 100644 index 0000000000..f361953189 --- /dev/null +++ b/debian/linux-image-6.7.7-rt-armmp.postrm @@ -0,0 +1,31 @@ +#!/bin/sh -e + +version=6.7.7-rt-armmp +image_path=/boot/vmlinuz-$version + +rm -f /lib/modules/$version/.fresh-install + +if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then + linux-update-symlinks remove $version $image_path +fi + +if [ -d /etc/kernel/postrm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postrm.d +fi + +if [ "$1" = purge ]; then + for extra_file in modules.dep modules.isapnpmap modules.pcimap \ + modules.usbmap modules.parportmap \ + modules.generic_string modules.ieee1394map \ + modules.ieee1394map modules.pnpbiosmap \ + modules.alias modules.ccwmap modules.inputmap \ + modules.symbols modules.ofmap \ + modules.seriomap modules.\*.bin \ + modules.softdep modules.devname; do + eval rm -f /lib/modules/$version/$extra_file + done + rmdir /lib/modules/$version || true +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-rt-armmp.preinst b/debian/linux-image-6.7.7-rt-armmp.preinst new file mode 100644 index 0000000000..644255fa18 --- /dev/null +++ b/debian/linux-image-6.7.7-rt-armmp.preinst @@ -0,0 +1,21 @@ +#!/bin/sh -e + +version=6.7.7-rt-armmp +image_path=/boot/vmlinuz-$version + +if [ "$1" = abort-upgrade ]; then + exit 0 +fi + +if [ "$1" = install ]; then + # Create a flag file for postinst + mkdir -p /lib/modules/$version + touch /lib/modules/$version/.fresh-install +fi + +if [ -d /etc/kernel/preinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/preinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-rt-armmp.prerm b/debian/linux-image-6.7.7-rt-armmp.prerm new file mode 100644 index 0000000000..6b851dcc74 --- /dev/null +++ b/debian/linux-image-6.7.7-rt-armmp.prerm @@ -0,0 +1,17 @@ +#!/bin/sh -e + +version=6.7.7-rt-armmp +image_path=/boot/vmlinuz-$version + +if [ "$1" != remove ]; then + exit 0 +fi + +linux-check-removal $version + +if [ -d /etc/kernel/prerm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/prerm.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-s390x-dbg.lintian-overrides b/debian/linux-image-6.7.7-s390x-dbg.lintian-overrides new file mode 100644 index 0000000000..868ce6bc4d --- /dev/null +++ b/debian/linux-image-6.7.7-s390x-dbg.lintian-overrides @@ -0,0 +1,14 @@ +# Kernel dbg packages contain a full image with debug data +linux-image-6.7.7-s390x-dbg: dbg-package-missing-depends + +# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so +# it's OK that they don't have it +linux-image-6.7.7-s390x-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.7.7-s390x/vdso/vdso32.so* +linux-image-6.7.7-s390x-dbg: shared-library-lacks-stack-section *usr/lib/debug/lib/modules/6.7.7-s390x/vdso/vdso64.so* + +# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. +# lintian currently allows i386 executables on amd64. +linux-image-6.7.7-s390x-dbg: binary-from-other-architecture *usr/lib/debug/lib/modules/6.7.7-s390x/vdso/vdso32.so* + +# Some 32-bit architectures need 64-bit kernels and we still build +# these as the "wrong" architecture rather than mandating multiarch. diff --git a/debian/linux-image-6.6.15-rt-armmp.NEWS b/debian/linux-image-6.7.7-s390x.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/linux-image-6.6.15-rt-armmp.NEWS +++ b/debian/linux-image-6.7.7-s390x.NEWS diff --git a/debian/linux-image-6.6.15-rt-armmp.lintian-overrides b/debian/linux-image-6.7.7-s390x.lintian-overrides index 5e255135cd..5e255135cd 100644 --- a/debian/linux-image-6.6.15-rt-armmp.lintian-overrides +++ b/debian/linux-image-6.7.7-s390x.lintian-overrides diff --git a/debian/linux-image-6.7.7-s390x.postinst b/debian/linux-image-6.7.7-s390x.postinst new file mode 100644 index 0000000000..3ba4d04d36 --- /dev/null +++ b/debian/linux-image-6.7.7-s390x.postinst @@ -0,0 +1,25 @@ +#!/bin/sh -e + +version=6.7.7-s390x +image_path=/boot/vmlinuz-$version + +if [ "$1" != configure ]; then + exit 0 +fi + +depmod $version + +if [ -f /lib/modules/$version/.fresh-install ]; then + change=install +else + change=upgrade +fi +linux-update-symlinks $change $version $image_path +rm -f /lib/modules/$version/.fresh-install + +if [ -d /etc/kernel/postinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-s390x.postrm b/debian/linux-image-6.7.7-s390x.postrm new file mode 100644 index 0000000000..535d5386a6 --- /dev/null +++ b/debian/linux-image-6.7.7-s390x.postrm @@ -0,0 +1,31 @@ +#!/bin/sh -e + +version=6.7.7-s390x +image_path=/boot/vmlinuz-$version + +rm -f /lib/modules/$version/.fresh-install + +if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then + linux-update-symlinks remove $version $image_path +fi + +if [ -d /etc/kernel/postrm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postrm.d +fi + +if [ "$1" = purge ]; then + for extra_file in modules.dep modules.isapnpmap modules.pcimap \ + modules.usbmap modules.parportmap \ + modules.generic_string modules.ieee1394map \ + modules.ieee1394map modules.pnpbiosmap \ + modules.alias modules.ccwmap modules.inputmap \ + modules.symbols modules.ofmap \ + modules.seriomap modules.\*.bin \ + modules.softdep modules.devname; do + eval rm -f /lib/modules/$version/$extra_file + done + rmdir /lib/modules/$version || true +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-s390x.preinst b/debian/linux-image-6.7.7-s390x.preinst new file mode 100644 index 0000000000..7d628a09c2 --- /dev/null +++ b/debian/linux-image-6.7.7-s390x.preinst @@ -0,0 +1,21 @@ +#!/bin/sh -e + +version=6.7.7-s390x +image_path=/boot/vmlinuz-$version + +if [ "$1" = abort-upgrade ]; then + exit 0 +fi + +if [ "$1" = install ]; then + # Create a flag file for postinst + mkdir -p /lib/modules/$version + touch /lib/modules/$version/.fresh-install +fi + +if [ -d /etc/kernel/preinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/preinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-s390x.prerm b/debian/linux-image-6.7.7-s390x.prerm new file mode 100644 index 0000000000..65e13e448a --- /dev/null +++ b/debian/linux-image-6.7.7-s390x.prerm @@ -0,0 +1,17 @@ +#!/bin/sh -e + +version=6.7.7-s390x +image_path=/boot/vmlinuz-$version + +if [ "$1" != remove ]; then + exit 0 +fi + +linux-check-removal $version + +if [ -d /etc/kernel/prerm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/prerm.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-sh7751r-dbg.lintian-overrides b/debian/linux-image-6.7.7-sh7751r-dbg.lintian-overrides new file mode 100644 index 0000000000..bb670facf3 --- /dev/null +++ b/debian/linux-image-6.7.7-sh7751r-dbg.lintian-overrides @@ -0,0 +1,11 @@ +# Kernel dbg packages contain a full image with debug data +linux-image-6.7.7-sh7751r-dbg: dbg-package-missing-depends + +# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so +# it's OK that they don't have it + +# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. +# lintian currently allows i386 executables on amd64. + +# Some 32-bit architectures need 64-bit kernels and we still build +# these as the "wrong" architecture rather than mandating multiarch. diff --git a/debian/linux-image-6.6.15-s390x.NEWS b/debian/linux-image-6.7.7-sh7751r.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/linux-image-6.6.15-s390x.NEWS +++ b/debian/linux-image-6.7.7-sh7751r.NEWS diff --git a/debian/linux-image-6.6.15-s390x.lintian-overrides b/debian/linux-image-6.7.7-sh7751r.lintian-overrides index 5e255135cd..5e255135cd 100644 --- a/debian/linux-image-6.6.15-s390x.lintian-overrides +++ b/debian/linux-image-6.7.7-sh7751r.lintian-overrides diff --git a/debian/linux-image-6.7.7-sh7751r.postinst b/debian/linux-image-6.7.7-sh7751r.postinst new file mode 100644 index 0000000000..7105b656e0 --- /dev/null +++ b/debian/linux-image-6.7.7-sh7751r.postinst @@ -0,0 +1,25 @@ +#!/bin/sh -e + +version=6.7.7-sh7751r +image_path=/boot/vmlinuz-$version + +if [ "$1" != configure ]; then + exit 0 +fi + +depmod $version + +if [ -f /lib/modules/$version/.fresh-install ]; then + change=install +else + change=upgrade +fi +linux-update-symlinks $change $version $image_path +rm -f /lib/modules/$version/.fresh-install + +if [ -d /etc/kernel/postinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-sh7751r.postrm b/debian/linux-image-6.7.7-sh7751r.postrm new file mode 100644 index 0000000000..6d4b45a64a --- /dev/null +++ b/debian/linux-image-6.7.7-sh7751r.postrm @@ -0,0 +1,31 @@ +#!/bin/sh -e + +version=6.7.7-sh7751r +image_path=/boot/vmlinuz-$version + +rm -f /lib/modules/$version/.fresh-install + +if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then + linux-update-symlinks remove $version $image_path +fi + +if [ -d /etc/kernel/postrm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postrm.d +fi + +if [ "$1" = purge ]; then + for extra_file in modules.dep modules.isapnpmap modules.pcimap \ + modules.usbmap modules.parportmap \ + modules.generic_string modules.ieee1394map \ + modules.ieee1394map modules.pnpbiosmap \ + modules.alias modules.ccwmap modules.inputmap \ + modules.symbols modules.ofmap \ + modules.seriomap modules.\*.bin \ + modules.softdep modules.devname; do + eval rm -f /lib/modules/$version/$extra_file + done + rmdir /lib/modules/$version || true +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-sh7751r.preinst b/debian/linux-image-6.7.7-sh7751r.preinst new file mode 100644 index 0000000000..d25d104fa1 --- /dev/null +++ b/debian/linux-image-6.7.7-sh7751r.preinst @@ -0,0 +1,21 @@ +#!/bin/sh -e + +version=6.7.7-sh7751r +image_path=/boot/vmlinuz-$version + +if [ "$1" = abort-upgrade ]; then + exit 0 +fi + +if [ "$1" = install ]; then + # Create a flag file for postinst + mkdir -p /lib/modules/$version + touch /lib/modules/$version/.fresh-install +fi + +if [ -d /etc/kernel/preinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/preinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-sh7751r.prerm b/debian/linux-image-6.7.7-sh7751r.prerm new file mode 100644 index 0000000000..d58026e0ed --- /dev/null +++ b/debian/linux-image-6.7.7-sh7751r.prerm @@ -0,0 +1,17 @@ +#!/bin/sh -e + +version=6.7.7-sh7751r +image_path=/boot/vmlinuz-$version + +if [ "$1" != remove ]; then + exit 0 +fi + +linux-check-removal $version + +if [ -d /etc/kernel/prerm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/prerm.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-sh7785lcr-dbg.lintian-overrides b/debian/linux-image-6.7.7-sh7785lcr-dbg.lintian-overrides new file mode 100644 index 0000000000..e5625767c0 --- /dev/null +++ b/debian/linux-image-6.7.7-sh7785lcr-dbg.lintian-overrides @@ -0,0 +1,11 @@ +# Kernel dbg packages contain a full image with debug data +linux-image-6.7.7-sh7785lcr-dbg: dbg-package-missing-depends + +# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so +# it's OK that they don't have it + +# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. +# lintian currently allows i386 executables on amd64. + +# Some 32-bit architectures need 64-bit kernels and we still build +# these as the "wrong" architecture rather than mandating multiarch. diff --git a/debian/linux-image-6.6.15-sh7751r.NEWS b/debian/linux-image-6.7.7-sh7785lcr.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/linux-image-6.6.15-sh7751r.NEWS +++ b/debian/linux-image-6.7.7-sh7785lcr.NEWS diff --git a/debian/linux-image-6.6.15-sh7751r.lintian-overrides b/debian/linux-image-6.7.7-sh7785lcr.lintian-overrides index 5e255135cd..5e255135cd 100644 --- a/debian/linux-image-6.6.15-sh7751r.lintian-overrides +++ b/debian/linux-image-6.7.7-sh7785lcr.lintian-overrides diff --git a/debian/linux-image-6.7.7-sh7785lcr.postinst b/debian/linux-image-6.7.7-sh7785lcr.postinst new file mode 100644 index 0000000000..deba7af02e --- /dev/null +++ b/debian/linux-image-6.7.7-sh7785lcr.postinst @@ -0,0 +1,25 @@ +#!/bin/sh -e + +version=6.7.7-sh7785lcr +image_path=/boot/vmlinuz-$version + +if [ "$1" != configure ]; then + exit 0 +fi + +depmod $version + +if [ -f /lib/modules/$version/.fresh-install ]; then + change=install +else + change=upgrade +fi +linux-update-symlinks $change $version $image_path +rm -f /lib/modules/$version/.fresh-install + +if [ -d /etc/kernel/postinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-sh7785lcr.postrm b/debian/linux-image-6.7.7-sh7785lcr.postrm new file mode 100644 index 0000000000..ce09136c3c --- /dev/null +++ b/debian/linux-image-6.7.7-sh7785lcr.postrm @@ -0,0 +1,31 @@ +#!/bin/sh -e + +version=6.7.7-sh7785lcr +image_path=/boot/vmlinuz-$version + +rm -f /lib/modules/$version/.fresh-install + +if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then + linux-update-symlinks remove $version $image_path +fi + +if [ -d /etc/kernel/postrm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postrm.d +fi + +if [ "$1" = purge ]; then + for extra_file in modules.dep modules.isapnpmap modules.pcimap \ + modules.usbmap modules.parportmap \ + modules.generic_string modules.ieee1394map \ + modules.ieee1394map modules.pnpbiosmap \ + modules.alias modules.ccwmap modules.inputmap \ + modules.symbols modules.ofmap \ + modules.seriomap modules.\*.bin \ + modules.softdep modules.devname; do + eval rm -f /lib/modules/$version/$extra_file + done + rmdir /lib/modules/$version || true +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-sh7785lcr.preinst b/debian/linux-image-6.7.7-sh7785lcr.preinst new file mode 100644 index 0000000000..494e2dfd04 --- /dev/null +++ b/debian/linux-image-6.7.7-sh7785lcr.preinst @@ -0,0 +1,21 @@ +#!/bin/sh -e + +version=6.7.7-sh7785lcr +image_path=/boot/vmlinuz-$version + +if [ "$1" = abort-upgrade ]; then + exit 0 +fi + +if [ "$1" = install ]; then + # Create a flag file for postinst + mkdir -p /lib/modules/$version + touch /lib/modules/$version/.fresh-install +fi + +if [ -d /etc/kernel/preinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/preinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-sh7785lcr.prerm b/debian/linux-image-6.7.7-sh7785lcr.prerm new file mode 100644 index 0000000000..0f4f63987a --- /dev/null +++ b/debian/linux-image-6.7.7-sh7785lcr.prerm @@ -0,0 +1,17 @@ +#!/bin/sh -e + +version=6.7.7-sh7785lcr +image_path=/boot/vmlinuz-$version + +if [ "$1" != remove ]; then + exit 0 +fi + +linux-check-removal $version + +if [ -d /etc/kernel/prerm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/prerm.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-sparc64-dbg.lintian-overrides b/debian/linux-image-6.7.7-sparc64-dbg.lintian-overrides new file mode 100644 index 0000000000..0b7c66d551 --- /dev/null +++ b/debian/linux-image-6.7.7-sparc64-dbg.lintian-overrides @@ -0,0 +1,11 @@ +# Kernel dbg packages contain a full image with debug data +linux-image-6.7.7-sparc64-dbg: dbg-package-missing-depends + +# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so +# it's OK that they don't have it + +# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. +# lintian currently allows i386 executables on amd64. + +# Some 32-bit architectures need 64-bit kernels and we still build +# these as the "wrong" architecture rather than mandating multiarch. diff --git a/debian/linux-image-6.7.7-sparc64-smp-dbg.lintian-overrides b/debian/linux-image-6.7.7-sparc64-smp-dbg.lintian-overrides new file mode 100644 index 0000000000..1048a6fb77 --- /dev/null +++ b/debian/linux-image-6.7.7-sparc64-smp-dbg.lintian-overrides @@ -0,0 +1,11 @@ +# Kernel dbg packages contain a full image with debug data +linux-image-6.7.7-sparc64-smp-dbg: dbg-package-missing-depends + +# glibc doesn't seem to check for a PT_GNU_STACK section in vDSOs, so +# it's OK that they don't have it + +# It is intended that 64-bit kernels provide vDSOs for 32-bit executables. +# lintian currently allows i386 executables on amd64. + +# Some 32-bit architectures need 64-bit kernels and we still build +# these as the "wrong" architecture rather than mandating multiarch. diff --git a/debian/linux-image-6.6.15-sh7785lcr.NEWS b/debian/linux-image-6.7.7-sparc64-smp.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/linux-image-6.6.15-sh7785lcr.NEWS +++ b/debian/linux-image-6.7.7-sparc64-smp.NEWS diff --git a/debian/linux-image-6.6.15-sh7785lcr.lintian-overrides b/debian/linux-image-6.7.7-sparc64-smp.lintian-overrides index 5e255135cd..5e255135cd 100644 --- a/debian/linux-image-6.6.15-sh7785lcr.lintian-overrides +++ b/debian/linux-image-6.7.7-sparc64-smp.lintian-overrides diff --git a/debian/linux-image-6.7.7-sparc64-smp.postinst b/debian/linux-image-6.7.7-sparc64-smp.postinst new file mode 100644 index 0000000000..7e5da1f1d1 --- /dev/null +++ b/debian/linux-image-6.7.7-sparc64-smp.postinst @@ -0,0 +1,25 @@ +#!/bin/sh -e + +version=6.7.7-sparc64-smp +image_path=/boot/vmlinux-$version + +if [ "$1" != configure ]; then + exit 0 +fi + +depmod $version + +if [ -f /lib/modules/$version/.fresh-install ]; then + change=install +else + change=upgrade +fi +linux-update-symlinks $change $version $image_path +rm -f /lib/modules/$version/.fresh-install + +if [ -d /etc/kernel/postinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-sparc64-smp.postrm b/debian/linux-image-6.7.7-sparc64-smp.postrm new file mode 100644 index 0000000000..ce4026be7c --- /dev/null +++ b/debian/linux-image-6.7.7-sparc64-smp.postrm @@ -0,0 +1,31 @@ +#!/bin/sh -e + +version=6.7.7-sparc64-smp +image_path=/boot/vmlinux-$version + +rm -f /lib/modules/$version/.fresh-install + +if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then + linux-update-symlinks remove $version $image_path +fi + +if [ -d /etc/kernel/postrm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postrm.d +fi + +if [ "$1" = purge ]; then + for extra_file in modules.dep modules.isapnpmap modules.pcimap \ + modules.usbmap modules.parportmap \ + modules.generic_string modules.ieee1394map \ + modules.ieee1394map modules.pnpbiosmap \ + modules.alias modules.ccwmap modules.inputmap \ + modules.symbols modules.ofmap \ + modules.seriomap modules.\*.bin \ + modules.softdep modules.devname; do + eval rm -f /lib/modules/$version/$extra_file + done + rmdir /lib/modules/$version || true +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-sparc64-smp.preinst b/debian/linux-image-6.7.7-sparc64-smp.preinst new file mode 100644 index 0000000000..6d3214cceb --- /dev/null +++ b/debian/linux-image-6.7.7-sparc64-smp.preinst @@ -0,0 +1,21 @@ +#!/bin/sh -e + +version=6.7.7-sparc64-smp +image_path=/boot/vmlinux-$version + +if [ "$1" = abort-upgrade ]; then + exit 0 +fi + +if [ "$1" = install ]; then + # Create a flag file for postinst + mkdir -p /lib/modules/$version + touch /lib/modules/$version/.fresh-install +fi + +if [ -d /etc/kernel/preinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/preinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-sparc64-smp.prerm b/debian/linux-image-6.7.7-sparc64-smp.prerm new file mode 100644 index 0000000000..04ce45ab23 --- /dev/null +++ b/debian/linux-image-6.7.7-sparc64-smp.prerm @@ -0,0 +1,17 @@ +#!/bin/sh -e + +version=6.7.7-sparc64-smp +image_path=/boot/vmlinux-$version + +if [ "$1" != remove ]; then + exit 0 +fi + +linux-check-removal $version + +if [ -d /etc/kernel/prerm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/prerm.d +fi + +exit 0 diff --git a/debian/linux-image-6.6.15-sparc64-smp.NEWS b/debian/linux-image-6.7.7-sparc64.NEWS index f8e1fc0229..f8e1fc0229 100644 --- a/debian/linux-image-6.6.15-sparc64-smp.NEWS +++ b/debian/linux-image-6.7.7-sparc64.NEWS diff --git a/debian/linux-image-6.6.15-sparc64-smp.lintian-overrides b/debian/linux-image-6.7.7-sparc64.lintian-overrides index 5e255135cd..5e255135cd 100644 --- a/debian/linux-image-6.6.15-sparc64-smp.lintian-overrides +++ b/debian/linux-image-6.7.7-sparc64.lintian-overrides diff --git a/debian/linux-image-6.7.7-sparc64.postinst b/debian/linux-image-6.7.7-sparc64.postinst new file mode 100644 index 0000000000..8c9fb977b8 --- /dev/null +++ b/debian/linux-image-6.7.7-sparc64.postinst @@ -0,0 +1,25 @@ +#!/bin/sh -e + +version=6.7.7-sparc64 +image_path=/boot/vmlinux-$version + +if [ "$1" != configure ]; then + exit 0 +fi + +depmod $version + +if [ -f /lib/modules/$version/.fresh-install ]; then + change=install +else + change=upgrade +fi +linux-update-symlinks $change $version $image_path +rm -f /lib/modules/$version/.fresh-install + +if [ -d /etc/kernel/postinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-sparc64.postrm b/debian/linux-image-6.7.7-sparc64.postrm new file mode 100644 index 0000000000..8c71f00160 --- /dev/null +++ b/debian/linux-image-6.7.7-sparc64.postrm @@ -0,0 +1,31 @@ +#!/bin/sh -e + +version=6.7.7-sparc64 +image_path=/boot/vmlinux-$version + +rm -f /lib/modules/$version/.fresh-install + +if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then + linux-update-symlinks remove $version $image_path +fi + +if [ -d /etc/kernel/postrm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postrm.d +fi + +if [ "$1" = purge ]; then + for extra_file in modules.dep modules.isapnpmap modules.pcimap \ + modules.usbmap modules.parportmap \ + modules.generic_string modules.ieee1394map \ + modules.ieee1394map modules.pnpbiosmap \ + modules.alias modules.ccwmap modules.inputmap \ + modules.symbols modules.ofmap \ + modules.seriomap modules.\*.bin \ + modules.softdep modules.devname; do + eval rm -f /lib/modules/$version/$extra_file + done + rmdir /lib/modules/$version || true +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-sparc64.preinst b/debian/linux-image-6.7.7-sparc64.preinst new file mode 100644 index 0000000000..a111fec5da --- /dev/null +++ b/debian/linux-image-6.7.7-sparc64.preinst @@ -0,0 +1,21 @@ +#!/bin/sh -e + +version=6.7.7-sparc64 +image_path=/boot/vmlinux-$version + +if [ "$1" = abort-upgrade ]; then + exit 0 +fi + +if [ "$1" = install ]; then + # Create a flag file for postinst + mkdir -p /lib/modules/$version + touch /lib/modules/$version/.fresh-install +fi + +if [ -d /etc/kernel/preinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/preinst.d +fi + +exit 0 diff --git a/debian/linux-image-6.7.7-sparc64.prerm b/debian/linux-image-6.7.7-sparc64.prerm new file mode 100644 index 0000000000..a58e0509a9 --- /dev/null +++ b/debian/linux-image-6.7.7-sparc64.prerm @@ -0,0 +1,17 @@ +#!/bin/sh -e + +version=6.7.7-sparc64 +image_path=/boot/vmlinux-$version + +if [ "$1" != remove ]; then + exit 0 +fi + +linux-check-removal $version + +if [ -d /etc/kernel/prerm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/prerm.d +fi + +exit 0 diff --git a/debian/linux-image-686-dbg.maintscript b/debian/linux-image-686-dbg.maintscript index 3bf3db4081..cd1d251642 100644 --- a/debian/linux-image-686-dbg.maintscript +++ b/debian/linux-image-686-dbg.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-686-dbg linux-image-6.6.15-686-dbg 5.7~rc5-1~exp1 linux-image-686-dbg +dir_to_symlink /usr/share/doc/linux-image-686-dbg linux-image-6.7.7-686-dbg 5.7~rc5-1~exp1 linux-image-686-dbg diff --git a/debian/linux-image-686-pae-dbg.maintscript b/debian/linux-image-686-pae-dbg.maintscript index 052695a638..0ea27ba955 100644 --- a/debian/linux-image-686-pae-dbg.maintscript +++ b/debian/linux-image-686-pae-dbg.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-686-pae-dbg linux-image-6.6.15-686-pae-dbg 5.7~rc5-1~exp1 linux-image-686-pae-dbg +dir_to_symlink /usr/share/doc/linux-image-686-pae-dbg linux-image-6.7.7-686-pae-dbg 5.7~rc5-1~exp1 linux-image-686-pae-dbg diff --git a/debian/linux-image-686-pae.bug-presubj b/debian/linux-image-686-pae.bug-presubj index c0ca01d042..4fec45cc33 100644 --- a/debian/linux-image-686-pae.bug-presubj +++ b/debian/linux-image-686-pae.bug-presubj @@ -2,4 +2,4 @@ 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-6.6.15-686-pae instead. +the package name linux-image-6.7.7-686-pae instead. diff --git a/debian/linux-image-686-pae.maintscript b/debian/linux-image-686-pae.maintscript index 21bbbba22b..4f4c0c4759 100644 --- a/debian/linux-image-686-pae.maintscript +++ b/debian/linux-image-686-pae.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-686-pae linux-image-6.6.15-686-pae 5.7~rc5-1~exp1 linux-image-686-pae +dir_to_symlink /usr/share/doc/linux-image-686-pae linux-image-6.7.7-686-pae 5.7~rc5-1~exp1 linux-image-686-pae diff --git a/debian/linux-image-686.bug-presubj b/debian/linux-image-686.bug-presubj index 2df7b30a10..4b3ff0f7a1 100644 --- a/debian/linux-image-686.bug-presubj +++ b/debian/linux-image-686.bug-presubj @@ -2,4 +2,4 @@ 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-6.6.15-686 instead. +the package name linux-image-6.7.7-686 instead. diff --git a/debian/linux-image-686.maintscript b/debian/linux-image-686.maintscript index c41bd1c5e4..a272423650 100644 --- a/debian/linux-image-686.maintscript +++ b/debian/linux-image-686.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-686 linux-image-6.6.15-686 5.7~rc5-1~exp1 linux-image-686 +dir_to_symlink /usr/share/doc/linux-image-686 linux-image-6.7.7-686 5.7~rc5-1~exp1 linux-image-686 diff --git a/debian/linux-image-alpha-generic-dbg.maintscript b/debian/linux-image-alpha-generic-dbg.maintscript index d5196be33c..5fa64fb90b 100644 --- a/debian/linux-image-alpha-generic-dbg.maintscript +++ b/debian/linux-image-alpha-generic-dbg.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-alpha-generic-dbg linux-image-6.6.15-alpha-generic-dbg 5.7~rc5-1~exp1 linux-image-alpha-generic-dbg +dir_to_symlink /usr/share/doc/linux-image-alpha-generic-dbg linux-image-6.7.7-alpha-generic-dbg 5.7~rc5-1~exp1 linux-image-alpha-generic-dbg diff --git a/debian/linux-image-alpha-generic.bug-presubj b/debian/linux-image-alpha-generic.bug-presubj index 48c83e515c..bb71aedbc2 100644 --- a/debian/linux-image-alpha-generic.bug-presubj +++ b/debian/linux-image-alpha-generic.bug-presubj @@ -2,4 +2,4 @@ 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-6.6.15-alpha-generic instead. +the package name linux-image-6.7.7-alpha-generic instead. diff --git a/debian/linux-image-alpha-generic.maintscript b/debian/linux-image-alpha-generic.maintscript index d5d2321d3a..0e04cf9642 100644 --- a/debian/linux-image-alpha-generic.maintscript +++ b/debian/linux-image-alpha-generic.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-alpha-generic linux-image-6.6.15-alpha-generic 5.7~rc5-1~exp1 linux-image-alpha-generic +dir_to_symlink /usr/share/doc/linux-image-alpha-generic linux-image-6.7.7-alpha-generic 5.7~rc5-1~exp1 linux-image-alpha-generic diff --git a/debian/linux-image-alpha-smp-dbg.maintscript b/debian/linux-image-alpha-smp-dbg.maintscript index dbf7d823a5..36cc63ec71 100644 --- a/debian/linux-image-alpha-smp-dbg.maintscript +++ b/debian/linux-image-alpha-smp-dbg.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-alpha-smp-dbg linux-image-6.6.15-alpha-smp-dbg 5.7~rc5-1~exp1 linux-image-alpha-smp-dbg +dir_to_symlink /usr/share/doc/linux-image-alpha-smp-dbg linux-image-6.7.7-alpha-smp-dbg 5.7~rc5-1~exp1 linux-image-alpha-smp-dbg diff --git a/debian/linux-image-alpha-smp.bug-presubj b/debian/linux-image-alpha-smp.bug-presubj index 36e23a16f3..bdcdd5b06e 100644 --- a/debian/linux-image-alpha-smp.bug-presubj +++ b/debian/linux-image-alpha-smp.bug-presubj @@ -2,4 +2,4 @@ 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-6.6.15-alpha-smp instead. +the package name linux-image-6.7.7-alpha-smp instead. diff --git a/debian/linux-image-alpha-smp.maintscript b/debian/linux-image-alpha-smp.maintscript index 9059c5ba0f..ef86036575 100644 --- a/debian/linux-image-alpha-smp.maintscript +++ b/debian/linux-image-alpha-smp.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-alpha-smp linux-image-6.6.15-alpha-smp 5.7~rc5-1~exp1 linux-image-alpha-smp +dir_to_symlink /usr/share/doc/linux-image-alpha-smp linux-image-6.7.7-alpha-smp 5.7~rc5-1~exp1 linux-image-alpha-smp diff --git a/debian/linux-image-amd64-dbg.maintscript b/debian/linux-image-amd64-dbg.maintscript index 0e63aad50c..7e6b9309cd 100644 --- a/debian/linux-image-amd64-dbg.maintscript +++ b/debian/linux-image-amd64-dbg.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-amd64-dbg linux-image-6.6.15-amd64-dbg 5.7~rc5-1~exp1 linux-image-amd64-dbg +dir_to_symlink /usr/share/doc/linux-image-amd64-dbg linux-image-6.7.7-amd64-dbg 5.7~rc5-1~exp1 linux-image-amd64-dbg diff --git a/debian/linux-image-arm64-dbg.maintscript b/debian/linux-image-arm64-dbg.maintscript index 39a2c68fbb..1281b65137 100644 --- a/debian/linux-image-arm64-dbg.maintscript +++ b/debian/linux-image-arm64-dbg.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-arm64-dbg linux-image-6.6.15-arm64-dbg 5.7~rc5-1~exp1 linux-image-arm64-dbg +dir_to_symlink /usr/share/doc/linux-image-arm64-dbg linux-image-6.7.7-arm64-dbg 5.7~rc5-1~exp1 linux-image-arm64-dbg diff --git a/debian/linux-image-armmp-dbg.maintscript b/debian/linux-image-armmp-dbg.maintscript index d2d91e7614..5f24da42ef 100644 --- a/debian/linux-image-armmp-dbg.maintscript +++ b/debian/linux-image-armmp-dbg.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-armmp-dbg linux-image-6.6.15-armmp-dbg 5.7~rc5-1~exp1 linux-image-armmp-dbg +dir_to_symlink /usr/share/doc/linux-image-armmp-dbg linux-image-6.7.7-armmp-dbg 5.7~rc5-1~exp1 linux-image-armmp-dbg diff --git a/debian/linux-image-armmp-lpae-dbg.maintscript b/debian/linux-image-armmp-lpae-dbg.maintscript index 53d7e4fa51..5ba6a1e6ed 100644 --- a/debian/linux-image-armmp-lpae-dbg.maintscript +++ b/debian/linux-image-armmp-lpae-dbg.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-armmp-lpae-dbg linux-image-6.6.15-armmp-lpae-dbg 5.7~rc5-1~exp1 linux-image-armmp-lpae-dbg +dir_to_symlink /usr/share/doc/linux-image-armmp-lpae-dbg linux-image-6.7.7-armmp-lpae-dbg 5.7~rc5-1~exp1 linux-image-armmp-lpae-dbg diff --git a/debian/linux-image-armmp-lpae.bug-presubj b/debian/linux-image-armmp-lpae.bug-presubj index 6a1640294a..93ee4f8488 100644 --- a/debian/linux-image-armmp-lpae.bug-presubj +++ b/debian/linux-image-armmp-lpae.bug-presubj @@ -2,4 +2,4 @@ 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-6.6.15-armmp-lpae instead. +the package name linux-image-6.7.7-armmp-lpae instead. diff --git a/debian/linux-image-armmp-lpae.maintscript b/debian/linux-image-armmp-lpae.maintscript index 1f5e533aa6..e37250a9f6 100644 --- a/debian/linux-image-armmp-lpae.maintscript +++ b/debian/linux-image-armmp-lpae.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-armmp-lpae linux-image-6.6.15-armmp-lpae 5.7~rc5-1~exp1 linux-image-armmp-lpae +dir_to_symlink /usr/share/doc/linux-image-armmp-lpae linux-image-6.7.7-armmp-lpae 5.7~rc5-1~exp1 linux-image-armmp-lpae diff --git a/debian/linux-image-armmp.bug-presubj b/debian/linux-image-armmp.bug-presubj index 71fe151705..ed5e2abfb1 100644 --- a/debian/linux-image-armmp.bug-presubj +++ b/debian/linux-image-armmp.bug-presubj @@ -2,4 +2,4 @@ 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-6.6.15-armmp instead. +the package name linux-image-6.7.7-armmp instead. diff --git a/debian/linux-image-armmp.maintscript b/debian/linux-image-armmp.maintscript index 246981dd1c..971c04a831 100644 --- a/debian/linux-image-armmp.maintscript +++ b/debian/linux-image-armmp.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-armmp linux-image-6.6.15-armmp 5.7~rc5-1~exp1 linux-image-armmp +dir_to_symlink /usr/share/doc/linux-image-armmp linux-image-6.7.7-armmp 5.7~rc5-1~exp1 linux-image-armmp diff --git a/debian/linux-image-cloud-amd64-dbg.maintscript b/debian/linux-image-cloud-amd64-dbg.maintscript index 0dd6d28804..c0176e44bd 100644 --- a/debian/linux-image-cloud-amd64-dbg.maintscript +++ b/debian/linux-image-cloud-amd64-dbg.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-cloud-amd64-dbg linux-image-6.6.15-cloud-amd64-dbg 5.7~rc5-1~exp1 linux-image-cloud-amd64-dbg +dir_to_symlink /usr/share/doc/linux-image-cloud-amd64-dbg linux-image-6.7.7-cloud-amd64-dbg 5.7~rc5-1~exp1 linux-image-cloud-amd64-dbg diff --git a/debian/linux-image-cloud-arm64-dbg.maintscript b/debian/linux-image-cloud-arm64-dbg.maintscript index 2f1b316334..231adffeb2 100644 --- a/debian/linux-image-cloud-arm64-dbg.maintscript +++ b/debian/linux-image-cloud-arm64-dbg.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-cloud-arm64-dbg linux-image-6.6.15-cloud-arm64-dbg 5.7~rc5-1~exp1 linux-image-cloud-arm64-dbg +dir_to_symlink /usr/share/doc/linux-image-cloud-arm64-dbg linux-image-6.7.7-cloud-arm64-dbg 5.7~rc5-1~exp1 linux-image-cloud-arm64-dbg diff --git a/debian/linux-image-itanium-dbg.lintian-overrides b/debian/linux-image-itanium-dbg.lintian-overrides deleted file mode 100644 index 97d33c23a0..0000000000 --- a/debian/linux-image-itanium-dbg.lintian-overrides +++ /dev/null @@ -1 +0,0 @@ -linux-image-itanium-dbg: wrong-section-according-to-package-name linux-image-itanium-dbg => debug diff --git a/debian/linux-image-itanium-dbg.maintscript b/debian/linux-image-itanium-dbg.maintscript deleted file mode 100644 index 32686d861b..0000000000 --- a/debian/linux-image-itanium-dbg.maintscript +++ /dev/null @@ -1 +0,0 @@ -dir_to_symlink /usr/share/doc/linux-image-itanium-dbg linux-image-6.6.15-itanium-dbg 5.7~rc5-1~exp1 linux-image-itanium-dbg diff --git a/debian/linux-image-itanium.maintscript b/debian/linux-image-itanium.maintscript deleted file mode 100644 index 0c6fac0031..0000000000 --- a/debian/linux-image-itanium.maintscript +++ /dev/null @@ -1 +0,0 @@ -dir_to_symlink /usr/share/doc/linux-image-itanium linux-image-6.6.15-itanium 5.7~rc5-1~exp1 linux-image-itanium diff --git a/debian/linux-image-loong64-dbg.lintian-overrides b/debian/linux-image-loong64-dbg.lintian-overrides new file mode 100644 index 0000000000..7b5b9c8cfa --- /dev/null +++ b/debian/linux-image-loong64-dbg.lintian-overrides @@ -0,0 +1 @@ +linux-image-loong64-dbg: wrong-section-according-to-package-name linux-image-loong64-dbg => debug diff --git a/debian/linux-image-loong64-dbg.maintscript b/debian/linux-image-loong64-dbg.maintscript new file mode 100644 index 0000000000..d89bc9f218 --- /dev/null +++ b/debian/linux-image-loong64-dbg.maintscript @@ -0,0 +1 @@ +dir_to_symlink /usr/share/doc/linux-image-loong64-dbg linux-image-6.7.7-loong64-dbg 5.7~rc5-1~exp1 linux-image-loong64-dbg diff --git a/debian/linux-image-itanium.bug-presubj b/debian/linux-image-loong64.bug-presubj index 117fdcc729..50b7091783 100644 --- a/debian/linux-image-itanium.bug-presubj +++ b/debian/linux-image-loong64.bug-presubj @@ -2,4 +2,4 @@ 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-6.6.15-itanium instead. +the package name linux-image-6.7.7-loong64 instead. diff --git a/debian/linux-image-loong64.maintscript b/debian/linux-image-loong64.maintscript new file mode 100644 index 0000000000..b709f09e4f --- /dev/null +++ b/debian/linux-image-loong64.maintscript @@ -0,0 +1 @@ +dir_to_symlink /usr/share/doc/linux-image-loong64 linux-image-6.7.7-loong64 5.7~rc5-1~exp1 linux-image-loong64 diff --git a/debian/linux-image-loongson-3-dbg.maintscript b/debian/linux-image-loongson-3-dbg.maintscript index 1dcfe7c704..7a537bbfef 100644 --- a/debian/linux-image-loongson-3-dbg.maintscript +++ b/debian/linux-image-loongson-3-dbg.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-loongson-3-dbg linux-image-6.6.15-loongson-3-dbg 5.7~rc5-1~exp1 linux-image-loongson-3-dbg +dir_to_symlink /usr/share/doc/linux-image-loongson-3-dbg linux-image-6.7.7-loongson-3-dbg 5.7~rc5-1~exp1 linux-image-loongson-3-dbg diff --git a/debian/linux-image-loongson-3.bug-presubj b/debian/linux-image-loongson-3.bug-presubj index 7b7177b9d0..91419bc78f 100644 --- a/debian/linux-image-loongson-3.bug-presubj +++ b/debian/linux-image-loongson-3.bug-presubj @@ -2,4 +2,4 @@ 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-6.6.15-loongson-3 instead. +the package name linux-image-6.7.7-loongson-3 instead. diff --git a/debian/linux-image-loongson-3.maintscript b/debian/linux-image-loongson-3.maintscript index ed3c02cd61..31466e561b 100644 --- a/debian/linux-image-loongson-3.maintscript +++ b/debian/linux-image-loongson-3.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-loongson-3 linux-image-6.6.15-loongson-3 5.7~rc5-1~exp1 linux-image-loongson-3 +dir_to_symlink /usr/share/doc/linux-image-loongson-3 linux-image-6.7.7-loongson-3 5.7~rc5-1~exp1 linux-image-loongson-3 diff --git a/debian/linux-image-m68k-dbg.maintscript b/debian/linux-image-m68k-dbg.maintscript index fe5ff830ef..836fee17a1 100644 --- a/debian/linux-image-m68k-dbg.maintscript +++ b/debian/linux-image-m68k-dbg.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-m68k-dbg linux-image-6.6.15-m68k-dbg 5.7~rc5-1~exp1 linux-image-m68k-dbg +dir_to_symlink /usr/share/doc/linux-image-m68k-dbg linux-image-6.7.7-m68k-dbg 5.7~rc5-1~exp1 linux-image-m68k-dbg diff --git a/debian/linux-image-m68k.bug-presubj b/debian/linux-image-m68k.bug-presubj index b9dac58ee2..0973f918ac 100644 --- a/debian/linux-image-m68k.bug-presubj +++ b/debian/linux-image-m68k.bug-presubj @@ -2,4 +2,4 @@ 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-6.6.15-m68k instead. +the package name linux-image-6.7.7-m68k instead. diff --git a/debian/linux-image-m68k.maintscript b/debian/linux-image-m68k.maintscript index 48a222232e..461e3a2a05 100644 --- a/debian/linux-image-m68k.maintscript +++ b/debian/linux-image-m68k.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-m68k linux-image-6.6.15-m68k 5.7~rc5-1~exp1 linux-image-m68k +dir_to_symlink /usr/share/doc/linux-image-m68k linux-image-6.7.7-m68k 5.7~rc5-1~exp1 linux-image-m68k diff --git a/debian/linux-image-mckinley-dbg.lintian-overrides b/debian/linux-image-mckinley-dbg.lintian-overrides deleted file mode 100644 index 70639ff70c..0000000000 --- a/debian/linux-image-mckinley-dbg.lintian-overrides +++ /dev/null @@ -1 +0,0 @@ -linux-image-mckinley-dbg: wrong-section-according-to-package-name linux-image-mckinley-dbg => debug diff --git a/debian/linux-image-mckinley-dbg.maintscript b/debian/linux-image-mckinley-dbg.maintscript deleted file mode 100644 index 05c855ef84..0000000000 --- a/debian/linux-image-mckinley-dbg.maintscript +++ /dev/null @@ -1 +0,0 @@ -dir_to_symlink /usr/share/doc/linux-image-mckinley-dbg linux-image-6.6.15-mckinley-dbg 5.7~rc5-1~exp1 linux-image-mckinley-dbg diff --git a/debian/linux-image-mckinley.bug-presubj b/debian/linux-image-mckinley.bug-presubj deleted file mode 100644 index 7efec051be..0000000000 --- a/debian/linux-image-mckinley.bug-presubj +++ /dev/null @@ -1,5 +0,0 @@ -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-6.6.15-mckinley instead. diff --git a/debian/linux-image-mckinley.maintscript b/debian/linux-image-mckinley.maintscript deleted file mode 100644 index de53f8f765..0000000000 --- a/debian/linux-image-mckinley.maintscript +++ /dev/null @@ -1 +0,0 @@ -dir_to_symlink /usr/share/doc/linux-image-mckinley linux-image-6.6.15-mckinley 5.7~rc5-1~exp1 linux-image-mckinley diff --git a/debian/linux-image-mips32r2eb-dbg.maintscript b/debian/linux-image-mips32r2eb-dbg.maintscript index 97d1cf3da7..6e9bec3653 100644 --- a/debian/linux-image-mips32r2eb-dbg.maintscript +++ b/debian/linux-image-mips32r2eb-dbg.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-mips32r2eb-dbg linux-image-6.6.15-mips32r2eb-dbg 5.7~rc5-1~exp1 linux-image-mips32r2eb-dbg +dir_to_symlink /usr/share/doc/linux-image-mips32r2eb-dbg linux-image-6.7.7-mips32r2eb-dbg 5.7~rc5-1~exp1 linux-image-mips32r2eb-dbg diff --git a/debian/linux-image-mips32r2eb.bug-presubj b/debian/linux-image-mips32r2eb.bug-presubj index 7bb3541242..430b7f5e22 100644 --- a/debian/linux-image-mips32r2eb.bug-presubj +++ b/debian/linux-image-mips32r2eb.bug-presubj @@ -2,4 +2,4 @@ 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-6.6.15-mips32r2eb instead. +the package name linux-image-6.7.7-mips32r2eb instead. diff --git a/debian/linux-image-mips32r2eb.maintscript b/debian/linux-image-mips32r2eb.maintscript index 9d74d1645f..2b34734992 100644 --- a/debian/linux-image-mips32r2eb.maintscript +++ b/debian/linux-image-mips32r2eb.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-mips32r2eb linux-image-6.6.15-mips32r2eb 5.7~rc5-1~exp1 linux-image-mips32r2eb +dir_to_symlink /usr/share/doc/linux-image-mips32r2eb linux-image-6.7.7-mips32r2eb 5.7~rc5-1~exp1 linux-image-mips32r2eb diff --git a/debian/linux-image-mips32r2el-dbg.maintscript b/debian/linux-image-mips32r2el-dbg.maintscript index 926c2fdb01..f73d516a70 100644 --- a/debian/linux-image-mips32r2el-dbg.maintscript +++ b/debian/linux-image-mips32r2el-dbg.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-mips32r2el-dbg linux-image-6.6.15-mips32r2el-dbg 5.7~rc5-1~exp1 linux-image-mips32r2el-dbg +dir_to_symlink /usr/share/doc/linux-image-mips32r2el-dbg linux-image-6.7.7-mips32r2el-dbg 5.7~rc5-1~exp1 linux-image-mips32r2el-dbg diff --git a/debian/linux-image-mips32r2el.bug-presubj b/debian/linux-image-mips32r2el.bug-presubj index a403adbf89..a71090ffe6 100644 --- a/debian/linux-image-mips32r2el.bug-presubj +++ b/debian/linux-image-mips32r2el.bug-presubj @@ -2,4 +2,4 @@ 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-6.6.15-mips32r2el instead. +the package name linux-image-6.7.7-mips32r2el instead. diff --git a/debian/linux-image-mips32r2el.maintscript b/debian/linux-image-mips32r2el.maintscript index c4e1591b44..7595c2aa8a 100644 --- a/debian/linux-image-mips32r2el.maintscript +++ b/debian/linux-image-mips32r2el.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-mips32r2el linux-image-6.6.15-mips32r2el 5.7~rc5-1~exp1 linux-image-mips32r2el +dir_to_symlink /usr/share/doc/linux-image-mips32r2el linux-image-6.7.7-mips32r2el 5.7~rc5-1~exp1 linux-image-mips32r2el diff --git a/debian/linux-image-mips64r2eb-dbg.maintscript b/debian/linux-image-mips64r2eb-dbg.maintscript index d8153067be..77f7de7e35 100644 --- a/debian/linux-image-mips64r2eb-dbg.maintscript +++ b/debian/linux-image-mips64r2eb-dbg.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-mips64r2eb-dbg linux-image-6.6.15-mips64r2eb-dbg 5.7~rc5-1~exp1 linux-image-mips64r2eb-dbg +dir_to_symlink /usr/share/doc/linux-image-mips64r2eb-dbg linux-image-6.7.7-mips64r2eb-dbg 5.7~rc5-1~exp1 linux-image-mips64r2eb-dbg diff --git a/debian/linux-image-mips64r2eb.bug-presubj b/debian/linux-image-mips64r2eb.bug-presubj index aee5866aff..a33cf0776e 100644 --- a/debian/linux-image-mips64r2eb.bug-presubj +++ b/debian/linux-image-mips64r2eb.bug-presubj @@ -2,4 +2,4 @@ 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-6.6.15-mips64r2eb instead. +the package name linux-image-6.7.7-mips64r2eb instead. diff --git a/debian/linux-image-mips64r2eb.maintscript b/debian/linux-image-mips64r2eb.maintscript index 658fb2d284..cfc1c993e8 100644 --- a/debian/linux-image-mips64r2eb.maintscript +++ b/debian/linux-image-mips64r2eb.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-mips64r2eb linux-image-6.6.15-mips64r2eb 5.7~rc5-1~exp1 linux-image-mips64r2eb +dir_to_symlink /usr/share/doc/linux-image-mips64r2eb linux-image-6.7.7-mips64r2eb 5.7~rc5-1~exp1 linux-image-mips64r2eb diff --git a/debian/linux-image-mips64r2el-dbg.maintscript b/debian/linux-image-mips64r2el-dbg.maintscript index 3a27d3e438..2612a26044 100644 --- a/debian/linux-image-mips64r2el-dbg.maintscript +++ b/debian/linux-image-mips64r2el-dbg.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-mips64r2el-dbg linux-image-6.6.15-mips64r2el-dbg 5.7~rc5-1~exp1 linux-image-mips64r2el-dbg +dir_to_symlink /usr/share/doc/linux-image-mips64r2el-dbg linux-image-6.7.7-mips64r2el-dbg 5.7~rc5-1~exp1 linux-image-mips64r2el-dbg diff --git a/debian/linux-image-mips64r2el.bug-presubj b/debian/linux-image-mips64r2el.bug-presubj index d6bbd348f9..92c1ad3980 100644 --- a/debian/linux-image-mips64r2el.bug-presubj +++ b/debian/linux-image-mips64r2el.bug-presubj @@ -2,4 +2,4 @@ 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-6.6.15-mips64r2el instead. +the package name linux-image-6.7.7-mips64r2el instead. diff --git a/debian/linux-image-mips64r2el.maintscript b/debian/linux-image-mips64r2el.maintscript index a2166fafcd..d8d13be975 100644 --- a/debian/linux-image-mips64r2el.maintscript +++ b/debian/linux-image-mips64r2el.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-mips64r2el linux-image-6.6.15-mips64r2el 5.7~rc5-1~exp1 linux-image-mips64r2el +dir_to_symlink /usr/share/doc/linux-image-mips64r2el linux-image-6.7.7-mips64r2el 5.7~rc5-1~exp1 linux-image-mips64r2el diff --git a/debian/linux-image-mips64r6el-dbg.maintscript b/debian/linux-image-mips64r6el-dbg.maintscript index 388eacaf7e..216806795b 100644 --- a/debian/linux-image-mips64r6el-dbg.maintscript +++ b/debian/linux-image-mips64r6el-dbg.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-mips64r6el-dbg linux-image-6.6.15-mips64r6el-dbg 5.7~rc5-1~exp1 linux-image-mips64r6el-dbg +dir_to_symlink /usr/share/doc/linux-image-mips64r6el-dbg linux-image-6.7.7-mips64r6el-dbg 5.7~rc5-1~exp1 linux-image-mips64r6el-dbg diff --git a/debian/linux-image-mips64r6el.bug-presubj b/debian/linux-image-mips64r6el.bug-presubj index 9f0845a6a5..e07023b688 100644 --- a/debian/linux-image-mips64r6el.bug-presubj +++ b/debian/linux-image-mips64r6el.bug-presubj @@ -2,4 +2,4 @@ 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-6.6.15-mips64r6el instead. +the package name linux-image-6.7.7-mips64r6el instead. diff --git a/debian/linux-image-mips64r6el.maintscript b/debian/linux-image-mips64r6el.maintscript index 6f2f76ab00..c1057b921a 100644 --- a/debian/linux-image-mips64r6el.maintscript +++ b/debian/linux-image-mips64r6el.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-mips64r6el linux-image-6.6.15-mips64r6el 5.7~rc5-1~exp1 linux-image-mips64r6el +dir_to_symlink /usr/share/doc/linux-image-mips64r6el linux-image-6.7.7-mips64r6el 5.7~rc5-1~exp1 linux-image-mips64r6el diff --git a/debian/linux-image-octeon-dbg.maintscript b/debian/linux-image-octeon-dbg.maintscript index b71500461a..a414c94c9a 100644 --- a/debian/linux-image-octeon-dbg.maintscript +++ b/debian/linux-image-octeon-dbg.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-octeon-dbg linux-image-6.6.15-octeon-dbg 5.7~rc5-1~exp1 linux-image-octeon-dbg +dir_to_symlink /usr/share/doc/linux-image-octeon-dbg linux-image-6.7.7-octeon-dbg 5.7~rc5-1~exp1 linux-image-octeon-dbg diff --git a/debian/linux-image-octeon.bug-presubj b/debian/linux-image-octeon.bug-presubj index 12a3c0ca35..d2a85da3b3 100644 --- a/debian/linux-image-octeon.bug-presubj +++ b/debian/linux-image-octeon.bug-presubj @@ -2,4 +2,4 @@ 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-6.6.15-octeon instead. +the package name linux-image-6.7.7-octeon instead. diff --git a/debian/linux-image-octeon.maintscript b/debian/linux-image-octeon.maintscript index 53c4b21f08..97f2668078 100644 --- a/debian/linux-image-octeon.maintscript +++ b/debian/linux-image-octeon.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-octeon linux-image-6.6.15-octeon 5.7~rc5-1~exp1 linux-image-octeon +dir_to_symlink /usr/share/doc/linux-image-octeon linux-image-6.7.7-octeon 5.7~rc5-1~exp1 linux-image-octeon diff --git a/debian/linux-image-parisc-dbg.maintscript b/debian/linux-image-parisc-dbg.maintscript index e84ed49b5a..38fe0e45d5 100644 --- a/debian/linux-image-parisc-dbg.maintscript +++ b/debian/linux-image-parisc-dbg.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-parisc-dbg linux-image-6.6.15-parisc-dbg 5.7~rc5-1~exp1 linux-image-parisc-dbg +dir_to_symlink /usr/share/doc/linux-image-parisc-dbg linux-image-6.7.7-parisc-dbg 5.7~rc5-1~exp1 linux-image-parisc-dbg diff --git a/debian/linux-image-parisc.bug-presubj b/debian/linux-image-parisc.bug-presubj index adb7d35ebd..acbdd82218 100644 --- a/debian/linux-image-parisc.bug-presubj +++ b/debian/linux-image-parisc.bug-presubj @@ -2,4 +2,4 @@ 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-6.6.15-parisc instead. +the package name linux-image-6.7.7-parisc instead. diff --git a/debian/linux-image-parisc.maintscript b/debian/linux-image-parisc.maintscript index 60165d5ade..986bd3ebad 100644 --- a/debian/linux-image-parisc.maintscript +++ b/debian/linux-image-parisc.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-parisc linux-image-6.6.15-parisc 5.7~rc5-1~exp1 linux-image-parisc +dir_to_symlink /usr/share/doc/linux-image-parisc linux-image-6.7.7-parisc 5.7~rc5-1~exp1 linux-image-parisc diff --git a/debian/linux-image-parisc64-dbg.maintscript b/debian/linux-image-parisc64-dbg.maintscript index 57922c57fe..6fbdf824a8 100644 --- a/debian/linux-image-parisc64-dbg.maintscript +++ b/debian/linux-image-parisc64-dbg.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-parisc64-dbg linux-image-6.6.15-parisc64-dbg 5.7~rc5-1~exp1 linux-image-parisc64-dbg +dir_to_symlink /usr/share/doc/linux-image-parisc64-dbg linux-image-6.7.7-parisc64-dbg 5.7~rc5-1~exp1 linux-image-parisc64-dbg diff --git a/debian/linux-image-parisc64.bug-presubj b/debian/linux-image-parisc64.bug-presubj index 13236472d5..d21c1ca359 100644 --- a/debian/linux-image-parisc64.bug-presubj +++ b/debian/linux-image-parisc64.bug-presubj @@ -2,4 +2,4 @@ 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-6.6.15-parisc64 instead. +the package name linux-image-6.7.7-parisc64 instead. diff --git a/debian/linux-image-parisc64.maintscript b/debian/linux-image-parisc64.maintscript index e8bc9481fe..5d25977db5 100644 --- a/debian/linux-image-parisc64.maintscript +++ b/debian/linux-image-parisc64.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-parisc64 linux-image-6.6.15-parisc64 5.7~rc5-1~exp1 linux-image-parisc64 +dir_to_symlink /usr/share/doc/linux-image-parisc64 linux-image-6.7.7-parisc64 5.7~rc5-1~exp1 linux-image-parisc64 diff --git a/debian/linux-image-powerpc-dbg.maintscript b/debian/linux-image-powerpc-dbg.maintscript index a2ff952b66..2adfa0a442 100644 --- a/debian/linux-image-powerpc-dbg.maintscript +++ b/debian/linux-image-powerpc-dbg.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-powerpc-dbg linux-image-6.6.15-powerpc-dbg 5.7~rc5-1~exp1 linux-image-powerpc-dbg +dir_to_symlink /usr/share/doc/linux-image-powerpc-dbg linux-image-6.7.7-powerpc-dbg 5.7~rc5-1~exp1 linux-image-powerpc-dbg diff --git a/debian/linux-image-powerpc-smp-dbg.maintscript b/debian/linux-image-powerpc-smp-dbg.maintscript index 845977bf2e..24374dd3ac 100644 --- a/debian/linux-image-powerpc-smp-dbg.maintscript +++ b/debian/linux-image-powerpc-smp-dbg.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-powerpc-smp-dbg linux-image-6.6.15-powerpc-smp-dbg 5.7~rc5-1~exp1 linux-image-powerpc-smp-dbg +dir_to_symlink /usr/share/doc/linux-image-powerpc-smp-dbg linux-image-6.7.7-powerpc-smp-dbg 5.7~rc5-1~exp1 linux-image-powerpc-smp-dbg diff --git a/debian/linux-image-powerpc-smp.bug-presubj b/debian/linux-image-powerpc-smp.bug-presubj index 07b2429ba0..a1d4920de1 100644 --- a/debian/linux-image-powerpc-smp.bug-presubj +++ b/debian/linux-image-powerpc-smp.bug-presubj @@ -2,4 +2,4 @@ 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-6.6.15-powerpc-smp instead. +the package name linux-image-6.7.7-powerpc-smp instead. diff --git a/debian/linux-image-powerpc-smp.maintscript b/debian/linux-image-powerpc-smp.maintscript index a0fb20bedd..c69884d1e4 100644 --- a/debian/linux-image-powerpc-smp.maintscript +++ b/debian/linux-image-powerpc-smp.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-powerpc-smp linux-image-6.6.15-powerpc-smp 5.7~rc5-1~exp1 linux-image-powerpc-smp +dir_to_symlink /usr/share/doc/linux-image-powerpc-smp linux-image-6.7.7-powerpc-smp 5.7~rc5-1~exp1 linux-image-powerpc-smp diff --git a/debian/linux-image-powerpc.bug-presubj b/debian/linux-image-powerpc.bug-presubj index d6d9bb5085..e07c1826b9 100644 --- a/debian/linux-image-powerpc.bug-presubj +++ b/debian/linux-image-powerpc.bug-presubj @@ -2,4 +2,4 @@ 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-6.6.15-powerpc instead. +the package name linux-image-6.7.7-powerpc instead. diff --git a/debian/linux-image-powerpc.maintscript b/debian/linux-image-powerpc.maintscript index 48a293d04e..b057641301 100644 --- a/debian/linux-image-powerpc.maintscript +++ b/debian/linux-image-powerpc.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-powerpc linux-image-6.6.15-powerpc 5.7~rc5-1~exp1 linux-image-powerpc +dir_to_symlink /usr/share/doc/linux-image-powerpc linux-image-6.7.7-powerpc 5.7~rc5-1~exp1 linux-image-powerpc diff --git a/debian/linux-image-powerpc64-dbg.maintscript b/debian/linux-image-powerpc64-dbg.maintscript index 6b8c52b003..d46dddc4c3 100644 --- a/debian/linux-image-powerpc64-dbg.maintscript +++ b/debian/linux-image-powerpc64-dbg.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-powerpc64-dbg linux-image-6.6.15-powerpc64-dbg 5.7~rc5-1~exp1 linux-image-powerpc64-dbg +dir_to_symlink /usr/share/doc/linux-image-powerpc64-dbg linux-image-6.7.7-powerpc64-dbg 5.7~rc5-1~exp1 linux-image-powerpc64-dbg diff --git a/debian/linux-image-powerpc64.bug-presubj b/debian/linux-image-powerpc64.bug-presubj index 467a553a0a..adee2030fd 100644 --- a/debian/linux-image-powerpc64.bug-presubj +++ b/debian/linux-image-powerpc64.bug-presubj @@ -2,4 +2,4 @@ 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-6.6.15-powerpc64 instead. +the package name linux-image-6.7.7-powerpc64 instead. diff --git a/debian/linux-image-powerpc64.maintscript b/debian/linux-image-powerpc64.maintscript index 18c50e2250..f0240990ca 100644 --- a/debian/linux-image-powerpc64.maintscript +++ b/debian/linux-image-powerpc64.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-powerpc64 linux-image-6.6.15-powerpc64 5.7~rc5-1~exp1 linux-image-powerpc64 +dir_to_symlink /usr/share/doc/linux-image-powerpc64 linux-image-6.7.7-powerpc64 5.7~rc5-1~exp1 linux-image-powerpc64 diff --git a/debian/linux-image-powerpc64le-dbg.maintscript b/debian/linux-image-powerpc64le-dbg.maintscript index 0c44bdef54..e4636dfb4d 100644 --- a/debian/linux-image-powerpc64le-dbg.maintscript +++ b/debian/linux-image-powerpc64le-dbg.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-powerpc64le-dbg linux-image-6.6.15-powerpc64le-dbg 5.7~rc5-1~exp1 linux-image-powerpc64le-dbg +dir_to_symlink /usr/share/doc/linux-image-powerpc64le-dbg linux-image-6.7.7-powerpc64le-dbg 5.7~rc5-1~exp1 linux-image-powerpc64le-dbg diff --git a/debian/linux-image-powerpc64le.bug-presubj b/debian/linux-image-powerpc64le.bug-presubj index 0f87d5e10a..559fc38e85 100644 --- a/debian/linux-image-powerpc64le.bug-presubj +++ b/debian/linux-image-powerpc64le.bug-presubj @@ -2,4 +2,4 @@ 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-6.6.15-powerpc64le instead. +the package name linux-image-6.7.7-powerpc64le instead. diff --git a/debian/linux-image-powerpc64le.maintscript b/debian/linux-image-powerpc64le.maintscript index bd04711947..5b279c4774 100644 --- a/debian/linux-image-powerpc64le.maintscript +++ b/debian/linux-image-powerpc64le.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-powerpc64le linux-image-6.6.15-powerpc64le 5.7~rc5-1~exp1 linux-image-powerpc64le +dir_to_symlink /usr/share/doc/linux-image-powerpc64le linux-image-6.7.7-powerpc64le 5.7~rc5-1~exp1 linux-image-powerpc64le diff --git a/debian/linux-image-riscv64-dbg.maintscript b/debian/linux-image-riscv64-dbg.maintscript index c49f4ad9a7..5bd6209655 100644 --- a/debian/linux-image-riscv64-dbg.maintscript +++ b/debian/linux-image-riscv64-dbg.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-riscv64-dbg linux-image-6.6.15-riscv64-dbg 5.7~rc5-1~exp1 linux-image-riscv64-dbg +dir_to_symlink /usr/share/doc/linux-image-riscv64-dbg linux-image-6.7.7-riscv64-dbg 5.7~rc5-1~exp1 linux-image-riscv64-dbg diff --git a/debian/linux-image-riscv64.bug-presubj b/debian/linux-image-riscv64.bug-presubj index e46b376d11..8d6a58e5bd 100644 --- a/debian/linux-image-riscv64.bug-presubj +++ b/debian/linux-image-riscv64.bug-presubj @@ -2,4 +2,4 @@ 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-6.6.15-riscv64 instead. +the package name linux-image-6.7.7-riscv64 instead. diff --git a/debian/linux-image-riscv64.maintscript b/debian/linux-image-riscv64.maintscript index 8379f81797..ba895fa46d 100644 --- a/debian/linux-image-riscv64.maintscript +++ b/debian/linux-image-riscv64.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-riscv64 linux-image-6.6.15-riscv64 5.7~rc5-1~exp1 linux-image-riscv64 +dir_to_symlink /usr/share/doc/linux-image-riscv64 linux-image-6.7.7-riscv64 5.7~rc5-1~exp1 linux-image-riscv64 diff --git a/debian/linux-image-rpi-dbg.maintscript b/debian/linux-image-rpi-dbg.maintscript index 0f3a97b733..7a44ad101f 100644 --- a/debian/linux-image-rpi-dbg.maintscript +++ b/debian/linux-image-rpi-dbg.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-rpi-dbg linux-image-6.6.15-rpi-dbg 5.7~rc5-1~exp1 linux-image-rpi-dbg +dir_to_symlink /usr/share/doc/linux-image-rpi-dbg linux-image-6.7.7-rpi-dbg 5.7~rc5-1~exp1 linux-image-rpi-dbg diff --git a/debian/linux-image-rpi.bug-presubj b/debian/linux-image-rpi.bug-presubj index 82b8c59f2a..ff5c87c299 100644 --- a/debian/linux-image-rpi.bug-presubj +++ b/debian/linux-image-rpi.bug-presubj @@ -2,4 +2,4 @@ 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-6.6.15-rpi instead. +the package name linux-image-6.7.7-rpi instead. diff --git a/debian/linux-image-rpi.maintscript b/debian/linux-image-rpi.maintscript index ea7da82936..cde39fb153 100644 --- a/debian/linux-image-rpi.maintscript +++ b/debian/linux-image-rpi.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-rpi linux-image-6.6.15-rpi 5.7~rc5-1~exp1 linux-image-rpi +dir_to_symlink /usr/share/doc/linux-image-rpi linux-image-6.7.7-rpi 5.7~rc5-1~exp1 linux-image-rpi diff --git a/debian/linux-image-rt-686-pae-dbg.maintscript b/debian/linux-image-rt-686-pae-dbg.maintscript index bd8a1d65c1..b91e6d50b9 100644 --- a/debian/linux-image-rt-686-pae-dbg.maintscript +++ b/debian/linux-image-rt-686-pae-dbg.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-rt-686-pae-dbg linux-image-6.6.15-rt-686-pae-dbg 5.7~rc5-1~exp1 linux-image-rt-686-pae-dbg +dir_to_symlink /usr/share/doc/linux-image-rt-686-pae-dbg linux-image-6.7.7-rt-686-pae-dbg 5.7~rc5-1~exp1 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 index 3ebea2290f..15da5007fa 100644 --- a/debian/linux-image-rt-686-pae.bug-presubj +++ b/debian/linux-image-rt-686-pae.bug-presubj @@ -2,4 +2,4 @@ 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-6.6.15-rt-686-pae instead. +the package name linux-image-6.7.7-rt-686-pae instead. diff --git a/debian/linux-image-rt-686-pae.maintscript b/debian/linux-image-rt-686-pae.maintscript index 79bd4d0f6e..e1e7739c57 100644 --- a/debian/linux-image-rt-686-pae.maintscript +++ b/debian/linux-image-rt-686-pae.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-rt-686-pae linux-image-6.6.15-rt-686-pae 5.7~rc5-1~exp1 linux-image-rt-686-pae +dir_to_symlink /usr/share/doc/linux-image-rt-686-pae linux-image-6.7.7-rt-686-pae 5.7~rc5-1~exp1 linux-image-rt-686-pae diff --git a/debian/linux-image-rt-amd64-dbg.maintscript b/debian/linux-image-rt-amd64-dbg.maintscript index ddf2e14da2..136abb0650 100644 --- a/debian/linux-image-rt-amd64-dbg.maintscript +++ b/debian/linux-image-rt-amd64-dbg.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-rt-amd64-dbg linux-image-6.6.15-rt-amd64-dbg 5.7~rc5-1~exp1 linux-image-rt-amd64-dbg +dir_to_symlink /usr/share/doc/linux-image-rt-amd64-dbg linux-image-6.7.7-rt-amd64-dbg 5.7~rc5-1~exp1 linux-image-rt-amd64-dbg diff --git a/debian/linux-image-rt-arm64-dbg.maintscript b/debian/linux-image-rt-arm64-dbg.maintscript index ce8b019cc6..48b33a460e 100644 --- a/debian/linux-image-rt-arm64-dbg.maintscript +++ b/debian/linux-image-rt-arm64-dbg.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-rt-arm64-dbg linux-image-6.6.15-rt-arm64-dbg 5.7~rc5-1~exp1 linux-image-rt-arm64-dbg +dir_to_symlink /usr/share/doc/linux-image-rt-arm64-dbg linux-image-6.7.7-rt-arm64-dbg 5.7~rc5-1~exp1 linux-image-rt-arm64-dbg diff --git a/debian/linux-image-rt-armmp-dbg.maintscript b/debian/linux-image-rt-armmp-dbg.maintscript index 1f07eafcb6..ad5cda5015 100644 --- a/debian/linux-image-rt-armmp-dbg.maintscript +++ b/debian/linux-image-rt-armmp-dbg.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-rt-armmp-dbg linux-image-6.6.15-rt-armmp-dbg 5.7~rc5-1~exp1 linux-image-rt-armmp-dbg +dir_to_symlink /usr/share/doc/linux-image-rt-armmp-dbg linux-image-6.7.7-rt-armmp-dbg 5.7~rc5-1~exp1 linux-image-rt-armmp-dbg diff --git a/debian/linux-image-rt-armmp.bug-presubj b/debian/linux-image-rt-armmp.bug-presubj index 47da1f293b..39a7447a74 100644 --- a/debian/linux-image-rt-armmp.bug-presubj +++ b/debian/linux-image-rt-armmp.bug-presubj @@ -2,4 +2,4 @@ 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-6.6.15-rt-armmp instead. +the package name linux-image-6.7.7-rt-armmp instead. diff --git a/debian/linux-image-rt-armmp.maintscript b/debian/linux-image-rt-armmp.maintscript index e64802bad3..ed102c01af 100644 --- a/debian/linux-image-rt-armmp.maintscript +++ b/debian/linux-image-rt-armmp.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-rt-armmp linux-image-6.6.15-rt-armmp 5.7~rc5-1~exp1 linux-image-rt-armmp +dir_to_symlink /usr/share/doc/linux-image-rt-armmp linux-image-6.7.7-rt-armmp 5.7~rc5-1~exp1 linux-image-rt-armmp diff --git a/debian/linux-image-s390x-dbg.maintscript b/debian/linux-image-s390x-dbg.maintscript index 65c2bcc1f2..23e43c474e 100644 --- a/debian/linux-image-s390x-dbg.maintscript +++ b/debian/linux-image-s390x-dbg.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-s390x-dbg linux-image-6.6.15-s390x-dbg 5.7~rc5-1~exp1 linux-image-s390x-dbg +dir_to_symlink /usr/share/doc/linux-image-s390x-dbg linux-image-6.7.7-s390x-dbg 5.7~rc5-1~exp1 linux-image-s390x-dbg diff --git a/debian/linux-image-s390x.bug-presubj b/debian/linux-image-s390x.bug-presubj index cbde7c0cf7..25f8a0e615 100644 --- a/debian/linux-image-s390x.bug-presubj +++ b/debian/linux-image-s390x.bug-presubj @@ -2,4 +2,4 @@ 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-6.6.15-s390x instead. +the package name linux-image-6.7.7-s390x instead. diff --git a/debian/linux-image-s390x.maintscript b/debian/linux-image-s390x.maintscript index 4413873c6f..0547166a00 100644 --- a/debian/linux-image-s390x.maintscript +++ b/debian/linux-image-s390x.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-s390x linux-image-6.6.15-s390x 5.7~rc5-1~exp1 linux-image-s390x +dir_to_symlink /usr/share/doc/linux-image-s390x linux-image-6.7.7-s390x 5.7~rc5-1~exp1 linux-image-s390x diff --git a/debian/linux-image-sh7751r-dbg.maintscript b/debian/linux-image-sh7751r-dbg.maintscript index c954d3c5d1..f5347c91ec 100644 --- a/debian/linux-image-sh7751r-dbg.maintscript +++ b/debian/linux-image-sh7751r-dbg.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-sh7751r-dbg linux-image-6.6.15-sh7751r-dbg 5.7~rc5-1~exp1 linux-image-sh7751r-dbg +dir_to_symlink /usr/share/doc/linux-image-sh7751r-dbg linux-image-6.7.7-sh7751r-dbg 5.7~rc5-1~exp1 linux-image-sh7751r-dbg diff --git a/debian/linux-image-sh7751r.bug-presubj b/debian/linux-image-sh7751r.bug-presubj index 04cd14f388..d22571af2b 100644 --- a/debian/linux-image-sh7751r.bug-presubj +++ b/debian/linux-image-sh7751r.bug-presubj @@ -2,4 +2,4 @@ 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-6.6.15-sh7751r instead. +the package name linux-image-6.7.7-sh7751r instead. diff --git a/debian/linux-image-sh7751r.maintscript b/debian/linux-image-sh7751r.maintscript index 8936bff378..fbf9910312 100644 --- a/debian/linux-image-sh7751r.maintscript +++ b/debian/linux-image-sh7751r.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-sh7751r linux-image-6.6.15-sh7751r 5.7~rc5-1~exp1 linux-image-sh7751r +dir_to_symlink /usr/share/doc/linux-image-sh7751r linux-image-6.7.7-sh7751r 5.7~rc5-1~exp1 linux-image-sh7751r diff --git a/debian/linux-image-sh7785lcr-dbg.maintscript b/debian/linux-image-sh7785lcr-dbg.maintscript index c273809d53..662829953e 100644 --- a/debian/linux-image-sh7785lcr-dbg.maintscript +++ b/debian/linux-image-sh7785lcr-dbg.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-sh7785lcr-dbg linux-image-6.6.15-sh7785lcr-dbg 5.7~rc5-1~exp1 linux-image-sh7785lcr-dbg +dir_to_symlink /usr/share/doc/linux-image-sh7785lcr-dbg linux-image-6.7.7-sh7785lcr-dbg 5.7~rc5-1~exp1 linux-image-sh7785lcr-dbg diff --git a/debian/linux-image-sh7785lcr.bug-presubj b/debian/linux-image-sh7785lcr.bug-presubj index 446ee9afe2..3a45f5132c 100644 --- a/debian/linux-image-sh7785lcr.bug-presubj +++ b/debian/linux-image-sh7785lcr.bug-presubj @@ -2,4 +2,4 @@ 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-6.6.15-sh7785lcr instead. +the package name linux-image-6.7.7-sh7785lcr instead. diff --git a/debian/linux-image-sh7785lcr.maintscript b/debian/linux-image-sh7785lcr.maintscript index 349cd990b4..3799125da8 100644 --- a/debian/linux-image-sh7785lcr.maintscript +++ b/debian/linux-image-sh7785lcr.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-sh7785lcr linux-image-6.6.15-sh7785lcr 5.7~rc5-1~exp1 linux-image-sh7785lcr +dir_to_symlink /usr/share/doc/linux-image-sh7785lcr linux-image-6.7.7-sh7785lcr 5.7~rc5-1~exp1 linux-image-sh7785lcr diff --git a/debian/linux-image-sparc64-dbg.maintscript b/debian/linux-image-sparc64-dbg.maintscript index c3cf80b351..c670c38c60 100644 --- a/debian/linux-image-sparc64-dbg.maintscript +++ b/debian/linux-image-sparc64-dbg.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-sparc64-dbg linux-image-6.6.15-sparc64-dbg 5.7~rc5-1~exp1 linux-image-sparc64-dbg +dir_to_symlink /usr/share/doc/linux-image-sparc64-dbg linux-image-6.7.7-sparc64-dbg 5.7~rc5-1~exp1 linux-image-sparc64-dbg diff --git a/debian/linux-image-sparc64-smp-dbg.maintscript b/debian/linux-image-sparc64-smp-dbg.maintscript index c42274ffa7..b02189e6dd 100644 --- a/debian/linux-image-sparc64-smp-dbg.maintscript +++ b/debian/linux-image-sparc64-smp-dbg.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-sparc64-smp-dbg linux-image-6.6.15-sparc64-smp-dbg 5.7~rc5-1~exp1 linux-image-sparc64-smp-dbg +dir_to_symlink /usr/share/doc/linux-image-sparc64-smp-dbg linux-image-6.7.7-sparc64-smp-dbg 5.7~rc5-1~exp1 linux-image-sparc64-smp-dbg diff --git a/debian/linux-image-sparc64-smp.bug-presubj b/debian/linux-image-sparc64-smp.bug-presubj index 1deb375fd3..023577420c 100644 --- a/debian/linux-image-sparc64-smp.bug-presubj +++ b/debian/linux-image-sparc64-smp.bug-presubj @@ -2,4 +2,4 @@ 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-6.6.15-sparc64-smp instead. +the package name linux-image-6.7.7-sparc64-smp instead. diff --git a/debian/linux-image-sparc64-smp.maintscript b/debian/linux-image-sparc64-smp.maintscript index 276be00170..f36782b6c7 100644 --- a/debian/linux-image-sparc64-smp.maintscript +++ b/debian/linux-image-sparc64-smp.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-sparc64-smp linux-image-6.6.15-sparc64-smp 5.7~rc5-1~exp1 linux-image-sparc64-smp +dir_to_symlink /usr/share/doc/linux-image-sparc64-smp linux-image-6.7.7-sparc64-smp 5.7~rc5-1~exp1 linux-image-sparc64-smp diff --git a/debian/linux-image-sparc64.bug-presubj b/debian/linux-image-sparc64.bug-presubj index 8d6823996c..0a794040f8 100644 --- a/debian/linux-image-sparc64.bug-presubj +++ b/debian/linux-image-sparc64.bug-presubj @@ -2,4 +2,4 @@ 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-6.6.15-sparc64 instead. +the package name linux-image-6.7.7-sparc64 instead. diff --git a/debian/linux-image-sparc64.maintscript b/debian/linux-image-sparc64.maintscript index 239f85046e..ed404eee24 100644 --- a/debian/linux-image-sparc64.maintscript +++ b/debian/linux-image-sparc64.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-image-sparc64 linux-image-6.6.15-sparc64 5.7~rc5-1~exp1 linux-image-sparc64 +dir_to_symlink /usr/share/doc/linux-image-sparc64 linux-image-6.7.7-sparc64 5.7~rc5-1~exp1 linux-image-sparc64 diff --git a/debian/linux-source.maintscript b/debian/linux-source.maintscript index 2e25ac4b43..4ec368dd64 100644 --- a/debian/linux-source.maintscript +++ b/debian/linux-source.maintscript @@ -1 +1 @@ -dir_to_symlink /usr/share/doc/linux-source linux-source-6.6 5.7~rc5-1~exp1 linux-source +dir_to_symlink /usr/share/doc/linux-source linux-source-6.7 5.7~rc5-1~exp1 linux-source diff --git a/debian/patches-rt/0001-ARM-vfp-Provide-vfp_lock-for-VFP-locking.patch b/debian/patches-rt/0001-ARM-vfp-Provide-vfp_lock-for-VFP-locking.patch index 03eb551db3..cd81c1d780 100644 --- a/debian/patches-rt/0001-ARM-vfp-Provide-vfp_lock-for-VFP-locking.patch +++ b/debian/patches-rt/0001-ARM-vfp-Provide-vfp_lock-for-VFP-locking.patch @@ -1,7 +1,7 @@ From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Date: Fri, 19 May 2023 16:57:29 +0200 Subject: [PATCH 1/4] ARM: vfp: Provide vfp_lock() for VFP locking. -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz kernel_neon_begin() uses local_bh_disable() to ensure exclusive access to the VFP unit. This is broken on PREEMPT_RT because a BH disabled diff --git a/debian/patches-rt/0001-arm-Disable-jump-label-on-PREEMPT_RT.patch b/debian/patches-rt/0001-arm-Disable-jump-label-on-PREEMPT_RT.patch index 5c8c179aef..c312f1b8a3 100644 --- a/debian/patches-rt/0001-arm-Disable-jump-label-on-PREEMPT_RT.patch +++ b/debian/patches-rt/0001-arm-Disable-jump-label-on-PREEMPT_RT.patch @@ -1,7 +1,7 @@ From: Thomas Gleixner <tglx@linutronix.de> Date: Wed, 8 Jul 2015 17:14:48 +0200 Subject: [PATCH 1/2] arm: Disable jump-label on PREEMPT_RT. -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz jump-labels are used to efficiently switch between two possible code paths. To achieve this, stop_machine() is used to keep the CPU in a @@ -25,7 +25,7 @@ Link: https://lkml.kernel.org/r/20220613182447.112191-2-bigeasy@linutronix.de --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig -@@ -73,7 +73,7 @@ config ARM +@@ -74,7 +74,7 @@ config ARM select HAS_IOPORT select HAVE_ARCH_AUDITSYSCALL if AEABI && !OABI_COMPAT select HAVE_ARCH_BITREVERSE if (CPU_32v7M || CPU_32v7) && !CPU_32v6 diff --git a/debian/patches-rt/0001-drm-amd-display-Remove-migrate_en-dis-from-dc_fpu_be.patch b/debian/patches-rt/0001-drm-amd-display-Remove-migrate_en-dis-from-dc_fpu_be.patch deleted file mode 100644 index b78f988da5..0000000000 --- a/debian/patches-rt/0001-drm-amd-display-Remove-migrate_en-dis-from-dc_fpu_be.patch +++ /dev/null @@ -1,86 +0,0 @@ -From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> -Date: Thu, 21 Sep 2023 16:15:12 +0200 -Subject: [PATCH 1/5] drm/amd/display: Remove migrate_en/dis from - dc_fpu_begin(). -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -This is a revert of the commit mentioned below while it is not wrong, as -in the kernel will explode, having migrate_disable() here it is -complete waste of resources. - -Additionally commit message is plain wrong the review tag does not make -it any better. The migrate_disable() interface has a fat comment -describing it and it includes the word "undesired" in the headline which -should tickle people to read it before using it. -Initially I assumed it is worded too harsh but now I beg to differ. - -The reviewer of the original commit, even not understanding what -migrate_disable() does should ask the following: - -- migrate_disable() is added only to the CONFIG_X86 block and it claims - to protect fpu_recursion_depth. Why are the other the architectures - excluded? - -- migrate_disable() is added after fpu_recursion_depth was modified. - Shouldn't it be added before the modification or referencing takes - place? - -Moving on. -Disabling preemption DOES prevent CPU migration. A task, that can not be -pushed away from the CPU by the scheduler (due to disabled preemption) -can not be pushed or migrated to another CPU. - -Disabling migration DOES NOT ensure consistency of per-CPU variables. It -only ensures that the task acts always on the same per-CPU variable. The -task remains preemptible meaning multiple tasks can access the same -per-CPU variable. This in turn leads to inconsistency for the statement - - *pcpu -= 1; - -with two tasks on one CPU and a preemption point during the RMW -operation: - - Task A Task B - read pcpu to reg # 0 - inc reg # 0 -> 1 - read pcpu to reg # 0 - inc reg # 0 -> 1 - write reg to pcpu # 1 - write reg to pcpu # 1 - -At the end pcpu reads 1 but should read 2 instead. Boom. - -get_cpu_ptr() already contains a preempt_disable() statement. That means -that the per-CPU variable can only be referenced by a single task which -is currently running. The only inconsistency that can occur if the -variable is additionally accessed from an interrupt. - -Remove migrate_disable/enable() from dc_fpu_begin/end(). - -Cc: Tianci Yin <tianci.yin@amd.com> -Cc: Aurabindo Pillai <aurabindo.pillai@amd.com> -Fixes: 0c316556d1249 ("drm/amd/display: Disable migration to ensure consistency of per-CPU variable") -Link: https://lore.kernel.org/r/20230921141516.520471-2-bigeasy@linutronix.de -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/gpu/drm/amd/display/amdgpu_dm/dc_fpu.c | 2 -- - 1 file changed, 2 deletions(-) - ---- a/drivers/gpu/drm/amd/display/amdgpu_dm/dc_fpu.c -+++ b/drivers/gpu/drm/amd/display/amdgpu_dm/dc_fpu.c -@@ -91,7 +91,6 @@ void dc_fpu_begin(const char *function_n - - if (*pcpu == 1) { - #if defined(CONFIG_X86) || defined(CONFIG_LOONGARCH) -- migrate_disable(); - kernel_fpu_begin(); - #elif defined(CONFIG_PPC64) - if (cpu_has_feature(CPU_FTR_VSX_COMP)) { -@@ -132,7 +131,6 @@ void dc_fpu_end(const char *function_nam - if (*pcpu <= 0) { - #if defined(CONFIG_X86) || defined(CONFIG_LOONGARCH) - kernel_fpu_end(); -- migrate_enable(); - #elif defined(CONFIG_PPC64) - if (cpu_has_feature(CPU_FTR_VSX_COMP)) { - disable_kernel_vsx(); diff --git a/debian/patches-rt/0085-printk-nbcon-Relocate-32bit-seq-macros.patch b/debian/patches-rt/0001-printk-nbcon-Relocate-32bit-seq-macros.patch index 6d1cf3686b..5de6d46854 100644 --- a/debian/patches-rt/0085-printk-nbcon-Relocate-32bit-seq-macros.patch +++ b/debian/patches-rt/0001-printk-nbcon-Relocate-32bit-seq-macros.patch @@ -1,7 +1,7 @@ From: John Ogness <john.ogness@linutronix.de> Date: Wed, 6 Dec 2023 12:01:56 +0000 -Subject: [PATCH 085/134] printk: nbcon: Relocate 32bit seq macros -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 01/50] printk: nbcon: Relocate 32bit seq macros +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz The macros __seq_to_nbcon_seq() and __nbcon_seq_to_seq() are used to provide support for atomic handling of sequence numbers diff --git a/debian/patches-rt/0001-sched-Constrain-locks-in-sched_submit_work.patch b/debian/patches-rt/0001-sched-Constrain-locks-in-sched_submit_work.patch deleted file mode 100644 index 73828f0efd..0000000000 --- a/debian/patches-rt/0001-sched-Constrain-locks-in-sched_submit_work.patch +++ /dev/null @@ -1,49 +0,0 @@ -From: Peter Zijlstra <peterz@infradead.org> -Date: Fri, 8 Sep 2023 18:22:48 +0200 -Subject: [PATCH 1/7] sched: Constrain locks in sched_submit_work() -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -Even though sched_submit_work() is ran from preemptible context, -it is discouraged to have it use blocking locks due to the recursion -potential. - -Enforce this. - -Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> -Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> -Link: https://lkml.kernel.org/r/20230908162254.999499-2-bigeasy@linutronix.de ---- - kernel/sched/core.c | 9 +++++++++ - 1 file changed, 9 insertions(+) - ---- a/kernel/sched/core.c -+++ b/kernel/sched/core.c -@@ -6721,11 +6721,18 @@ void __noreturn do_task_dead(void) - - static inline void sched_submit_work(struct task_struct *tsk) - { -+ static DEFINE_WAIT_OVERRIDE_MAP(sched_map, LD_WAIT_CONFIG); - unsigned int task_flags; - - if (task_is_running(tsk)) - return; - -+ /* -+ * Establish LD_WAIT_CONFIG context to ensure none of the code called -+ * will use a blocking primitive -- which would lead to recursion. -+ */ -+ lock_map_acquire_try(&sched_map); -+ - task_flags = tsk->flags; - /* - * If a worker goes to sleep, notify and ask workqueue whether it -@@ -6750,6 +6757,8 @@ static inline void sched_submit_work(str - * make sure to submit it to avoid deadlocks. - */ - blk_flush_plug(tsk->plug, true); -+ -+ lock_map_release(&sched_map); - } - - static void sched_update_worker(struct task_struct *tsk) diff --git a/debian/patches-rt/0001-sched-core-Provide-a-method-to-check-if-a-task-is-PI.patch b/debian/patches-rt/0001-sched-core-Provide-a-method-to-check-if-a-task-is-PI.patch index 35892558e6..9cab94caae 100644 --- a/debian/patches-rt/0001-sched-core-Provide-a-method-to-check-if-a-task-is-PI.patch +++ b/debian/patches-rt/0001-sched-core-Provide-a-method-to-check-if-a-task-is-PI.patch @@ -2,7 +2,7 @@ From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Date: Fri, 4 Aug 2023 13:30:37 +0200 Subject: [PATCH 1/3] sched/core: Provide a method to check if a task is PI-boosted. -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz Provide a method to check if a task inherited the priority from another task. This happens if a task owns a lock which is requested by a task @@ -20,7 +20,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> --- a/include/linux/sched.h +++ b/include/linux/sched.h -@@ -1905,6 +1905,7 @@ static inline int dl_task_check_affinity +@@ -1910,6 +1910,7 @@ static inline int dl_task_check_affinity } #endif @@ -30,7 +30,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> extern int task_prio(const struct task_struct *p); --- a/kernel/sched/core.c +++ b/kernel/sched/core.c -@@ -8923,6 +8923,21 @@ static inline void preempt_dynamic_init( +@@ -8865,6 +8865,21 @@ static inline void preempt_dynamic_init( #endif /* #ifdef CONFIG_PREEMPT_DYNAMIC */ diff --git a/debian/patches-rt/0001-signal-Add-proper-comment-about-the-preempt-disable-.patch b/debian/patches-rt/0001-signal-Add-proper-comment-about-the-preempt-disable-.patch deleted file mode 100644 index e00261d790..0000000000 --- a/debian/patches-rt/0001-signal-Add-proper-comment-about-the-preempt-disable-.patch +++ /dev/null @@ -1,47 +0,0 @@ -From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> -Date: Thu, 3 Aug 2023 12:09:31 +0200 -Subject: [PATCH 1/2] signal: Add proper comment about the preempt-disable in - ptrace_stop(). -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -Commit 53da1d9456fe7 ("fix ptrace slowness") added a preempt-disable section -between read_unlock() and the following schedule() invocation without -explaining why it is needed. - -Replace the comment with an explanation why this is needed. Clarify that -it is needed for correctness but for performance reasons. - -Acked-by: Oleg Nesterov <oleg@redhat.com> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> -Link: https://lore.kernel.org/r/20230803100932.325870-2-bigeasy@linutronix.de ---- - kernel/signal.c | 17 ++++++++++++++--- - 1 file changed, 14 insertions(+), 3 deletions(-) - ---- a/kernel/signal.c -+++ b/kernel/signal.c -@@ -2329,10 +2329,21 @@ static int ptrace_stop(int exit_code, in - do_notify_parent_cldstop(current, false, why); - - /* -- * Don't want to allow preemption here, because -- * sys_ptrace() needs this task to be inactive. -+ * The previous do_notify_parent_cldstop() invocation woke ptracer. -+ * One a PREEMPTION kernel this can result in preemption requirement -+ * which will be fulfilled after read_unlock() and the ptracer will be -+ * put on the CPU. -+ * The ptracer is in wait_task_inactive(, __TASK_TRACED) waiting for -+ * this task wait in schedule(). If this task gets preempted then it -+ * remains enqueued on the runqueue. The ptracer will observe this and -+ * then sleep for a delay of one HZ tick. In the meantime this task -+ * gets scheduled, enters schedule() and will wait for the ptracer. - * -- * XXX: implement read_unlock_no_resched(). -+ * This preemption point is not bad from correctness point of view but -+ * extends the runtime by one HZ tick time due to the ptracer's sleep. -+ * The preempt-disable section ensures that there will be no preemption -+ * between unlock and schedule() and so improving the performance since -+ * the ptracer has no reason to sleep. - */ - preempt_disable(); - read_unlock(&tasklist_lock); diff --git a/debian/patches-rt/0002-ARM-vfp-Use-vfp_lock-in-vfp_sync_hwstate.patch b/debian/patches-rt/0002-ARM-vfp-Use-vfp_lock-in-vfp_sync_hwstate.patch index a0d93547cd..c9c30ad81c 100644 --- a/debian/patches-rt/0002-ARM-vfp-Use-vfp_lock-in-vfp_sync_hwstate.patch +++ b/debian/patches-rt/0002-ARM-vfp-Use-vfp_lock-in-vfp_sync_hwstate.patch @@ -1,7 +1,7 @@ From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Date: Fri, 19 May 2023 16:57:30 +0200 Subject: [PATCH 2/4] ARM: vfp: Use vfp_lock() in vfp_sync_hwstate(). -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz vfp_sync_hwstate() uses preempt_disable() followed by local_bh_disable() to ensure that it won't get interrupted while checking the VFP state. diff --git a/debian/patches-rt/0002-drm-amd-display-Simplify-the-per-CPU-usage.patch b/debian/patches-rt/0002-drm-amd-display-Simplify-the-per-CPU-usage.patch deleted file mode 100644 index fd18d53e2d..0000000000 --- a/debian/patches-rt/0002-drm-amd-display-Simplify-the-per-CPU-usage.patch +++ /dev/null @@ -1,127 +0,0 @@ -From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> -Date: Thu, 21 Sep 2023 16:15:13 +0200 -Subject: [PATCH 2/5] drm/amd/display: Simplify the per-CPU usage. -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -The fpu_recursion_depth counter is used to ensure that dc_fpu_begin() -can be invoked multiple times while the FPU-disable function itself is -only invoked once. Also the counter part (dc_fpu_end()) is ballanced -properly. - -Instead of using the get_cpu_ptr() dance around the inc it is simpler to -increment the per-CPU variable directly. Also the per-CPU variable has -to be incremented and decremented on the same CPU. This is ensured by -the inner-part which disables preemption. This is kind of not obvious, -works and the preempt-counter is touched a few times for no reason. - -Disable preemption before incrementing fpu_recursion_depth for the first -time. Keep preemption disabled until dc_fpu_end() where the counter is -decremented making it obvious that the preemption has to stay disabled -while the counter is non-zero. -Use simple inc/dec functions. -Remove the nested preempt_disable/enable functions which are now not -needed. - -Link: https://lore.kernel.org/r/20230921141516.520471-3-bigeasy@linutronix.de -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/gpu/drm/amd/display/amdgpu_dm/dc_fpu.c | 50 ++++++++++--------------- - 1 file changed, 20 insertions(+), 30 deletions(-) - ---- a/drivers/gpu/drm/amd/display/amdgpu_dm/dc_fpu.c -+++ b/drivers/gpu/drm/amd/display/amdgpu_dm/dc_fpu.c -@@ -60,11 +60,9 @@ static DEFINE_PER_CPU(int, fpu_recursion - */ - inline void dc_assert_fp_enabled(void) - { -- int *pcpu, depth = 0; -+ int depth; - -- pcpu = get_cpu_ptr(&fpu_recursion_depth); -- depth = *pcpu; -- put_cpu_ptr(&fpu_recursion_depth); -+ depth = __this_cpu_read(fpu_recursion_depth); - - ASSERT(depth >= 1); - } -@@ -84,32 +82,27 @@ inline void dc_assert_fp_enabled(void) - */ - void dc_fpu_begin(const char *function_name, const int line) - { -- int *pcpu; -+ int depth; - -- pcpu = get_cpu_ptr(&fpu_recursion_depth); -- *pcpu += 1; -+ preempt_disable(); -+ depth = __this_cpu_inc_return(fpu_recursion_depth); - -- if (*pcpu == 1) { -+ if (depth == 1) { - #if defined(CONFIG_X86) || defined(CONFIG_LOONGARCH) - kernel_fpu_begin(); - #elif defined(CONFIG_PPC64) -- if (cpu_has_feature(CPU_FTR_VSX_COMP)) { -- preempt_disable(); -+ if (cpu_has_feature(CPU_FTR_VSX_COMP)) - enable_kernel_vsx(); -- } else if (cpu_has_feature(CPU_FTR_ALTIVEC_COMP)) { -- preempt_disable(); -+ else if (cpu_has_feature(CPU_FTR_ALTIVEC_COMP)) - enable_kernel_altivec(); -- } else if (!cpu_has_feature(CPU_FTR_FPU_UNAVAILABLE)) { -- preempt_disable(); -+ else if (!cpu_has_feature(CPU_FTR_FPU_UNAVAILABLE)) - enable_kernel_fp(); -- } - #elif defined(CONFIG_ARM64) - kernel_neon_begin(); - #endif - } - -- TRACE_DCN_FPU(true, function_name, line, *pcpu); -- put_cpu_ptr(&fpu_recursion_depth); -+ TRACE_DCN_FPU(true, function_name, line, depth); - } - - /** -@@ -124,29 +117,26 @@ void dc_fpu_begin(const char *function_n - */ - void dc_fpu_end(const char *function_name, const int line) - { -- int *pcpu; -+ int depth; - -- pcpu = get_cpu_ptr(&fpu_recursion_depth); -- *pcpu -= 1; -- if (*pcpu <= 0) { -+ depth = __this_cpu_dec_return(fpu_recursion_depth); -+ if (depth == 0) { - #if defined(CONFIG_X86) || defined(CONFIG_LOONGARCH) - kernel_fpu_end(); - #elif defined(CONFIG_PPC64) -- if (cpu_has_feature(CPU_FTR_VSX_COMP)) { -+ if (cpu_has_feature(CPU_FTR_VSX_COMP)) - disable_kernel_vsx(); -- preempt_enable(); -- } else if (cpu_has_feature(CPU_FTR_ALTIVEC_COMP)) { -+ else if (cpu_has_feature(CPU_FTR_ALTIVEC_COMP)) - disable_kernel_altivec(); -- preempt_enable(); -- } else if (!cpu_has_feature(CPU_FTR_FPU_UNAVAILABLE)) { -+ else if (!cpu_has_feature(CPU_FTR_FPU_UNAVAILABLE)) - disable_kernel_fp(); -- preempt_enable(); -- } - #elif defined(CONFIG_ARM64) - kernel_neon_end(); - #endif -+ } else { -+ WARN_ON_ONCE(depth < 0); - } - -- TRACE_DCN_FPU(false, function_name, line, *pcpu); -- put_cpu_ptr(&fpu_recursion_depth); -+ TRACE_DCN_FPU(false, function_name, line, depth); -+ preempt_enable(); - } diff --git a/debian/patches-rt/0002-locking-rtmutex-Avoid-unconditional-slowpath-for-DEB.patch b/debian/patches-rt/0002-locking-rtmutex-Avoid-unconditional-slowpath-for-DEB.patch deleted file mode 100644 index 561d5891b1..0000000000 --- a/debian/patches-rt/0002-locking-rtmutex-Avoid-unconditional-slowpath-for-DEB.patch +++ /dev/null @@ -1,79 +0,0 @@ -From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> -Date: Fri, 8 Sep 2023 18:22:49 +0200 -Subject: [PATCH 2/7] locking/rtmutex: Avoid unconditional slowpath for - DEBUG_RT_MUTEXES -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -With DEBUG_RT_MUTEXES enabled the fast-path rt_mutex_cmpxchg_acquire() -always fails and all lock operations take the slow path. - -Provide a new helper inline rt_mutex_try_acquire() which maps to -rt_mutex_cmpxchg_acquire() in the non-debug case. For the debug case -it invokes rt_mutex_slowtrylock() which can acquire a non-contended -rtmutex under full debug coverage. - -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> -Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> -Link: https://lkml.kernel.org/r/20230908162254.999499-3-bigeasy@linutronix.de ---- - kernel/locking/rtmutex.c | 21 ++++++++++++++++++++- - kernel/locking/ww_rt_mutex.c | 2 +- - 2 files changed, 21 insertions(+), 2 deletions(-) - ---- a/kernel/locking/rtmutex.c -+++ b/kernel/locking/rtmutex.c -@@ -218,6 +218,11 @@ static __always_inline bool rt_mutex_cmp - return try_cmpxchg_acquire(&lock->owner, &old, new); - } - -+static __always_inline bool rt_mutex_try_acquire(struct rt_mutex_base *lock) -+{ -+ return rt_mutex_cmpxchg_acquire(lock, NULL, current); -+} -+ - static __always_inline bool rt_mutex_cmpxchg_release(struct rt_mutex_base *lock, - struct task_struct *old, - struct task_struct *new) -@@ -297,6 +302,20 @@ static __always_inline bool rt_mutex_cmp - - } - -+static int __sched rt_mutex_slowtrylock(struct rt_mutex_base *lock); -+ -+static __always_inline bool rt_mutex_try_acquire(struct rt_mutex_base *lock) -+{ -+ /* -+ * With debug enabled rt_mutex_cmpxchg trylock() will always fail. -+ * -+ * Avoid unconditionally taking the slow path by using -+ * rt_mutex_slow_trylock() which is covered by the debug code and can -+ * acquire a non-contended rtmutex. -+ */ -+ return rt_mutex_slowtrylock(lock); -+} -+ - static __always_inline bool rt_mutex_cmpxchg_release(struct rt_mutex_base *lock, - struct task_struct *old, - struct task_struct *new) -@@ -1755,7 +1774,7 @@ static int __sched rt_mutex_slowlock(str - static __always_inline int __rt_mutex_lock(struct rt_mutex_base *lock, - unsigned int state) - { -- if (likely(rt_mutex_cmpxchg_acquire(lock, NULL, current))) -+ if (likely(rt_mutex_try_acquire(lock))) - return 0; - - return rt_mutex_slowlock(lock, NULL, state); ---- a/kernel/locking/ww_rt_mutex.c -+++ b/kernel/locking/ww_rt_mutex.c -@@ -62,7 +62,7 @@ static int __sched - } - mutex_acquire_nest(&rtm->dep_map, 0, 0, nest_lock, ip); - -- if (likely(rt_mutex_cmpxchg_acquire(&rtm->rtmutex, NULL, current))) { -+ if (likely(rt_mutex_try_acquire(&rtm->rtmutex))) { - if (ww_ctx) - ww_mutex_set_context_fastpath(lock, ww_ctx); - return 0; diff --git a/debian/patches-rt/0086-printk-Adjust-mapping-for-32bit-seq-macros.patch b/debian/patches-rt/0002-printk-Adjust-mapping-for-32bit-seq-macros.patch index d6ff341f46..610a2d3151 100644 --- a/debian/patches-rt/0086-printk-Adjust-mapping-for-32bit-seq-macros.patch +++ b/debian/patches-rt/0002-printk-Adjust-mapping-for-32bit-seq-macros.patch @@ -1,7 +1,7 @@ From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Date: Thu, 7 Dec 2023 14:15:15 +0000 -Subject: [PATCH 086/134] printk: Adjust mapping for 32bit seq macros -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 02/50] printk: Adjust mapping for 32bit seq macros +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz Note: This change only applies to 32bit architectures. On 64bit architectures the macros are NOPs. diff --git a/debian/patches-rt/0002-serial-core-Use-lock-wrappers.patch b/debian/patches-rt/0002-serial-core-Use-lock-wrappers.patch deleted file mode 100644 index ad41a3dc78..0000000000 --- a/debian/patches-rt/0002-serial-core-Use-lock-wrappers.patch +++ /dev/null @@ -1,93 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:19 +0206 -Subject: [PATCH 002/134] serial: core: Use lock wrappers -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-3-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - include/linux/serial_core.h | 12 ++++++------ - 1 file changed, 6 insertions(+), 6 deletions(-) - ---- a/include/linux/serial_core.h -+++ b/include/linux/serial_core.h -@@ -1035,14 +1035,14 @@ static inline void uart_unlock_and_check - u8 sysrq_ch; - - if (!port->has_sysrq) { -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - return; - } - - sysrq_ch = port->sysrq_ch; - port->sysrq_ch = 0; - -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - - if (sysrq_ch) - handle_sysrq(sysrq_ch); -@@ -1054,14 +1054,14 @@ static inline void uart_unlock_and_check - u8 sysrq_ch; - - if (!port->has_sysrq) { -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - return; - } - - sysrq_ch = port->sysrq_ch; - port->sysrq_ch = 0; - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - if (sysrq_ch) - handle_sysrq(sysrq_ch); -@@ -1077,12 +1077,12 @@ static inline int uart_prepare_sysrq_cha - } - static inline void uart_unlock_and_check_sysrq(struct uart_port *port) - { -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - } - static inline void uart_unlock_and_check_sysrq_irqrestore(struct uart_port *port, - unsigned long flags) - { -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - #endif /* CONFIG_MAGIC_SYSRQ_SERIAL */ - diff --git a/debian/patches-rt/0002-signal-Don-t-disable-preemption-in-ptrace_stop-on-PR.patch b/debian/patches-rt/0002-signal-Don-t-disable-preemption-in-ptrace_stop-on-PR.patch deleted file mode 100644 index 01e89d97ab..0000000000 --- a/debian/patches-rt/0002-signal-Don-t-disable-preemption-in-ptrace_stop-on-PR.patch +++ /dev/null @@ -1,48 +0,0 @@ -From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> -Date: Thu, 3 Aug 2023 12:09:32 +0200 -Subject: [PATCH 2/2] signal: Don't disable preemption in ptrace_stop() on - PREEMPT_RT. -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -On PREEMPT_RT keeping preemption disabled during the invocation of -cgroup_enter_frozen() is a problem because the function acquires css_set_lock -which is a sleeping lock on PREEMPT_RT and must not be acquired with disabled -preemption. -The preempt-disabled section is only for performance optimisation -reasons and can be avoided. - -Extend the comment and don't disable preemption before scheduling on -PREEMPT_RT. - -Acked-by: Oleg Nesterov <oleg@redhat.com> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> -Link: https://lore.kernel.org/r/20230803100932.325870-3-bigeasy@linutronix.de ---- - kernel/signal.c | 13 +++++++++++-- - 1 file changed, 11 insertions(+), 2 deletions(-) - ---- a/kernel/signal.c -+++ b/kernel/signal.c -@@ -2344,11 +2344,20 @@ static int ptrace_stop(int exit_code, in - * The preempt-disable section ensures that there will be no preemption - * between unlock and schedule() and so improving the performance since - * the ptracer has no reason to sleep. -+ * -+ * On PREEMPT_RT locking tasklist_lock does not disable preemption. -+ * Therefore the task can be preempted (after -+ * do_notify_parent_cldstop()) before unlocking tasklist_lock so there -+ * is no benefit in doing this. The optimisation is harmful on -+ * PEEMPT_RT because the spinlock_t (in cgroup_enter_frozen()) must not -+ * be acquired with disabled preemption. - */ -- preempt_disable(); -+ if (!IS_ENABLED(CONFIG_PREEMPT_RT)) -+ preempt_disable(); - read_unlock(&tasklist_lock); - cgroup_enter_frozen(); -- preempt_enable_no_resched(); -+ if (!IS_ENABLED(CONFIG_PREEMPT_RT)) -+ preempt_enable_no_resched(); - schedule(); - cgroup_leave_frozen(true); - diff --git a/debian/patches-rt/0002-softirq-Add-function-to-preempt-serving-softirqs.patch b/debian/patches-rt/0002-softirq-Add-function-to-preempt-serving-softirqs.patch index f8cddfa446..642feb6394 100644 --- a/debian/patches-rt/0002-softirq-Add-function-to-preempt-serving-softirqs.patch +++ b/debian/patches-rt/0002-softirq-Add-function-to-preempt-serving-softirqs.patch @@ -1,7 +1,7 @@ From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Date: Fri, 4 Aug 2023 13:30:38 +0200 Subject: [PATCH 2/3] softirq: Add function to preempt serving softirqs. -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz Add a functionality for the softirq handler to preempt its current work if needed. The softirq core has no particular state. It reads and resets diff --git a/debian/patches-rt/0003-ARM-vfp-Use-vfp_lock-in-vfp_support_entry.patch b/debian/patches-rt/0003-ARM-vfp-Use-vfp_lock-in-vfp_support_entry.patch index c02278e5a8..45fd3aca6a 100644 --- a/debian/patches-rt/0003-ARM-vfp-Use-vfp_lock-in-vfp_support_entry.patch +++ b/debian/patches-rt/0003-ARM-vfp-Use-vfp_lock-in-vfp_support_entry.patch @@ -1,7 +1,7 @@ From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Date: Wed, 28 Jun 2023 09:36:10 +0200 Subject: [PATCH 3/4] ARM: vfp: Use vfp_lock() in vfp_support_entry(). -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz vfp_entry() is invoked from exception handler and is fully preemptible. It uses local_bh_disable() to remain uninterrupted while checking the diff --git a/debian/patches-rt/0003-drm-amd-display-Add-a-warning-if-the-FPU-is-used-out.patch b/debian/patches-rt/0003-drm-amd-display-Add-a-warning-if-the-FPU-is-used-out.patch deleted file mode 100644 index 9e160d5a28..0000000000 --- a/debian/patches-rt/0003-drm-amd-display-Add-a-warning-if-the-FPU-is-used-out.patch +++ /dev/null @@ -1,26 +0,0 @@ -From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> -Date: Thu, 21 Sep 2023 16:15:14 +0200 -Subject: [PATCH 3/5] drm/amd/display: Add a warning if the FPU is used outside - from task context. -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -Add a warning if the FPU is used from any context other than task -context. This is only precaution since the code is not able to be used -from softirq while the API allows it on x86 for instance. - -Link: https://lore.kernel.org/r/20230921141516.520471-4-bigeasy@linutronix.de -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/gpu/drm/amd/display/amdgpu_dm/dc_fpu.c | 1 + - 1 file changed, 1 insertion(+) - ---- a/drivers/gpu/drm/amd/display/amdgpu_dm/dc_fpu.c -+++ b/drivers/gpu/drm/amd/display/amdgpu_dm/dc_fpu.c -@@ -84,6 +84,7 @@ void dc_fpu_begin(const char *function_n - { - int depth; - -+ WARN_ON_ONCE(!in_task()); - preempt_disable(); - depth = __this_cpu_inc_return(fpu_recursion_depth); - diff --git a/debian/patches-rt/0003-drm-i915-Use-preempt_disable-enable_rt-where-recomme.patch b/debian/patches-rt/0003-drm-i915-Use-preempt_disable-enable_rt-where-recomme.patch index f2752d0901..4e9d58c0b9 100644 --- a/debian/patches-rt/0003-drm-i915-Use-preempt_disable-enable_rt-where-recomme.patch +++ b/debian/patches-rt/0003-drm-i915-Use-preempt_disable-enable_rt-where-recomme.patch @@ -2,7 +2,7 @@ From: Mike Galbraith <umgwanakikbuti@gmail.com> Date: Sat, 27 Feb 2016 08:09:11 +0100 Subject: [PATCH 03/10] drm/i915: Use preempt_disable/enable_rt() where recommended -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz Mario Kleiner suggest in commit ad3543ede630f ("drm/intel: Push get_scanout_position() timestamping into kms driver.") @@ -34,7 +34,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> --- a/drivers/gpu/drm/i915/display/intel_vblank.c +++ b/drivers/gpu/drm/i915/display/intel_vblank.c -@@ -294,7 +294,8 @@ static bool i915_get_crtc_scanoutpos(str +@@ -308,7 +308,8 @@ static bool i915_get_crtc_scanoutpos(str */ spin_lock_irqsave(&dev_priv->uncore.lock, irqflags); @@ -44,7 +44,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> /* Get optional system timestamp before query. */ if (stime) -@@ -358,7 +359,8 @@ static bool i915_get_crtc_scanoutpos(str +@@ -372,7 +373,8 @@ static bool i915_get_crtc_scanoutpos(str if (etime) *etime = ktime_get(); diff --git a/debian/patches-rt/0087-printk-Use-prb_first_seq-as-base-for-32bit-seq-macro.patch b/debian/patches-rt/0003-printk-Use-prb_first_seq-as-base-for-32bit-seq-macro.patch index 2ed6d52b51..f0412681bf 100644 --- a/debian/patches-rt/0087-printk-Use-prb_first_seq-as-base-for-32bit-seq-macro.patch +++ b/debian/patches-rt/0003-printk-Use-prb_first_seq-as-base-for-32bit-seq-macro.patch @@ -1,8 +1,8 @@ From: John Ogness <john.ogness@linutronix.de> Date: Wed, 22 Nov 2023 16:13:37 +0000 -Subject: [PATCH 087/134] printk: Use prb_first_seq() as base for 32bit seq +Subject: [PATCH 03/50] printk: Use prb_first_seq() as base for 32bit seq macros -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz Note: This change only applies to 32bit architectures. On 64bit architectures the macros are NOPs. diff --git a/debian/patches-rt/0003-sched-Extract-__schedule_loop.patch b/debian/patches-rt/0003-sched-Extract-__schedule_loop.patch deleted file mode 100644 index a236df5321..0000000000 --- a/debian/patches-rt/0003-sched-Extract-__schedule_loop.patch +++ /dev/null @@ -1,58 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Fri, 8 Sep 2023 18:22:50 +0200 -Subject: [PATCH 3/7] sched: Extract __schedule_loop() -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -There are currently two implementations of this basic __schedule() -loop, and there is soon to be a third. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> -Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> -Link: https://lkml.kernel.org/r/20230908162254.999499-4-bigeasy@linutronix.de ---- - kernel/sched/core.c | 21 +++++++++++---------- - 1 file changed, 11 insertions(+), 10 deletions(-) - ---- a/kernel/sched/core.c -+++ b/kernel/sched/core.c -@@ -6771,16 +6771,21 @@ static void sched_update_worker(struct t - } - } - --asmlinkage __visible void __sched schedule(void) -+static __always_inline void __schedule_loop(unsigned int sched_mode) - { -- struct task_struct *tsk = current; -- -- sched_submit_work(tsk); - do { - preempt_disable(); -- __schedule(SM_NONE); -+ __schedule(sched_mode); - sched_preempt_enable_no_resched(); - } while (need_resched()); -+} -+ -+asmlinkage __visible void __sched schedule(void) -+{ -+ struct task_struct *tsk = current; -+ -+ sched_submit_work(tsk); -+ __schedule_loop(SM_NONE); - sched_update_worker(tsk); - } - EXPORT_SYMBOL(schedule); -@@ -6844,11 +6849,7 @@ void __sched schedule_preempt_disabled(v - #ifdef CONFIG_PREEMPT_RT - void __sched notrace schedule_rtlock(void) - { -- do { -- preempt_disable(); -- __schedule(SM_RTLOCK_WAIT); -- sched_preempt_enable_no_resched(); -- } while (need_resched()); -+ __schedule_loop(SM_RTLOCK_WAIT); - } - NOKPROBE_SYMBOL(schedule_rtlock); - #endif diff --git a/debian/patches-rt/0003-serial-21285-Use-port-lock-wrappers.patch b/debian/patches-rt/0003-serial-21285-Use-port-lock-wrappers.patch deleted file mode 100644 index e025de601c..0000000000 --- a/debian/patches-rt/0003-serial-21285-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,75 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:20 +0206 -Subject: [PATCH 003/134] serial: 21285: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-4-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/21285.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - ---- a/drivers/tty/serial/21285.c -+++ b/drivers/tty/serial/21285.c -@@ -185,14 +185,14 @@ static void serial21285_break_ctl(struct - unsigned long flags; - unsigned int h_lcr; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - h_lcr = *CSR_H_UBRLCR; - if (break_state) - h_lcr |= H_UBRLCR_BREAK; - else - h_lcr &= ~H_UBRLCR_BREAK; - *CSR_H_UBRLCR = h_lcr; -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static int serial21285_startup(struct uart_port *port) -@@ -272,7 +272,7 @@ serial21285_set_termios(struct uart_port - if (port->fifosize) - h_lcr |= H_UBRLCR_FIFO; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* - * Update the per-port timeout. -@@ -309,7 +309,7 @@ serial21285_set_termios(struct uart_port - *CSR_H_UBRLCR = h_lcr; - *CSR_UARTCON = 1; - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static const char *serial21285_type(struct uart_port *port) diff --git a/debian/patches-rt/0003-time-Allow-to-preempt-after-a-callback.patch b/debian/patches-rt/0003-time-Allow-to-preempt-after-a-callback.patch index 7ede7d6ae5..ac1a234ddf 100644 --- a/debian/patches-rt/0003-time-Allow-to-preempt-after-a-callback.patch +++ b/debian/patches-rt/0003-time-Allow-to-preempt-after-a-callback.patch @@ -1,7 +1,7 @@ From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Date: Fri, 4 Aug 2023 13:30:39 +0200 Subject: [PATCH 3/3] time: Allow to preempt after a callback. -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz The TIMER_SOFTIRQ handler invokes timer callbacks of the expired timers. Before each invocation the timer_base::lock is dropped. The only lock diff --git a/debian/patches-rt/0004-ARM-vfp-Move-sending-signals-outside-of-vfp_lock-ed-.patch b/debian/patches-rt/0004-ARM-vfp-Move-sending-signals-outside-of-vfp_lock-ed-.patch index f7e006261e..8c9259a872 100644 --- a/debian/patches-rt/0004-ARM-vfp-Move-sending-signals-outside-of-vfp_lock-ed-.patch +++ b/debian/patches-rt/0004-ARM-vfp-Move-sending-signals-outside-of-vfp_lock-ed-.patch @@ -2,7 +2,7 @@ From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Date: Wed, 28 Jun 2023 09:39:33 +0200 Subject: [PATCH 4/4] ARM: vfp: Move sending signals outside of vfp_lock()ed section. -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz VFP_bounce() is invoked from within vfp_support_entry() and may send a signal. Sending a signal uses spinlock_t which becomes a sleeping lock diff --git a/debian/patches-rt/0004-drm-amd-display-Move-the-memory-allocation-out-of-dc.patch b/debian/patches-rt/0004-drm-amd-display-Move-the-memory-allocation-out-of-dc.patch deleted file mode 100644 index a1c046b36c..0000000000 --- a/debian/patches-rt/0004-drm-amd-display-Move-the-memory-allocation-out-of-dc.patch +++ /dev/null @@ -1,87 +0,0 @@ -From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> -Date: Thu, 21 Sep 2023 16:15:15 +0200 -Subject: [PATCH 4/5] drm/amd/display: Move the memory allocation out of - dcn21_validate_bandwidth_fp(). -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -dcn21_validate_bandwidth_fp() is invoked while FPU access has been -enabled. FPU access requires disabling preemption even on PREEMPT_RT. -It is not possible to allocate memory with disabled preemption even with -GFP_ATOMIC on PREEMPT_RT. - -Move the memory allocation before FPU access is enabled. - -Link: https://bugzilla.kernel.org/show_bug.cgi?id=217928 -Link: https://lore.kernel.org/r/20230921141516.520471-5-bigeasy@linutronix.de -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/gpu/drm/amd/display/dc/dcn21/dcn21_resource.c | 10 +++++++++- - drivers/gpu/drm/amd/display/dc/dml/dcn20/dcn20_fpu.c | 7 ++----- - drivers/gpu/drm/amd/display/dc/dml/dcn20/dcn20_fpu.h | 5 ++--- - 3 files changed, 13 insertions(+), 9 deletions(-) - ---- a/drivers/gpu/drm/amd/display/dc/dcn21/dcn21_resource.c -+++ b/drivers/gpu/drm/amd/display/dc/dcn21/dcn21_resource.c -@@ -953,9 +953,17 @@ static bool dcn21_validate_bandwidth(str - bool fast_validate) - { - bool voltage_supported; -+ display_e2e_pipe_params_st *pipes; -+ -+ pipes = kcalloc(dc->res_pool->pipe_count, sizeof(display_e2e_pipe_params_st), GFP_KERNEL); -+ if (!pipes) -+ return false; -+ - DC_FP_START(); -- voltage_supported = dcn21_validate_bandwidth_fp(dc, context, fast_validate); -+ voltage_supported = dcn21_validate_bandwidth_fp(dc, context, fast_validate, pipes); - DC_FP_END(); -+ -+ kfree(pipes); - return voltage_supported; - } - ---- a/drivers/gpu/drm/amd/display/dc/dml/dcn20/dcn20_fpu.c -+++ b/drivers/gpu/drm/amd/display/dc/dml/dcn20/dcn20_fpu.c -@@ -2203,9 +2203,8 @@ static void dcn21_calculate_wm(struct dc - &context->bw_ctx.dml, pipes, pipe_cnt); - } - --bool dcn21_validate_bandwidth_fp(struct dc *dc, -- struct dc_state *context, -- bool fast_validate) -+bool dcn21_validate_bandwidth_fp(struct dc *dc, struct dc_state *context, -+ bool fast_validate, display_e2e_pipe_params_st *pipes) - { - bool out = false; - -@@ -2214,7 +2213,6 @@ bool dcn21_validate_bandwidth_fp(struct - int vlevel = 0; - int pipe_split_from[MAX_PIPES]; - int pipe_cnt = 0; -- display_e2e_pipe_params_st *pipes = kzalloc(dc->res_pool->pipe_count * sizeof(display_e2e_pipe_params_st), GFP_ATOMIC); - DC_LOGGER_INIT(dc->ctx->logger); - - BW_VAL_TRACE_COUNT(); -@@ -2254,7 +2252,6 @@ bool dcn21_validate_bandwidth_fp(struct - out = false; - - validate_out: -- kfree(pipes); - - BW_VAL_TRACE_FINISH(); - ---- a/drivers/gpu/drm/amd/display/dc/dml/dcn20/dcn20_fpu.h -+++ b/drivers/gpu/drm/amd/display/dc/dml/dcn20/dcn20_fpu.h -@@ -77,9 +77,8 @@ int dcn21_populate_dml_pipes_from_contex - struct dc_state *context, - display_e2e_pipe_params_st *pipes, - bool fast_validate); --bool dcn21_validate_bandwidth_fp(struct dc *dc, -- struct dc_state *context, -- bool fast_validate); -+bool dcn21_validate_bandwidth_fp(struct dc *dc, struct dc_state *context, bool -+ fast_validate, display_e2e_pipe_params_st *pipes); - void dcn21_update_bw_bounding_box(struct dc *dc, struct clk_bw_params *bw_params); - - void dcn21_clk_mgr_set_bw_params_wm_table(struct clk_bw_params *bw_params); diff --git a/debian/patches-rt/0004-drm-i915-Don-t-disable-interrupts-on-PREEMPT_RT-duri.patch b/debian/patches-rt/0004-drm-i915-Don-t-disable-interrupts-on-PREEMPT_RT-duri.patch index 9c386e5188..a95775d7fe 100644 --- a/debian/patches-rt/0004-drm-i915-Don-t-disable-interrupts-on-PREEMPT_RT-duri.patch +++ b/debian/patches-rt/0004-drm-i915-Don-t-disable-interrupts-on-PREEMPT_RT-duri.patch @@ -2,7 +2,7 @@ From: Mike Galbraith <umgwanakikbuti@gmail.com> Date: Sat, 27 Feb 2016 09:01:42 +0100 Subject: [PATCH 04/10] drm/i915: Don't disable interrupts on PREEMPT_RT during atomic updates -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz Commit 8d7849db3eab7 ("drm/i915: Make sprite updates atomic") @@ -37,7 +37,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> --- a/drivers/gpu/drm/i915/display/intel_crtc.c +++ b/drivers/gpu/drm/i915/display/intel_crtc.c -@@ -534,7 +534,8 @@ void intel_pipe_update_start(struct inte +@@ -573,7 +573,8 @@ void intel_pipe_update_start(struct inte */ intel_psr_wait_for_idle_locked(new_crtc_state); @@ -47,7 +47,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> crtc->debug.min_vbl = min; crtc->debug.max_vbl = max; -@@ -559,11 +560,13 @@ void intel_pipe_update_start(struct inte +@@ -598,11 +599,13 @@ void intel_pipe_update_start(struct inte break; } @@ -63,7 +63,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> } finish_wait(wq, &wait); -@@ -596,7 +599,8 @@ void intel_pipe_update_start(struct inte +@@ -635,7 +638,8 @@ void intel_pipe_update_start(struct inte return; irq_disable: @@ -73,13 +73,13 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> } #if IS_ENABLED(CONFIG_DRM_I915_DEBUG_VBLANK_EVADE) -@@ -706,7 +710,8 @@ void intel_pipe_update_end(struct intel_ - intel_crtc_update_active_timings(new_crtc_state, - new_crtc_state->vrr.enable); +@@ -737,7 +741,8 @@ void intel_pipe_update_end(struct intel_ + */ + intel_vrr_send_push(new_crtc_state); - local_irq_enable(); + if (!IS_ENABLED(CONFIG_PREEMPT_RT)) + local_irq_enable(); if (intel_vgpu_active(dev_priv)) - return; + goto out; diff --git a/debian/patches-rt/0088-printk-ringbuffer-Do-not-skip-non-finalized-records-.patch b/debian/patches-rt/0004-printk-ringbuffer-Do-not-skip-non-finalized-records-.patch index 917f777f1c..3e559a9bb6 100644 --- a/debian/patches-rt/0088-printk-ringbuffer-Do-not-skip-non-finalized-records-.patch +++ b/debian/patches-rt/0004-printk-ringbuffer-Do-not-skip-non-finalized-records-.patch @@ -1,8 +1,8 @@ From: John Ogness <john.ogness@linutronix.de> Date: Thu, 19 Oct 2023 10:32:05 +0000 -Subject: [PATCH 088/134] printk: ringbuffer: Do not skip non-finalized records +Subject: [PATCH 04/50] printk: ringbuffer: Do not skip non-finalized records with prb_next_seq() -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz Commit f244b4dc53e5 ("printk: ringbuffer: Improve prb_next_seq() performance") introduced an optimization for diff --git a/debian/patches-rt/0004-sched-Provide-rt_mutex-specific-scheduler-helpers.patch b/debian/patches-rt/0004-sched-Provide-rt_mutex-specific-scheduler-helpers.patch deleted file mode 100644 index f61a67ea3f..0000000000 --- a/debian/patches-rt/0004-sched-Provide-rt_mutex-specific-scheduler-helpers.patch +++ /dev/null @@ -1,128 +0,0 @@ -From: Peter Zijlstra <peterz@infradead.org> -Date: Fri, 8 Sep 2023 18:22:51 +0200 -Subject: [PATCH 4/7] sched: Provide rt_mutex specific scheduler helpers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -With PREEMPT_RT there is a rt_mutex recursion problem where -sched_submit_work() can use an rtlock (aka spinlock_t). More -specifically what happens is: - - mutex_lock() /* really rt_mutex */ - ... - __rt_mutex_slowlock_locked() - task_blocks_on_rt_mutex() - // enqueue current task as waiter - // do PI chain walk - rt_mutex_slowlock_block() - schedule() - sched_submit_work() - ... - spin_lock() /* really rtlock */ - ... - __rt_mutex_slowlock_locked() - task_blocks_on_rt_mutex() - // enqueue current task as waiter *AGAIN* - // *CONFUSION* - -Fix this by making rt_mutex do the sched_submit_work() early, before -it enqueues itself as a waiter -- before it even knows *if* it will -wait. - -[[ basically Thomas' patch but with different naming and a few asserts - added ]] - -Originally-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> -Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> -Link: https://lkml.kernel.org/r/20230908162254.999499-5-bigeasy@linutronix.de ---- - include/linux/sched.h | 3 +++ - include/linux/sched/rt.h | 4 ++++ - kernel/sched/core.c | 36 ++++++++++++++++++++++++++++++++---- - 3 files changed, 39 insertions(+), 4 deletions(-) - ---- a/include/linux/sched.h -+++ b/include/linux/sched.h -@@ -911,6 +911,9 @@ struct task_struct { - * ->sched_remote_wakeup gets used, so it can be in this word. - */ - unsigned sched_remote_wakeup:1; -+#ifdef CONFIG_RT_MUTEXES -+ unsigned sched_rt_mutex:1; -+#endif - - /* Bit to tell LSMs we're in execve(): */ - unsigned in_execve:1; ---- a/include/linux/sched/rt.h -+++ b/include/linux/sched/rt.h -@@ -30,6 +30,10 @@ static inline bool task_is_realtime(stru - } - - #ifdef CONFIG_RT_MUTEXES -+extern void rt_mutex_pre_schedule(void); -+extern void rt_mutex_schedule(void); -+extern void rt_mutex_post_schedule(void); -+ - /* - * Must hold either p->pi_lock or task_rq(p)->lock. - */ ---- a/kernel/sched/core.c -+++ b/kernel/sched/core.c -@@ -6724,9 +6724,6 @@ static inline void sched_submit_work(str - static DEFINE_WAIT_OVERRIDE_MAP(sched_map, LD_WAIT_CONFIG); - unsigned int task_flags; - -- if (task_is_running(tsk)) -- return; -- - /* - * Establish LD_WAIT_CONFIG context to ensure none of the code called - * will use a blocking primitive -- which would lead to recursion. -@@ -6784,7 +6781,12 @@ asmlinkage __visible void __sched schedu - { - struct task_struct *tsk = current; - -- sched_submit_work(tsk); -+#ifdef CONFIG_RT_MUTEXES -+ lockdep_assert(!tsk->sched_rt_mutex); -+#endif -+ -+ if (!task_is_running(tsk)) -+ sched_submit_work(tsk); - __schedule_loop(SM_NONE); - sched_update_worker(tsk); - } -@@ -7045,6 +7047,32 @@ static void __setscheduler_prio(struct t - - #ifdef CONFIG_RT_MUTEXES - -+/* -+ * Would be more useful with typeof()/auto_type but they don't mix with -+ * bit-fields. Since it's a local thing, use int. Keep the generic sounding -+ * name such that if someone were to implement this function we get to compare -+ * notes. -+ */ -+#define fetch_and_set(x, v) ({ int _x = (x); (x) = (v); _x; }) -+ -+void rt_mutex_pre_schedule(void) -+{ -+ lockdep_assert(!fetch_and_set(current->sched_rt_mutex, 1)); -+ sched_submit_work(current); -+} -+ -+void rt_mutex_schedule(void) -+{ -+ lockdep_assert(current->sched_rt_mutex); -+ __schedule_loop(SM_NONE); -+} -+ -+void rt_mutex_post_schedule(void) -+{ -+ sched_update_worker(current); -+ lockdep_assert(fetch_and_set(current->sched_rt_mutex, 0)); -+} -+ - static inline int __rt_effective_prio(struct task_struct *pi_task, int prio) - { - if (pi_task) diff --git a/debian/patches-rt/0004-serial-8250_aspeed_vuart-Use-port-lock-wrappers.patch b/debian/patches-rt/0004-serial-8250_aspeed_vuart-Use-port-lock-wrappers.patch deleted file mode 100644 index eb65ac58fc..0000000000 --- a/debian/patches-rt/0004-serial-8250_aspeed_vuart-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,61 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:21 +0206 -Subject: [PATCH 004/134] serial: 8250_aspeed_vuart: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-5-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/8250/8250_aspeed_vuart.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - ---- a/drivers/tty/serial/8250/8250_aspeed_vuart.c -+++ b/drivers/tty/serial/8250/8250_aspeed_vuart.c -@@ -288,9 +288,9 @@ static void aspeed_vuart_set_throttle(st - struct uart_8250_port *up = up_to_u8250p(port); - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - __aspeed_vuart_set_throttle(up, throttle); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static void aspeed_vuart_throttle(struct uart_port *port) -@@ -340,7 +340,7 @@ static int aspeed_vuart_handle_irq(struc - if (iir & UART_IIR_NO_INT) - return 0; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - lsr = serial_port_in(port, UART_LSR); - diff --git a/debian/patches-rt/0005-drm-amd-display-Move-the-memory-allocation-out-of-dc.patch b/debian/patches-rt/0005-drm-amd-display-Move-the-memory-allocation-out-of-dc.patch deleted file mode 100644 index 1a2babc614..0000000000 --- a/debian/patches-rt/0005-drm-amd-display-Move-the-memory-allocation-out-of-dc.patch +++ /dev/null @@ -1,121 +0,0 @@ -From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> -Date: Thu, 21 Sep 2023 16:15:16 +0200 -Subject: [PATCH 5/5] drm/amd/display: Move the memory allocation out of - dcn20_validate_bandwidth_fp(). -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -dcn20_validate_bandwidth_fp() is invoked while FPU access has been -enabled. FPU access requires disabling preemption even on PREEMPT_RT. -It is not possible to allocate memory with disabled preemption even with -GFP_ATOMIC on PREEMPT_RT. - -Move the memory allocation before FPU access is enabled. -To preserve previous "clean" state of "pipes" add a memset() before the -second invocation of dcn20_validate_bandwidth_internal() where the -variable is used. - -Link: https://lore.kernel.org/r/20230921141516.520471-6-bigeasy@linutronix.de -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/gpu/drm/amd/display/dc/dcn20/dcn20_resource.c | 10 +++++++++- - drivers/gpu/drm/amd/display/dc/dml/dcn20/dcn20_fpu.c | 16 +++++++--------- - drivers/gpu/drm/amd/display/dc/dml/dcn20/dcn20_fpu.h | 5 ++--- - 3 files changed, 18 insertions(+), 13 deletions(-) - ---- a/drivers/gpu/drm/amd/display/dc/dcn20/dcn20_resource.c -+++ b/drivers/gpu/drm/amd/display/dc/dcn20/dcn20_resource.c -@@ -2141,9 +2141,17 @@ bool dcn20_validate_bandwidth(struct dc - bool fast_validate) - { - bool voltage_supported; -+ display_e2e_pipe_params_st *pipes; -+ -+ pipes = kcalloc(dc->res_pool->pipe_count, sizeof(display_e2e_pipe_params_st), GFP_KERNEL); -+ if (!pipes) -+ return false; -+ - DC_FP_START(); -- voltage_supported = dcn20_validate_bandwidth_fp(dc, context, fast_validate); -+ voltage_supported = dcn20_validate_bandwidth_fp(dc, context, fast_validate, pipes); - DC_FP_END(); -+ -+ kfree(pipes); - return voltage_supported; - } - ---- a/drivers/gpu/drm/amd/display/dc/dml/dcn20/dcn20_fpu.c -+++ b/drivers/gpu/drm/amd/display/dc/dml/dcn20/dcn20_fpu.c -@@ -1910,7 +1910,7 @@ void dcn20_patch_bounding_box(struct dc - } - - static bool dcn20_validate_bandwidth_internal(struct dc *dc, struct dc_state *context, -- bool fast_validate) -+ bool fast_validate, display_e2e_pipe_params_st *pipes) - { - bool out = false; - -@@ -1919,7 +1919,6 @@ static bool dcn20_validate_bandwidth_int - int vlevel = 0; - int pipe_split_from[MAX_PIPES]; - int pipe_cnt = 0; -- display_e2e_pipe_params_st *pipes = kzalloc(dc->res_pool->pipe_count * sizeof(display_e2e_pipe_params_st), GFP_ATOMIC); - DC_LOGGER_INIT(dc->ctx->logger); - - BW_VAL_TRACE_COUNT(); -@@ -1954,16 +1953,14 @@ static bool dcn20_validate_bandwidth_int - out = false; - - validate_out: -- kfree(pipes); - - BW_VAL_TRACE_FINISH(); - - return out; - } - --bool dcn20_validate_bandwidth_fp(struct dc *dc, -- struct dc_state *context, -- bool fast_validate) -+bool dcn20_validate_bandwidth_fp(struct dc *dc, struct dc_state *context, -+ bool fast_validate, display_e2e_pipe_params_st *pipes) - { - bool voltage_supported = false; - bool full_pstate_supported = false; -@@ -1982,11 +1979,11 @@ bool dcn20_validate_bandwidth_fp(struct - ASSERT(context != dc->current_state); - - if (fast_validate) { -- return dcn20_validate_bandwidth_internal(dc, context, true); -+ return dcn20_validate_bandwidth_internal(dc, context, true, pipes); - } - - // Best case, we support full UCLK switch latency -- voltage_supported = dcn20_validate_bandwidth_internal(dc, context, false); -+ voltage_supported = dcn20_validate_bandwidth_internal(dc, context, false, pipes); - full_pstate_supported = context->bw_ctx.bw.dcn.clk.p_state_change_support; - - if (context->bw_ctx.dml.soc.dummy_pstate_latency_us == 0 || -@@ -1998,7 +1995,8 @@ bool dcn20_validate_bandwidth_fp(struct - // Fallback: Try to only support G6 temperature read latency - context->bw_ctx.dml.soc.dram_clock_change_latency_us = context->bw_ctx.dml.soc.dummy_pstate_latency_us; - -- voltage_supported = dcn20_validate_bandwidth_internal(dc, context, false); -+ memset(pipes, 0, dc->res_pool->pipe_count * sizeof(display_e2e_pipe_params_st)); -+ voltage_supported = dcn20_validate_bandwidth_internal(dc, context, false, pipes); - dummy_pstate_supported = context->bw_ctx.bw.dcn.clk.p_state_change_support; - - if (voltage_supported && (dummy_pstate_supported || !(context->stream_count))) { ---- a/drivers/gpu/drm/amd/display/dc/dml/dcn20/dcn20_fpu.h -+++ b/drivers/gpu/drm/amd/display/dc/dml/dcn20/dcn20_fpu.h -@@ -61,9 +61,8 @@ void dcn20_update_bounding_box(struct dc - unsigned int num_states); - void dcn20_patch_bounding_box(struct dc *dc, - struct _vcs_dpi_soc_bounding_box_st *bb); --bool dcn20_validate_bandwidth_fp(struct dc *dc, -- struct dc_state *context, -- bool fast_validate); -+bool dcn20_validate_bandwidth_fp(struct dc *dc, struct dc_state *context, -+ bool fast_validate, display_e2e_pipe_params_st *pipes); - void dcn20_fpu_set_wm_ranges(int i, - struct pp_smu_wm_range_sets *ranges, - struct _vcs_dpi_soc_bounding_box_st *loaded_bb); diff --git a/debian/patches-rt/0005-drm-i915-Don-t-check-for-atomic-context-on-PREEMPT_R.patch b/debian/patches-rt/0005-drm-i915-Don-t-check-for-atomic-context-on-PREEMPT_R.patch index 4af9325678..9a10c838aa 100644 --- a/debian/patches-rt/0005-drm-i915-Don-t-check-for-atomic-context-on-PREEMPT_R.patch +++ b/debian/patches-rt/0005-drm-i915-Don-t-check-for-atomic-context-on-PREEMPT_R.patch @@ -1,7 +1,7 @@ From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Date: Mon, 25 Oct 2021 15:05:18 +0200 Subject: [PATCH 05/10] drm/i915: Don't check for atomic context on PREEMPT_RT -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz The !in_atomic() check in _wait_for_atomic() triggers on PREEMPT_RT because the uncore::lock is a spinlock_t and does not disable diff --git a/debian/patches-rt/0005-locking-rtmutex-Use-rt_mutex-specific-scheduler-help.patch b/debian/patches-rt/0005-locking-rtmutex-Use-rt_mutex-specific-scheduler-help.patch deleted file mode 100644 index d84497e5fd..0000000000 --- a/debian/patches-rt/0005-locking-rtmutex-Use-rt_mutex-specific-scheduler-help.patch +++ /dev/null @@ -1,177 +0,0 @@ -From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> -Date: Fri, 8 Sep 2023 18:22:52 +0200 -Subject: [PATCH 5/7] locking/rtmutex: Use rt_mutex specific scheduler helpers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -Have rt_mutex use the rt_mutex specific scheduler helpers to avoid -recursion vs rtlock on the PI state. - -[[ peterz: adapted to new names ]] - -Reported-by: Crystal Wood <swood@redhat.com> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> -Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> -Link: https://lkml.kernel.org/r/20230908162254.999499-6-bigeasy@linutronix.de ---- - kernel/futex/pi.c | 11 +++++++++++ - kernel/locking/rtmutex.c | 14 ++++++++++++-- - kernel/locking/rwbase_rt.c | 6 ++++++ - kernel/locking/rwsem.c | 8 +++++++- - kernel/locking/spinlock_rt.c | 4 ++++ - 5 files changed, 40 insertions(+), 3 deletions(-) - ---- a/kernel/futex/pi.c -+++ b/kernel/futex/pi.c -@@ -1,6 +1,7 @@ - // SPDX-License-Identifier: GPL-2.0-or-later - - #include <linux/slab.h> -+#include <linux/sched/rt.h> - #include <linux/sched/task.h> - - #include "futex.h" -@@ -1002,6 +1003,12 @@ int futex_lock_pi(u32 __user *uaddr, uns - goto no_block; - } - -+ /* -+ * Must be done before we enqueue the waiter, here is unfortunately -+ * under the hb lock, but that *should* work because it does nothing. -+ */ -+ rt_mutex_pre_schedule(); -+ - rt_mutex_init_waiter(&rt_waiter); - - /* -@@ -1052,6 +1059,10 @@ int futex_lock_pi(u32 __user *uaddr, uns - if (ret && !rt_mutex_cleanup_proxy_lock(&q.pi_state->pi_mutex, &rt_waiter)) - ret = 0; - -+ /* -+ * Waiter is unqueued. -+ */ -+ rt_mutex_post_schedule(); - no_block: - /* - * Fixup the pi_state owner and possibly acquire the lock if we ---- a/kernel/locking/rtmutex.c -+++ b/kernel/locking/rtmutex.c -@@ -1632,7 +1632,7 @@ static int __sched rt_mutex_slowlock_blo - raw_spin_unlock_irq(&lock->wait_lock); - - if (!owner || !rtmutex_spin_on_owner(lock, waiter, owner)) -- schedule(); -+ rt_mutex_schedule(); - - raw_spin_lock_irq(&lock->wait_lock); - set_current_state(state); -@@ -1661,7 +1661,7 @@ static void __sched rt_mutex_handle_dead - WARN(1, "rtmutex deadlock detected\n"); - while (1) { - set_current_state(TASK_INTERRUPTIBLE); -- schedule(); -+ rt_mutex_schedule(); - } - } - -@@ -1757,6 +1757,15 @@ static int __sched rt_mutex_slowlock(str - int ret; - - /* -+ * Do all pre-schedule work here, before we queue a waiter and invoke -+ * PI -- any such work that trips on rtlock (PREEMPT_RT spinlock) would -+ * otherwise recurse back into task_blocks_on_rt_mutex() through -+ * rtlock_slowlock() and will then enqueue a second waiter for this -+ * same task and things get really confusing real fast. -+ */ -+ rt_mutex_pre_schedule(); -+ -+ /* - * Technically we could use raw_spin_[un]lock_irq() here, but this can - * be called in early boot if the cmpxchg() fast path is disabled - * (debug, no architecture support). In this case we will acquire the -@@ -1767,6 +1776,7 @@ static int __sched rt_mutex_slowlock(str - raw_spin_lock_irqsave(&lock->wait_lock, flags); - ret = __rt_mutex_slowlock_locked(lock, ww_ctx, state); - raw_spin_unlock_irqrestore(&lock->wait_lock, flags); -+ rt_mutex_post_schedule(); - - return ret; - } ---- a/kernel/locking/rwbase_rt.c -+++ b/kernel/locking/rwbase_rt.c -@@ -71,6 +71,7 @@ static int __sched __rwbase_read_lock(st - struct rt_mutex_base *rtm = &rwb->rtmutex; - int ret; - -+ rwbase_pre_schedule(); - raw_spin_lock_irq(&rtm->wait_lock); - - /* -@@ -125,6 +126,7 @@ static int __sched __rwbase_read_lock(st - rwbase_rtmutex_unlock(rtm); - - trace_contention_end(rwb, ret); -+ rwbase_post_schedule(); - return ret; - } - -@@ -237,6 +239,8 @@ static int __sched rwbase_write_lock(str - /* Force readers into slow path */ - atomic_sub(READER_BIAS, &rwb->readers); - -+ rwbase_pre_schedule(); -+ - raw_spin_lock_irqsave(&rtm->wait_lock, flags); - if (__rwbase_write_trylock(rwb)) - goto out_unlock; -@@ -248,6 +252,7 @@ static int __sched rwbase_write_lock(str - if (rwbase_signal_pending_state(state, current)) { - rwbase_restore_current_state(); - __rwbase_write_unlock(rwb, 0, flags); -+ rwbase_post_schedule(); - trace_contention_end(rwb, -EINTR); - return -EINTR; - } -@@ -266,6 +271,7 @@ static int __sched rwbase_write_lock(str - - out_unlock: - raw_spin_unlock_irqrestore(&rtm->wait_lock, flags); -+ rwbase_post_schedule(); - return 0; - } - ---- a/kernel/locking/rwsem.c -+++ b/kernel/locking/rwsem.c -@@ -1427,8 +1427,14 @@ static inline void __downgrade_write(str - #define rwbase_signal_pending_state(state, current) \ - signal_pending_state(state, current) - -+#define rwbase_pre_schedule() \ -+ rt_mutex_pre_schedule() -+ - #define rwbase_schedule() \ -- schedule() -+ rt_mutex_schedule() -+ -+#define rwbase_post_schedule() \ -+ rt_mutex_post_schedule() - - #include "rwbase_rt.c" - ---- a/kernel/locking/spinlock_rt.c -+++ b/kernel/locking/spinlock_rt.c -@@ -184,9 +184,13 @@ static __always_inline int rwbase_rtmut - - #define rwbase_signal_pending_state(state, current) (0) - -+#define rwbase_pre_schedule() -+ - #define rwbase_schedule() \ - schedule_rtlock() - -+#define rwbase_post_schedule() -+ - #include "rwbase_rt.c" - /* - * The common functions which get wrapped into the rwlock API. diff --git a/debian/patches-rt/0089-printk-ringbuffer-Clarify-special-lpos-values.patch b/debian/patches-rt/0005-printk-ringbuffer-Clarify-special-lpos-values.patch index 397f61984c..f2b8ffcb0e 100644 --- a/debian/patches-rt/0089-printk-ringbuffer-Clarify-special-lpos-values.patch +++ b/debian/patches-rt/0005-printk-ringbuffer-Clarify-special-lpos-values.patch @@ -1,7 +1,7 @@ From: John Ogness <john.ogness@linutronix.de> Date: Mon, 23 Oct 2023 11:11:05 +0000 -Subject: [PATCH 089/134] printk: ringbuffer: Clarify special lpos values -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 05/50] printk: ringbuffer: Clarify special lpos values +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz For empty line records, no data blocks are created. Instead, these valid records are identified by special logical position diff --git a/debian/patches-rt/0005-serial-8250_bcm7271-Use-port-lock-wrappers.patch b/debian/patches-rt/0005-serial-8250_bcm7271-Use-port-lock-wrappers.patch deleted file mode 100644 index 55ae035b80..0000000000 --- a/debian/patches-rt/0005-serial-8250_bcm7271-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,151 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:22 +0206 -Subject: [PATCH 005/134] serial: 8250_bcm7271: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-6-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/8250/8250_bcm7271.c | 28 ++++++++++++++-------------- - 1 file changed, 14 insertions(+), 14 deletions(-) - ---- a/drivers/tty/serial/8250/8250_bcm7271.c -+++ b/drivers/tty/serial/8250/8250_bcm7271.c -@@ -567,7 +567,7 @@ static irqreturn_t brcmuart_isr(int irq, - if (interrupts == 0) - return IRQ_NONE; - -- spin_lock_irqsave(&up->lock, flags); -+ uart_port_lock_irqsave(up, &flags); - - /* Clear all interrupts */ - udma_writel(priv, REGS_DMA_ISR, UDMA_INTR_CLEAR, interrupts); -@@ -581,7 +581,7 @@ static irqreturn_t brcmuart_isr(int irq, - if ((rval | tval) == 0) - dev_warn(dev, "Spurious interrupt: 0x%x\n", interrupts); - -- spin_unlock_irqrestore(&up->lock, flags); -+ uart_port_unlock_irqrestore(up, flags); - return IRQ_HANDLED; - } - -@@ -608,10 +608,10 @@ static int brcmuart_startup(struct uart_ - * - * Synchronize UART_IER access against the console. - */ -- spin_lock_irq(&port->lock); -+ uart_port_lock_irq(port); - up->ier &= ~UART_IER_RDI; - serial_port_out(port, UART_IER, up->ier); -- spin_unlock_irq(&port->lock); -+ uart_port_unlock_irq(port); - - priv->tx_running = false; - priv->dma.rx_dma = NULL; -@@ -629,7 +629,7 @@ static void brcmuart_shutdown(struct uar - struct brcmuart_priv *priv = up->port.private_data; - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - priv->shutdown = true; - if (priv->dma_enabled) { - stop_rx_dma(up); -@@ -645,7 +645,7 @@ static void brcmuart_shutdown(struct uar - */ - up->dma = NULL; - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - serial8250_do_shutdown(port); - } - -@@ -788,7 +788,7 @@ static int brcmuart_handle_irq(struct ua - * interrupt but there is no data ready. - */ - if (((iir & UART_IIR_ID) == UART_IIR_RX_TIMEOUT) && !(priv->shutdown)) { -- spin_lock_irqsave(&p->lock, flags); -+ uart_port_lock_irqsave(p, &flags); - status = serial_port_in(p, UART_LSR); - if ((status & UART_LSR_DR) == 0) { - -@@ -813,7 +813,7 @@ static int brcmuart_handle_irq(struct ua - - handled = 1; - } -- spin_unlock_irqrestore(&p->lock, flags); -+ uart_port_unlock_irqrestore(p, flags); - if (handled) - return 1; - } -@@ -831,7 +831,7 @@ static enum hrtimer_restart brcmuart_hrt - if (priv->shutdown) - return HRTIMER_NORESTART; - -- spin_lock_irqsave(&p->lock, flags); -+ uart_port_lock_irqsave(p, &flags); - status = serial_port_in(p, UART_LSR); - - /* -@@ -855,7 +855,7 @@ static enum hrtimer_restart brcmuart_hrt - status |= UART_MCR_RTS; - serial_port_out(p, UART_MCR, status); - } -- spin_unlock_irqrestore(&p->lock, flags); -+ uart_port_unlock_irqrestore(p, flags); - return HRTIMER_NORESTART; - } - -@@ -1154,10 +1154,10 @@ static int __maybe_unused brcmuart_suspe - * This will prevent resume from enabling RTS before the - * baud rate has been restored. - */ -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - priv->saved_mctrl = port->mctrl; - port->mctrl &= ~TIOCM_RTS; -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - serial8250_suspend_port(priv->line); - clk_disable_unprepare(priv->baud_mux_clk); -@@ -1196,10 +1196,10 @@ static int __maybe_unused brcmuart_resum - - if (priv->saved_mctrl & TIOCM_RTS) { - /* Restore RTS */ -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - port->mctrl |= TIOCM_RTS; - port->ops->set_mctrl(port, port->mctrl); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - return 0; diff --git a/debian/patches-rt/0006-drm-i915-Disable-tracing-points-on-PREEMPT_RT.patch b/debian/patches-rt/0006-drm-i915-Disable-tracing-points-on-PREEMPT_RT.patch index f29f29bdfe..5951d04c0c 100644 --- a/debian/patches-rt/0006-drm-i915-Disable-tracing-points-on-PREEMPT_RT.patch +++ b/debian/patches-rt/0006-drm-i915-Disable-tracing-points-on-PREEMPT_RT.patch @@ -1,7 +1,7 @@ From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Date: Thu, 6 Dec 2018 09:52:20 +0100 Subject: [PATCH 06/10] drm/i915: Disable tracing points on PREEMPT_RT -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz Luca Abeni reported this: | BUG: scheduling while atomic: kworker/u8:2/15203/0x00000003 diff --git a/debian/patches-rt/0006-locking-rtmutex-Add-a-lockdep-assert-to-catch-potent.patch b/debian/patches-rt/0006-locking-rtmutex-Add-a-lockdep-assert-to-catch-potent.patch deleted file mode 100644 index 7d94cdb9de..0000000000 --- a/debian/patches-rt/0006-locking-rtmutex-Add-a-lockdep-assert-to-catch-potent.patch +++ /dev/null @@ -1,57 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Fri, 8 Sep 2023 18:22:53 +0200 -Subject: [PATCH 6/7] locking/rtmutex: Add a lockdep assert to catch potential - nested blocking -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -There used to be a BUG_ON(current->pi_blocked_on) in the lock acquisition -functions, but that vanished in one of the rtmutex overhauls. - -Bring it back in form of a lockdep assert to catch code paths which take -rtmutex based locks with current::pi_blocked_on != NULL. - -Reported-by: Crystal Wood <swood@redhat.com> -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: "Peter Zijlstra (Intel)" <peterz@infradead.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> -Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> -Link: https://lkml.kernel.org/r/20230908162254.999499-7-bigeasy@linutronix.de ---- - kernel/locking/rtmutex.c | 2 ++ - kernel/locking/rwbase_rt.c | 2 ++ - kernel/locking/spinlock_rt.c | 2 ++ - 3 files changed, 6 insertions(+) - ---- a/kernel/locking/rtmutex.c -+++ b/kernel/locking/rtmutex.c -@@ -1784,6 +1784,8 @@ static int __sched rt_mutex_slowlock(str - static __always_inline int __rt_mutex_lock(struct rt_mutex_base *lock, - unsigned int state) - { -+ lockdep_assert(!current->pi_blocked_on); -+ - if (likely(rt_mutex_try_acquire(lock))) - return 0; - ---- a/kernel/locking/rwbase_rt.c -+++ b/kernel/locking/rwbase_rt.c -@@ -133,6 +133,8 @@ static int __sched __rwbase_read_lock(st - static __always_inline int rwbase_read_lock(struct rwbase_rt *rwb, - unsigned int state) - { -+ lockdep_assert(!current->pi_blocked_on); -+ - if (rwbase_read_trylock(rwb)) - return 0; - ---- a/kernel/locking/spinlock_rt.c -+++ b/kernel/locking/spinlock_rt.c -@@ -37,6 +37,8 @@ - - static __always_inline void rtlock_lock(struct rt_mutex_base *rtm) - { -+ lockdep_assert(!current->pi_blocked_on); -+ - if (unlikely(!rt_mutex_cmpxchg_acquire(rtm, NULL, current))) - rtlock_slowlock(rtm); - } diff --git a/debian/patches-rt/0090-printk-For-suppress_panic_printk-check-for-other-CPU.patch b/debian/patches-rt/0006-printk-For-suppress_panic_printk-check-for-other-CPU.patch index 1fb32b1ace..9906aca51f 100644 --- a/debian/patches-rt/0090-printk-For-suppress_panic_printk-check-for-other-CPU.patch +++ b/debian/patches-rt/0006-printk-For-suppress_panic_printk-check-for-other-CPU.patch @@ -1,8 +1,8 @@ From: John Ogness <john.ogness@linutronix.de> Date: Fri, 13 Oct 2023 20:13:02 +0000 -Subject: [PATCH 090/134] printk: For @suppress_panic_printk check for other - CPU in panic -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 06/50] printk: For @suppress_panic_printk check for other CPU + in panic +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz Currently @suppress_panic_printk is checked along with non-matching @panic_cpu and current CPU. This works @@ -22,7 +22,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> --- a/kernel/printk/printk.c +++ b/kernel/printk/printk.c -@@ -2271,8 +2271,7 @@ asmlinkage int vprintk_emit(int facility +@@ -2270,8 +2270,7 @@ asmlinkage int vprintk_emit(int facility if (unlikely(suppress_printk)) return 0; diff --git a/debian/patches-rt/0006-serial-8250-Use-port-lock-wrappers.patch b/debian/patches-rt/0006-serial-8250-Use-port-lock-wrappers.patch deleted file mode 100644 index d6ee818bf9..0000000000 --- a/debian/patches-rt/0006-serial-8250-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,465 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:23 +0206 -Subject: [PATCH 006/134] serial: 8250: Use port lock wrappers -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-7-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/8250/8250_core.c | 12 ++-- - drivers/tty/serial/8250/8250_port.c | 100 ++++++++++++++++++------------------ - 2 files changed, 56 insertions(+), 56 deletions(-) - ---- a/drivers/tty/serial/8250/8250_core.c -+++ b/drivers/tty/serial/8250/8250_core.c -@@ -259,7 +259,7 @@ static void serial8250_backup_timeout(st - unsigned int iir, ier = 0, lsr; - unsigned long flags; - -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - - /* - * Must disable interrupts or else we risk racing with the interrupt -@@ -292,7 +292,7 @@ static void serial8250_backup_timeout(st - if (up->port.irq) - serial_out(up, UART_IER, ier); - -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - - /* Standard timer interval plus 0.2s to keep the port running */ - mod_timer(&up->timer, -@@ -992,11 +992,11 @@ static void serial_8250_overrun_backoff_ - struct uart_port *port = &up->port; - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - up->ier |= UART_IER_RLSI | UART_IER_RDI; - up->port.read_status_mask |= UART_LSR_DR; - serial_out(up, UART_IER, up->ier); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - /** -@@ -1194,9 +1194,9 @@ void serial8250_unregister_port(int line - if (uart->em485) { - unsigned long flags; - -- spin_lock_irqsave(&uart->port.lock, flags); -+ uart_port_lock_irqsave(&uart->port, &flags); - serial8250_em485_destroy(uart); -- spin_unlock_irqrestore(&uart->port.lock, flags); -+ uart_port_unlock_irqrestore(&uart->port, flags); - } - - uart_remove_one_port(&serial8250_reg, &uart->port); ---- a/drivers/tty/serial/8250/8250_port.c -+++ b/drivers/tty/serial/8250/8250_port.c -@@ -689,7 +689,7 @@ static void serial8250_set_sleep(struct - - if (p->capabilities & UART_CAP_SLEEP) { - /* Synchronize UART_IER access against the console. */ -- spin_lock_irq(&p->port.lock); -+ uart_port_lock_irq(&p->port); - if (p->capabilities & UART_CAP_EFR) { - lcr = serial_in(p, UART_LCR); - efr = serial_in(p, UART_EFR); -@@ -703,7 +703,7 @@ static void serial8250_set_sleep(struct - serial_out(p, UART_EFR, efr); - serial_out(p, UART_LCR, lcr); - } -- spin_unlock_irq(&p->port.lock); -+ uart_port_unlock_irq(&p->port); - } - - serial8250_rpm_put(p); -@@ -746,9 +746,9 @@ static void enable_rsa(struct uart_8250_ - { - if (up->port.type == PORT_RSA) { - if (up->port.uartclk != SERIAL_RSA_BAUD_BASE * 16) { -- spin_lock_irq(&up->port.lock); -+ uart_port_lock_irq(&up->port); - __enable_rsa(up); -- spin_unlock_irq(&up->port.lock); -+ uart_port_unlock_irq(&up->port); - } - if (up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16) - serial_out(up, UART_RSA_FRR, 0); -@@ -768,7 +768,7 @@ static void disable_rsa(struct uart_8250 - - if (up->port.type == PORT_RSA && - up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16) { -- spin_lock_irq(&up->port.lock); -+ uart_port_lock_irq(&up->port); - - mode = serial_in(up, UART_RSA_MSR); - result = !(mode & UART_RSA_MSR_FIFO); -@@ -781,7 +781,7 @@ static void disable_rsa(struct uart_8250 - - if (result) - up->port.uartclk = SERIAL_RSA_BAUD_BASE_LO * 16; -- spin_unlock_irq(&up->port.lock); -+ uart_port_unlock_irq(&up->port); - } - } - #endif /* CONFIG_SERIAL_8250_RSA */ -@@ -1172,7 +1172,7 @@ static void autoconfig(struct uart_8250_ - * - * Synchronize UART_IER access against the console. - */ -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - up->capabilities = 0; - up->bugs = 0; -@@ -1211,7 +1211,7 @@ static void autoconfig(struct uart_8250_ - /* - * We failed; there's nothing here - */ -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - DEBUG_AUTOCONF("IER test failed (%02x, %02x) ", - scratch2, scratch3); - goto out; -@@ -1235,7 +1235,7 @@ static void autoconfig(struct uart_8250_ - status1 = serial_in(up, UART_MSR) & UART_MSR_STATUS_BITS; - serial8250_out_MCR(up, save_mcr); - if (status1 != (UART_MSR_DCD | UART_MSR_CTS)) { -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - DEBUG_AUTOCONF("LOOP test failed (%02x) ", - status1); - goto out; -@@ -1304,7 +1304,7 @@ static void autoconfig(struct uart_8250_ - serial8250_clear_IER(up); - - out_unlock: -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - /* - * Check if the device is a Fintek F81216A -@@ -1344,9 +1344,9 @@ static void autoconfig_irq(struct uart_8 - probe_irq_off(probe_irq_on()); - save_mcr = serial8250_in_MCR(up); - /* Synchronize UART_IER access against the console. */ -- spin_lock_irq(&port->lock); -+ uart_port_lock_irq(port); - save_ier = serial_in(up, UART_IER); -- spin_unlock_irq(&port->lock); -+ uart_port_unlock_irq(port); - serial8250_out_MCR(up, UART_MCR_OUT1 | UART_MCR_OUT2); - - irqs = probe_irq_on(); -@@ -1359,9 +1359,9 @@ static void autoconfig_irq(struct uart_8 - UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2); - } - /* Synchronize UART_IER access against the console. */ -- spin_lock_irq(&port->lock); -+ uart_port_lock_irq(port); - serial_out(up, UART_IER, UART_IER_ALL_INTR); -- spin_unlock_irq(&port->lock); -+ uart_port_unlock_irq(port); - serial_in(up, UART_LSR); - serial_in(up, UART_RX); - serial_in(up, UART_IIR); -@@ -1372,9 +1372,9 @@ static void autoconfig_irq(struct uart_8 - - serial8250_out_MCR(up, save_mcr); - /* Synchronize UART_IER access against the console. */ -- spin_lock_irq(&port->lock); -+ uart_port_lock_irq(port); - serial_out(up, UART_IER, save_ier); -- spin_unlock_irq(&port->lock); -+ uart_port_unlock_irq(port); - - if (port->flags & UPF_FOURPORT) - outb_p(save_ICP, ICP); -@@ -1442,13 +1442,13 @@ static enum hrtimer_restart serial8250_e - unsigned long flags; - - serial8250_rpm_get(p); -- spin_lock_irqsave(&p->port.lock, flags); -+ uart_port_lock_irqsave(&p->port, &flags); - if (em485->active_timer == &em485->stop_tx_timer) { - p->rs485_stop_tx(p); - em485->active_timer = NULL; - em485->tx_stopped = true; - } -- spin_unlock_irqrestore(&p->port.lock, flags); -+ uart_port_unlock_irqrestore(&p->port, flags); - serial8250_rpm_put(p); - - return HRTIMER_NORESTART; -@@ -1630,12 +1630,12 @@ static enum hrtimer_restart serial8250_e - struct uart_8250_port *p = em485->port; - unsigned long flags; - -- spin_lock_irqsave(&p->port.lock, flags); -+ uart_port_lock_irqsave(&p->port, &flags); - if (em485->active_timer == &em485->start_tx_timer) { - __start_tx(&p->port); - em485->active_timer = NULL; - } -- spin_unlock_irqrestore(&p->port.lock, flags); -+ uart_port_unlock_irqrestore(&p->port, flags); - - return HRTIMER_NORESTART; - } -@@ -1918,7 +1918,7 @@ int serial8250_handle_irq(struct uart_po - if (iir & UART_IIR_NO_INT) - return 0; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - status = serial_lsr_in(up); - -@@ -1988,9 +1988,9 @@ static int serial8250_tx_threshold_handl - if ((iir & UART_IIR_ID) == UART_IIR_THRI) { - struct uart_8250_port *up = up_to_u8250p(port); - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - serial8250_tx_chars(up); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - iir = serial_port_in(port, UART_IIR); -@@ -2005,10 +2005,10 @@ static unsigned int serial8250_tx_empty( - - serial8250_rpm_get(up); - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - if (!serial8250_tx_dma_running(up) && uart_lsr_tx_empty(serial_lsr_in(up))) - result = TIOCSER_TEMT; -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - serial8250_rpm_put(up); - -@@ -2070,13 +2070,13 @@ static void serial8250_break_ctl(struct - unsigned long flags; - - serial8250_rpm_get(up); -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - if (break_state == -1) - up->lcr |= UART_LCR_SBC; - else - up->lcr &= ~UART_LCR_SBC; - serial_port_out(port, UART_LCR, up->lcr); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - serial8250_rpm_put(up); - } - -@@ -2211,7 +2211,7 @@ int serial8250_do_startup(struct uart_po - * - * Synchronize UART_IER access against the console. - */ -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - up->acr = 0; - serial_port_out(port, UART_LCR, UART_LCR_CONF_MODE_B); - serial_port_out(port, UART_EFR, UART_EFR_ECB); -@@ -2221,7 +2221,7 @@ int serial8250_do_startup(struct uart_po - serial_port_out(port, UART_LCR, UART_LCR_CONF_MODE_B); - serial_port_out(port, UART_EFR, UART_EFR_ECB); - serial_port_out(port, UART_LCR, 0); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - if (port->type == PORT_DA830) { -@@ -2230,10 +2230,10 @@ int serial8250_do_startup(struct uart_po - * - * Synchronize UART_IER access against the console. - */ -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - serial_port_out(port, UART_IER, 0); - serial_port_out(port, UART_DA830_PWREMU_MGMT, 0); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - mdelay(10); - - /* Enable Tx, Rx and free run mode */ -@@ -2347,7 +2347,7 @@ int serial8250_do_startup(struct uart_po - * - * Synchronize UART_IER access against the console. - */ -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - wait_for_xmitr(up, UART_LSR_THRE); - serial_port_out_sync(port, UART_IER, UART_IER_THRI); -@@ -2359,7 +2359,7 @@ int serial8250_do_startup(struct uart_po - iir = serial_port_in(port, UART_IIR); - serial_port_out(port, UART_IER, 0); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - if (port->irqflags & IRQF_SHARED) - enable_irq(port->irq); -@@ -2382,7 +2382,7 @@ int serial8250_do_startup(struct uart_po - */ - serial_port_out(port, UART_LCR, UART_LCR_WLEN8); - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - if (up->port.flags & UPF_FOURPORT) { - if (!up->port.irq) - up->port.mctrl |= TIOCM_OUT1; -@@ -2428,7 +2428,7 @@ int serial8250_do_startup(struct uart_po - } - - dont_test_tx_en: -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - /* - * Clear the interrupt registers again for luck, and clear the -@@ -2499,17 +2499,17 @@ void serial8250_do_shutdown(struct uart_ - * - * Synchronize UART_IER access against the console. - */ -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - up->ier = 0; - serial_port_out(port, UART_IER, 0); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - synchronize_irq(port->irq); - - if (up->dma) - serial8250_release_dma(up); - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - if (port->flags & UPF_FOURPORT) { - /* reset interrupts on the AST Fourport board */ - inb((port->iobase & 0xfe0) | 0x1f); -@@ -2518,7 +2518,7 @@ void serial8250_do_shutdown(struct uart_ - port->mctrl &= ~TIOCM_OUT2; - - serial8250_set_mctrl(port, port->mctrl); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - /* - * Disable break condition and FIFOs -@@ -2754,14 +2754,14 @@ void serial8250_update_uartclk(struct ua - quot = serial8250_get_divisor(port, baud, &frac); - - serial8250_rpm_get(up); -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - uart_update_timeout(port, termios->c_cflag, baud); - - serial8250_set_divisor(port, baud, quot, frac); - serial_port_out(port, UART_LCR, up->lcr); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - serial8250_rpm_put(up); - - out_unlock: -@@ -2798,7 +2798,7 @@ serial8250_do_set_termios(struct uart_po - * Synchronize UART_IER access against the console. - */ - serial8250_rpm_get(up); -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - up->lcr = cval; /* Save computed LCR */ - -@@ -2901,7 +2901,7 @@ serial8250_do_set_termios(struct uart_po - serial_port_out(port, UART_FCR, up->fcr); /* set fcr */ - } - serial8250_set_mctrl(port, port->mctrl); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - serial8250_rpm_put(up); - - /* Don't rewrite B0 */ -@@ -2924,15 +2924,15 @@ void serial8250_do_set_ldisc(struct uart - { - if (termios->c_line == N_PPS) { - port->flags |= UPF_HARDPPS_CD; -- spin_lock_irq(&port->lock); -+ uart_port_lock_irq(port); - serial8250_enable_ms(port); -- spin_unlock_irq(&port->lock); -+ uart_port_unlock_irq(port); - } else { - port->flags &= ~UPF_HARDPPS_CD; - if (!UART_ENABLE_MS(port, termios->c_cflag)) { -- spin_lock_irq(&port->lock); -+ uart_port_lock_irq(port); - serial8250_disable_ms(port); -- spin_unlock_irq(&port->lock); -+ uart_port_unlock_irq(port); - } - } - } -@@ -3406,9 +3406,9 @@ void serial8250_console_write(struct uar - touch_nmi_watchdog(); - - if (oops_in_progress) -- locked = spin_trylock_irqsave(&port->lock, flags); -+ locked = uart_port_trylock_irqsave(port, &flags); - else -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* - * First save the IER then disable the interrupts -@@ -3478,7 +3478,7 @@ void serial8250_console_write(struct uar - serial8250_modem_status(up); - - if (locked) -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static unsigned int probe_baud(struct uart_port *port) diff --git a/debian/patches-rt/0007-drm-i915-skip-DRM_I915_LOW_LEVEL_TRACEPOINTS-with-NO.patch b/debian/patches-rt/0007-drm-i915-skip-DRM_I915_LOW_LEVEL_TRACEPOINTS-with-NO.patch index d784f90a94..c2b03ffbb3 100644 --- a/debian/patches-rt/0007-drm-i915-skip-DRM_I915_LOW_LEVEL_TRACEPOINTS-with-NO.patch +++ b/debian/patches-rt/0007-drm-i915-skip-DRM_I915_LOW_LEVEL_TRACEPOINTS-with-NO.patch @@ -2,7 +2,7 @@ From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Date: Wed, 19 Dec 2018 10:47:02 +0100 Subject: [PATCH 07/10] drm/i915: skip DRM_I915_LOW_LEVEL_TRACEPOINTS with NOTRACE -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz The order of the header files is important. If this header file is included after tracepoint.h was included then the NOTRACE here becomes a diff --git a/debian/patches-rt/0007-futex-pi-Fix-recursive-rt_mutex-waiter-state.patch b/debian/patches-rt/0007-futex-pi-Fix-recursive-rt_mutex-waiter-state.patch deleted file mode 100644 index 76a9b60581..0000000000 --- a/debian/patches-rt/0007-futex-pi-Fix-recursive-rt_mutex-waiter-state.patch +++ /dev/null @@ -1,198 +0,0 @@ -From: Peter Zijlstra <peterz@infradead.org> -Date: Fri, 15 Sep 2023 17:19:44 +0200 -Subject: [PATCH 7/7] futex/pi: Fix recursive rt_mutex waiter state -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -Some new assertions pointed out that the existing code has nested rt_mutex wait -state in the futex code. - -Specifically, the futex_lock_pi() cancel case uses spin_lock() while there -still is a rt_waiter enqueued for this task, resulting in a state where there -are two waiters for the same task (and task_struct::pi_blocked_on gets -scrambled). - -The reason to take hb->lock at this point is to avoid the wake_futex_pi() -EAGAIN case. - -This happens when futex_top_waiter() and rt_mutex_top_waiter() state becomes -inconsistent. The current rules are such that this inconsistency will not be -observed. - -Notably the case that needs to be avoided is where futex_lock_pi() and -futex_unlock_pi() interleave such that unlock will fail to observe a new -waiter. - -*However* the case at hand is where a waiter is leaving, in this case the race -means a waiter that is going away is not observed -- which is harmless, -provided this race is explicitly handled. - -This is a somewhat dangerous proposition because the converse race is not -observing a new waiter, which must absolutely not happen. But since the race is -valid this cannot be asserted. - -Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> -Reviewed-by: Thomas Gleixner <tglx@linutronix.de> -Reviewed-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> -Tested-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> -Link: https://lkml.kernel.org/r/20230915151943.GD6743@noisy.programming.kicks-ass.net ---- - kernel/futex/pi.c | 76 ++++++++++++++++++++++++++++++------------------- - kernel/futex/requeue.c | 6 ++- - 2 files changed, 52 insertions(+), 30 deletions(-) - ---- a/kernel/futex/pi.c -+++ b/kernel/futex/pi.c -@@ -611,29 +611,16 @@ int futex_lock_pi_atomic(u32 __user *uad - /* - * Caller must hold a reference on @pi_state. - */ --static int wake_futex_pi(u32 __user *uaddr, u32 uval, struct futex_pi_state *pi_state) -+static int wake_futex_pi(u32 __user *uaddr, u32 uval, -+ struct futex_pi_state *pi_state, -+ struct rt_mutex_waiter *top_waiter) - { -- struct rt_mutex_waiter *top_waiter; - struct task_struct *new_owner; - bool postunlock = false; - DEFINE_RT_WAKE_Q(wqh); - u32 curval, newval; - int ret = 0; - -- top_waiter = rt_mutex_top_waiter(&pi_state->pi_mutex); -- if (WARN_ON_ONCE(!top_waiter)) { -- /* -- * As per the comment in futex_unlock_pi() this should not happen. -- * -- * When this happens, give up our locks and try again, giving -- * the futex_lock_pi() instance time to complete, either by -- * waiting on the rtmutex or removing itself from the futex -- * queue. -- */ -- ret = -EAGAIN; -- goto out_unlock; -- } -- - new_owner = top_waiter->task; - - /* -@@ -1046,20 +1033,34 @@ int futex_lock_pi(u32 __user *uaddr, uns - ret = rt_mutex_wait_proxy_lock(&q.pi_state->pi_mutex, to, &rt_waiter); - - cleanup: -- spin_lock(q.lock_ptr); - /* - * If we failed to acquire the lock (deadlock/signal/timeout), we must -- * first acquire the hb->lock before removing the lock from the -- * rt_mutex waitqueue, such that we can keep the hb and rt_mutex wait -- * lists consistent. -+ * must unwind the above, however we canont lock hb->lock because -+ * rt_mutex already has a waiter enqueued and hb->lock can itself try -+ * and enqueue an rt_waiter through rtlock. -+ * -+ * Doing the cleanup without holding hb->lock can cause inconsistent -+ * state between hb and pi_state, but only in the direction of not -+ * seeing a waiter that is leaving. -+ * -+ * See futex_unlock_pi(), it deals with this inconsistency. -+ * -+ * There be dragons here, since we must deal with the inconsistency on -+ * the way out (here), it is impossible to detect/warn about the race -+ * the other way around (missing an incoming waiter). - * -- * In particular; it is important that futex_unlock_pi() can not -- * observe this inconsistency. -+ * What could possibly go wrong... - */ - if (ret && !rt_mutex_cleanup_proxy_lock(&q.pi_state->pi_mutex, &rt_waiter)) - ret = 0; - - /* -+ * Now that the rt_waiter has been dequeued, it is safe to use -+ * spinlock/rtlock (which might enqueue its own rt_waiter) and fix up -+ * the -+ */ -+ spin_lock(q.lock_ptr); -+ /* - * Waiter is unqueued. - */ - rt_mutex_post_schedule(); -@@ -1143,6 +1144,7 @@ int futex_unlock_pi(u32 __user *uaddr, u - top_waiter = futex_top_waiter(hb, &key); - if (top_waiter) { - struct futex_pi_state *pi_state = top_waiter->pi_state; -+ struct rt_mutex_waiter *rt_waiter; - - ret = -EINVAL; - if (!pi_state) -@@ -1155,22 +1157,39 @@ int futex_unlock_pi(u32 __user *uaddr, u - if (pi_state->owner != current) - goto out_unlock; - -- get_pi_state(pi_state); - /* - * By taking wait_lock while still holding hb->lock, we ensure -- * there is no point where we hold neither; and therefore -- * wake_futex_p() must observe a state consistent with what we -- * observed. -+ * there is no point where we hold neither; and thereby -+ * wake_futex_pi() must observe any new waiters. -+ * -+ * Since the cleanup: case in futex_lock_pi() removes the -+ * rt_waiter without holding hb->lock, it is possible for -+ * wake_futex_pi() to not find a waiter while the above does, -+ * in this case the waiter is on the way out and it can be -+ * ignored. - * - * In particular; this forces __rt_mutex_start_proxy() to - * complete such that we're guaranteed to observe the -- * rt_waiter. Also see the WARN in wake_futex_pi(). -+ * rt_waiter. - */ - raw_spin_lock_irq(&pi_state->pi_mutex.wait_lock); -+ -+ /* -+ * Futex vs rt_mutex waiter state -- if there are no rt_mutex -+ * waiters even though futex thinks there are, then the waiter -+ * is leaving and the uncontended path is safe to take. -+ */ -+ rt_waiter = rt_mutex_top_waiter(&pi_state->pi_mutex); -+ if (!rt_waiter) { -+ raw_spin_unlock_irq(&pi_state->pi_mutex.wait_lock); -+ goto do_uncontended; -+ } -+ -+ get_pi_state(pi_state); - spin_unlock(&hb->lock); - - /* drops pi_state->pi_mutex.wait_lock */ -- ret = wake_futex_pi(uaddr, uval, pi_state); -+ ret = wake_futex_pi(uaddr, uval, pi_state, rt_waiter); - - put_pi_state(pi_state); - -@@ -1198,6 +1217,7 @@ int futex_unlock_pi(u32 __user *uaddr, u - return ret; - } - -+do_uncontended: - /* - * We have no kernel internal state, i.e. no waiters in the - * kernel. Waiters which are about to queue themselves are stuck ---- a/kernel/futex/requeue.c -+++ b/kernel/futex/requeue.c -@@ -850,11 +850,13 @@ int futex_wait_requeue_pi(u32 __user *ua - pi_mutex = &q.pi_state->pi_mutex; - ret = rt_mutex_wait_proxy_lock(pi_mutex, to, &rt_waiter); - -- /* Current is not longer pi_blocked_on */ -- spin_lock(q.lock_ptr); -+ /* -+ * See futex_unlock_pi()'s cleanup: comment. -+ */ - if (ret && !rt_mutex_cleanup_proxy_lock(pi_mutex, &rt_waiter)) - ret = 0; - -+ spin_lock(q.lock_ptr); - debug_rt_mutex_free_waiter(&rt_waiter); - /* - * Fixup the pi_state owner and possibly acquire the lock if we diff --git a/debian/patches-rt/0091-printk-Add-this_cpu_in_panic.patch b/debian/patches-rt/0007-printk-Add-this_cpu_in_panic.patch index 0925911259..4168b8ed07 100644 --- a/debian/patches-rt/0091-printk-Add-this_cpu_in_panic.patch +++ b/debian/patches-rt/0007-printk-Add-this_cpu_in_panic.patch @@ -1,7 +1,7 @@ From: John Ogness <john.ogness@linutronix.de> Date: Fri, 13 Oct 2023 14:30:49 +0000 -Subject: [PATCH 091/134] printk: Add this_cpu_in_panic() -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 07/50] printk: Add this_cpu_in_panic() +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz There is already panic_in_progress() and other_cpu_in_panic(), but checking if the current CPU is the panic CPU must still be @@ -59,7 +59,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> /* * This is used for debugging the mess that is the VT code by * keeping track if we have the console semaphore held. It's -@@ -2593,26 +2616,6 @@ static int console_cpu_notify(unsigned i +@@ -2600,26 +2623,6 @@ static int console_cpu_notify(unsigned i return 0; } diff --git a/debian/patches-rt/0007-serial-8250_dma-Use-port-lock-wrappers.patch b/debian/patches-rt/0007-serial-8250_dma-Use-port-lock-wrappers.patch deleted file mode 100644 index bc8686e892..0000000000 --- a/debian/patches-rt/0007-serial-8250_dma-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,80 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:24 +0206 -Subject: [PATCH 007/134] serial: 8250_dma: Use port lock wrappers -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-8-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/8250/8250_dma.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - ---- a/drivers/tty/serial/8250/8250_dma.c -+++ b/drivers/tty/serial/8250/8250_dma.c -@@ -22,7 +22,7 @@ static void __dma_tx_complete(void *para - dma_sync_single_for_cpu(dma->txchan->device->dev, dma->tx_addr, - UART_XMIT_SIZE, DMA_TO_DEVICE); - -- spin_lock_irqsave(&p->port.lock, flags); -+ uart_port_lock_irqsave(&p->port, &flags); - - dma->tx_running = 0; - -@@ -35,7 +35,7 @@ static void __dma_tx_complete(void *para - if (ret || !dma->tx_running) - serial8250_set_THRI(p); - -- spin_unlock_irqrestore(&p->port.lock, flags); -+ uart_port_unlock_irqrestore(&p->port, flags); - } - - static void __dma_rx_complete(struct uart_8250_port *p) -@@ -70,7 +70,7 @@ static void dma_rx_complete(void *param) - struct uart_8250_dma *dma = p->dma; - unsigned long flags; - -- spin_lock_irqsave(&p->port.lock, flags); -+ uart_port_lock_irqsave(&p->port, &flags); - if (dma->rx_running) - __dma_rx_complete(p); - -@@ -80,7 +80,7 @@ static void dma_rx_complete(void *param) - */ - if (!dma->rx_running && (serial_lsr_in(p) & UART_LSR_DR)) - p->dma->rx_dma(p); -- spin_unlock_irqrestore(&p->port.lock, flags); -+ uart_port_unlock_irqrestore(&p->port, flags); - } - - int serial8250_tx_dma(struct uart_8250_port *p) diff --git a/debian/patches-rt/0008-drm-i915-gt-Queue-and-wait-for-the-irq_work-item.patch b/debian/patches-rt/0008-drm-i915-gt-Queue-and-wait-for-the-irq_work-item.patch index 0322ae1544..5610950db5 100644 --- a/debian/patches-rt/0008-drm-i915-gt-Queue-and-wait-for-the-irq_work-item.patch +++ b/debian/patches-rt/0008-drm-i915-gt-Queue-and-wait-for-the-irq_work-item.patch @@ -1,7 +1,7 @@ From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Date: Wed, 8 Sep 2021 17:18:00 +0200 Subject: [PATCH 08/10] drm/i915/gt: Queue and wait for the irq_work item. -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz Disabling interrupts and invoking the irq_work function directly breaks on PREEMPT_RT. diff --git a/debian/patches-rt/0092-printk-ringbuffer-Cleanup-reader-terminology.patch b/debian/patches-rt/0008-printk-ringbuffer-Cleanup-reader-terminology.patch index 31c6312c46..cfd6ca7a28 100644 --- a/debian/patches-rt/0092-printk-ringbuffer-Cleanup-reader-terminology.patch +++ b/debian/patches-rt/0008-printk-ringbuffer-Cleanup-reader-terminology.patch @@ -1,7 +1,7 @@ From: John Ogness <john.ogness@linutronix.de> Date: Mon, 6 Nov 2023 15:01:58 +0000 -Subject: [PATCH 092/134] printk: ringbuffer: Cleanup reader terminology -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 08/50] printk: ringbuffer: Cleanup reader terminology +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz With the lockless ringbuffer, it is allowed that multiple CPUs/contexts write simultaneously into the buffer. This creates diff --git a/debian/patches-rt/0008-serial-8250_dw-Use-port-lock-wrappers.patch b/debian/patches-rt/0008-serial-8250_dw-Use-port-lock-wrappers.patch deleted file mode 100644 index d5394fc7a3..0000000000 --- a/debian/patches-rt/0008-serial-8250_dw-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,69 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:25 +0206 -Subject: [PATCH 008/134] serial: 8250_dw: Use port lock wrappers -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-9-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/8250/8250_dw.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - ---- a/drivers/tty/serial/8250/8250_dw.c -+++ b/drivers/tty/serial/8250/8250_dw.c -@@ -263,20 +263,20 @@ static int dw8250_handle_irq(struct uart - * so we limit the workaround only to non-DMA mode. - */ - if (!up->dma && rx_timeout) { -- spin_lock_irqsave(&p->lock, flags); -+ uart_port_lock_irqsave(p, &flags); - status = serial_lsr_in(up); - - if (!(status & (UART_LSR_DR | UART_LSR_BI))) - (void) p->serial_in(p, UART_RX); - -- spin_unlock_irqrestore(&p->lock, flags); -+ uart_port_unlock_irqrestore(p, flags); - } - - /* Manually stop the Rx DMA transfer when acting as flow controller */ - if (quirks & DW_UART_QUIRK_IS_DMA_FC && up->dma && up->dma->rx_running && rx_timeout) { -- spin_lock_irqsave(&p->lock, flags); -+ uart_port_lock_irqsave(p, &flags); - status = serial_lsr_in(up); -- spin_unlock_irqrestore(&p->lock, flags); -+ uart_port_unlock_irqrestore(p, flags); - - if (status & (UART_LSR_DR | UART_LSR_BI)) { - dw8250_writel_ext(p, RZN1_UART_RDMACR, 0); diff --git a/debian/patches-rt/0009-drm-i915-gt-Use-spin_lock_irq-instead-of-local_irq_d.patch b/debian/patches-rt/0009-drm-i915-gt-Use-spin_lock_irq-instead-of-local_irq_d.patch index 3245e145f0..6aa006db93 100644 --- a/debian/patches-rt/0009-drm-i915-gt-Use-spin_lock_irq-instead-of-local_irq_d.patch +++ b/debian/patches-rt/0009-drm-i915-gt-Use-spin_lock_irq-instead-of-local_irq_d.patch @@ -2,7 +2,7 @@ From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Date: Wed, 8 Sep 2021 19:03:41 +0200 Subject: [PATCH 09/10] drm/i915/gt: Use spin_lock_irq() instead of local_irq_disable() + spin_lock() -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz execlists_dequeue() is invoked from a function which uses local_irq_disable() to disable interrupts so the spin_lock() behaves diff --git a/debian/patches-rt/0093-printk-Wait-for-all-reserved-records-with-pr_flush.patch b/debian/patches-rt/0009-printk-Wait-for-all-reserved-records-with-pr_flush.patch index 661aea2105..3ae222c891 100644 --- a/debian/patches-rt/0093-printk-Wait-for-all-reserved-records-with-pr_flush.patch +++ b/debian/patches-rt/0009-printk-Wait-for-all-reserved-records-with-pr_flush.patch @@ -1,7 +1,7 @@ From: John Ogness <john.ogness@linutronix.de> Date: Mon, 6 Nov 2023 14:59:55 +0000 -Subject: [PATCH 093/134] printk: Wait for all reserved records with pr_flush() -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 09/50] printk: Wait for all reserved records with pr_flush() +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz Currently pr_flush() will only wait for records that were available to readers at the time of the call (using @@ -27,7 +27,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> --- a/kernel/printk/printk.c +++ b/kernel/printk/printk.c -@@ -3756,7 +3756,7 @@ static bool __pr_flush(struct console *c +@@ -3763,7 +3763,7 @@ static bool __pr_flush(struct console *c might_sleep(); diff --git a/debian/patches-rt/0009-serial-8250_exar-Use-port-lock-wrappers.patch b/debian/patches-rt/0009-serial-8250_exar-Use-port-lock-wrappers.patch deleted file mode 100644 index 80c37fba6c..0000000000 --- a/debian/patches-rt/0009-serial-8250_exar-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,52 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:26 +0206 -Subject: [PATCH 009/134] serial: 8250_exar: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-10-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/8250/8250_exar.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - ---- a/drivers/tty/serial/8250/8250_exar.c -+++ b/drivers/tty/serial/8250/8250_exar.c -@@ -201,9 +201,9 @@ static int xr17v35x_startup(struct uart_ - * - * Synchronize UART_IER access against the console. - */ -- spin_lock_irq(&port->lock); -+ uart_port_lock_irq(port); - serial_port_out(port, UART_IER, 0); -- spin_unlock_irq(&port->lock); -+ uart_port_unlock_irq(port); - - return serial8250_do_startup(port); - } diff --git a/debian/patches-rt/0010-drm-i915-Drop-the-irqs_disabled-check.patch b/debian/patches-rt/0010-drm-i915-Drop-the-irqs_disabled-check.patch index 83a516ce8b..a76d765926 100644 --- a/debian/patches-rt/0010-drm-i915-Drop-the-irqs_disabled-check.patch +++ b/debian/patches-rt/0010-drm-i915-Drop-the-irqs_disabled-check.patch @@ -1,7 +1,7 @@ From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Date: Fri, 1 Oct 2021 20:01:03 +0200 Subject: [PATCH 10/10] drm/i915: Drop the irqs_disabled() check -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz The !irqs_disabled() check triggers on PREEMPT_RT even with i915_sched_engine::lock acquired. The reason is the lock is transformed diff --git a/debian/patches-rt/0094-printk-ringbuffer-Skip-non-finalized-records-in-pani.patch b/debian/patches-rt/0010-printk-ringbuffer-Skip-non-finalized-records-in-pani.patch index 56c675cea9..a92123216f 100644 --- a/debian/patches-rt/0094-printk-ringbuffer-Skip-non-finalized-records-in-pani.patch +++ b/debian/patches-rt/0010-printk-ringbuffer-Skip-non-finalized-records-in-pani.patch @@ -1,8 +1,7 @@ From: John Ogness <john.ogness@linutronix.de> Date: Fri, 13 Oct 2023 10:23:11 +0000 -Subject: [PATCH 094/134] printk: ringbuffer: Skip non-finalized records in - panic -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 10/50] printk: ringbuffer: Skip non-finalized records in panic +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz Normally a reader will stop once reaching a non-finalized record. However, when a panic happens, writers from other CPUs diff --git a/debian/patches-rt/0010-serial-8250_fsl-Use-port-lock-wrappers.patch b/debian/patches-rt/0010-serial-8250_fsl-Use-port-lock-wrappers.patch deleted file mode 100644 index abe7c81a98..0000000000 --- a/debian/patches-rt/0010-serial-8250_fsl-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,63 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:27 +0206 -Subject: [PATCH 010/134] serial: 8250_fsl: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-11-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/8250/8250_fsl.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - ---- a/drivers/tty/serial/8250/8250_fsl.c -+++ b/drivers/tty/serial/8250/8250_fsl.c -@@ -30,11 +30,11 @@ int fsl8250_handle_irq(struct uart_port - unsigned int iir; - struct uart_8250_port *up = up_to_u8250p(port); - -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - - iir = port->serial_in(port, UART_IIR); - if (iir & UART_IIR_NO_INT) { -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - return 0; - } - -@@ -54,7 +54,7 @@ int fsl8250_handle_irq(struct uart_port - if (unlikely(up->lsr_saved_flags & UART_LSR_BI)) { - up->lsr_saved_flags &= ~UART_LSR_BI; - port->serial_in(port, UART_RX); -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - return 1; - } - diff --git a/debian/patches-rt/0095-printk-ringbuffer-Consider-committed-as-finalized-in.patch b/debian/patches-rt/0011-printk-ringbuffer-Consider-committed-as-finalized-in.patch index 932ba13e7d..405969873c 100644 --- a/debian/patches-rt/0095-printk-ringbuffer-Consider-committed-as-finalized-in.patch +++ b/debian/patches-rt/0011-printk-ringbuffer-Consider-committed-as-finalized-in.patch @@ -1,8 +1,8 @@ From: John Ogness <john.ogness@linutronix.de> Date: Mon, 20 Nov 2023 12:46:35 +0100 -Subject: [PATCH 095/134] printk: ringbuffer: Consider committed as finalized - in panic -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 11/50] printk: ringbuffer: Consider committed as finalized in + panic +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz A descriptor in the committed state means the record does not yet exist for the reader. However, for the panic CPU, committed diff --git a/debian/patches-rt/0011-serial-8250_mtk-Use-port-lock-wrappers.patch b/debian/patches-rt/0011-serial-8250_mtk-Use-port-lock-wrappers.patch deleted file mode 100644 index a668182042..0000000000 --- a/debian/patches-rt/0011-serial-8250_mtk-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,77 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:28 +0206 -Subject: [PATCH 011/134] serial: 8250_mtk: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Reviewed-by: Chen-Yu Tsai <wenst@chromium.org> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-12-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/8250/8250_mtk.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - ---- a/drivers/tty/serial/8250/8250_mtk.c -+++ b/drivers/tty/serial/8250/8250_mtk.c -@@ -102,7 +102,7 @@ static void mtk8250_dma_rx_complete(void - if (data->rx_status == DMA_RX_SHUTDOWN) - return; - -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - - dmaengine_tx_status(dma->rxchan, dma->rx_cookie, &state); - total = dma->rx_size - state.residue; -@@ -128,7 +128,7 @@ static void mtk8250_dma_rx_complete(void - - mtk8250_rx_dma(up); - -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - } - - static void mtk8250_rx_dma(struct uart_8250_port *up) -@@ -368,7 +368,7 @@ mtk8250_set_termios(struct uart_port *po - * Ok, we're now changing the port state. Do it with - * interrupts disabled. - */ -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* - * Update the per-port timeout. -@@ -416,7 +416,7 @@ mtk8250_set_termios(struct uart_port *po - if (uart_console(port)) - up->port.cons->cflag = termios->c_cflag; - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - /* Don't rewrite B0 */ - if (tty_termios_baud_rate(termios)) - tty_termios_encode_baud_rate(termios, baud, baud); diff --git a/debian/patches-rt/0096-printk-Disable-passing-console-lock-owner-completely.patch b/debian/patches-rt/0012-printk-Disable-passing-console-lock-owner-completely.patch index d5dcdcdccc..adc25ac39d 100644 --- a/debian/patches-rt/0096-printk-Disable-passing-console-lock-owner-completely.patch +++ b/debian/patches-rt/0012-printk-Disable-passing-console-lock-owner-completely.patch @@ -1,8 +1,8 @@ From: Petr Mladek <pmladek@suse.com> Date: Fri, 13 Oct 2023 14:12:05 +0000 -Subject: [PATCH 096/134] printk: Disable passing console lock owner completely +Subject: [PATCH 12/50] printk: Disable passing console lock owner completely during panic() -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz The commit d51507098ff91 ("printk: disable optimistic spin during panic") added checks to avoid becoming a console waiter @@ -58,7 +58,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> --- a/kernel/printk/printk.c +++ b/kernel/printk/printk.c -@@ -1870,10 +1870,23 @@ static bool console_waiter; +@@ -1869,10 +1869,23 @@ static bool console_waiter; */ static void console_lock_spinning_enable(void) { @@ -82,7 +82,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> /* The waiter may spin on us after setting console_owner */ spin_acquire(&console_owner_dep_map, 0, 0, _THIS_IP_); } -@@ -1898,6 +1911,22 @@ static int console_lock_spinning_disable +@@ -1897,6 +1910,22 @@ static int console_lock_spinning_disable { int waiter; diff --git a/debian/patches-rt/0012-serial-8250_omap-Use-port-lock-wrappers.patch b/debian/patches-rt/0012-serial-8250_omap-Use-port-lock-wrappers.patch deleted file mode 100644 index 10ebd70ea0..0000000000 --- a/debian/patches-rt/0012-serial-8250_omap-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,236 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:29 +0206 -Subject: [PATCH 012/134] serial: 8250_omap: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-13-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/8250/8250_omap.c | 52 ++++++++++++++++++------------------ - 1 file changed, 26 insertions(+), 26 deletions(-) - ---- a/drivers/tty/serial/8250/8250_omap.c -+++ b/drivers/tty/serial/8250/8250_omap.c -@@ -401,7 +401,7 @@ static void omap_8250_set_termios(struct - * interrupts disabled. - */ - pm_runtime_get_sync(port->dev); -- spin_lock_irq(&port->lock); -+ uart_port_lock_irq(port); - - /* - * Update the per-port timeout. -@@ -504,7 +504,7 @@ static void omap_8250_set_termios(struct - } - omap8250_restore_regs(up); - -- spin_unlock_irq(&up->port.lock); -+ uart_port_unlock_irq(&up->port); - pm_runtime_mark_last_busy(port->dev); - pm_runtime_put_autosuspend(port->dev); - -@@ -529,7 +529,7 @@ static void omap_8250_pm(struct uart_por - pm_runtime_get_sync(port->dev); - - /* Synchronize UART_IER access against the console. */ -- spin_lock_irq(&port->lock); -+ uart_port_lock_irq(port); - - serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B); - efr = serial_in(up, UART_EFR); -@@ -541,7 +541,7 @@ static void omap_8250_pm(struct uart_por - serial_out(up, UART_EFR, efr); - serial_out(up, UART_LCR, 0); - -- spin_unlock_irq(&port->lock); -+ uart_port_unlock_irq(port); - - pm_runtime_mark_last_busy(port->dev); - pm_runtime_put_autosuspend(port->dev); -@@ -660,7 +660,7 @@ static irqreturn_t omap8250_irq(int irq, - unsigned long delay; - - /* Synchronize UART_IER access against the console. */ -- spin_lock(&port->lock); -+ uart_port_lock(port); - up->ier = port->serial_in(port, UART_IER); - if (up->ier & (UART_IER_RLSI | UART_IER_RDI)) { - port->ops->stop_rx(port); -@@ -670,7 +670,7 @@ static irqreturn_t omap8250_irq(int irq, - */ - cancel_delayed_work(&up->overrun_backoff); - } -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - - delay = msecs_to_jiffies(up->overrun_backoff_time_ms); - schedule_delayed_work(&up->overrun_backoff, delay); -@@ -717,10 +717,10 @@ static int omap_8250_startup(struct uart - } - - /* Synchronize UART_IER access against the console. */ -- spin_lock_irq(&port->lock); -+ uart_port_lock_irq(port); - up->ier = UART_IER_RLSI | UART_IER_RDI; - serial_out(up, UART_IER, up->ier); -- spin_unlock_irq(&port->lock); -+ uart_port_unlock_irq(port); - - #ifdef CONFIG_PM - up->capabilities |= UART_CAP_RPM; -@@ -733,9 +733,9 @@ static int omap_8250_startup(struct uart - serial_out(up, UART_OMAP_WER, priv->wer); - - if (up->dma && !(priv->habit & UART_HAS_EFR2)) { -- spin_lock_irq(&port->lock); -+ uart_port_lock_irq(port); - up->dma->rx_dma(up); -- spin_unlock_irq(&port->lock); -+ uart_port_unlock_irq(port); - } - - enable_irq(up->port.irq); -@@ -761,10 +761,10 @@ static void omap_8250_shutdown(struct ua - serial_out(up, UART_OMAP_EFR2, 0x0); - - /* Synchronize UART_IER access against the console. */ -- spin_lock_irq(&port->lock); -+ uart_port_lock_irq(port); - up->ier = 0; - serial_out(up, UART_IER, 0); -- spin_unlock_irq(&port->lock); -+ uart_port_unlock_irq(port); - disable_irq_nosync(up->port.irq); - dev_pm_clear_wake_irq(port->dev); - -@@ -789,10 +789,10 @@ static void omap_8250_throttle(struct ua - - pm_runtime_get_sync(port->dev); - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - port->ops->stop_rx(port); - priv->throttled = true; -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - pm_runtime_mark_last_busy(port->dev); - pm_runtime_put_autosuspend(port->dev); -@@ -807,14 +807,14 @@ static void omap_8250_unthrottle(struct - pm_runtime_get_sync(port->dev); - - /* Synchronize UART_IER access against the console. */ -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - priv->throttled = false; - if (up->dma) - up->dma->rx_dma(up); - up->ier |= UART_IER_RLSI | UART_IER_RDI; - port->read_status_mask |= UART_LSR_DR; - serial_out(up, UART_IER, up->ier); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - pm_runtime_mark_last_busy(port->dev); - pm_runtime_put_autosuspend(port->dev); -@@ -958,7 +958,7 @@ static void __dma_rx_complete(void *para - unsigned long flags; - - /* Synchronize UART_IER access against the console. */ -- spin_lock_irqsave(&p->port.lock, flags); -+ uart_port_lock_irqsave(&p->port, &flags); - - /* - * If the tx status is not DMA_COMPLETE, then this is a delayed -@@ -967,7 +967,7 @@ static void __dma_rx_complete(void *para - */ - if (dmaengine_tx_status(dma->rxchan, dma->rx_cookie, &state) != - DMA_COMPLETE) { -- spin_unlock_irqrestore(&p->port.lock, flags); -+ uart_port_unlock_irqrestore(&p->port, flags); - return; - } - __dma_rx_do_complete(p); -@@ -978,7 +978,7 @@ static void __dma_rx_complete(void *para - omap_8250_rx_dma(p); - } - -- spin_unlock_irqrestore(&p->port.lock, flags); -+ uart_port_unlock_irqrestore(&p->port, flags); - } - - static void omap_8250_rx_dma_flush(struct uart_8250_port *p) -@@ -1083,7 +1083,7 @@ static void omap_8250_dma_tx_complete(vo - dma_sync_single_for_cpu(dma->txchan->device->dev, dma->tx_addr, - UART_XMIT_SIZE, DMA_TO_DEVICE); - -- spin_lock_irqsave(&p->port.lock, flags); -+ uart_port_lock_irqsave(&p->port, &flags); - - dma->tx_running = 0; - -@@ -1112,7 +1112,7 @@ static void omap_8250_dma_tx_complete(vo - serial8250_set_THRI(p); - } - -- spin_unlock_irqrestore(&p->port.lock, flags); -+ uart_port_unlock_irqrestore(&p->port, flags); - } - - static int omap_8250_tx_dma(struct uart_8250_port *p) -@@ -1278,7 +1278,7 @@ static int omap_8250_dma_handle_irq(stru - return IRQ_HANDLED; - } - -- spin_lock(&port->lock); -+ uart_port_lock(port); - - status = serial_port_in(port, UART_LSR); - -@@ -1756,15 +1756,15 @@ static int omap8250_runtime_resume(struc - up = serial8250_get_port(priv->line); - - if (up && omap8250_lost_context(up)) { -- spin_lock_irq(&up->port.lock); -+ uart_port_lock_irq(&up->port); - omap8250_restore_regs(up); -- spin_unlock_irq(&up->port.lock); -+ uart_port_unlock_irq(&up->port); - } - - if (up && up->dma && up->dma->rxchan && !(priv->habit & UART_HAS_EFR2)) { -- spin_lock_irq(&up->port.lock); -+ uart_port_lock_irq(&up->port); - omap_8250_rx_dma(up); -- spin_unlock_irq(&up->port.lock); -+ uart_port_unlock_irq(&up->port); - } - - priv->latency = priv->calc_latency; diff --git a/debian/patches-rt/0097-printk-Avoid-non-panic-CPUs-writing-to-ringbuffer.patch b/debian/patches-rt/0013-printk-Avoid-non-panic-CPUs-writing-to-ringbuffer.patch index 2f5a4ba17d..94aab97fe8 100644 --- a/debian/patches-rt/0097-printk-Avoid-non-panic-CPUs-writing-to-ringbuffer.patch +++ b/debian/patches-rt/0013-printk-Avoid-non-panic-CPUs-writing-to-ringbuffer.patch @@ -1,7 +1,7 @@ From: John Ogness <john.ogness@linutronix.de> Date: Fri, 20 Oct 2023 09:37:05 +0000 -Subject: [PATCH 097/134] printk: Avoid non-panic CPUs writing to ringbuffer -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 13/50] printk: Avoid non-panic CPUs writing to ringbuffer +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz Commit 13fb0f74d702 ("printk: Avoid livelock with heavy printk during panic") introduced a mechanism to silence non-panic CPUs @@ -35,7 +35,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> DECLARE_WAIT_QUEUE_HEAD(log_wait); /* All 3 protected by @syslog_lock. */ /* the next printk record to read by syslog(READ) or /proc/kmsg */ -@@ -2323,7 +2317,12 @@ asmlinkage int vprintk_emit(int facility +@@ -2322,7 +2316,12 @@ asmlinkage int vprintk_emit(int facility if (unlikely(suppress_printk)) return 0; @@ -49,7 +49,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> return 0; if (level == LOGLEVEL_SCHED) { -@@ -2800,8 +2799,6 @@ void console_prepend_dropped(struct prin +@@ -2807,8 +2806,6 @@ void console_prepend_dropped(struct prin bool printk_get_next_message(struct printk_message *pmsg, u64 seq, bool is_extended, bool may_suppress) { @@ -58,7 +58,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> struct printk_buffers *pbufs = pmsg->pbufs; const size_t scratchbuf_sz = sizeof(pbufs->scratchbuf); const size_t outbuf_sz = sizeof(pbufs->outbuf); -@@ -2829,17 +2826,6 @@ bool printk_get_next_message(struct prin +@@ -2836,17 +2833,6 @@ bool printk_get_next_message(struct prin pmsg->seq = r.info->seq; pmsg->dropped = r.info->seq - seq; diff --git a/debian/patches-rt/0013-serial-8250_pci1xxxx-Use-port-lock-wrappers.patch b/debian/patches-rt/0013-serial-8250_pci1xxxx-Use-port-lock-wrappers.patch deleted file mode 100644 index 2916387692..0000000000 --- a/debian/patches-rt/0013-serial-8250_pci1xxxx-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,66 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:30 +0206 -Subject: [PATCH 013/134] serial: 8250_pci1xxxx: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-14-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/8250/8250_pci1xxxx.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - ---- a/drivers/tty/serial/8250/8250_pci1xxxx.c -+++ b/drivers/tty/serial/8250/8250_pci1xxxx.c -@@ -225,10 +225,10 @@ static bool pci1xxxx_port_suspend(int li - if (port->suspended == 0 && port->dev) { - wakeup_mask = readb(up->port.membase + UART_WAKE_MASK_REG); - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - port->mctrl &= ~TIOCM_OUT2; - port->ops->set_mctrl(port, port->mctrl); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - ret = (wakeup_mask & UART_WAKE_SRCS) != UART_WAKE_SRCS; - } -@@ -251,10 +251,10 @@ static void pci1xxxx_port_resume(int lin - writeb(UART_WAKE_SRCS, port->membase + UART_WAKE_REG); - - if (port->suspended == 0) { -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - port->mctrl |= TIOCM_OUT2; - port->ops->set_mctrl(port, port->mctrl); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - mutex_unlock(&tport->mutex); - } diff --git a/debian/patches-rt/0098-panic-Flush-kernel-log-buffer-at-the-end.patch b/debian/patches-rt/0014-panic-Flush-kernel-log-buffer-at-the-end.patch index ec3cbc5dd2..09f528156f 100644 --- a/debian/patches-rt/0098-panic-Flush-kernel-log-buffer-at-the-end.patch +++ b/debian/patches-rt/0014-panic-Flush-kernel-log-buffer-at-the-end.patch @@ -1,7 +1,7 @@ From: John Ogness <john.ogness@linutronix.de> Date: Thu, 14 Dec 2023 20:48:23 +0000 -Subject: [PATCH 098/134] panic: Flush kernel log buffer at the end -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 14/50] panic: Flush kernel log buffer at the end +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz If the kernel crashes in a context where printk() calls always defer printing (such as in NMI or inside a printk_safe section) @@ -21,7 +21,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> --- a/kernel/panic.c +++ b/kernel/panic.c -@@ -442,6 +442,14 @@ void panic(const char *fmt, ...) +@@ -446,6 +446,14 @@ void panic(const char *fmt, ...) /* Do not scroll important messages printed above */ suppress_printk = 1; diff --git a/debian/patches-rt/0014-serial-altera_jtaguart-Use-port-lock-wrappers.patch b/debian/patches-rt/0014-serial-altera_jtaguart-Use-port-lock-wrappers.patch deleted file mode 100644 index 46dbf785d0..0000000000 --- a/debian/patches-rt/0014-serial-altera_jtaguart-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,133 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:31 +0206 -Subject: [PATCH 014/134] serial: altera_jtaguart: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-15-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/altera_jtaguart.c | 28 ++++++++++++++-------------- - 1 file changed, 14 insertions(+), 14 deletions(-) - ---- a/drivers/tty/serial/altera_jtaguart.c -+++ b/drivers/tty/serial/altera_jtaguart.c -@@ -147,14 +147,14 @@ static irqreturn_t altera_jtaguart_inter - isr = (readl(port->membase + ALTERA_JTAGUART_CONTROL_REG) >> - ALTERA_JTAGUART_CONTROL_RI_OFF) & port->read_status_mask; - -- spin_lock(&port->lock); -+ uart_port_lock(port); - - if (isr & ALTERA_JTAGUART_CONTROL_RE_MSK) - altera_jtaguart_rx_chars(port); - if (isr & ALTERA_JTAGUART_CONTROL_WE_MSK) - altera_jtaguart_tx_chars(port); - -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - - return IRQ_RETVAL(isr); - } -@@ -180,14 +180,14 @@ static int altera_jtaguart_startup(struc - return ret; - } - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* Enable RX interrupts now */ - port->read_status_mask = ALTERA_JTAGUART_CONTROL_RE_MSK; - writel(port->read_status_mask, - port->membase + ALTERA_JTAGUART_CONTROL_REG); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - return 0; - } -@@ -196,14 +196,14 @@ static void altera_jtaguart_shutdown(str - { - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* Disable all interrupts now */ - port->read_status_mask = 0; - writel(port->read_status_mask, - port->membase + ALTERA_JTAGUART_CONTROL_REG); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - free_irq(port->irq, port); - } -@@ -264,33 +264,33 @@ static void altera_jtaguart_console_putc - unsigned long flags; - u32 status; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - while (!altera_jtaguart_tx_space(port, &status)) { -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - if ((status & ALTERA_JTAGUART_CONTROL_AC_MSK) == 0) { - return; /* no connection activity */ - } - - cpu_relax(); -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - } - writel(c, port->membase + ALTERA_JTAGUART_DATA_REG); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - #else - static void altera_jtaguart_console_putc(struct uart_port *port, unsigned char c) - { - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - while (!altera_jtaguart_tx_space(port, NULL)) { -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - cpu_relax(); -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - } - writel(c, port->membase + ALTERA_JTAGUART_DATA_REG); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - #endif - diff --git a/debian/patches-rt/0099-printk-Consider-nbcon-boot-consoles-on-seq-init.patch b/debian/patches-rt/0015-printk-Consider-nbcon-boot-consoles-on-seq-init.patch index b4e61c7689..0f0519c5e3 100644 --- a/debian/patches-rt/0099-printk-Consider-nbcon-boot-consoles-on-seq-init.patch +++ b/debian/patches-rt/0015-printk-Consider-nbcon-boot-consoles-on-seq-init.patch @@ -1,7 +1,7 @@ From: John Ogness <john.ogness@linutronix.de> Date: Wed, 22 Nov 2023 11:23:43 +0000 -Subject: [PATCH 099/134] printk: Consider nbcon boot consoles on seq init -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 15/50] printk: Consider nbcon boot consoles on seq init +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz If a non-boot console is registering and boot consoles exist, the consoles are flushed before being unregistered. This allows the @@ -24,7 +24,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> --- a/kernel/printk/printk.c +++ b/kernel/printk/printk.c -@@ -3392,11 +3392,20 @@ static void console_init_seq(struct cons +@@ -3399,11 +3399,20 @@ static void console_init_seq(struct cons newcon->seq = prb_next_seq(prb); for_each_console(con) { diff --git a/debian/patches-rt/0015-serial-altera_uart-Use-port-lock-wrappers.patch b/debian/patches-rt/0015-serial-altera_uart-Use-port-lock-wrappers.patch deleted file mode 100644 index 95e2c031f5..0000000000 --- a/debian/patches-rt/0015-serial-altera_uart-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,116 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:32 +0206 -Subject: [PATCH 015/134] serial: altera_uart: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-16-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/altera_uart.c | 20 ++++++++++---------- - 1 file changed, 10 insertions(+), 10 deletions(-) - ---- a/drivers/tty/serial/altera_uart.c -+++ b/drivers/tty/serial/altera_uart.c -@@ -164,13 +164,13 @@ static void altera_uart_break_ctl(struct - struct altera_uart *pp = container_of(port, struct altera_uart, port); - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - if (break_state == -1) - pp->imr |= ALTERA_UART_CONTROL_TRBK_MSK; - else - pp->imr &= ~ALTERA_UART_CONTROL_TRBK_MSK; - altera_uart_update_ctrl_reg(pp); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static void altera_uart_set_termios(struct uart_port *port, -@@ -187,10 +187,10 @@ static void altera_uart_set_termios(stru - tty_termios_copy_hw(termios, old); - tty_termios_encode_baud_rate(termios, baud, baud); - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - uart_update_timeout(port, termios->c_cflag, baud); - altera_uart_writel(port, baudclk, ALTERA_UART_DIVISOR_REG); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - /* - * FIXME: port->read_status_mask and port->ignore_status_mask -@@ -264,12 +264,12 @@ static irqreturn_t altera_uart_interrupt - - isr = altera_uart_readl(port, ALTERA_UART_STATUS_REG) & pp->imr; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - if (isr & ALTERA_UART_STATUS_RRDY_MSK) - altera_uart_rx_chars(port); - if (isr & ALTERA_UART_STATUS_TRDY_MSK) - altera_uart_tx_chars(port); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - return IRQ_RETVAL(isr); - } -@@ -313,13 +313,13 @@ static int altera_uart_startup(struct ua - } - } - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* Enable RX interrupts now */ - pp->imr = ALTERA_UART_CONTROL_RRDY_MSK; - altera_uart_update_ctrl_reg(pp); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - return 0; - } -@@ -329,13 +329,13 @@ static void altera_uart_shutdown(struct - struct altera_uart *pp = container_of(port, struct altera_uart, port); - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* Disable all interrupts now */ - pp->imr = 0; - altera_uart_update_ctrl_reg(pp); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - if (port->irq) - free_irq(port->irq, port); diff --git a/debian/patches-rt/0100-printk-Add-sparse-notation-to-console_srcu-locking.patch b/debian/patches-rt/0016-printk-Add-sparse-notation-to-console_srcu-locking.patch index 8a1473c93d..02fb6c51e1 100644 --- a/debian/patches-rt/0100-printk-Add-sparse-notation-to-console_srcu-locking.patch +++ b/debian/patches-rt/0016-printk-Add-sparse-notation-to-console_srcu-locking.patch @@ -1,7 +1,7 @@ From: John Ogness <john.ogness@linutronix.de> Date: Mon, 9 Oct 2023 13:55:19 +0000 -Subject: [PATCH 100/134] printk: Add sparse notation to console_srcu locking -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 16/50] printk: Add sparse notation to console_srcu locking +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz kernel/printk/printk.c:284:5: sparse: sparse: context imbalance in 'console_srcu_read_lock' - wrong count at exit diff --git a/debian/patches-rt/0016-serial-amba-pl010-Use-port-lock-wrappers.patch b/debian/patches-rt/0016-serial-amba-pl010-Use-port-lock-wrappers.patch deleted file mode 100644 index f3ba735bfc..0000000000 --- a/debian/patches-rt/0016-serial-amba-pl010-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,112 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:33 +0206 -Subject: [PATCH 016/134] serial: amba-pl010: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-17-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/amba-pl010.c | 20 ++++++++++---------- - 1 file changed, 10 insertions(+), 10 deletions(-) - ---- a/drivers/tty/serial/amba-pl010.c -+++ b/drivers/tty/serial/amba-pl010.c -@@ -207,7 +207,7 @@ static irqreturn_t pl010_int(int irq, vo - unsigned int status, pass_counter = AMBA_ISR_PASS_LIMIT; - int handled = 0; - -- spin_lock(&port->lock); -+ uart_port_lock(port); - - status = readb(port->membase + UART010_IIR); - if (status) { -@@ -228,7 +228,7 @@ static irqreturn_t pl010_int(int irq, vo - handled = 1; - } - -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - - return IRQ_RETVAL(handled); - } -@@ -270,14 +270,14 @@ static void pl010_break_ctl(struct uart_ - unsigned long flags; - unsigned int lcr_h; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - lcr_h = readb(port->membase + UART010_LCRH); - if (break_state == -1) - lcr_h |= UART01x_LCRH_BRK; - else - lcr_h &= ~UART01x_LCRH_BRK; - writel(lcr_h, port->membase + UART010_LCRH); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static int pl010_startup(struct uart_port *port) -@@ -385,7 +385,7 @@ pl010_set_termios(struct uart_port *port - if (port->fifosize > 1) - lcr_h |= UART01x_LCRH_FEN; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* - * Update the per-port timeout. -@@ -438,22 +438,22 @@ pl010_set_termios(struct uart_port *port - writel(lcr_h, port->membase + UART010_LCRH); - writel(old_cr, port->membase + UART010_CR); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static void pl010_set_ldisc(struct uart_port *port, struct ktermios *termios) - { - if (termios->c_line == N_PPS) { - port->flags |= UPF_HARDPPS_CD; -- spin_lock_irq(&port->lock); -+ uart_port_lock_irq(port); - pl010_enable_ms(port); -- spin_unlock_irq(&port->lock); -+ uart_port_unlock_irq(port); - } else { - port->flags &= ~UPF_HARDPPS_CD; - if (!UART_ENABLE_MS(port, termios->c_cflag)) { -- spin_lock_irq(&port->lock); -+ uart_port_lock_irq(port); - pl010_disable_ms(port); -- spin_unlock_irq(&port->lock); -+ uart_port_unlock_irq(port); - } - } - } diff --git a/debian/patches-rt/0101-printk-nbcon-Ensure-ownership-release-on-failed-emit.patch b/debian/patches-rt/0017-printk-nbcon-Ensure-ownership-release-on-failed-emit.patch index d96f2dc2b9..65553848f5 100644 --- a/debian/patches-rt/0101-printk-nbcon-Ensure-ownership-release-on-failed-emit.patch +++ b/debian/patches-rt/0017-printk-nbcon-Ensure-ownership-release-on-failed-emit.patch @@ -1,8 +1,7 @@ From: John Ogness <john.ogness@linutronix.de> Date: Fri, 20 Oct 2023 09:52:59 +0000 -Subject: [PATCH 101/134] printk: nbcon: Ensure ownership release on failed - emit -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 17/50] printk: nbcon: Ensure ownership release on failed emit +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz Until now it was assumed that ownership has been lost when the write_atomic() callback fails. nbcon_emit_next_record() only diff --git a/debian/patches-rt/0017-serial-amba-pl011-Use-port-lock-wrappers.patch b/debian/patches-rt/0017-serial-amba-pl011-Use-port-lock-wrappers.patch deleted file mode 100644 index 2a5e3a85ea..0000000000 --- a/debian/patches-rt/0017-serial-amba-pl011-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,327 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:34 +0206 -Subject: [PATCH 017/134] serial: amba-pl011: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-18-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/amba-pl011.c | 72 ++++++++++++++++++++-------------------- - 1 file changed, 36 insertions(+), 36 deletions(-) - ---- a/drivers/tty/serial/amba-pl011.c -+++ b/drivers/tty/serial/amba-pl011.c -@@ -347,9 +347,9 @@ static int pl011_fifo_to_tty(struct uart - flag = TTY_FRAME; - } - -- spin_unlock(&uap->port.lock); -+ uart_port_unlock(&uap->port); - sysrq = uart_handle_sysrq_char(&uap->port, ch & 255); -- spin_lock(&uap->port.lock); -+ uart_port_lock(&uap->port); - - if (!sysrq) - uart_insert_char(&uap->port, ch, UART011_DR_OE, ch, flag); -@@ -544,7 +544,7 @@ static void pl011_dma_tx_callback(void * - unsigned long flags; - u16 dmacr; - -- spin_lock_irqsave(&uap->port.lock, flags); -+ uart_port_lock_irqsave(&uap->port, &flags); - if (uap->dmatx.queued) - dma_unmap_single(dmatx->chan->device->dev, dmatx->dma, - dmatx->len, DMA_TO_DEVICE); -@@ -565,7 +565,7 @@ static void pl011_dma_tx_callback(void * - if (!(dmacr & UART011_TXDMAE) || uart_tx_stopped(&uap->port) || - uart_circ_empty(&uap->port.state->xmit)) { - uap->dmatx.queued = false; -- spin_unlock_irqrestore(&uap->port.lock, flags); -+ uart_port_unlock_irqrestore(&uap->port, flags); - return; - } - -@@ -576,7 +576,7 @@ static void pl011_dma_tx_callback(void * - */ - pl011_start_tx_pio(uap); - -- spin_unlock_irqrestore(&uap->port.lock, flags); -+ uart_port_unlock_irqrestore(&uap->port, flags); - } - - /* -@@ -1004,7 +1004,7 @@ static void pl011_dma_rx_callback(void * - * routine to flush out the secondary DMA buffer while - * we immediately trigger the next DMA job. - */ -- spin_lock_irq(&uap->port.lock); -+ uart_port_lock_irq(&uap->port); - /* - * Rx data can be taken by the UART interrupts during - * the DMA irq handler. So we check the residue here. -@@ -1020,7 +1020,7 @@ static void pl011_dma_rx_callback(void * - ret = pl011_dma_rx_trigger_dma(uap); - - pl011_dma_rx_chars(uap, pending, lastbuf, false); -- spin_unlock_irq(&uap->port.lock); -+ uart_port_unlock_irq(&uap->port); - /* - * Do this check after we picked the DMA chars so we don't - * get some IRQ immediately from RX. -@@ -1086,11 +1086,11 @@ static void pl011_dma_rx_poll(struct tim - if (jiffies_to_msecs(jiffies - dmarx->last_jiffies) - > uap->dmarx.poll_timeout) { - -- spin_lock_irqsave(&uap->port.lock, flags); -+ uart_port_lock_irqsave(&uap->port, &flags); - pl011_dma_rx_stop(uap); - uap->im |= UART011_RXIM; - pl011_write(uap->im, uap, REG_IMSC); -- spin_unlock_irqrestore(&uap->port.lock, flags); -+ uart_port_unlock_irqrestore(&uap->port, flags); - - uap->dmarx.running = false; - dmaengine_terminate_all(rxchan); -@@ -1186,10 +1186,10 @@ static void pl011_dma_shutdown(struct ua - while (pl011_read(uap, REG_FR) & uap->vendor->fr_busy) - cpu_relax(); - -- spin_lock_irq(&uap->port.lock); -+ uart_port_lock_irq(&uap->port); - uap->dmacr &= ~(UART011_DMAONERR | UART011_RXDMAE | UART011_TXDMAE); - pl011_write(uap->dmacr, uap, REG_DMACR); -- spin_unlock_irq(&uap->port.lock); -+ uart_port_unlock_irq(&uap->port); - - if (uap->using_tx_dma) { - /* In theory, this should already be done by pl011_dma_flush_buffer */ -@@ -1370,9 +1370,9 @@ static void pl011_throttle_rx(struct uar - { - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - pl011_stop_rx(port); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static void pl011_enable_ms(struct uart_port *port) -@@ -1390,7 +1390,7 @@ static void pl011_rx_chars(struct uart_a - { - pl011_fifo_to_tty(uap); - -- spin_unlock(&uap->port.lock); -+ uart_port_unlock(&uap->port); - tty_flip_buffer_push(&uap->port.state->port); - /* - * If we were temporarily out of DMA mode for a while, -@@ -1415,7 +1415,7 @@ static void pl011_rx_chars(struct uart_a - #endif - } - } -- spin_lock(&uap->port.lock); -+ uart_port_lock(&uap->port); - } - - static bool pl011_tx_char(struct uart_amba_port *uap, unsigned char c, -@@ -1551,7 +1551,7 @@ static irqreturn_t pl011_int(int irq, vo - unsigned int status, pass_counter = AMBA_ISR_PASS_LIMIT; - int handled = 0; - -- spin_lock_irqsave(&uap->port.lock, flags); -+ uart_port_lock_irqsave(&uap->port, &flags); - status = pl011_read(uap, REG_RIS) & uap->im; - if (status) { - do { -@@ -1581,7 +1581,7 @@ static irqreturn_t pl011_int(int irq, vo - handled = 1; - } - -- spin_unlock_irqrestore(&uap->port.lock, flags); -+ uart_port_unlock_irqrestore(&uap->port, flags); - - return IRQ_RETVAL(handled); - } -@@ -1653,14 +1653,14 @@ static void pl011_break_ctl(struct uart_ - unsigned long flags; - unsigned int lcr_h; - -- spin_lock_irqsave(&uap->port.lock, flags); -+ uart_port_lock_irqsave(&uap->port, &flags); - lcr_h = pl011_read(uap, REG_LCRH_TX); - if (break_state == -1) - lcr_h |= UART01x_LCRH_BRK; - else - lcr_h &= ~UART01x_LCRH_BRK; - pl011_write(lcr_h, uap, REG_LCRH_TX); -- spin_unlock_irqrestore(&uap->port.lock, flags); -+ uart_port_unlock_irqrestore(&uap->port, flags); - } - - #ifdef CONFIG_CONSOLE_POLL -@@ -1799,7 +1799,7 @@ static void pl011_enable_interrupts(stru - unsigned long flags; - unsigned int i; - -- spin_lock_irqsave(&uap->port.lock, flags); -+ uart_port_lock_irqsave(&uap->port, &flags); - - /* Clear out any spuriously appearing RX interrupts */ - pl011_write(UART011_RTIS | UART011_RXIS, uap, REG_ICR); -@@ -1821,7 +1821,7 @@ static void pl011_enable_interrupts(stru - if (!pl011_dma_rx_running(uap)) - uap->im |= UART011_RXIM; - pl011_write(uap->im, uap, REG_IMSC); -- spin_unlock_irqrestore(&uap->port.lock, flags); -+ uart_port_unlock_irqrestore(&uap->port, flags); - } - - static void pl011_unthrottle_rx(struct uart_port *port) -@@ -1829,7 +1829,7 @@ static void pl011_unthrottle_rx(struct u - struct uart_amba_port *uap = container_of(port, struct uart_amba_port, port); - unsigned long flags; - -- spin_lock_irqsave(&uap->port.lock, flags); -+ uart_port_lock_irqsave(&uap->port, &flags); - - uap->im = UART011_RTIM; - if (!pl011_dma_rx_running(uap)) -@@ -1837,7 +1837,7 @@ static void pl011_unthrottle_rx(struct u - - pl011_write(uap->im, uap, REG_IMSC); - -- spin_unlock_irqrestore(&uap->port.lock, flags); -+ uart_port_unlock_irqrestore(&uap->port, flags); - } - - static int pl011_startup(struct uart_port *port) -@@ -1857,7 +1857,7 @@ static int pl011_startup(struct uart_por - - pl011_write(uap->vendor->ifls, uap, REG_IFLS); - -- spin_lock_irq(&uap->port.lock); -+ uart_port_lock_irq(&uap->port); - - cr = pl011_read(uap, REG_CR); - cr &= UART011_CR_RTS | UART011_CR_DTR; -@@ -1868,7 +1868,7 @@ static int pl011_startup(struct uart_por - - pl011_write(cr, uap, REG_CR); - -- spin_unlock_irq(&uap->port.lock); -+ uart_port_unlock_irq(&uap->port); - - /* - * initialise the old status of the modem signals -@@ -1929,12 +1929,12 @@ static void pl011_disable_uart(struct ua - unsigned int cr; - - uap->port.status &= ~(UPSTAT_AUTOCTS | UPSTAT_AUTORTS); -- spin_lock_irq(&uap->port.lock); -+ uart_port_lock_irq(&uap->port); - cr = pl011_read(uap, REG_CR); - cr &= UART011_CR_RTS | UART011_CR_DTR; - cr |= UART01x_CR_UARTEN | UART011_CR_TXE; - pl011_write(cr, uap, REG_CR); -- spin_unlock_irq(&uap->port.lock); -+ uart_port_unlock_irq(&uap->port); - - /* - * disable break condition and fifos -@@ -1946,14 +1946,14 @@ static void pl011_disable_uart(struct ua - - static void pl011_disable_interrupts(struct uart_amba_port *uap) - { -- spin_lock_irq(&uap->port.lock); -+ uart_port_lock_irq(&uap->port); - - /* mask all interrupts and clear all pending ones */ - uap->im = 0; - pl011_write(uap->im, uap, REG_IMSC); - pl011_write(0xffff, uap, REG_ICR); - -- spin_unlock_irq(&uap->port.lock); -+ uart_port_unlock_irq(&uap->port); - } - - static void pl011_shutdown(struct uart_port *port) -@@ -2098,7 +2098,7 @@ pl011_set_termios(struct uart_port *port - - bits = tty_get_frame_size(termios->c_cflag); - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* - * Update the per-port timeout. -@@ -2172,7 +2172,7 @@ pl011_set_termios(struct uart_port *port - old_cr |= UART011_CR_RXE; - pl011_write(old_cr, uap, REG_CR); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static void -@@ -2190,10 +2190,10 @@ sbsa_uart_set_termios(struct uart_port * - termios->c_cflag &= ~(CMSPAR | CRTSCTS); - termios->c_cflag |= CS8 | CLOCAL; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - uart_update_timeout(port, CS8, uap->fixed_baud); - pl011_setup_status_masks(port, termios); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static const char *pl011_type(struct uart_port *port) -@@ -2332,9 +2332,9 @@ pl011_console_write(struct console *co, - if (uap->port.sysrq) - locked = 0; - else if (oops_in_progress) -- locked = spin_trylock(&uap->port.lock); -+ locked = uart_port_trylock(&uap->port); - else -- spin_lock(&uap->port.lock); -+ uart_port_lock(&uap->port); - - /* - * First save the CR then disable the interrupts -@@ -2360,7 +2360,7 @@ pl011_console_write(struct console *co, - pl011_write(old_cr, uap, REG_CR); - - if (locked) -- spin_unlock(&uap->port.lock); -+ uart_port_unlock(&uap->port); - local_irq_restore(flags); - - clk_disable(uap->clk); diff --git a/debian/patches-rt/0102-printk-Check-printk_deferred_enter-_exit-usage.patch b/debian/patches-rt/0018-printk-Check-printk_deferred_enter-_exit-usage.patch index 2e1d736ea7..55ecab4cd5 100644 --- a/debian/patches-rt/0102-printk-Check-printk_deferred_enter-_exit-usage.patch +++ b/debian/patches-rt/0018-printk-Check-printk_deferred_enter-_exit-usage.patch @@ -1,7 +1,7 @@ From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Date: Fri, 22 Sep 2023 14:58:18 +0000 -Subject: [PATCH 102/134] printk: Check printk_deferred_enter()/_exit() usage -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 18/50] printk: Check printk_deferred_enter()/_exit() usage +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz Add validation that printk_deferred_enter()/_exit() are called in non-migration contexts. diff --git a/debian/patches-rt/0018-serial-apb-Use-port-lock-wrappers.patch b/debian/patches-rt/0018-serial-apb-Use-port-lock-wrappers.patch deleted file mode 100644 index 4dcf54a895..0000000000 --- a/debian/patches-rt/0018-serial-apb-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,76 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:35 +0206 -Subject: [PATCH 018/134] serial: apb: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-19-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/apbuart.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - ---- a/drivers/tty/serial/apbuart.c -+++ b/drivers/tty/serial/apbuart.c -@@ -133,7 +133,7 @@ static irqreturn_t apbuart_int(int irq, - struct uart_port *port = dev_id; - unsigned int status; - -- spin_lock(&port->lock); -+ uart_port_lock(port); - - status = UART_GET_STATUS(port); - if (status & UART_STATUS_DR) -@@ -141,7 +141,7 @@ static irqreturn_t apbuart_int(int irq, - if (status & UART_STATUS_THE) - apbuart_tx_chars(port); - -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - - return IRQ_HANDLED; - } -@@ -228,7 +228,7 @@ static void apbuart_set_termios(struct u - if (termios->c_cflag & CRTSCTS) - cr |= UART_CTRL_FL; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* Update the per-port timeout. */ - uart_update_timeout(port, termios->c_cflag, baud); -@@ -251,7 +251,7 @@ static void apbuart_set_termios(struct u - UART_PUT_SCAL(port, quot); - UART_PUT_CTRL(port, cr); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static const char *apbuart_type(struct uart_port *port) diff --git a/debian/patches-rt/0103-printk-nbcon-Implement-processing-in-port-lock-wrapp.patch b/debian/patches-rt/0019-printk-nbcon-Implement-processing-in-port-lock-wrapp.patch index cee70cb44e..f20a359c21 100644 --- a/debian/patches-rt/0103-printk-nbcon-Implement-processing-in-port-lock-wrapp.patch +++ b/debian/patches-rt/0019-printk-nbcon-Implement-processing-in-port-lock-wrapp.patch @@ -1,8 +1,8 @@ From: John Ogness <john.ogness@linutronix.de> Date: Wed, 13 Sep 2023 08:35:23 +0000 -Subject: [PATCH 103/134] printk: nbcon: Implement processing in port->lock +Subject: [PATCH 19/50] printk: nbcon: Implement processing in port->lock wrapper -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz Currently the port->lock wrappers uart_port_lock(), uart_port_unlock() (and their variants) only lock/unlock @@ -24,7 +24,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> --- a/include/linux/console.h +++ b/include/linux/console.h -@@ -299,6 +299,7 @@ struct nbcon_write_context { +@@ -306,6 +306,7 @@ struct nbcon_write_context { * @nbcon_state: State for nbcon consoles * @nbcon_seq: Sequence number of the next record for nbcon to print * @pbufs: Pointer to nbcon private buffer @@ -32,7 +32,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> */ struct console { char name[16]; -@@ -325,6 +326,7 @@ struct console { +@@ -332,6 +333,7 @@ struct console { atomic_t __private nbcon_state; atomic_long_t __private nbcon_seq; struct printk_buffers *pbufs; diff --git a/debian/patches-rt/0019-serial-ar933x-Use-port-lock-wrappers.patch b/debian/patches-rt/0019-serial-ar933x-Use-port-lock-wrappers.patch deleted file mode 100644 index 61a5d3b1a6..0000000000 --- a/debian/patches-rt/0019-serial-ar933x-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,144 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:36 +0206 -Subject: [PATCH 019/134] serial: ar933x: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-20-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/ar933x_uart.c | 26 +++++++++++++------------- - 1 file changed, 13 insertions(+), 13 deletions(-) - ---- a/drivers/tty/serial/ar933x_uart.c -+++ b/drivers/tty/serial/ar933x_uart.c -@@ -133,9 +133,9 @@ static unsigned int ar933x_uart_tx_empty - unsigned long flags; - unsigned int rdata; - -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - rdata = ar933x_uart_read(up, AR933X_UART_DATA_REG); -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - - return (rdata & AR933X_UART_DATA_TX_CSR) ? 0 : TIOCSER_TEMT; - } -@@ -220,14 +220,14 @@ static void ar933x_uart_break_ctl(struct - container_of(port, struct ar933x_uart_port, port); - unsigned long flags; - -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - if (break_state == -1) - ar933x_uart_rmw_set(up, AR933X_UART_CS_REG, - AR933X_UART_CS_TX_BREAK); - else - ar933x_uart_rmw_clear(up, AR933X_UART_CS_REG, - AR933X_UART_CS_TX_BREAK); -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - } - - /* -@@ -318,7 +318,7 @@ static void ar933x_uart_set_termios(stru - * Ok, we're now changing the port state. Do it with - * interrupts disabled. - */ -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - - /* disable the UART */ - ar933x_uart_rmw_clear(up, AR933X_UART_CS_REG, -@@ -352,7 +352,7 @@ static void ar933x_uart_set_termios(stru - AR933X_UART_CS_IF_MODE_M << AR933X_UART_CS_IF_MODE_S, - AR933X_UART_CS_IF_MODE_DCE << AR933X_UART_CS_IF_MODE_S); - -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - - if (tty_termios_baud_rate(new)) - tty_termios_encode_baud_rate(new, baud, baud); -@@ -450,7 +450,7 @@ static irqreturn_t ar933x_uart_interrupt - if ((status & AR933X_UART_CS_HOST_INT) == 0) - return IRQ_NONE; - -- spin_lock(&up->port.lock); -+ uart_port_lock(&up->port); - - status = ar933x_uart_read(up, AR933X_UART_INT_REG); - status &= ar933x_uart_read(up, AR933X_UART_INT_EN_REG); -@@ -468,7 +468,7 @@ static irqreturn_t ar933x_uart_interrupt - ar933x_uart_tx_chars(up); - } - -- spin_unlock(&up->port.lock); -+ uart_port_unlock(&up->port); - - return IRQ_HANDLED; - } -@@ -485,7 +485,7 @@ static int ar933x_uart_startup(struct ua - if (ret) - return ret; - -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - - /* Enable HOST interrupts */ - ar933x_uart_rmw_set(up, AR933X_UART_CS_REG, -@@ -498,7 +498,7 @@ static int ar933x_uart_startup(struct ua - /* Enable RX interrupts */ - ar933x_uart_start_rx_interrupt(up); - -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - - return 0; - } -@@ -632,9 +632,9 @@ static void ar933x_uart_console_write(st - if (up->port.sysrq) - locked = 0; - else if (oops_in_progress) -- locked = spin_trylock(&up->port.lock); -+ locked = uart_port_trylock(&up->port); - else -- spin_lock(&up->port.lock); -+ uart_port_lock(&up->port); - - /* - * First save the IER then disable the interrupts -@@ -654,7 +654,7 @@ static void ar933x_uart_console_write(st - ar933x_uart_write(up, AR933X_UART_INT_REG, AR933X_UART_INT_ALLINTS); - - if (locked) -- spin_unlock(&up->port.lock); -+ uart_port_unlock(&up->port); - - local_irq_restore(flags); - } diff --git a/debian/patches-rt/0104-printk-nbcon-Add-driver_enter-driver_exit-console-ca.patch b/debian/patches-rt/0020-printk-nbcon-Add-driver_enter-driver_exit-console-ca.patch index d314cb53d4..04dcbc620a 100644 --- a/debian/patches-rt/0104-printk-nbcon-Add-driver_enter-driver_exit-console-ca.patch +++ b/debian/patches-rt/0020-printk-nbcon-Add-driver_enter-driver_exit-console-ca.patch @@ -1,8 +1,8 @@ From: John Ogness <john.ogness@linutronix.de> Date: Fri, 8 Dec 2023 15:54:27 +0000 -Subject: [PATCH 104/134] printk: nbcon: Add driver_enter/driver_exit console +Subject: [PATCH 20/50] printk: nbcon: Add driver_enter/driver_exit console callbacks -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz Console drivers need some mechanism to synchronize between "normal driver activity" and console printing. For uart serial drivers it @@ -22,7 +22,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> --- a/include/linux/console.h +++ b/include/linux/console.h -@@ -296,6 +296,8 @@ struct nbcon_write_context { +@@ -303,6 +303,8 @@ struct nbcon_write_context { * @node: hlist node for the console list * * @write_atomic: Write callback for atomic context @@ -31,7 +31,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> * @nbcon_state: State for nbcon consoles * @nbcon_seq: Sequence number of the next record for nbcon to print * @pbufs: Pointer to nbcon private buffer -@@ -323,6 +325,8 @@ struct console { +@@ -330,6 +332,8 @@ struct console { /* nbcon console specific members */ bool (*write_atomic)(struct console *con, struct nbcon_write_context *wctxt); diff --git a/debian/patches-rt/0020-serial-arc_uart-Use-port-lock-wrappers.patch b/debian/patches-rt/0020-serial-arc_uart-Use-port-lock-wrappers.patch deleted file mode 100644 index bc7be2c4d3..0000000000 --- a/debian/patches-rt/0020-serial-arc_uart-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,97 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:37 +0206 -Subject: [PATCH 020/134] serial: arc_uart: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-21-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/arc_uart.c | 16 ++++++++-------- - 1 file changed, 8 insertions(+), 8 deletions(-) - ---- a/drivers/tty/serial/arc_uart.c -+++ b/drivers/tty/serial/arc_uart.c -@@ -279,9 +279,9 @@ static irqreturn_t arc_serial_isr(int ir - if (status & RXIENB) { - - /* already in ISR, no need of xx_irqsave */ -- spin_lock(&port->lock); -+ uart_port_lock(port); - arc_serial_rx_chars(port, status); -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - } - - if ((status & TXIENB) && (status & TXEMPTY)) { -@@ -291,12 +291,12 @@ static irqreturn_t arc_serial_isr(int ir - */ - UART_TX_IRQ_DISABLE(port); - -- spin_lock(&port->lock); -+ uart_port_lock(port); - - if (!uart_tx_stopped(port)) - arc_serial_tx_chars(port); - -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - } - - return IRQ_HANDLED; -@@ -366,7 +366,7 @@ arc_serial_set_termios(struct uart_port - uartl = hw_val & 0xFF; - uarth = (hw_val >> 8) & 0xFF; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - UART_ALL_IRQ_DISABLE(port); - -@@ -391,7 +391,7 @@ arc_serial_set_termios(struct uart_port - - uart_update_timeout(port, new->c_cflag, baud); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static const char *arc_serial_type(struct uart_port *port) -@@ -521,9 +521,9 @@ static void arc_serial_console_write(str - struct uart_port *port = &arc_uart_ports[co->index].port; - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - uart_console_write(port, s, count, arc_serial_console_putchar); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static struct console arc_console = { diff --git a/debian/patches-rt/0105-printk-Make-console_is_usable-available-to-nbcon.patch b/debian/patches-rt/0021-printk-Make-console_is_usable-available-to-nbcon.patch index a0bf51492a..c3fecf4e31 100644 --- a/debian/patches-rt/0105-printk-Make-console_is_usable-available-to-nbcon.patch +++ b/debian/patches-rt/0021-printk-Make-console_is_usable-available-to-nbcon.patch @@ -1,7 +1,7 @@ From: John Ogness <john.ogness@linutronix.de> Date: Tue, 12 Sep 2023 13:25:41 +0000 -Subject: [PATCH 105/134] printk: Make console_is_usable() available to nbcon -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 21/50] printk: Make console_is_usable() available to nbcon +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz Move console_is_usable() as-is into internal.h so that it can be used by nbcon printing functions as well. @@ -64,7 +64,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> extern struct printk_buffers printk_shared_pbufs; --- a/kernel/printk/printk.c +++ b/kernel/printk/printk.c -@@ -2695,36 +2695,6 @@ int is_console_locked(void) +@@ -2702,36 +2702,6 @@ int is_console_locked(void) } EXPORT_SYMBOL(is_console_locked); diff --git a/debian/patches-rt/0021-serial-atmel-Use-port-lock-wrappers.patch b/debian/patches-rt/0021-serial-atmel-Use-port-lock-wrappers.patch deleted file mode 100644 index ab70954a10..0000000000 --- a/debian/patches-rt/0021-serial-atmel-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,119 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:38 +0206 -Subject: [PATCH 021/134] serial: atmel: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-22-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/atmel_serial.c | 24 ++++++++++++------------ - 1 file changed, 12 insertions(+), 12 deletions(-) - ---- a/drivers/tty/serial/atmel_serial.c -+++ b/drivers/tty/serial/atmel_serial.c -@@ -861,7 +861,7 @@ static void atmel_complete_tx_dma(void * - struct dma_chan *chan = atmel_port->chan_tx; - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - if (chan) - dmaengine_terminate_all(chan); -@@ -893,7 +893,7 @@ static void atmel_complete_tx_dma(void * - atmel_port->tx_done_mask); - } - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static void atmel_release_tx_dma(struct uart_port *port) -@@ -1711,9 +1711,9 @@ static void atmel_tasklet_rx_func(struct - struct uart_port *port = &atmel_port->uart; - - /* The interrupt handler does not take the lock */ -- spin_lock(&port->lock); -+ uart_port_lock(port); - atmel_port->schedule_rx(port); -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - } - - static void atmel_tasklet_tx_func(struct tasklet_struct *t) -@@ -1723,9 +1723,9 @@ static void atmel_tasklet_tx_func(struct - struct uart_port *port = &atmel_port->uart; - - /* The interrupt handler does not take the lock */ -- spin_lock(&port->lock); -+ uart_port_lock(port); - atmel_port->schedule_tx(port); -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - } - - static void atmel_init_property(struct atmel_uart_port *atmel_port, -@@ -2175,7 +2175,7 @@ static void atmel_set_termios(struct uar - } else - mode |= ATMEL_US_PAR_NONE; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - port->read_status_mask = ATMEL_US_OVRE; - if (termios->c_iflag & INPCK) -@@ -2377,22 +2377,22 @@ static void atmel_set_termios(struct uar - else - atmel_disable_ms(port); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static void atmel_set_ldisc(struct uart_port *port, struct ktermios *termios) - { - if (termios->c_line == N_PPS) { - port->flags |= UPF_HARDPPS_CD; -- spin_lock_irq(&port->lock); -+ uart_port_lock_irq(port); - atmel_enable_ms(port); -- spin_unlock_irq(&port->lock); -+ uart_port_unlock_irq(port); - } else { - port->flags &= ~UPF_HARDPPS_CD; - if (!UART_ENABLE_MS(port, termios->c_cflag)) { -- spin_lock_irq(&port->lock); -+ uart_port_lock_irq(port); - atmel_disable_ms(port); -- spin_unlock_irq(&port->lock); -+ uart_port_unlock_irq(port); - } - } - } diff --git a/debian/patches-rt/0106-printk-Let-console_is_usable-handle-nbcon.patch b/debian/patches-rt/0022-printk-Let-console_is_usable-handle-nbcon.patch index 62a776cf2f..3d7364fe69 100644 --- a/debian/patches-rt/0106-printk-Let-console_is_usable-handle-nbcon.patch +++ b/debian/patches-rt/0022-printk-Let-console_is_usable-handle-nbcon.patch @@ -1,7 +1,7 @@ From: John Ogness <john.ogness@linutronix.de> Date: Tue, 12 Sep 2023 13:53:21 +0000 -Subject: [PATCH 106/134] printk: Let console_is_usable() handle nbcon -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 22/50] printk: Let console_is_usable() handle nbcon +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz The nbcon consoles use a different printing callback. For nbcon consoles, check for the write_atomic() callback instead of diff --git a/debian/patches-rt/0022-serial-bcm63xx-uart-Use-port-lock-wrappers.patch b/debian/patches-rt/0022-serial-bcm63xx-uart-Use-port-lock-wrappers.patch deleted file mode 100644 index 90efec4080..0000000000 --- a/debian/patches-rt/0022-serial-bcm63xx-uart-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,128 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:39 +0206 -Subject: [PATCH 022/134] serial: bcm63xx-uart: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Reviewed-by: Florian Fainelli <florian.fainelli@broadcom.com> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-23-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/bcm63xx_uart.c | 22 +++++++++++----------- - 1 file changed, 11 insertions(+), 11 deletions(-) - ---- a/drivers/tty/serial/bcm63xx_uart.c -+++ b/drivers/tty/serial/bcm63xx_uart.c -@@ -201,7 +201,7 @@ static void bcm_uart_break_ctl(struct ua - unsigned long flags; - unsigned int val; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - val = bcm_uart_readl(port, UART_CTL_REG); - if (ctl) -@@ -210,7 +210,7 @@ static void bcm_uart_break_ctl(struct ua - val &= ~UART_CTL_XMITBRK_MASK; - bcm_uart_writel(port, val, UART_CTL_REG); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - /* -@@ -332,7 +332,7 @@ static irqreturn_t bcm_uart_interrupt(in - unsigned int irqstat; - - port = dev_id; -- spin_lock(&port->lock); -+ uart_port_lock(port); - - irqstat = bcm_uart_readl(port, UART_IR_REG); - if (irqstat & UART_RX_INT_STAT) -@@ -353,7 +353,7 @@ static irqreturn_t bcm_uart_interrupt(in - estat & UART_EXTINP_DCD_MASK); - } - -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - return IRQ_HANDLED; - } - -@@ -451,9 +451,9 @@ static void bcm_uart_shutdown(struct uar - { - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - bcm_uart_writel(port, 0, UART_IR_REG); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - bcm_uart_disable(port); - bcm_uart_flush(port); -@@ -470,7 +470,7 @@ static void bcm_uart_set_termios(struct - unsigned long flags; - int tries; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* Drain the hot tub fully before we power it off for the winter. */ - for (tries = 3; !bcm_uart_tx_empty(port) && tries; tries--) -@@ -546,7 +546,7 @@ static void bcm_uart_set_termios(struct - - uart_update_timeout(port, new->c_cflag, baud); - bcm_uart_enable(port); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - /* -@@ -712,9 +712,9 @@ static void bcm_console_write(struct con - /* bcm_uart_interrupt() already took the lock */ - locked = 0; - } else if (oops_in_progress) { -- locked = spin_trylock(&port->lock); -+ locked = uart_port_trylock(port); - } else { -- spin_lock(&port->lock); -+ uart_port_lock(port); - locked = 1; - } - -@@ -725,7 +725,7 @@ static void bcm_console_write(struct con - wait_for_xmitr(port); - - if (locked) -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - local_irq_restore(flags); - } - diff --git a/debian/patches-rt/0107-printk-Add-flags-argument-for-console_is_usable.patch b/debian/patches-rt/0023-printk-Add-flags-argument-for-console_is_usable.patch index e8c4b4a739..12fff9afb9 100644 --- a/debian/patches-rt/0107-printk-Add-flags-argument-for-console_is_usable.patch +++ b/debian/patches-rt/0023-printk-Add-flags-argument-for-console_is_usable.patch @@ -1,7 +1,7 @@ From: John Ogness <john.ogness@linutronix.de> Date: Tue, 12 Sep 2023 13:45:33 +0000 -Subject: [PATCH 107/134] printk: Add @flags argument for console_is_usable() -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 23/50] printk: Add @flags argument for console_is_usable() +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz The caller of console_is_usable() usually needs @console->flags for its own checks. Rather than having console_is_usable() read @@ -44,7 +44,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> --- a/kernel/printk/printk.c +++ b/kernel/printk/printk.c -@@ -2940,9 +2940,10 @@ static bool console_flush_all(bool do_co +@@ -2947,9 +2947,10 @@ static bool console_flush_all(bool do_co cookie = console_srcu_read_lock(); for_each_console_srcu(con) { @@ -56,7 +56,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> continue; any_usable = true; -@@ -3784,7 +3785,7 @@ static bool __pr_flush(struct console *c +@@ -3791,7 +3792,7 @@ static bool __pr_flush(struct console *c * that they make forward progress, so only increment * @diff for usable consoles. */ diff --git a/debian/patches-rt/0023-serial-cpm_uart-Use-port-lock-wrappers.patch b/debian/patches-rt/0023-serial-cpm_uart-Use-port-lock-wrappers.patch deleted file mode 100644 index c3400eac99..0000000000 --- a/debian/patches-rt/0023-serial-cpm_uart-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,70 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:40 +0206 -Subject: [PATCH 023/134] serial: cpm_uart: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-24-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/cpm_uart.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - ---- a/drivers/tty/serial/cpm_uart.c -+++ b/drivers/tty/serial/cpm_uart.c -@@ -569,7 +569,7 @@ static void cpm_uart_set_termios(struct - if ((termios->c_cflag & CREAD) == 0) - port->read_status_mask &= ~BD_SC_EMPTY; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - if (IS_SMC(pinfo)) { - unsigned int bits = tty_get_frame_size(termios->c_cflag); -@@ -609,7 +609,7 @@ static void cpm_uart_set_termios(struct - clk_set_rate(pinfo->clk, baud); - else - cpm_setbrg(pinfo->brg - 1, baud); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static const char *cpm_uart_type(struct uart_port *port) -@@ -1386,9 +1386,9 @@ static void cpm_uart_console_write(struc - cpm_uart_early_write(pinfo, s, count, true); - local_irq_restore(flags); - } else { -- spin_lock_irqsave(&pinfo->port.lock, flags); -+ uart_port_lock_irqsave(&pinfo->port, &flags); - cpm_uart_early_write(pinfo, s, count, true); -- spin_unlock_irqrestore(&pinfo->port.lock, flags); -+ uart_port_unlock_irqrestore(&pinfo->port, flags); - } - } - diff --git a/debian/patches-rt/0108-printk-nbcon-Provide-function-to-flush-using-write_a.patch b/debian/patches-rt/0024-printk-nbcon-Provide-function-to-flush-using-write_a.patch index 14933eef67..9f8a3e3765 100644 --- a/debian/patches-rt/0108-printk-nbcon-Provide-function-to-flush-using-write_a.patch +++ b/debian/patches-rt/0024-printk-nbcon-Provide-function-to-flush-using-write_a.patch @@ -1,8 +1,8 @@ From: Thomas Gleixner <tglx@linutronix.de> Date: Tue, 12 Sep 2023 12:00:08 +0000 -Subject: [PATCH 108/134] printk: nbcon: Provide function to flush using +Subject: [PATCH 24/50] printk: nbcon: Provide function to flush using write_atomic() -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz Provide nbcon_atomic_flush_all() to perform flushing of all registered nbcon consoles using their write_atomic() callback. @@ -175,7 +175,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> * --- a/kernel/printk/printk.c +++ b/kernel/printk/printk.c -@@ -3170,6 +3170,8 @@ void console_flush_on_panic(enum con_flu +@@ -3177,6 +3177,8 @@ void console_flush_on_panic(enum con_flu console_srcu_read_unlock(cookie); } diff --git a/debian/patches-rt/0024-serial-digicolor-Use-port-lock-wrappers.patch b/debian/patches-rt/0024-serial-digicolor-Use-port-lock-wrappers.patch deleted file mode 100644 index 2a3aa5c9a5..0000000000 --- a/debian/patches-rt/0024-serial-digicolor-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,113 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:41 +0206 -Subject: [PATCH 024/134] serial: digicolor: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Acked-by: Baruch Siach <baruch@tkos.co.il> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-25-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/digicolor-usart.c | 18 +++++++++--------- - 1 file changed, 9 insertions(+), 9 deletions(-) - ---- a/drivers/tty/serial/digicolor-usart.c -+++ b/drivers/tty/serial/digicolor-usart.c -@@ -133,7 +133,7 @@ static void digicolor_uart_rx(struct uar - { - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - while (1) { - u8 status, ch, ch_flag; -@@ -172,7 +172,7 @@ static void digicolor_uart_rx(struct uar - ch_flag); - } - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - tty_flip_buffer_push(&port->state->port); - } -@@ -185,7 +185,7 @@ static void digicolor_uart_tx(struct uar - if (digicolor_uart_tx_full(port)) - return; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - if (port->x_char) { - writeb_relaxed(port->x_char, port->membase + UA_EMI_REC); -@@ -211,7 +211,7 @@ static void digicolor_uart_tx(struct uar - uart_write_wakeup(port); - - out: -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static irqreturn_t digicolor_uart_int(int irq, void *dev_id) -@@ -333,7 +333,7 @@ static void digicolor_uart_set_termios(s - port->ignore_status_mask |= UA_STATUS_OVERRUN_ERR - | UA_STATUS_PARITY_ERR | UA_STATUS_FRAME_ERR; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - uart_update_timeout(port, termios->c_cflag, baud); - -@@ -341,7 +341,7 @@ static void digicolor_uart_set_termios(s - writeb_relaxed(divisor & 0xff, port->membase + UA_HBAUD_LO); - writeb_relaxed(divisor >> 8, port->membase + UA_HBAUD_HI); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static const char *digicolor_uart_type(struct uart_port *port) -@@ -398,14 +398,14 @@ static void digicolor_uart_console_write - int locked = 1; - - if (oops_in_progress) -- locked = spin_trylock_irqsave(&port->lock, flags); -+ locked = uart_port_trylock_irqsave(port, &flags); - else -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - uart_console_write(port, c, n, digicolor_uart_console_putchar); - - if (locked) -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - /* Wait for transmitter to become empty */ - do { diff --git a/debian/patches-rt/0109-printk-Track-registered-boot-consoles.patch b/debian/patches-rt/0025-printk-Track-registered-boot-consoles.patch index 51b866f20f..5c35ea115c 100644 --- a/debian/patches-rt/0109-printk-Track-registered-boot-consoles.patch +++ b/debian/patches-rt/0025-printk-Track-registered-boot-consoles.patch @@ -1,7 +1,7 @@ From: John Ogness <john.ogness@linutronix.de> Date: Tue, 24 Oct 2023 14:13:14 +0000 -Subject: [PATCH 109/134] printk: Track registered boot consoles -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 25/50] printk: Track registered boot consoles +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz Unfortunately it is not known if a boot console and a regular (legacy or nbcon) console use the same hardware. For this reason @@ -39,7 +39,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> #ifdef CONFIG_PRINTK DECLARE_WAIT_QUEUE_HEAD(log_wait); /* All 3 protected by @syslog_lock. */ -@@ -3500,6 +3508,9 @@ void register_console(struct console *ne +@@ -3507,6 +3515,9 @@ void register_console(struct console *ne if (newcon->flags & CON_NBCON) nbcon_init(newcon); @@ -49,7 +49,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> /* * Put this console in the list - keep the * preferred driver at the head of the list. -@@ -3552,6 +3563,8 @@ EXPORT_SYMBOL(register_console); +@@ -3559,6 +3570,8 @@ EXPORT_SYMBOL(register_console); /* Must be called under console_list_lock(). */ static int unregister_console_locked(struct console *console) { @@ -58,7 +58,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> int res; lockdep_assert_console_list_lock_held(); -@@ -3599,6 +3612,17 @@ static int unregister_console_locked(str +@@ -3606,6 +3619,17 @@ static int unregister_console_locked(str if (console->exit) res = console->exit(console); diff --git a/debian/patches-rt/0025-serial-dz-Use-port-lock-wrappers.patch b/debian/patches-rt/0025-serial-dz-Use-port-lock-wrappers.patch deleted file mode 100644 index 7b3f11604c..0000000000 --- a/debian/patches-rt/0025-serial-dz-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,161 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:42 +0206 -Subject: [PATCH 025/134] serial: dz: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-26-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/dz.c | 32 ++++++++++++++++---------------- - 1 file changed, 16 insertions(+), 16 deletions(-) - ---- a/drivers/tty/serial/dz.c -+++ b/drivers/tty/serial/dz.c -@@ -268,9 +268,9 @@ static inline void dz_transmit_chars(str - } - /* If nothing to do or stopped or hardware stopped. */ - if (uart_circ_empty(xmit) || uart_tx_stopped(&dport->port)) { -- spin_lock(&dport->port.lock); -+ uart_port_lock(&dport->port); - dz_stop_tx(&dport->port); -- spin_unlock(&dport->port.lock); -+ uart_port_unlock(&dport->port); - return; - } - -@@ -287,9 +287,9 @@ static inline void dz_transmit_chars(str - - /* Are we are done. */ - if (uart_circ_empty(xmit)) { -- spin_lock(&dport->port.lock); -+ uart_port_lock(&dport->port); - dz_stop_tx(&dport->port); -- spin_unlock(&dport->port.lock); -+ uart_port_unlock(&dport->port); - } - } - -@@ -415,14 +415,14 @@ static int dz_startup(struct uart_port * - return ret; - } - -- spin_lock_irqsave(&dport->port.lock, flags); -+ uart_port_lock_irqsave(&dport->port, &flags); - - /* Enable interrupts. */ - tmp = dz_in(dport, DZ_CSR); - tmp |= DZ_RIE | DZ_TIE; - dz_out(dport, DZ_CSR, tmp); - -- spin_unlock_irqrestore(&dport->port.lock, flags); -+ uart_port_unlock_irqrestore(&dport->port, flags); - - return 0; - } -@@ -443,9 +443,9 @@ static void dz_shutdown(struct uart_port - int irq_guard; - u16 tmp; - -- spin_lock_irqsave(&dport->port.lock, flags); -+ uart_port_lock_irqsave(&dport->port, &flags); - dz_stop_tx(&dport->port); -- spin_unlock_irqrestore(&dport->port.lock, flags); -+ uart_port_unlock_irqrestore(&dport->port, flags); - - irq_guard = atomic_add_return(-1, &mux->irq_guard); - if (!irq_guard) { -@@ -491,14 +491,14 @@ static void dz_break_ctl(struct uart_por - unsigned long flags; - unsigned short tmp, mask = 1 << dport->port.line; - -- spin_lock_irqsave(&uport->lock, flags); -+ uart_port_lock_irqsave(uport, &flags); - tmp = dz_in(dport, DZ_TCR); - if (break_state) - tmp |= mask; - else - tmp &= ~mask; - dz_out(dport, DZ_TCR, tmp); -- spin_unlock_irqrestore(&uport->lock, flags); -+ uart_port_unlock_irqrestore(uport, flags); - } - - static int dz_encode_baud_rate(unsigned int baud) -@@ -608,7 +608,7 @@ static void dz_set_termios(struct uart_p - if (termios->c_cflag & CREAD) - cflag |= DZ_RXENAB; - -- spin_lock_irqsave(&dport->port.lock, flags); -+ uart_port_lock_irqsave(&dport->port, &flags); - - uart_update_timeout(uport, termios->c_cflag, baud); - -@@ -631,7 +631,7 @@ static void dz_set_termios(struct uart_p - if (termios->c_iflag & IGNBRK) - dport->port.ignore_status_mask |= DZ_BREAK; - -- spin_unlock_irqrestore(&dport->port.lock, flags); -+ uart_port_unlock_irqrestore(&dport->port, flags); - } - - /* -@@ -645,12 +645,12 @@ static void dz_pm(struct uart_port *upor - struct dz_port *dport = to_dport(uport); - unsigned long flags; - -- spin_lock_irqsave(&dport->port.lock, flags); -+ uart_port_lock_irqsave(&dport->port, &flags); - if (state < 3) - dz_start_tx(&dport->port); - else - dz_stop_tx(&dport->port); -- spin_unlock_irqrestore(&dport->port.lock, flags); -+ uart_port_unlock_irqrestore(&dport->port, flags); - } - - -@@ -811,7 +811,7 @@ static void dz_console_putchar(struct ua - unsigned short csr, tcr, trdy, mask; - int loops = 10000; - -- spin_lock_irqsave(&dport->port.lock, flags); -+ uart_port_lock_irqsave(&dport->port, &flags); - csr = dz_in(dport, DZ_CSR); - dz_out(dport, DZ_CSR, csr & ~DZ_TIE); - tcr = dz_in(dport, DZ_TCR); -@@ -819,7 +819,7 @@ static void dz_console_putchar(struct ua - mask = tcr; - dz_out(dport, DZ_TCR, mask); - iob(); -- spin_unlock_irqrestore(&dport->port.lock, flags); -+ uart_port_unlock_irqrestore(&dport->port, flags); - - do { - trdy = dz_in(dport, DZ_CSR); diff --git a/debian/patches-rt/0110-printk-nbcon-Use-nbcon-consoles-in-console_flush_all.patch b/debian/patches-rt/0026-printk-nbcon-Use-nbcon-consoles-in-console_flush_all.patch index b46ecd7655..512310071b 100644 --- a/debian/patches-rt/0110-printk-nbcon-Use-nbcon-consoles-in-console_flush_all.patch +++ b/debian/patches-rt/0026-printk-nbcon-Use-nbcon-consoles-in-console_flush_all.patch @@ -1,8 +1,8 @@ From: John Ogness <john.ogness@linutronix.de> Date: Tue, 19 Sep 2023 14:33:27 +0000 -Subject: [PATCH 110/134] printk: nbcon: Use nbcon consoles in +Subject: [PATCH 26/50] printk: nbcon: Use nbcon consoles in console_flush_all() -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz Allow nbcon consoles to print messages in the printk() caller context by integrating them into console_flush_all(). The @@ -118,7 +118,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> * @stop_seq: Flush up until this record --- a/kernel/printk/printk.c +++ b/kernel/printk/printk.c -@@ -1872,7 +1872,7 @@ static bool console_waiter; +@@ -1871,7 +1871,7 @@ static bool console_waiter; * there may be a waiter spinning (like a spinlock). Also it must be * ready to hand over the lock at the end of the section. */ @@ -127,7 +127,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> { /* * Do not use spinning in panic(). The panic CPU wants to keep the lock. -@@ -1911,7 +1911,7 @@ static void console_lock_spinning_enable +@@ -1910,7 +1910,7 @@ static void console_lock_spinning_enable * * Return: 1 if the lock rights were passed, 0 otherwise. */ @@ -136,7 +136,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> { int waiter; -@@ -2949,13 +2949,22 @@ static bool console_flush_all(bool do_co +@@ -2956,13 +2956,22 @@ static bool console_flush_all(bool do_co cookie = console_srcu_read_lock(); for_each_console_srcu(con) { short flags = console_srcu_read_flags(con); @@ -160,7 +160,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> /* * If a handover has occurred, the SRCU read lock -@@ -2965,8 +2974,8 @@ static bool console_flush_all(bool do_co +@@ -2972,8 +2981,8 @@ static bool console_flush_all(bool do_co return false; /* Track the next of the highest seq flushed. */ diff --git a/debian/patches-rt/0026-serial-linflexuart-Use-port-lock-wrappers.patch b/debian/patches-rt/0026-serial-linflexuart-Use-port-lock-wrappers.patch deleted file mode 100644 index e2a3628ae5..0000000000 --- a/debian/patches-rt/0026-serial-linflexuart-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,143 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:43 +0206 -Subject: [PATCH 026/134] serial: linflexuart: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-27-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/fsl_linflexuart.c | 26 +++++++++++++------------- - 1 file changed, 13 insertions(+), 13 deletions(-) - ---- a/drivers/tty/serial/fsl_linflexuart.c -+++ b/drivers/tty/serial/fsl_linflexuart.c -@@ -203,7 +203,7 @@ static irqreturn_t linflex_txint(int irq - struct circ_buf *xmit = &sport->state->xmit; - unsigned long flags; - -- spin_lock_irqsave(&sport->lock, flags); -+ uart_port_lock_irqsave(sport, &flags); - - if (sport->x_char) { - linflex_put_char(sport, sport->x_char); -@@ -217,7 +217,7 @@ static irqreturn_t linflex_txint(int irq - - linflex_transmit_buffer(sport); - out: -- spin_unlock_irqrestore(&sport->lock, flags); -+ uart_port_unlock_irqrestore(sport, flags); - return IRQ_HANDLED; - } - -@@ -230,7 +230,7 @@ static irqreturn_t linflex_rxint(int irq - unsigned char rx; - bool brk; - -- spin_lock_irqsave(&sport->lock, flags); -+ uart_port_lock_irqsave(sport, &flags); - - status = readl(sport->membase + UARTSR); - while (status & LINFLEXD_UARTSR_RMB) { -@@ -266,7 +266,7 @@ static irqreturn_t linflex_rxint(int irq - } - } - -- spin_unlock_irqrestore(&sport->lock, flags); -+ uart_port_unlock_irqrestore(sport, flags); - - tty_flip_buffer_push(port); - -@@ -369,11 +369,11 @@ static int linflex_startup(struct uart_p - int ret = 0; - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - linflex_setup_watermark(port); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - ret = devm_request_irq(port->dev, port->irq, linflex_int, 0, - DRIVER_NAME, port); -@@ -386,14 +386,14 @@ static void linflex_shutdown(struct uart - unsigned long ier; - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* disable interrupts */ - ier = readl(port->membase + LINIER); - ier &= ~(LINFLEXD_LINIER_DRIE | LINFLEXD_LINIER_DTIE); - writel(ier, port->membase + LINIER); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - devm_free_irq(port->dev, port->irq, port); - } -@@ -474,7 +474,7 @@ linflex_set_termios(struct uart_port *po - cr &= ~LINFLEXD_UARTCR_PCE; - } - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - port->read_status_mask = 0; - -@@ -507,7 +507,7 @@ linflex_set_termios(struct uart_port *po - - writel(cr1, port->membase + LINCR1); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static const char *linflex_type(struct uart_port *port) -@@ -646,14 +646,14 @@ linflex_console_write(struct console *co - if (sport->sysrq) - locked = 0; - else if (oops_in_progress) -- locked = spin_trylock_irqsave(&sport->lock, flags); -+ locked = uart_port_trylock_irqsave(sport, &flags); - else -- spin_lock_irqsave(&sport->lock, flags); -+ uart_port_lock_irqsave(sport, &flags); - - linflex_string_write(sport, s, count); - - if (locked) -- spin_unlock_irqrestore(&sport->lock, flags); -+ uart_port_unlock_irqrestore(sport, flags); - } - - /* diff --git a/debian/patches-rt/0111-printk-nbcon-Assign-priority-based-on-CPU-state.patch b/debian/patches-rt/0027-printk-nbcon-Assign-priority-based-on-CPU-state.patch index 7e826c3e49..0c7282fce7 100644 --- a/debian/patches-rt/0111-printk-nbcon-Assign-priority-based-on-CPU-state.patch +++ b/debian/patches-rt/0027-printk-nbcon-Assign-priority-based-on-CPU-state.patch @@ -1,7 +1,7 @@ From: John Ogness <john.ogness@linutronix.de> Date: Thu, 14 Dec 2023 14:38:42 +0000 -Subject: [PATCH 111/134] printk: nbcon: Assign priority based on CPU state -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 27/50] printk: nbcon: Assign priority based on CPU state +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz Use the current state of the CPU to determine which priority to assign to the printing context. diff --git a/debian/patches-rt/0027-serial-fsl_lpuart-Use-port-lock-wrappers.patch b/debian/patches-rt/0027-serial-fsl_lpuart-Use-port-lock-wrappers.patch deleted file mode 100644 index f1475a5ffd..0000000000 --- a/debian/patches-rt/0027-serial-fsl_lpuart-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,389 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:44 +0206 -Subject: [PATCH 027/134] serial: fsl_lpuart: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-28-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/fsl_lpuart.c | 88 ++++++++++++++++++++-------------------- - 1 file changed, 44 insertions(+), 44 deletions(-) - ---- a/drivers/tty/serial/fsl_lpuart.c -+++ b/drivers/tty/serial/fsl_lpuart.c -@@ -532,9 +532,9 @@ static void lpuart_dma_tx_complete(void - struct dma_chan *chan = sport->dma_tx_chan; - unsigned long flags; - -- spin_lock_irqsave(&sport->port.lock, flags); -+ uart_port_lock_irqsave(&sport->port, &flags); - if (!sport->dma_tx_in_progress) { -- spin_unlock_irqrestore(&sport->port.lock, flags); -+ uart_port_unlock_irqrestore(&sport->port, flags); - return; - } - -@@ -543,7 +543,7 @@ static void lpuart_dma_tx_complete(void - - uart_xmit_advance(&sport->port, sport->dma_tx_bytes); - sport->dma_tx_in_progress = false; -- spin_unlock_irqrestore(&sport->port.lock, flags); -+ uart_port_unlock_irqrestore(&sport->port, flags); - - if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS) - uart_write_wakeup(&sport->port); -@@ -553,12 +553,12 @@ static void lpuart_dma_tx_complete(void - return; - } - -- spin_lock_irqsave(&sport->port.lock, flags); -+ uart_port_lock_irqsave(&sport->port, &flags); - - if (!lpuart_stopped_or_empty(&sport->port)) - lpuart_dma_tx(sport); - -- spin_unlock_irqrestore(&sport->port.lock, flags); -+ uart_port_unlock_irqrestore(&sport->port, flags); - } - - static dma_addr_t lpuart_dma_datareg_addr(struct lpuart_port *sport) -@@ -651,7 +651,7 @@ static int lpuart_poll_init(struct uart_ - - sport->port.fifosize = 0; - -- spin_lock_irqsave(&sport->port.lock, flags); -+ uart_port_lock_irqsave(&sport->port, &flags); - /* Disable Rx & Tx */ - writeb(0, sport->port.membase + UARTCR2); - -@@ -675,7 +675,7 @@ static int lpuart_poll_init(struct uart_ - - /* Enable Rx and Tx */ - writeb(UARTCR2_RE | UARTCR2_TE, sport->port.membase + UARTCR2); -- spin_unlock_irqrestore(&sport->port.lock, flags); -+ uart_port_unlock_irqrestore(&sport->port, flags); - - return 0; - } -@@ -703,7 +703,7 @@ static int lpuart32_poll_init(struct uar - - sport->port.fifosize = 0; - -- spin_lock_irqsave(&sport->port.lock, flags); -+ uart_port_lock_irqsave(&sport->port, &flags); - - /* Disable Rx & Tx */ - lpuart32_write(&sport->port, 0, UARTCTRL); -@@ -724,7 +724,7 @@ static int lpuart32_poll_init(struct uar - - /* Enable Rx and Tx */ - lpuart32_write(&sport->port, UARTCTRL_RE | UARTCTRL_TE, UARTCTRL); -- spin_unlock_irqrestore(&sport->port.lock, flags); -+ uart_port_unlock_irqrestore(&sport->port, flags); - - return 0; - } -@@ -879,9 +879,9 @@ static unsigned int lpuart32_tx_empty(st - - static void lpuart_txint(struct lpuart_port *sport) - { -- spin_lock(&sport->port.lock); -+ uart_port_lock(&sport->port); - lpuart_transmit_buffer(sport); -- spin_unlock(&sport->port.lock); -+ uart_port_unlock(&sport->port); - } - - static void lpuart_rxint(struct lpuart_port *sport) -@@ -890,7 +890,7 @@ static void lpuart_rxint(struct lpuart_p - struct tty_port *port = &sport->port.state->port; - unsigned char rx, sr; - -- spin_lock(&sport->port.lock); -+ uart_port_lock(&sport->port); - - while (!(readb(sport->port.membase + UARTSFIFO) & UARTSFIFO_RXEMPT)) { - flg = TTY_NORMAL; -@@ -956,9 +956,9 @@ static void lpuart_rxint(struct lpuart_p - - static void lpuart32_txint(struct lpuart_port *sport) - { -- spin_lock(&sport->port.lock); -+ uart_port_lock(&sport->port); - lpuart32_transmit_buffer(sport); -- spin_unlock(&sport->port.lock); -+ uart_port_unlock(&sport->port); - } - - static void lpuart32_rxint(struct lpuart_port *sport) -@@ -968,7 +968,7 @@ static void lpuart32_rxint(struct lpuart - unsigned long rx, sr; - bool is_break; - -- spin_lock(&sport->port.lock); -+ uart_port_lock(&sport->port); - - while (!(lpuart32_read(&sport->port, UARTFIFO) & UARTFIFO_RXEMPT)) { - flg = TTY_NORMAL; -@@ -1170,12 +1170,12 @@ static void lpuart_copy_rx_to_tty(struct - - async_tx_ack(sport->dma_rx_desc); - -- spin_lock_irqsave(&sport->port.lock, flags); -+ uart_port_lock_irqsave(&sport->port, &flags); - - dmastat = dmaengine_tx_status(chan, sport->dma_rx_cookie, &state); - if (dmastat == DMA_ERROR) { - dev_err(sport->port.dev, "Rx DMA transfer failed!\n"); -- spin_unlock_irqrestore(&sport->port.lock, flags); -+ uart_port_unlock_irqrestore(&sport->port, flags); - return; - } - -@@ -1244,7 +1244,7 @@ static void lpuart_copy_rx_to_tty(struct - dma_sync_sg_for_device(chan->device->dev, &sport->rx_sgl, 1, - DMA_FROM_DEVICE); - -- spin_unlock_irqrestore(&sport->port.lock, flags); -+ uart_port_unlock_irqrestore(&sport->port, flags); - - tty_flip_buffer_push(port); - if (!sport->dma_idle_int) -@@ -1335,9 +1335,9 @@ static void lpuart_timer_func(struct tim - mod_timer(&sport->lpuart_timer, - jiffies + sport->dma_rx_timeout); - -- if (spin_trylock_irqsave(&sport->port.lock, flags)) { -+ if (uart_port_trylock_irqsave(&sport->port, &flags)) { - sport->last_residue = state.residue; -- spin_unlock_irqrestore(&sport->port.lock, flags); -+ uart_port_unlock_irqrestore(&sport->port, flags); - } - } - -@@ -1802,14 +1802,14 @@ static void lpuart_hw_setup(struct lpuar - { - unsigned long flags; - -- spin_lock_irqsave(&sport->port.lock, flags); -+ uart_port_lock_irqsave(&sport->port, &flags); - - lpuart_setup_watermark_enable(sport); - - lpuart_rx_dma_startup(sport); - lpuart_tx_dma_startup(sport); - -- spin_unlock_irqrestore(&sport->port.lock, flags); -+ uart_port_unlock_irqrestore(&sport->port, flags); - } - - static int lpuart_startup(struct uart_port *port) -@@ -1859,7 +1859,7 @@ static void lpuart32_hw_setup(struct lpu - { - unsigned long flags; - -- spin_lock_irqsave(&sport->port.lock, flags); -+ uart_port_lock_irqsave(&sport->port, &flags); - - lpuart32_hw_disable(sport); - -@@ -1869,7 +1869,7 @@ static void lpuart32_hw_setup(struct lpu - lpuart32_setup_watermark_enable(sport); - lpuart32_configure(sport); - -- spin_unlock_irqrestore(&sport->port.lock, flags); -+ uart_port_unlock_irqrestore(&sport->port, flags); - } - - static int lpuart32_startup(struct uart_port *port) -@@ -1932,7 +1932,7 @@ static void lpuart_shutdown(struct uart_ - unsigned char temp; - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* disable Rx/Tx and interrupts */ - temp = readb(port->membase + UARTCR2); -@@ -1940,7 +1940,7 @@ static void lpuart_shutdown(struct uart_ - UARTCR2_TIE | UARTCR2_TCIE | UARTCR2_RIE); - writeb(temp, port->membase + UARTCR2); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - lpuart_dma_shutdown(sport); - } -@@ -1952,7 +1952,7 @@ static void lpuart32_shutdown(struct uar - unsigned long temp; - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* clear status */ - temp = lpuart32_read(&sport->port, UARTSTAT); -@@ -1969,7 +1969,7 @@ static void lpuart32_shutdown(struct uar - UARTCTRL_TIE | UARTCTRL_TCIE | UARTCTRL_RIE | UARTCTRL_SBK); - lpuart32_write(port, temp, UARTCTRL); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - lpuart_dma_shutdown(sport); - } -@@ -2069,7 +2069,7 @@ lpuart_set_termios(struct uart_port *por - if (old && sport->lpuart_dma_rx_use) - lpuart_dma_rx_free(&sport->port); - -- spin_lock_irqsave(&sport->port.lock, flags); -+ uart_port_lock_irqsave(&sport->port, &flags); - - sport->port.read_status_mask = 0; - if (termios->c_iflag & INPCK) -@@ -2124,7 +2124,7 @@ lpuart_set_termios(struct uart_port *por - sport->lpuart_dma_rx_use = false; - } - -- spin_unlock_irqrestore(&sport->port.lock, flags); -+ uart_port_unlock_irqrestore(&sport->port, flags); - } - - static void __lpuart32_serial_setbrg(struct uart_port *port, -@@ -2304,7 +2304,7 @@ lpuart32_set_termios(struct uart_port *p - if (old && sport->lpuart_dma_rx_use) - lpuart_dma_rx_free(&sport->port); - -- spin_lock_irqsave(&sport->port.lock, flags); -+ uart_port_lock_irqsave(&sport->port, &flags); - - sport->port.read_status_mask = 0; - if (termios->c_iflag & INPCK) -@@ -2359,7 +2359,7 @@ lpuart32_set_termios(struct uart_port *p - sport->lpuart_dma_rx_use = false; - } - -- spin_unlock_irqrestore(&sport->port.lock, flags); -+ uart_port_unlock_irqrestore(&sport->port, flags); - } - - static const char *lpuart_type(struct uart_port *port) -@@ -2477,9 +2477,9 @@ lpuart_console_write(struct console *co, - int locked = 1; - - if (oops_in_progress) -- locked = spin_trylock_irqsave(&sport->port.lock, flags); -+ locked = uart_port_trylock_irqsave(&sport->port, &flags); - else -- spin_lock_irqsave(&sport->port.lock, flags); -+ uart_port_lock_irqsave(&sport->port, &flags); - - /* first save CR2 and then disable interrupts */ - cr2 = old_cr2 = readb(sport->port.membase + UARTCR2); -@@ -2495,7 +2495,7 @@ lpuart_console_write(struct console *co, - writeb(old_cr2, sport->port.membase + UARTCR2); - - if (locked) -- spin_unlock_irqrestore(&sport->port.lock, flags); -+ uart_port_unlock_irqrestore(&sport->port, flags); - } - - static void -@@ -2507,9 +2507,9 @@ lpuart32_console_write(struct console *c - int locked = 1; - - if (oops_in_progress) -- locked = spin_trylock_irqsave(&sport->port.lock, flags); -+ locked = uart_port_trylock_irqsave(&sport->port, &flags); - else -- spin_lock_irqsave(&sport->port.lock, flags); -+ uart_port_lock_irqsave(&sport->port, &flags); - - /* first save CR2 and then disable interrupts */ - cr = old_cr = lpuart32_read(&sport->port, UARTCTRL); -@@ -2525,7 +2525,7 @@ lpuart32_console_write(struct console *c - lpuart32_write(&sport->port, old_cr, UARTCTRL); - - if (locked) -- spin_unlock_irqrestore(&sport->port.lock, flags); -+ uart_port_unlock_irqrestore(&sport->port, flags); - } - - /* -@@ -3089,7 +3089,7 @@ static int lpuart_suspend(struct device - uart_suspend_port(&lpuart_reg, &sport->port); - - if (lpuart_uport_is_active(sport)) { -- spin_lock_irqsave(&sport->port.lock, flags); -+ uart_port_lock_irqsave(&sport->port, &flags); - if (lpuart_is_32(sport)) { - /* disable Rx/Tx and interrupts */ - temp = lpuart32_read(&sport->port, UARTCTRL); -@@ -3101,7 +3101,7 @@ static int lpuart_suspend(struct device - temp &= ~(UARTCR2_TE | UARTCR2_TIE | UARTCR2_TCIE); - writeb(temp, sport->port.membase + UARTCR2); - } -- spin_unlock_irqrestore(&sport->port.lock, flags); -+ uart_port_unlock_irqrestore(&sport->port, flags); - - if (sport->lpuart_dma_rx_use) { - /* -@@ -3114,7 +3114,7 @@ static int lpuart_suspend(struct device - lpuart_dma_rx_free(&sport->port); - - /* Disable Rx DMA to use UART port as wakeup source */ -- spin_lock_irqsave(&sport->port.lock, flags); -+ uart_port_lock_irqsave(&sport->port, &flags); - if (lpuart_is_32(sport)) { - temp = lpuart32_read(&sport->port, UARTBAUD); - lpuart32_write(&sport->port, temp & ~UARTBAUD_RDMAE, -@@ -3123,11 +3123,11 @@ static int lpuart_suspend(struct device - writeb(readb(sport->port.membase + UARTCR5) & - ~UARTCR5_RDMAS, sport->port.membase + UARTCR5); - } -- spin_unlock_irqrestore(&sport->port.lock, flags); -+ uart_port_unlock_irqrestore(&sport->port, flags); - } - - if (sport->lpuart_dma_tx_use) { -- spin_lock_irqsave(&sport->port.lock, flags); -+ uart_port_lock_irqsave(&sport->port, &flags); - if (lpuart_is_32(sport)) { - temp = lpuart32_read(&sport->port, UARTBAUD); - temp &= ~UARTBAUD_TDMAE; -@@ -3137,7 +3137,7 @@ static int lpuart_suspend(struct device - temp &= ~UARTCR5_TDMAS; - writeb(temp, sport->port.membase + UARTCR5); - } -- spin_unlock_irqrestore(&sport->port.lock, flags); -+ uart_port_unlock_irqrestore(&sport->port, flags); - sport->dma_tx_in_progress = false; - dmaengine_terminate_sync(sport->dma_tx_chan); - } diff --git a/debian/patches-rt/0112-printk-nbcon-Add-unsafe-flushing-on-panic.patch b/debian/patches-rt/0028-printk-nbcon-Add-unsafe-flushing-on-panic.patch index cc689de08e..2bb67b473b 100644 --- a/debian/patches-rt/0112-printk-nbcon-Add-unsafe-flushing-on-panic.patch +++ b/debian/patches-rt/0028-printk-nbcon-Add-unsafe-flushing-on-panic.patch @@ -1,7 +1,7 @@ From: John Ogness <john.ogness@linutronix.de> Date: Fri, 20 Oct 2023 10:03:42 +0000 -Subject: [PATCH 112/134] printk: nbcon: Add unsafe flushing on panic -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 28/50] printk: nbcon: Add unsafe flushing on panic +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz Add nbcon_atomic_flush_unsafe() to flush all nbcon consoles using the write_atomic() callback and allowing unsafe hostile @@ -44,7 +44,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> #ifdef CONFIG_SMP --- a/kernel/panic.c +++ b/kernel/panic.c -@@ -449,6 +449,7 @@ void panic(const char *fmt, ...) +@@ -453,6 +453,7 @@ void panic(const char *fmt, ...) * Explicitly flush the kernel log buffer one last time. */ console_flush_on_panic(CONSOLE_FLUSH_PENDING); diff --git a/debian/patches-rt/0028-serial-icom-Use-port-lock-wrappers.patch b/debian/patches-rt/0028-serial-icom-Use-port-lock-wrappers.patch deleted file mode 100644 index da765879ce..0000000000 --- a/debian/patches-rt/0028-serial-icom-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,151 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:45 +0206 -Subject: [PATCH 028/134] serial: icom: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-29-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/icom.c | 26 +++++++++++++------------- - 1 file changed, 13 insertions(+), 13 deletions(-) - ---- a/drivers/tty/serial/icom.c -+++ b/drivers/tty/serial/icom.c -@@ -929,7 +929,7 @@ static inline void check_modem_status(st - char delta_status; - unsigned char status; - -- spin_lock(&icom_port->uart_port.lock); -+ uart_port_lock(&icom_port->uart_port); - - /*modem input register */ - status = readb(&icom_port->dram->isr); -@@ -951,7 +951,7 @@ static inline void check_modem_status(st - port.delta_msr_wait); - old_status = status; - } -- spin_unlock(&icom_port->uart_port.lock); -+ uart_port_unlock(&icom_port->uart_port); - } - - static void xmit_interrupt(u16 port_int_reg, struct icom_port *icom_port) -@@ -1093,7 +1093,7 @@ static void process_interrupt(u16 port_i - struct icom_port *icom_port) - { - -- spin_lock(&icom_port->uart_port.lock); -+ uart_port_lock(&icom_port->uart_port); - trace(icom_port, "INTERRUPT", port_int_reg); - - if (port_int_reg & (INT_XMIT_COMPLETED | INT_XMIT_DISABLED)) -@@ -1102,7 +1102,7 @@ static void process_interrupt(u16 port_i - if (port_int_reg & INT_RCV_COMPLETED) - recv_interrupt(port_int_reg, icom_port); - -- spin_unlock(&icom_port->uart_port.lock); -+ uart_port_unlock(&icom_port->uart_port); - } - - static irqreturn_t icom_interrupt(int irq, void *dev_id) -@@ -1186,14 +1186,14 @@ static unsigned int icom_tx_empty(struct - int ret; - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - if (le16_to_cpu(icom_port->statStg->xmit[0].flags) & - SA_FLAGS_READY_TO_XMIT) - ret = TIOCSER_TEMT; - else - ret = 0; - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - return ret; - } - -@@ -1276,7 +1276,7 @@ static void icom_send_xchar(struct uart_ - - /* wait .1 sec to send char */ - for (index = 0; index < 10; index++) { -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - xdata = readb(&icom_port->dram->xchar); - if (xdata == 0x00) { - trace(icom_port, "QUICK_WRITE", 0); -@@ -1284,10 +1284,10 @@ static void icom_send_xchar(struct uart_ - - /* flush write operation */ - xdata = readb(&icom_port->dram->xchar); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - break; - } -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - msleep(10); - } - } -@@ -1307,7 +1307,7 @@ static void icom_break(struct uart_port - unsigned char cmdReg; - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - trace(icom_port, "BREAK", 0); - cmdReg = readb(&icom_port->dram->CmdReg); - if (break_state == -1) { -@@ -1315,7 +1315,7 @@ static void icom_break(struct uart_port - } else { - writeb(cmdReg & ~CMD_SND_BREAK, &icom_port->dram->CmdReg); - } -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static int icom_open(struct uart_port *port) -@@ -1365,7 +1365,7 @@ static void icom_set_termios(struct uart - unsigned long offset; - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - trace(icom_port, "CHANGE_SPEED", 0); - - cflag = termios->c_cflag; -@@ -1516,7 +1516,7 @@ static void icom_set_termios(struct uart - trace(icom_port, "XR_ENAB", 0); - writeb(CMD_XMIT_RCV_ENABLE, &icom_port->dram->CmdReg); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static const char *icom_type(struct uart_port *port) diff --git a/debian/patches-rt/0113-printk-Avoid-console_lock-dance-if-no-legacy-or-boot.patch b/debian/patches-rt/0029-printk-Avoid-console_lock-dance-if-no-legacy-or-boot.patch index a733638677..a0be40fe7b 100644 --- a/debian/patches-rt/0113-printk-Avoid-console_lock-dance-if-no-legacy-or-boot.patch +++ b/debian/patches-rt/0029-printk-Avoid-console_lock-dance-if-no-legacy-or-boot.patch @@ -1,8 +1,8 @@ From: John Ogness <john.ogness@linutronix.de> Date: Tue, 26 Sep 2023 12:44:07 +0000 -Subject: [PATCH 113/134] printk: Avoid console_lock dance if no legacy or boot +Subject: [PATCH 29/50] printk: Avoid console_lock dance if no legacy or boot consoles -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz Currently the console lock is used to attempt legacy-type printing even if there are no legacy or boot consoles registered. @@ -69,7 +69,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> * Specifies if a boot console is registered. If boot consoles are present, * nbcon consoles cannot print simultaneously and must be synchronized by * the console lock. This is because boot consoles and nbcon consoles may -@@ -2345,7 +2352,7 @@ asmlinkage int vprintk_emit(int facility +@@ -2344,7 +2351,7 @@ asmlinkage int vprintk_emit(int facility printed_len = vprintk_store(facility, level, dev_info, fmt, args); /* If called from the scheduler, we can not call up(). */ @@ -78,7 +78,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> /* * The caller may be holding system-critical or * timing-sensitive locks. Disable preemption during -@@ -2646,7 +2653,7 @@ void resume_console(void) +@@ -2653,7 +2660,7 @@ void resume_console(void) */ static int console_cpu_notify(unsigned int cpu) { @@ -87,7 +87,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> /* If trylock fails, someone else is doing the printing */ if (console_trylock()) console_unlock(); -@@ -3189,7 +3196,8 @@ void console_flush_on_panic(enum con_flu +@@ -3196,7 +3203,8 @@ void console_flush_on_panic(enum con_flu nbcon_atomic_flush_all(); @@ -97,7 +97,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> } /* -@@ -3514,8 +3522,11 @@ void register_console(struct console *ne +@@ -3521,8 +3529,11 @@ void register_console(struct console *ne newcon->dropped = 0; console_init_seq(newcon, bootcon_registered); @@ -110,7 +110,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> if (newcon->flags & CON_BOOT) have_boot_console = true; -@@ -3572,6 +3583,7 @@ EXPORT_SYMBOL(register_console); +@@ -3579,6 +3590,7 @@ EXPORT_SYMBOL(register_console); /* Must be called under console_list_lock(). */ static int unregister_console_locked(struct console *console) { @@ -118,7 +118,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> bool found_boot_con = false; struct console *c; int res; -@@ -3628,9 +3640,13 @@ static int unregister_console_locked(str +@@ -3635,9 +3647,13 @@ static int unregister_console_locked(str for_each_console(c) { if (c->flags & CON_BOOT) found_boot_con = true; @@ -132,7 +132,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> return res; } -@@ -3782,6 +3798,7 @@ static bool __pr_flush(struct console *c +@@ -3789,6 +3805,7 @@ static bool __pr_flush(struct console *c u64 last_diff = 0; u64 printk_seq; short flags; @@ -140,7 +140,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> int cookie; u64 diff; u64 seq; -@@ -3791,22 +3808,28 @@ static bool __pr_flush(struct console *c +@@ -3798,22 +3815,28 @@ static bool __pr_flush(struct console *c seq = prb_next_reserve_seq(prb); /* Flush the consoles so that records up to @seq are printed. */ @@ -178,7 +178,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> cookie = console_srcu_read_lock(); for_each_console_srcu(c) { -@@ -3826,6 +3849,7 @@ static bool __pr_flush(struct console *c +@@ -3833,6 +3856,7 @@ static bool __pr_flush(struct console *c if (flags & CON_NBCON) { printk_seq = nbcon_seq_read(c); } else { @@ -186,7 +186,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> printk_seq = c->seq; } -@@ -3837,7 +3861,8 @@ static bool __pr_flush(struct console *c +@@ -3844,7 +3868,8 @@ static bool __pr_flush(struct console *c if (diff != last_diff && reset_on_progress) remaining_jiffies = timeout_jiffies; @@ -196,7 +196,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> /* Note: @diff is 0 if there are no usable consoles. */ if (diff == 0 || remaining_jiffies == 0) -@@ -3959,7 +3984,11 @@ void defer_console_output(void) +@@ -3966,7 +3991,11 @@ void defer_console_output(void) * New messages may have been added directly to the ringbuffer * using vprintk_store(), so wake any waiters as well. */ diff --git a/debian/patches-rt/0029-serial-imx-Use-port-lock-wrappers.patch b/debian/patches-rt/0029-serial-imx-Use-port-lock-wrappers.patch deleted file mode 100644 index 24f582ae87..0000000000 --- a/debian/patches-rt/0029-serial-imx-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,354 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:46 +0206 -Subject: [PATCH 029/134] serial: imx: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-30-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/imx.c | 84 +++++++++++++++++++++++------------------------ - 1 file changed, 42 insertions(+), 42 deletions(-) - ---- a/drivers/tty/serial/imx.c -+++ b/drivers/tty/serial/imx.c -@@ -575,7 +575,7 @@ static void imx_uart_dma_tx_callback(voi - unsigned long flags; - u32 ucr1; - -- spin_lock_irqsave(&sport->port.lock, flags); -+ uart_port_lock_irqsave(&sport->port, &flags); - - dma_unmap_sg(sport->port.dev, sgl, sport->dma_tx_nents, DMA_TO_DEVICE); - -@@ -600,7 +600,7 @@ static void imx_uart_dma_tx_callback(voi - imx_uart_writel(sport, ucr4, UCR4); - } - -- spin_unlock_irqrestore(&sport->port.lock, flags); -+ uart_port_unlock_irqrestore(&sport->port, flags); - } - - /* called with port.lock taken and irqs off */ -@@ -766,11 +766,11 @@ static irqreturn_t imx_uart_rtsint(int i - struct imx_port *sport = dev_id; - irqreturn_t ret; - -- spin_lock(&sport->port.lock); -+ uart_port_lock(&sport->port); - - ret = __imx_uart_rtsint(irq, dev_id); - -- spin_unlock(&sport->port.lock); -+ uart_port_unlock(&sport->port); - - return ret; - } -@@ -779,9 +779,9 @@ static irqreturn_t imx_uart_txint(int ir - { - struct imx_port *sport = dev_id; - -- spin_lock(&sport->port.lock); -+ uart_port_lock(&sport->port); - imx_uart_transmit_buffer(sport); -- spin_unlock(&sport->port.lock); -+ uart_port_unlock(&sport->port); - return IRQ_HANDLED; - } - -@@ -895,11 +895,11 @@ static irqreturn_t imx_uart_rxint(int ir - struct imx_port *sport = dev_id; - irqreturn_t ret; - -- spin_lock(&sport->port.lock); -+ uart_port_lock(&sport->port); - - ret = __imx_uart_rxint(irq, dev_id); - -- spin_unlock(&sport->port.lock); -+ uart_port_unlock(&sport->port); - - return ret; - } -@@ -962,7 +962,7 @@ static irqreturn_t imx_uart_int(int irq, - unsigned int usr1, usr2, ucr1, ucr2, ucr3, ucr4; - irqreturn_t ret = IRQ_NONE; - -- spin_lock(&sport->port.lock); -+ uart_port_lock(&sport->port); - - usr1 = imx_uart_readl(sport, USR1); - usr2 = imx_uart_readl(sport, USR2); -@@ -1032,7 +1032,7 @@ static irqreturn_t imx_uart_int(int irq, - ret = IRQ_HANDLED; - } - -- spin_unlock(&sport->port.lock); -+ uart_port_unlock(&sport->port); - - return ret; - } -@@ -1115,7 +1115,7 @@ static void imx_uart_break_ctl(struct ua - unsigned long flags; - u32 ucr1; - -- spin_lock_irqsave(&sport->port.lock, flags); -+ uart_port_lock_irqsave(&sport->port, &flags); - - ucr1 = imx_uart_readl(sport, UCR1) & ~UCR1_SNDBRK; - -@@ -1124,7 +1124,7 @@ static void imx_uart_break_ctl(struct ua - - imx_uart_writel(sport, ucr1, UCR1); - -- spin_unlock_irqrestore(&sport->port.lock, flags); -+ uart_port_unlock_irqrestore(&sport->port, flags); - } - - /* -@@ -1137,9 +1137,9 @@ static void imx_uart_timeout(struct time - unsigned long flags; - - if (sport->port.state) { -- spin_lock_irqsave(&sport->port.lock, flags); -+ uart_port_lock_irqsave(&sport->port, &flags); - imx_uart_mctrl_check(sport); -- spin_unlock_irqrestore(&sport->port.lock, flags); -+ uart_port_unlock_irqrestore(&sport->port, flags); - - mod_timer(&sport->timer, jiffies + MCTRL_TIMEOUT); - } -@@ -1169,9 +1169,9 @@ static void imx_uart_dma_rx_callback(voi - status = dmaengine_tx_status(chan, sport->rx_cookie, &state); - - if (status == DMA_ERROR) { -- spin_lock(&sport->port.lock); -+ uart_port_lock(&sport->port); - imx_uart_clear_rx_errors(sport); -- spin_unlock(&sport->port.lock); -+ uart_port_unlock(&sport->port); - return; - } - -@@ -1200,9 +1200,9 @@ static void imx_uart_dma_rx_callback(voi - r_bytes = rx_ring->head - rx_ring->tail; - - /* If we received something, check for 0xff flood */ -- spin_lock(&sport->port.lock); -+ uart_port_lock(&sport->port); - imx_uart_check_flood(sport, imx_uart_readl(sport, USR2)); -- spin_unlock(&sport->port.lock); -+ uart_port_unlock(&sport->port); - - if (!(sport->port.ignore_status_mask & URXD_DUMMY_READ)) { - -@@ -1460,7 +1460,7 @@ static int imx_uart_startup(struct uart_ - if (!uart_console(port) && imx_uart_dma_init(sport) == 0) - dma_is_inited = 1; - -- spin_lock_irqsave(&sport->port.lock, flags); -+ uart_port_lock_irqsave(&sport->port, &flags); - - /* Reset fifo's and state machines */ - imx_uart_soft_reset(sport); -@@ -1533,7 +1533,7 @@ static int imx_uart_startup(struct uart_ - - imx_uart_disable_loopback_rs485(sport); - -- spin_unlock_irqrestore(&sport->port.lock, flags); -+ uart_port_unlock_irqrestore(&sport->port, flags); - - return 0; - } -@@ -1558,21 +1558,21 @@ static void imx_uart_shutdown(struct uar - sport->dma_is_rxing = 0; - } - -- spin_lock_irqsave(&sport->port.lock, flags); -+ uart_port_lock_irqsave(&sport->port, &flags); - imx_uart_stop_tx(port); - imx_uart_stop_rx(port); - imx_uart_disable_dma(sport); -- spin_unlock_irqrestore(&sport->port.lock, flags); -+ uart_port_unlock_irqrestore(&sport->port, flags); - imx_uart_dma_exit(sport); - } - - mctrl_gpio_disable_ms(sport->gpios); - -- spin_lock_irqsave(&sport->port.lock, flags); -+ uart_port_lock_irqsave(&sport->port, &flags); - ucr2 = imx_uart_readl(sport, UCR2); - ucr2 &= ~(UCR2_TXEN | UCR2_ATEN); - imx_uart_writel(sport, ucr2, UCR2); -- spin_unlock_irqrestore(&sport->port.lock, flags); -+ uart_port_unlock_irqrestore(&sport->port, flags); - - /* - * Stop our timer. -@@ -1583,7 +1583,7 @@ static void imx_uart_shutdown(struct uar - * Disable all interrupts, port and break condition. - */ - -- spin_lock_irqsave(&sport->port.lock, flags); -+ uart_port_lock_irqsave(&sport->port, &flags); - - ucr1 = imx_uart_readl(sport, UCR1); - ucr1 &= ~(UCR1_TRDYEN | UCR1_RRDYEN | UCR1_RTSDEN | UCR1_RXDMAEN | -@@ -1605,7 +1605,7 @@ static void imx_uart_shutdown(struct uar - ucr4 &= ~UCR4_TCEN; - imx_uart_writel(sport, ucr4, UCR4); - -- spin_unlock_irqrestore(&sport->port.lock, flags); -+ uart_port_unlock_irqrestore(&sport->port, flags); - - clk_disable_unprepare(sport->clk_per); - clk_disable_unprepare(sport->clk_ipg); -@@ -1668,7 +1668,7 @@ imx_uart_set_termios(struct uart_port *p - baud = uart_get_baud_rate(port, termios, old, 50, port->uartclk / 16); - quot = uart_get_divisor(port, baud); - -- spin_lock_irqsave(&sport->port.lock, flags); -+ uart_port_lock_irqsave(&sport->port, &flags); - - /* - * Read current UCR2 and save it for future use, then clear all the bits -@@ -1796,7 +1796,7 @@ imx_uart_set_termios(struct uart_port *p - if (UART_ENABLE_MS(&sport->port, termios->c_cflag)) - imx_uart_enable_ms(&sport->port); - -- spin_unlock_irqrestore(&sport->port.lock, flags); -+ uart_port_unlock_irqrestore(&sport->port, flags); - } - - static const char *imx_uart_type(struct uart_port *port) -@@ -1858,7 +1858,7 @@ static int imx_uart_poll_init(struct uar - - imx_uart_setup_ufcr(sport, TXTL_DEFAULT, RXTL_DEFAULT); - -- spin_lock_irqsave(&sport->port.lock, flags); -+ uart_port_lock_irqsave(&sport->port, &flags); - - /* - * Be careful about the order of enabling bits here. First enable the -@@ -1886,7 +1886,7 @@ static int imx_uart_poll_init(struct uar - imx_uart_writel(sport, ucr1 | UCR1_RRDYEN, UCR1); - imx_uart_writel(sport, ucr2 | UCR2_ATEN, UCR2); - -- spin_unlock_irqrestore(&sport->port.lock, flags); -+ uart_port_unlock_irqrestore(&sport->port, flags); - - return 0; - } -@@ -2005,9 +2005,9 @@ imx_uart_console_write(struct console *c - if (sport->port.sysrq) - locked = 0; - else if (oops_in_progress) -- locked = spin_trylock_irqsave(&sport->port.lock, flags); -+ locked = uart_port_trylock_irqsave(&sport->port, &flags); - else -- spin_lock_irqsave(&sport->port.lock, flags); -+ uart_port_lock_irqsave(&sport->port, &flags); - - /* - * First, save UCR1/2/3 and then disable interrupts -@@ -2035,7 +2035,7 @@ imx_uart_console_write(struct console *c - imx_uart_ucrs_restore(sport, &old_ucr); - - if (locked) -- spin_unlock_irqrestore(&sport->port.lock, flags); -+ uart_port_unlock_irqrestore(&sport->port, flags); - } - - /* -@@ -2193,10 +2193,10 @@ static enum hrtimer_restart imx_trigger_ - struct imx_port *sport = container_of(t, struct imx_port, trigger_start_tx); - unsigned long flags; - -- spin_lock_irqsave(&sport->port.lock, flags); -+ uart_port_lock_irqsave(&sport->port, &flags); - if (sport->tx_state == WAIT_AFTER_RTS) - imx_uart_start_tx(&sport->port); -- spin_unlock_irqrestore(&sport->port.lock, flags); -+ uart_port_unlock_irqrestore(&sport->port, flags); - - return HRTIMER_NORESTART; - } -@@ -2206,10 +2206,10 @@ static enum hrtimer_restart imx_trigger_ - struct imx_port *sport = container_of(t, struct imx_port, trigger_stop_tx); - unsigned long flags; - -- spin_lock_irqsave(&sport->port.lock, flags); -+ uart_port_lock_irqsave(&sport->port, &flags); - if (sport->tx_state == WAIT_AFTER_SEND) - imx_uart_stop_tx(&sport->port); -- spin_unlock_irqrestore(&sport->port.lock, flags); -+ uart_port_unlock_irqrestore(&sport->port, flags); - - return HRTIMER_NORESTART; - } -@@ -2482,9 +2482,9 @@ static void imx_uart_restore_context(str - { - unsigned long flags; - -- spin_lock_irqsave(&sport->port.lock, flags); -+ uart_port_lock_irqsave(&sport->port, &flags); - if (!sport->context_saved) { -- spin_unlock_irqrestore(&sport->port.lock, flags); -+ uart_port_unlock_irqrestore(&sport->port, flags); - return; - } - -@@ -2499,7 +2499,7 @@ static void imx_uart_restore_context(str - imx_uart_writel(sport, sport->saved_reg[2], UCR3); - imx_uart_writel(sport, sport->saved_reg[3], UCR4); - sport->context_saved = false; -- spin_unlock_irqrestore(&sport->port.lock, flags); -+ uart_port_unlock_irqrestore(&sport->port, flags); - } - - static void imx_uart_save_context(struct imx_port *sport) -@@ -2507,7 +2507,7 @@ static void imx_uart_save_context(struct - unsigned long flags; - - /* Save necessary regs */ -- spin_lock_irqsave(&sport->port.lock, flags); -+ uart_port_lock_irqsave(&sport->port, &flags); - sport->saved_reg[0] = imx_uart_readl(sport, UCR1); - sport->saved_reg[1] = imx_uart_readl(sport, UCR2); - sport->saved_reg[2] = imx_uart_readl(sport, UCR3); -@@ -2519,7 +2519,7 @@ static void imx_uart_save_context(struct - sport->saved_reg[8] = imx_uart_readl(sport, UBMR); - sport->saved_reg[9] = imx_uart_readl(sport, IMX21_UTS); - sport->context_saved = true; -- spin_unlock_irqrestore(&sport->port.lock, flags); -+ uart_port_unlock_irqrestore(&sport->port, flags); - } - - static void imx_uart_enable_wakeup(struct imx_port *sport, bool on) diff --git a/debian/patches-rt/0114-printk-Track-nbcon-consoles.patch b/debian/patches-rt/0030-printk-Track-nbcon-consoles.patch index fb85c5bbb5..ec363c95d7 100644 --- a/debian/patches-rt/0114-printk-Track-nbcon-consoles.patch +++ b/debian/patches-rt/0030-printk-Track-nbcon-consoles.patch @@ -1,7 +1,7 @@ From: John Ogness <john.ogness@linutronix.de> Date: Mon, 11 Dec 2023 09:36:52 +0000 -Subject: [PATCH 114/134] printk: Track nbcon consoles -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 30/50] printk: Track nbcon consoles +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz Add a global flag @have_nbcon_console to identify if any nbcon consoles are registered. This will be used in follow-up commits @@ -29,7 +29,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> * Specifies if a boot console is registered. If boot consoles are present, * nbcon consoles cannot print simultaneously and must be synchronized by * the console lock. This is because boot consoles and nbcon consoles may -@@ -3523,6 +3530,7 @@ void register_console(struct console *ne +@@ -3530,6 +3537,7 @@ void register_console(struct console *ne console_init_seq(newcon, bootcon_registered); if (newcon->flags & CON_NBCON) { @@ -37,7 +37,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> nbcon_init(newcon); } else { have_legacy_console = true; -@@ -3584,6 +3592,7 @@ EXPORT_SYMBOL(register_console); +@@ -3591,6 +3599,7 @@ EXPORT_SYMBOL(register_console); static int unregister_console_locked(struct console *console) { bool found_legacy_con = false; @@ -45,7 +45,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> bool found_boot_con = false; struct console *c; int res; -@@ -3640,13 +3649,18 @@ static int unregister_console_locked(str +@@ -3647,13 +3656,18 @@ static int unregister_console_locked(str for_each_console(c) { if (c->flags & CON_BOOT) found_boot_con = true; diff --git a/debian/patches-rt/0030-serial-ip22zilog-Use-port-lock-wrappers.patch b/debian/patches-rt/0030-serial-ip22zilog-Use-port-lock-wrappers.patch deleted file mode 100644 index c1307a246b..0000000000 --- a/debian/patches-rt/0030-serial-ip22zilog-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,185 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:47 +0206 -Subject: [PATCH 030/134] serial: ip22zilog: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-31-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/ip22zilog.c | 36 ++++++++++++++++++------------------ - 1 file changed, 18 insertions(+), 18 deletions(-) - ---- a/drivers/tty/serial/ip22zilog.c -+++ b/drivers/tty/serial/ip22zilog.c -@@ -432,7 +432,7 @@ static irqreturn_t ip22zilog_interrupt(i - unsigned char r3; - bool push = false; - -- spin_lock(&up->port.lock); -+ uart_port_lock(&up->port); - r3 = read_zsreg(channel, R3); - - /* Channel A */ -@@ -448,7 +448,7 @@ static irqreturn_t ip22zilog_interrupt(i - if (r3 & CHATxIP) - ip22zilog_transmit_chars(up, channel); - } -- spin_unlock(&up->port.lock); -+ uart_port_unlock(&up->port); - - if (push) - tty_flip_buffer_push(&up->port.state->port); -@@ -458,7 +458,7 @@ static irqreturn_t ip22zilog_interrupt(i - channel = ZILOG_CHANNEL_FROM_PORT(&up->port); - push = false; - -- spin_lock(&up->port.lock); -+ uart_port_lock(&up->port); - if (r3 & (CHBEXT | CHBTxIP | CHBRxIP)) { - writeb(RES_H_IUS, &channel->control); - ZSDELAY(); -@@ -471,7 +471,7 @@ static irqreturn_t ip22zilog_interrupt(i - if (r3 & CHBTxIP) - ip22zilog_transmit_chars(up, channel); - } -- spin_unlock(&up->port.lock); -+ uart_port_unlock(&up->port); - - if (push) - tty_flip_buffer_push(&up->port.state->port); -@@ -504,11 +504,11 @@ static unsigned int ip22zilog_tx_empty(s - unsigned char status; - unsigned int ret; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - status = ip22zilog_read_channel_status(port); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - if (status & Tx_BUF_EMP) - ret = TIOCSER_TEMT; -@@ -664,7 +664,7 @@ static void ip22zilog_break_ctl(struct u - else - clear_bits |= SND_BRK; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - new_reg = (up->curregs[R5] | set_bits) & ~clear_bits; - if (new_reg != up->curregs[R5]) { -@@ -674,7 +674,7 @@ static void ip22zilog_break_ctl(struct u - write_zsreg(channel, R5, up->curregs[R5]); - } - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static void __ip22zilog_reset(struct uart_ip22zilog_port *up) -@@ -735,9 +735,9 @@ static int ip22zilog_startup(struct uart - if (ZS_IS_CONS(up)) - return 0; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - __ip22zilog_startup(up); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - return 0; - } - -@@ -775,7 +775,7 @@ static void ip22zilog_shutdown(struct ua - if (ZS_IS_CONS(up)) - return; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - channel = ZILOG_CHANNEL_FROM_PORT(port); - -@@ -788,7 +788,7 @@ static void ip22zilog_shutdown(struct ua - up->curregs[R5] &= ~SND_BRK; - ip22zilog_maybe_update_regs(up, channel); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - /* Shared by TTY driver and serial console setup. The port lock is held -@@ -880,7 +880,7 @@ ip22zilog_set_termios(struct uart_port * - - baud = uart_get_baud_rate(port, termios, old, 1200, 76800); - -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - - brg = BPS_TO_BRG(baud, ZS_CLOCK / ZS_CLOCK_DIVISOR); - -@@ -894,7 +894,7 @@ ip22zilog_set_termios(struct uart_port * - ip22zilog_maybe_update_regs(up, ZILOG_CHANNEL_FROM_PORT(port)); - uart_update_timeout(port, termios->c_cflag, baud); - -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - } - - static const char *ip22zilog_type(struct uart_port *port) -@@ -1016,10 +1016,10 @@ ip22zilog_console_write(struct console * - struct uart_ip22zilog_port *up = &ip22zilog_port_table[con->index]; - unsigned long flags; - -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - uart_console_write(&up->port, s, count, ip22zilog_put_char); - udelay(2); -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - } - - static int __init ip22zilog_console_setup(struct console *con, char *options) -@@ -1034,13 +1034,13 @@ static int __init ip22zilog_console_setu - - printk(KERN_INFO "Console: ttyS%d (IP22-Zilog)\n", con->index); - -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - - up->curregs[R15] |= BRKIE; - - __ip22zilog_startup(up); - -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - - if (options) - uart_parse_options(options, &baud, &parity, &bits, &flow); diff --git a/debian/patches-rt/0115-printk-Coordinate-direct-printing-in-panic.patch b/debian/patches-rt/0031-printk-Coordinate-direct-printing-in-panic.patch index 972df76688..6f26bf7fc6 100644 --- a/debian/patches-rt/0115-printk-Coordinate-direct-printing-in-panic.patch +++ b/debian/patches-rt/0031-printk-Coordinate-direct-printing-in-panic.patch @@ -1,7 +1,7 @@ From: John Ogness <john.ogness@linutronix.de> Date: Wed, 22 Nov 2023 11:56:58 +0000 -Subject: [PATCH 115/134] printk: Coordinate direct printing in panic -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 31/50] printk: Coordinate direct printing in panic +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz Perform printing by nbcon consoles on the panic CPU from the printk() caller context in order to get panic messages printed @@ -35,7 +35,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> +void printk_legacy_allow_panic_sync(void); --- a/kernel/panic.c +++ b/kernel/panic.c -@@ -366,6 +366,8 @@ void panic(const char *fmt, ...) +@@ -370,6 +370,8 @@ void panic(const char *fmt, ...) */ atomic_notifier_call_chain(&panic_notifier_list, 0, buf); @@ -46,7 +46,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> kmsg_dump(KMSG_DUMP_PANIC); --- a/kernel/printk/printk.c +++ b/kernel/printk/printk.c -@@ -2330,12 +2330,23 @@ int vprintk_store(int facility, int leve +@@ -2329,12 +2329,23 @@ int vprintk_store(int facility, int leve return ret; } @@ -71,7 +71,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> /* Suppress unimportant messages after panic happens */ if (unlikely(suppress_printk)) -@@ -2351,15 +2362,43 @@ asmlinkage int vprintk_emit(int facility +@@ -2350,15 +2361,43 @@ asmlinkage int vprintk_emit(int facility if (level == LOGLEVEL_SCHED) { level = LOGLEVEL_DEFAULT; @@ -118,7 +118,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> /* * The caller may be holding system-critical or * timing-sensitive locks. Disable preemption during -@@ -2379,10 +2418,10 @@ asmlinkage int vprintk_emit(int facility +@@ -2378,10 +2417,10 @@ asmlinkage int vprintk_emit(int facility preempt_enable(); } diff --git a/debian/patches-rt/0031-serial-jsm-Use-port-lock-wrappers.patch b/debian/patches-rt/0031-serial-jsm-Use-port-lock-wrappers.patch deleted file mode 100644 index 4326b333a7..0000000000 --- a/debian/patches-rt/0031-serial-jsm-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,124 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:48 +0206 -Subject: [PATCH 031/134] serial: jsm: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-32-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/jsm/jsm_neo.c | 4 ++-- - drivers/tty/serial/jsm/jsm_tty.c | 16 ++++++++-------- - 2 files changed, 10 insertions(+), 10 deletions(-) - ---- a/drivers/tty/serial/jsm/jsm_neo.c -+++ b/drivers/tty/serial/jsm/jsm_neo.c -@@ -816,9 +816,9 @@ static void neo_parse_isr(struct jsm_boa - /* Parse any modem signal changes */ - jsm_dbg(INTR, &ch->ch_bd->pci_dev, - "MOD_STAT: sending to parse_modem_sigs\n"); -- spin_lock_irqsave(&ch->uart_port.lock, lock_flags); -+ uart_port_lock_irqsave(&ch->uart_port, &lock_flags); - neo_parse_modem(ch, readb(&ch->ch_neo_uart->msr)); -- spin_unlock_irqrestore(&ch->uart_port.lock, lock_flags); -+ uart_port_unlock_irqrestore(&ch->uart_port, lock_flags); - } - } - ---- a/drivers/tty/serial/jsm/jsm_tty.c -+++ b/drivers/tty/serial/jsm/jsm_tty.c -@@ -152,14 +152,14 @@ static void jsm_tty_send_xchar(struct ua - container_of(port, struct jsm_channel, uart_port); - struct ktermios *termios; - -- spin_lock_irqsave(&port->lock, lock_flags); -+ uart_port_lock_irqsave(port, &lock_flags); - termios = &port->state->port.tty->termios; - if (ch == termios->c_cc[VSTART]) - channel->ch_bd->bd_ops->send_start_character(channel); - - if (ch == termios->c_cc[VSTOP]) - channel->ch_bd->bd_ops->send_stop_character(channel); -- spin_unlock_irqrestore(&port->lock, lock_flags); -+ uart_port_unlock_irqrestore(port, lock_flags); - } - - static void jsm_tty_stop_rx(struct uart_port *port) -@@ -176,13 +176,13 @@ static void jsm_tty_break(struct uart_po - struct jsm_channel *channel = - container_of(port, struct jsm_channel, uart_port); - -- spin_lock_irqsave(&port->lock, lock_flags); -+ uart_port_lock_irqsave(port, &lock_flags); - if (break_state == -1) - channel->ch_bd->bd_ops->send_break(channel); - else - channel->ch_bd->bd_ops->clear_break(channel); - -- spin_unlock_irqrestore(&port->lock, lock_flags); -+ uart_port_unlock_irqrestore(port, lock_flags); - } - - static int jsm_tty_open(struct uart_port *port) -@@ -241,7 +241,7 @@ static int jsm_tty_open(struct uart_port - channel->ch_cached_lsr = 0; - channel->ch_stops_sent = 0; - -- spin_lock_irqsave(&port->lock, lock_flags); -+ uart_port_lock_irqsave(port, &lock_flags); - termios = &port->state->port.tty->termios; - channel->ch_c_cflag = termios->c_cflag; - channel->ch_c_iflag = termios->c_iflag; -@@ -261,7 +261,7 @@ static int jsm_tty_open(struct uart_port - jsm_carrier(channel); - - channel->ch_open_count++; -- spin_unlock_irqrestore(&port->lock, lock_flags); -+ uart_port_unlock_irqrestore(port, lock_flags); - - jsm_dbg(OPEN, &channel->ch_bd->pci_dev, "finish\n"); - return 0; -@@ -307,7 +307,7 @@ static void jsm_tty_set_termios(struct u - struct jsm_channel *channel = - container_of(port, struct jsm_channel, uart_port); - -- spin_lock_irqsave(&port->lock, lock_flags); -+ uart_port_lock_irqsave(port, &lock_flags); - channel->ch_c_cflag = termios->c_cflag; - channel->ch_c_iflag = termios->c_iflag; - channel->ch_c_oflag = termios->c_oflag; -@@ -317,7 +317,7 @@ static void jsm_tty_set_termios(struct u - - channel->ch_bd->bd_ops->param(channel); - jsm_carrier(channel); -- spin_unlock_irqrestore(&port->lock, lock_flags); -+ uart_port_unlock_irqrestore(port, lock_flags); - } - - static const char *jsm_tty_type(struct uart_port *port) diff --git a/debian/patches-rt/0116-printk-nbcon-Implement-emergency-sections.patch b/debian/patches-rt/0032-printk-nbcon-Implement-emergency-sections.patch index 11175cacb0..29f5098811 100644 --- a/debian/patches-rt/0116-printk-nbcon-Implement-emergency-sections.patch +++ b/debian/patches-rt/0032-printk-nbcon-Implement-emergency-sections.patch @@ -1,7 +1,7 @@ From: Thomas Gleixner <tglx@linutronix.de> Date: Mon, 11 Sep 2023 15:21:57 +0000 -Subject: [PATCH 116/134] printk: nbcon: Implement emergency sections -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 32/50] printk: nbcon: Implement emergency sections +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz In emergency situations (something has gone wrong but the system continues to operate), usually important information @@ -43,7 +43,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> --- a/include/linux/console.h +++ b/include/linux/console.h -@@ -458,10 +458,14 @@ static inline bool console_is_registered +@@ -465,10 +465,14 @@ static inline bool console_is_registered hlist_for_each_entry(con, &console_list, node) #ifdef CONFIG_PRINTK @@ -194,7 +194,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> * --- a/kernel/printk/printk.c +++ b/kernel/printk/printk.c -@@ -2405,16 +2405,29 @@ asmlinkage int vprintk_emit(int facility +@@ -2404,16 +2404,29 @@ asmlinkage int vprintk_emit(int facility * printing of all remaining records to all consoles so that * this context can return as soon as possible. Hopefully * another printk() caller will take over the printing. diff --git a/debian/patches-rt/0032-serial-liteuart-Use-port-lock-wrappers.patch b/debian/patches-rt/0032-serial-liteuart-Use-port-lock-wrappers.patch deleted file mode 100644 index ae679c098c..0000000000 --- a/debian/patches-rt/0032-serial-liteuart-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,110 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:49 +0206 -Subject: [PATCH 032/134] serial: liteuart: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Acked-by: Gabriel Somlo <gsomlo@gmail.com> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-33-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/liteuart.c | 20 ++++++++++---------- - 1 file changed, 10 insertions(+), 10 deletions(-) - ---- a/drivers/tty/serial/liteuart.c -+++ b/drivers/tty/serial/liteuart.c -@@ -139,13 +139,13 @@ static irqreturn_t liteuart_interrupt(in - * if polling, the context would be "in_serving_softirq", so use - * irq[save|restore] spin_lock variants to cover all possibilities - */ -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - isr = litex_read8(port->membase + OFF_EV_PENDING) & uart->irq_reg; - if (isr & EV_RX) - liteuart_rx_chars(port); - if (isr & EV_TX) - liteuart_tx_chars(port); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - return IRQ_RETVAL(isr); - } -@@ -195,10 +195,10 @@ static int liteuart_startup(struct uart_ - } - } - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - /* only enabling rx irqs during startup */ - liteuart_update_irq_reg(port, true, EV_RX); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - if (!port->irq) { - timer_setup(&uart->timer, liteuart_timer, 0); -@@ -213,9 +213,9 @@ static void liteuart_shutdown(struct uar - struct liteuart_port *uart = to_liteuart_port(port); - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - liteuart_update_irq_reg(port, false, EV_RX | EV_TX); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - if (port->irq) - free_irq(port->irq, port); -@@ -229,13 +229,13 @@ static void liteuart_set_termios(struct - unsigned int baud; - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* update baudrate */ - baud = uart_get_baud_rate(port, new, old, 0, 460800); - uart_update_timeout(port, new->c_cflag, baud); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static const char *liteuart_type(struct uart_port *port) -@@ -382,9 +382,9 @@ static void liteuart_console_write(struc - uart = (struct liteuart_port *)xa_load(&liteuart_array, co->index); - port = &uart->port; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - uart_console_write(port, s, count, liteuart_putchar); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static int liteuart_console_setup(struct console *co, char *options) diff --git a/debian/patches-rt/0117-panic-Mark-emergency-section-in-warn.patch b/debian/patches-rt/0033-panic-Mark-emergency-section-in-warn.patch index 84201d25fe..c3058599cf 100644 --- a/debian/patches-rt/0117-panic-Mark-emergency-section-in-warn.patch +++ b/debian/patches-rt/0033-panic-Mark-emergency-section-in-warn.patch @@ -1,7 +1,7 @@ From: Thomas Gleixner <tglx@linutronix.de> Date: Mon, 11 Sep 2023 15:53:04 +0000 -Subject: [PATCH 117/134] panic: Mark emergency section in warn -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 33/50] panic: Mark emergency section in warn +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz Mark the full contents of __warn() as an emergency section. In this section, the CPU will not perform console output for the @@ -18,7 +18,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> --- a/kernel/panic.c +++ b/kernel/panic.c -@@ -663,6 +663,8 @@ struct warn_args { +@@ -667,6 +667,8 @@ struct warn_args { void __warn(const char *file, int line, void *caller, unsigned taint, struct pt_regs *regs, struct warn_args *args) { @@ -27,7 +27,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> disable_trace_on_warning(); if (file) -@@ -693,6 +695,8 @@ void __warn(const char *file, int line, +@@ -697,6 +699,8 @@ void __warn(const char *file, int line, /* Just a warning, don't kill lockdep. */ add_taint(taint, LOCKDEP_STILL_OK); diff --git a/debian/patches-rt/0033-serial-lpc32xx_hs-Use-port-lock-wrappers.patch b/debian/patches-rt/0033-serial-lpc32xx_hs-Use-port-lock-wrappers.patch deleted file mode 100644 index 06518e8460..0000000000 --- a/debian/patches-rt/0033-serial-lpc32xx_hs-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,148 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:50 +0206 -Subject: [PATCH 033/134] serial: lpc32xx_hs: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-34-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/lpc32xx_hs.c | 26 +++++++++++++------------- - 1 file changed, 13 insertions(+), 13 deletions(-) - ---- a/drivers/tty/serial/lpc32xx_hs.c -+++ b/drivers/tty/serial/lpc32xx_hs.c -@@ -140,15 +140,15 @@ static void lpc32xx_hsuart_console_write - if (up->port.sysrq) - locked = 0; - else if (oops_in_progress) -- locked = spin_trylock(&up->port.lock); -+ locked = uart_port_trylock(&up->port); - else -- spin_lock(&up->port.lock); -+ uart_port_lock(&up->port); - - uart_console_write(&up->port, s, count, lpc32xx_hsuart_console_putchar); - wait_for_xmit_empty(&up->port); - - if (locked) -- spin_unlock(&up->port.lock); -+ uart_port_unlock(&up->port); - local_irq_restore(flags); - } - -@@ -298,7 +298,7 @@ static irqreturn_t serial_lpc32xx_interr - struct tty_port *tport = &port->state->port; - u32 status; - -- spin_lock(&port->lock); -+ uart_port_lock(port); - - /* Read UART status and clear latched interrupts */ - status = readl(LPC32XX_HSUART_IIR(port->membase)); -@@ -333,7 +333,7 @@ static irqreturn_t serial_lpc32xx_interr - __serial_lpc32xx_tx(port); - } - -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - - return IRQ_HANDLED; - } -@@ -404,14 +404,14 @@ static void serial_lpc32xx_break_ctl(str - unsigned long flags; - u32 tmp; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - tmp = readl(LPC32XX_HSUART_CTRL(port->membase)); - if (break_state != 0) - tmp |= LPC32XX_HSU_BREAK; - else - tmp &= ~LPC32XX_HSU_BREAK; - writel(tmp, LPC32XX_HSUART_CTRL(port->membase)); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - /* port->lock is not held. */ -@@ -421,7 +421,7 @@ static int serial_lpc32xx_startup(struct - unsigned long flags; - u32 tmp; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - __serial_uart_flush(port); - -@@ -441,7 +441,7 @@ static int serial_lpc32xx_startup(struct - - lpc32xx_loopback_set(port->mapbase, 0); /* get out of loopback mode */ - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - retval = request_irq(port->irq, serial_lpc32xx_interrupt, - 0, MODNAME, port); -@@ -458,7 +458,7 @@ static void serial_lpc32xx_shutdown(stru - u32 tmp; - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - tmp = LPC32XX_HSU_TX_TL8B | LPC32XX_HSU_RX_TL32B | - LPC32XX_HSU_OFFSET(20) | LPC32XX_HSU_TMO_INACT_4B; -@@ -466,7 +466,7 @@ static void serial_lpc32xx_shutdown(stru - - lpc32xx_loopback_set(port->mapbase, 1); /* go to loopback mode */ - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - free_irq(port->irq, port); - } -@@ -491,7 +491,7 @@ static void serial_lpc32xx_set_termios(s - - quot = __serial_get_clock_div(port->uartclk, baud); - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* Ignore characters? */ - tmp = readl(LPC32XX_HSUART_CTRL(port->membase)); -@@ -505,7 +505,7 @@ static void serial_lpc32xx_set_termios(s - - uart_update_timeout(port, termios->c_cflag, baud); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - /* Don't rewrite B0 */ - if (tty_termios_baud_rate(termios)) diff --git a/debian/patches-rt/0118-panic-Mark-emergency-section-in-oops.patch b/debian/patches-rt/0034-panic-Mark-emergency-section-in-oops.patch index 6e52fd3a69..d4ca13f249 100644 --- a/debian/patches-rt/0118-panic-Mark-emergency-section-in-oops.patch +++ b/debian/patches-rt/0034-panic-Mark-emergency-section-in-oops.patch @@ -1,7 +1,7 @@ From: John Ogness <john.ogness@linutronix.de> Date: Tue, 19 Sep 2023 17:07:34 +0000 -Subject: [PATCH 118/134] panic: Mark emergency section in oops -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 34/50] panic: Mark emergency section in oops +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz Mark an emergency section beginning with oops_enter() until the end of oops_exit(). In this section, the CPU will not perform @@ -21,7 +21,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> --- a/kernel/panic.c +++ b/kernel/panic.c -@@ -630,6 +630,7 @@ bool oops_may_print(void) +@@ -634,6 +634,7 @@ bool oops_may_print(void) */ void oops_enter(void) { @@ -29,7 +29,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> tracing_off(); /* can't trust the integrity of the kernel anymore: */ debug_locks_off(); -@@ -652,6 +653,7 @@ void oops_exit(void) +@@ -656,6 +657,7 @@ void oops_exit(void) { do_oops_enter_exit(); print_oops_end_marker(); diff --git a/debian/patches-rt/0034-serial-ma35d1-Use-port-lock-wrappers.patch b/debian/patches-rt/0034-serial-ma35d1-Use-port-lock-wrappers.patch deleted file mode 100644 index 995bad9aad..0000000000 --- a/debian/patches-rt/0034-serial-ma35d1-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,117 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:51 +0206 -Subject: [PATCH 034/134] serial: ma35d1: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-35-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/ma35d1_serial.c | 22 +++++++++++----------- - 1 file changed, 11 insertions(+), 11 deletions(-) - ---- a/drivers/tty/serial/ma35d1_serial.c -+++ b/drivers/tty/serial/ma35d1_serial.c -@@ -269,16 +269,16 @@ static void receive_chars(struct uart_ma - if (uart_handle_sysrq_char(&up->port, ch)) - continue; - -- spin_lock(&up->port.lock); -+ uart_port_lock(&up->port); - uart_insert_char(&up->port, fsr, MA35_FSR_RX_OVER_IF, ch, flag); -- spin_unlock(&up->port.lock); -+ uart_port_unlock(&up->port); - - fsr = serial_in(up, MA35_FSR_REG); - } while (!(fsr & MA35_FSR_RX_EMPTY) && (max_count-- > 0)); - -- spin_lock(&up->port.lock); -+ uart_port_lock(&up->port); - tty_flip_buffer_push(&up->port.state->port); -- spin_unlock(&up->port.lock); -+ uart_port_unlock(&up->port); - } - - static irqreturn_t ma35d1serial_interrupt(int irq, void *dev_id) -@@ -364,14 +364,14 @@ static void ma35d1serial_break_ctl(struc - unsigned long flags; - u32 lcr; - -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - lcr = serial_in(up, MA35_LCR_REG); - if (break_state != 0) - lcr |= MA35_LCR_BREAK; - else - lcr &= ~MA35_LCR_BREAK; - serial_out(up, MA35_LCR_REG, lcr); -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - } - - static int ma35d1serial_startup(struct uart_port *port) -@@ -441,7 +441,7 @@ static void ma35d1serial_set_termios(str - * Ok, we're now changing the port state. Do it with - * interrupts disabled. - */ -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - - up->port.read_status_mask = MA35_FSR_RX_OVER_IF; - if (termios->c_iflag & INPCK) -@@ -475,7 +475,7 @@ static void ma35d1serial_set_termios(str - - serial_out(up, MA35_LCR_REG, lcr); - -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - } - - static const char *ma35d1serial_type(struct uart_port *port) -@@ -560,9 +560,9 @@ static void ma35d1serial_console_write(s - if (up->port.sysrq) - locked = 0; - else if (oops_in_progress) -- locked = spin_trylock_irqsave(&up->port.lock, flags); -+ locked = uart_port_trylock_irqsave(&up->port, &flags); - else -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - - /* - * First save the IER then disable the interrupts -@@ -576,7 +576,7 @@ static void ma35d1serial_console_write(s - serial_out(up, MA35_IER_REG, ier); - - if (locked) -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - } - - static int __init ma35d1serial_console_setup(struct console *co, char *options) diff --git a/debian/patches-rt/0119-rcu-Mark-emergency-section-in-rcu-stalls.patch b/debian/patches-rt/0035-rcu-Mark-emergency-section-in-rcu-stalls.patch index d1d6efced4..3608cd7954 100644 --- a/debian/patches-rt/0119-rcu-Mark-emergency-section-in-rcu-stalls.patch +++ b/debian/patches-rt/0035-rcu-Mark-emergency-section-in-rcu-stalls.patch @@ -1,7 +1,7 @@ From: John Ogness <john.ogness@linutronix.de> Date: Mon, 11 Sep 2023 15:53:39 +0000 -Subject: [PATCH 119/134] rcu: Mark emergency section in rcu stalls -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 35/50] rcu: Mark emergency section in rcu stalls +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz Mark an emergency section within print_other_cpu_stall(), where RCU stall information is printed. In this section, the CPU will @@ -17,15 +17,15 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> --- a/kernel/rcu/tree_stall.h +++ b/kernel/rcu/tree_stall.h -@@ -8,6 +8,7 @@ - */ +@@ -9,6 +9,7 @@ #include <linux/kvm_para.h> + #include <linux/rcu_notifier.h> +#include <linux/console.h> ////////////////////////////////////////////////////////////////////////////// // -@@ -603,6 +604,8 @@ static void print_other_cpu_stall(unsign +@@ -604,6 +605,8 @@ static void print_other_cpu_stall(unsign if (rcu_stall_is_suppressed()) return; @@ -34,7 +34,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> /* * OK, time to rat on our buddy... * See Documentation/RCU/stallwarn.rst for info on how to debug -@@ -657,6 +660,8 @@ static void print_other_cpu_stall(unsign +@@ -658,6 +661,8 @@ static void print_other_cpu_stall(unsign panic_on_rcu_stall(); rcu_force_quiescent_state(); /* Kick them all. */ diff --git a/debian/patches-rt/0035-serial-mcf-Use-port-lock-wrappers.patch b/debian/patches-rt/0035-serial-mcf-Use-port-lock-wrappers.patch deleted file mode 100644 index 966618a3e4..0000000000 --- a/debian/patches-rt/0035-serial-mcf-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,127 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:52 +0206 -Subject: [PATCH 035/134] serial: mcf: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-36-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/mcf.c | 20 ++++++++++---------- - 1 file changed, 10 insertions(+), 10 deletions(-) - ---- a/drivers/tty/serial/mcf.c -+++ b/drivers/tty/serial/mcf.c -@@ -135,12 +135,12 @@ static void mcf_break_ctl(struct uart_po - { - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - if (break_state == -1) - writeb(MCFUART_UCR_CMDBREAKSTART, port->membase + MCFUART_UCR); - else - writeb(MCFUART_UCR_CMDBREAKSTOP, port->membase + MCFUART_UCR); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - /****************************************************************************/ -@@ -150,7 +150,7 @@ static int mcf_startup(struct uart_port - struct mcf_uart *pp = container_of(port, struct mcf_uart, port); - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* Reset UART, get it into known state... */ - writeb(MCFUART_UCR_CMDRESETRX, port->membase + MCFUART_UCR); -@@ -164,7 +164,7 @@ static int mcf_startup(struct uart_port - pp->imr = MCFUART_UIR_RXREADY; - writeb(pp->imr, port->membase + MCFUART_UIMR); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - return 0; - } -@@ -176,7 +176,7 @@ static void mcf_shutdown(struct uart_por - struct mcf_uart *pp = container_of(port, struct mcf_uart, port); - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* Disable all interrupts now */ - pp->imr = 0; -@@ -186,7 +186,7 @@ static void mcf_shutdown(struct uart_por - writeb(MCFUART_UCR_CMDRESETRX, port->membase + MCFUART_UCR); - writeb(MCFUART_UCR_CMDRESETTX, port->membase + MCFUART_UCR); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - /****************************************************************************/ -@@ -252,7 +252,7 @@ static void mcf_set_termios(struct uart_ - mr2 |= MCFUART_MR2_TXCTS; - } - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - if (port->rs485.flags & SER_RS485_ENABLED) { - dev_dbg(port->dev, "Setting UART to RS485\n"); - mr2 |= MCFUART_MR2_TXRTS; -@@ -273,7 +273,7 @@ static void mcf_set_termios(struct uart_ - port->membase + MCFUART_UCSR); - writeb(MCFUART_UCR_RXENABLE | MCFUART_UCR_TXENABLE, - port->membase + MCFUART_UCR); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - /****************************************************************************/ -@@ -350,7 +350,7 @@ static irqreturn_t mcf_interrupt(int irq - - isr = readb(port->membase + MCFUART_UISR) & pp->imr; - -- spin_lock(&port->lock); -+ uart_port_lock(port); - if (isr & MCFUART_UIR_RXREADY) { - mcf_rx_chars(pp); - ret = IRQ_HANDLED; -@@ -359,7 +359,7 @@ static irqreturn_t mcf_interrupt(int irq - mcf_tx_chars(pp); - ret = IRQ_HANDLED; - } -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - - return ret; - } diff --git a/debian/patches-rt/0120-lockdep-Mark-emergency-section-in-lockdep-splats.patch b/debian/patches-rt/0036-lockdep-Mark-emergency-section-in-lockdep-splats.patch index 248d17afc2..550bcda637 100644 --- a/debian/patches-rt/0120-lockdep-Mark-emergency-section-in-lockdep-splats.patch +++ b/debian/patches-rt/0036-lockdep-Mark-emergency-section-in-lockdep-splats.patch @@ -1,7 +1,7 @@ From: John Ogness <john.ogness@linutronix.de> Date: Mon, 18 Sep 2023 20:27:41 +0000 -Subject: [PATCH 120/134] lockdep: Mark emergency section in lockdep splats -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 36/50] lockdep: Mark emergency section in lockdep splats +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz Mark an emergency section within print_usage_bug(), where lockdep bugs are printed. In this section, the CPU will not diff --git a/debian/patches-rt/0036-serial-men_z135_uart-Use-port-lock-wrappers.patch b/debian/patches-rt/0036-serial-men_z135_uart-Use-port-lock-wrappers.patch deleted file mode 100644 index 11019689b6..0000000000 --- a/debian/patches-rt/0036-serial-men_z135_uart-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,76 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:53 +0206 -Subject: [PATCH 036/134] serial: men_z135_uart: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-37-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/men_z135_uart.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - ---- a/drivers/tty/serial/men_z135_uart.c -+++ b/drivers/tty/serial/men_z135_uart.c -@@ -392,7 +392,7 @@ static irqreturn_t men_z135_intr(int irq - if (!irq_id) - goto out; - -- spin_lock(&port->lock); -+ uart_port_lock(port); - /* It's save to write to IIR[7:6] RXC[9:8] */ - iowrite8(irq_id, port->membase + MEN_Z135_STAT_REG); - -@@ -418,7 +418,7 @@ static irqreturn_t men_z135_intr(int irq - handled = true; - } - -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - out: - return IRQ_RETVAL(handled); - } -@@ -708,7 +708,7 @@ static void men_z135_set_termios(struct - - baud = uart_get_baud_rate(port, termios, old, 0, uart_freq / 16); - -- spin_lock_irq(&port->lock); -+ uart_port_lock_irq(port); - if (tty_termios_baud_rate(termios)) - tty_termios_encode_baud_rate(termios, baud, baud); - -@@ -716,7 +716,7 @@ static void men_z135_set_termios(struct - iowrite32(bd_reg, port->membase + MEN_Z135_BAUD_REG); - - uart_update_timeout(port, termios->c_cflag, baud); -- spin_unlock_irq(&port->lock); -+ uart_port_unlock_irq(port); - } - - static const char *men_z135_type(struct uart_port *port) diff --git a/debian/patches-rt/0121-printk-nbcon-Introduce-printing-kthreads.patch b/debian/patches-rt/0037-printk-nbcon-Introduce-printing-kthreads.patch index 7b158ddb74..712f144bee 100644 --- a/debian/patches-rt/0121-printk-nbcon-Introduce-printing-kthreads.patch +++ b/debian/patches-rt/0037-printk-nbcon-Introduce-printing-kthreads.patch @@ -1,7 +1,7 @@ From: Thomas Gleixner <tglx@linutronix.de> Date: Fri, 22 Sep 2023 14:12:21 +0000 -Subject: [PATCH 121/134] printk: nbcon: Introduce printing kthreads -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 37/50] printk: nbcon: Introduce printing kthreads +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz Provide the main implementation for running a printer kthread per nbcon console that is takeover/handover aware. @@ -31,7 +31,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> #include <linux/types.h> struct vc_data; -@@ -296,12 +297,15 @@ struct nbcon_write_context { +@@ -303,12 +304,15 @@ struct nbcon_write_context { * @node: hlist node for the console list * * @write_atomic: Write callback for atomic context @@ -47,7 +47,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> */ struct console { char name[16]; -@@ -325,12 +329,16 @@ struct console { +@@ -332,12 +336,16 @@ struct console { /* nbcon console specific members */ bool (*write_atomic)(struct console *con, struct nbcon_write_context *wctxt); @@ -377,7 +377,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> /* Boot consoles share global printk buffers. */ --- a/kernel/printk/printk.c +++ b/kernel/printk/printk.c -@@ -2682,6 +2682,8 @@ void suspend_console(void) +@@ -2689,6 +2689,8 @@ void suspend_console(void) void resume_console(void) { struct console *con; @@ -386,7 +386,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> if (!console_suspend_enabled) return; -@@ -2698,6 +2700,14 @@ void resume_console(void) +@@ -2705,6 +2707,14 @@ void resume_console(void) */ synchronize_srcu(&console_srcu); @@ -401,7 +401,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> pr_flush(1000, true); } -@@ -3018,6 +3028,13 @@ static bool console_flush_all(bool do_co +@@ -3025,6 +3035,13 @@ static bool console_flush_all(bool do_co u64 printk_seq; bool progress; @@ -415,7 +415,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> if (!console_is_usable(con, flags)) continue; any_usable = true; -@@ -3313,9 +3330,23 @@ EXPORT_SYMBOL(console_stop); +@@ -3320,9 +3337,23 @@ EXPORT_SYMBOL(console_stop); void console_start(struct console *console) { diff --git a/debian/patches-rt/0037-serial-meson-Use-port-lock-wrappers.patch b/debian/patches-rt/0037-serial-meson-Use-port-lock-wrappers.patch deleted file mode 100644 index d2efb460bc..0000000000 --- a/debian/patches-rt/0037-serial-meson-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,168 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:54 +0206 -Subject: [PATCH 037/134] serial: meson: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Acked-by: Neil Armstrong <neil.armstrong@linaro.org> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-38-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/meson_uart.c | 30 +++++++++++++++--------------- - 1 file changed, 15 insertions(+), 15 deletions(-) - ---- a/drivers/tty/serial/meson_uart.c -+++ b/drivers/tty/serial/meson_uart.c -@@ -129,14 +129,14 @@ static void meson_uart_shutdown(struct u - - free_irq(port->irq, port); - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - val = readl(port->membase + AML_UART_CONTROL); - val &= ~AML_UART_RX_EN; - val &= ~(AML_UART_RX_INT_EN | AML_UART_TX_INT_EN); - writel(val, port->membase + AML_UART_CONTROL); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static void meson_uart_start_tx(struct uart_port *port) -@@ -238,7 +238,7 @@ static irqreturn_t meson_uart_interrupt( - { - struct uart_port *port = (struct uart_port *)dev_id; - -- spin_lock(&port->lock); -+ uart_port_lock(port); - - if (!(readl(port->membase + AML_UART_STATUS) & AML_UART_RX_EMPTY)) - meson_receive_chars(port); -@@ -248,7 +248,7 @@ static irqreturn_t meson_uart_interrupt( - meson_uart_start_tx(port); - } - -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - - return IRQ_HANDLED; - } -@@ -284,7 +284,7 @@ static int meson_uart_startup(struct uar - u32 val; - int ret = 0; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - val = readl(port->membase + AML_UART_CONTROL); - val |= AML_UART_CLEAR_ERR; -@@ -301,7 +301,7 @@ static int meson_uart_startup(struct uar - val = (AML_UART_RECV_IRQ(1) | AML_UART_XMIT_IRQ(port->fifosize / 2)); - writel(val, port->membase + AML_UART_MISC); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - ret = request_irq(port->irq, meson_uart_interrupt, 0, - port->name, port); -@@ -341,7 +341,7 @@ static void meson_uart_set_termios(struc - unsigned long flags; - u32 val; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - cflags = termios->c_cflag; - iflags = termios->c_iflag; -@@ -405,7 +405,7 @@ static void meson_uart_set_termios(struc - AML_UART_FRAME_ERR; - - uart_update_timeout(port, termios->c_cflag, baud); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static int meson_uart_verify_port(struct uart_port *port, -@@ -464,14 +464,14 @@ static int meson_uart_poll_get_char(stru - u32 c; - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - if (readl(port->membase + AML_UART_STATUS) & AML_UART_RX_EMPTY) - c = NO_POLL_CHAR; - else - c = readl(port->membase + AML_UART_RFIFO); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - return c; - } -@@ -482,7 +482,7 @@ static void meson_uart_poll_put_char(str - u32 reg; - int ret; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* Wait until FIFO is empty or timeout */ - ret = readl_poll_timeout_atomic(port->membase + AML_UART_STATUS, reg, -@@ -506,7 +506,7 @@ static void meson_uart_poll_put_char(str - dev_err(port->dev, "Timeout waiting for UART TX EMPTY\n"); - - out: -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - #endif /* CONFIG_CONSOLE_POLL */ -@@ -563,9 +563,9 @@ static void meson_serial_port_write(stru - if (port->sysrq) { - locked = 0; - } else if (oops_in_progress) { -- locked = spin_trylock(&port->lock); -+ locked = uart_port_trylock(port); - } else { -- spin_lock(&port->lock); -+ uart_port_lock(port); - locked = 1; - } - -@@ -577,7 +577,7 @@ static void meson_serial_port_write(stru - writel(val, port->membase + AML_UART_CONTROL); - - if (locked) -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - local_irq_restore(flags); - } - diff --git a/debian/patches-rt/0122-printk-Atomic-print-in-printk-context-on-shutdown.patch b/debian/patches-rt/0038-printk-Atomic-print-in-printk-context-on-shutdown.patch index 35c88289b1..1f51022ae4 100644 --- a/debian/patches-rt/0122-printk-Atomic-print-in-printk-context-on-shutdown.patch +++ b/debian/patches-rt/0038-printk-Atomic-print-in-printk-context-on-shutdown.patch @@ -1,7 +1,7 @@ From: John Ogness <john.ogness@linutronix.de> Date: Mon, 23 Oct 2023 17:43:48 +0000 -Subject: [PATCH 122/134] printk: Atomic print in printk context on shutdown -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 38/50] printk: Atomic print in printk context on shutdown +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz For nbcon consoles, normally the printing is handled by the dedicated console printing threads. However, on shutdown the @@ -19,7 +19,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> --- a/kernel/printk/printk.c +++ b/kernel/printk/printk.c -@@ -2389,13 +2389,18 @@ asmlinkage int vprintk_emit(int facility +@@ -2388,13 +2388,18 @@ asmlinkage int vprintk_emit(int facility * * - When this CPU is in panic. * diff --git a/debian/patches-rt/0038-serial-milbeaut_usio-Use-port-lock-wrappers.patch b/debian/patches-rt/0038-serial-milbeaut_usio-Use-port-lock-wrappers.patch deleted file mode 100644 index 47b1b7f3cc..0000000000 --- a/debian/patches-rt/0038-serial-milbeaut_usio-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,101 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:55 +0206 -Subject: [PATCH 038/134] serial: milbeaut_usio: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-39-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/milbeaut_usio.c | 16 ++++++++-------- - 1 file changed, 8 insertions(+), 8 deletions(-) - ---- a/drivers/tty/serial/milbeaut_usio.c -+++ b/drivers/tty/serial/milbeaut_usio.c -@@ -207,9 +207,9 @@ static irqreturn_t mlb_usio_rx_irq(int i - { - struct uart_port *port = dev_id; - -- spin_lock(&port->lock); -+ uart_port_lock(port); - mlb_usio_rx_chars(port); -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - - return IRQ_HANDLED; - } -@@ -218,10 +218,10 @@ static irqreturn_t mlb_usio_tx_irq(int i - { - struct uart_port *port = dev_id; - -- spin_lock(&port->lock); -+ uart_port_lock(port); - if (readb(port->membase + MLB_USIO_REG_SSR) & MLB_USIO_SSR_TBI) - mlb_usio_tx_chars(port); -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - - return IRQ_HANDLED; - } -@@ -267,7 +267,7 @@ static int mlb_usio_startup(struct uart_ - escr = readb(port->membase + MLB_USIO_REG_ESCR); - if (of_property_read_bool(port->dev->of_node, "auto-flow-control")) - escr |= MLB_USIO_ESCR_FLWEN; -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - writeb(0, port->membase + MLB_USIO_REG_SCR); - writeb(escr, port->membase + MLB_USIO_REG_ESCR); - writeb(MLB_USIO_SCR_UPCL, port->membase + MLB_USIO_REG_SCR); -@@ -282,7 +282,7 @@ static int mlb_usio_startup(struct uart_ - - writeb(MLB_USIO_SCR_TXE | MLB_USIO_SCR_RIE | MLB_USIO_SCR_TBIE | - MLB_USIO_SCR_RXE, port->membase + MLB_USIO_REG_SCR); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - return 0; - } -@@ -337,7 +337,7 @@ static void mlb_usio_set_termios(struct - else - quot = 0; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - uart_update_timeout(port, termios->c_cflag, baud); - port->read_status_mask = MLB_USIO_SSR_ORE | MLB_USIO_SSR_RDRF | - MLB_USIO_SSR_TDRE; -@@ -367,7 +367,7 @@ static void mlb_usio_set_termios(struct - writew(BIT(12), port->membase + MLB_USIO_REG_FBYTE); - writeb(MLB_USIO_SCR_RIE | MLB_USIO_SCR_RXE | MLB_USIO_SCR_TBIE | - MLB_USIO_SCR_TXE, port->membase + MLB_USIO_REG_SCR); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static const char *mlb_usio_type(struct uart_port *port) diff --git a/debian/patches-rt/0123-printk-nbcon-Add-context-to-console_is_usable.patch b/debian/patches-rt/0039-printk-nbcon-Add-context-to-console_is_usable.patch index 26a494c165..7702309536 100644 --- a/debian/patches-rt/0123-printk-nbcon-Add-context-to-console_is_usable.patch +++ b/debian/patches-rt/0039-printk-nbcon-Add-context-to-console_is_usable.patch @@ -1,7 +1,7 @@ From: John Ogness <john.ogness@linutronix.de> Date: Tue, 26 Sep 2023 14:43:30 +0000 -Subject: [PATCH 123/134] printk: nbcon: Add context to console_is_usable() -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 39/50] printk: nbcon: Add context to console_is_usable() +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz The nbcon consoles have two callbacks to be used for different contexts. In order to determine if an nbcon console is usable, @@ -88,7 +88,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> if (nbcon_seq_read(con) >= stop_seq) --- a/kernel/printk/printk.c +++ b/kernel/printk/printk.c -@@ -3040,7 +3040,7 @@ static bool console_flush_all(bool do_co +@@ -3047,7 +3047,7 @@ static bool console_flush_all(bool do_co if ((flags & CON_NBCON) && con->kthread) continue; @@ -97,7 +97,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> continue; any_usable = true; -@@ -3945,8 +3945,10 @@ static bool __pr_flush(struct console *c +@@ -3952,8 +3952,10 @@ static bool __pr_flush(struct console *c * that they make forward progress, so only increment * @diff for usable consoles. */ diff --git a/debian/patches-rt/0039-serial-mpc52xx-Use-port-lock-wrappers.patch b/debian/patches-rt/0039-serial-mpc52xx-Use-port-lock-wrappers.patch deleted file mode 100644 index ee7014a925..0000000000 --- a/debian/patches-rt/0039-serial-mpc52xx-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,89 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:56 +0206 -Subject: [PATCH 039/134] serial: mpc52xx: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-40-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/mpc52xx_uart.c | 12 ++++++------ - 1 file changed, 6 insertions(+), 6 deletions(-) - ---- a/drivers/tty/serial/mpc52xx_uart.c -+++ b/drivers/tty/serial/mpc52xx_uart.c -@@ -1096,14 +1096,14 @@ static void - mpc52xx_uart_break_ctl(struct uart_port *port, int ctl) - { - unsigned long flags; -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - if (ctl == -1) - psc_ops->command(port, MPC52xx_PSC_START_BRK); - else - psc_ops->command(port, MPC52xx_PSC_STOP_BRK); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static int -@@ -1214,7 +1214,7 @@ mpc52xx_uart_set_termios(struct uart_por - } - - /* Get the lock */ -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* Do our best to flush TX & RX, so we don't lose anything */ - /* But we don't wait indefinitely ! */ -@@ -1250,7 +1250,7 @@ mpc52xx_uart_set_termios(struct uart_por - psc_ops->command(port, MPC52xx_PSC_RX_ENABLE); - - /* We're all set, release the lock */ -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static const char * -@@ -1477,11 +1477,11 @@ mpc52xx_uart_int(int irq, void *dev_id) - struct uart_port *port = dev_id; - irqreturn_t ret; - -- spin_lock(&port->lock); -+ uart_port_lock(port); - - ret = psc_ops->handle_irq(port); - -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - - return ret; - } diff --git a/debian/patches-rt/0124-printk-nbcon-Add-printer-thread-wakeups.patch b/debian/patches-rt/0040-printk-nbcon-Add-printer-thread-wakeups.patch index 18e02593f8..89e086aa32 100644 --- a/debian/patches-rt/0124-printk-nbcon-Add-printer-thread-wakeups.patch +++ b/debian/patches-rt/0040-printk-nbcon-Add-printer-thread-wakeups.patch @@ -1,7 +1,7 @@ From: Thomas Gleixner <tglx@linutronix.de> Date: Tue, 26 Sep 2023 13:03:52 +0000 -Subject: [PATCH 124/134] printk: nbcon: Add printer thread wakeups -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 40/50] printk: nbcon: Add printer thread wakeups +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz Add a function to wakeup the printer threads. Use the new function when: @@ -34,7 +34,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> #include <linux/rculist.h> #include <linux/rcuwait.h> #include <linux/types.h> -@@ -306,6 +307,7 @@ struct nbcon_write_context { +@@ -313,6 +314,7 @@ struct nbcon_write_context { * @locked_port: True, if the port lock is locked by nbcon * @kthread: Printer kthread for this console * @rcuwait: RCU-safe wait object for @kthread waking @@ -42,7 +42,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> */ struct console { char name[16]; -@@ -339,6 +341,7 @@ struct console { +@@ -346,6 +348,7 @@ struct console { bool locked_port; struct task_struct *kthread; struct rcuwait rcuwait; @@ -134,7 +134,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> } --- a/kernel/printk/printk.c +++ b/kernel/printk/printk.c -@@ -2403,6 +2403,8 @@ asmlinkage int vprintk_emit(int facility +@@ -2402,6 +2402,8 @@ asmlinkage int vprintk_emit(int facility } } @@ -143,7 +143,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> if (do_trylock_unlock) { /* * The caller may be holding system-critical or -@@ -2705,6 +2707,10 @@ void resume_console(void) +@@ -2712,6 +2714,10 @@ void resume_console(void) */ synchronize_srcu(&console_srcu); @@ -154,7 +154,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> cookie = console_srcu_read_lock(); for_each_console_srcu(con) { flags = console_srcu_read_flags(con); -@@ -4097,6 +4103,7 @@ void defer_console_output(void) +@@ -4104,6 +4110,7 @@ void defer_console_output(void) void printk_trigger_flush(void) { diff --git a/debian/patches-rt/0040-serial-mps2-uart-Use-port-lock-wrappers.patch b/debian/patches-rt/0040-serial-mps2-uart-Use-port-lock-wrappers.patch deleted file mode 100644 index a626bdb031..0000000000 --- a/debian/patches-rt/0040-serial-mps2-uart-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,103 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:57 +0206 -Subject: [PATCH 040/134] serial: mps2-uart: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-41-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/mps2-uart.c | 16 ++++++++-------- - 1 file changed, 8 insertions(+), 8 deletions(-) - ---- a/drivers/tty/serial/mps2-uart.c -+++ b/drivers/tty/serial/mps2-uart.c -@@ -188,12 +188,12 @@ static irqreturn_t mps2_uart_rxirq(int i - if (unlikely(!(irqflag & UARTn_INT_RX))) - return IRQ_NONE; - -- spin_lock(&port->lock); -+ uart_port_lock(port); - - mps2_uart_write8(port, UARTn_INT_RX, UARTn_INT); - mps2_uart_rx_chars(port); - -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - - return IRQ_HANDLED; - } -@@ -206,12 +206,12 @@ static irqreturn_t mps2_uart_txirq(int i - if (unlikely(!(irqflag & UARTn_INT_TX))) - return IRQ_NONE; - -- spin_lock(&port->lock); -+ uart_port_lock(port); - - mps2_uart_write8(port, UARTn_INT_TX, UARTn_INT); - mps2_uart_tx_chars(port); - -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - - return IRQ_HANDLED; - } -@@ -222,7 +222,7 @@ static irqreturn_t mps2_uart_oerrirq(int - struct uart_port *port = data; - u8 irqflag = mps2_uart_read8(port, UARTn_INT); - -- spin_lock(&port->lock); -+ uart_port_lock(port); - - if (irqflag & UARTn_INT_RX_OVERRUN) { - struct tty_port *tport = &port->state->port; -@@ -244,7 +244,7 @@ static irqreturn_t mps2_uart_oerrirq(int - handled = IRQ_HANDLED; - } - -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - - return handled; - } -@@ -356,12 +356,12 @@ mps2_uart_set_termios(struct uart_port * - - bauddiv = DIV_ROUND_CLOSEST(port->uartclk, baud); - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - uart_update_timeout(port, termios->c_cflag, baud); - mps2_uart_write32(port, bauddiv, UARTn_BAUDDIV); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - if (tty_termios_baud_rate(termios)) - tty_termios_encode_baud_rate(termios, baud, baud); diff --git a/debian/patches-rt/0125-printk-nbcon-Stop-threads-on-shutdown-reboot.patch b/debian/patches-rt/0041-printk-nbcon-Stop-threads-on-shutdown-reboot.patch index 55ec76c5c0..f412a9adf0 100644 --- a/debian/patches-rt/0125-printk-nbcon-Stop-threads-on-shutdown-reboot.patch +++ b/debian/patches-rt/0041-printk-nbcon-Stop-threads-on-shutdown-reboot.patch @@ -1,7 +1,7 @@ From: John Ogness <john.ogness@linutronix.de> Date: Tue, 26 Sep 2023 13:04:15 +0000 -Subject: [PATCH 125/134] printk: nbcon: Stop threads on shutdown/reboot -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 41/50] printk: nbcon: Stop threads on shutdown/reboot +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz Register a syscore_ops shutdown function to stop all threaded printers on shutdown/reboot. This allows printk to transition back diff --git a/debian/patches-rt/0041-serial-msm-Use-port-lock-wrappers.patch b/debian/patches-rt/0041-serial-msm-Use-port-lock-wrappers.patch deleted file mode 100644 index 89b8453303..0000000000 --- a/debian/patches-rt/0041-serial-msm-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,185 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:58 +0206 -Subject: [PATCH 041/134] serial: msm: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Reviewed-by: Bjorn Andersson <quic_bjorande@quicinc.com> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-42-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/msm_serial.c | 38 +++++++++++++++++++------------------- - 1 file changed, 19 insertions(+), 19 deletions(-) - ---- a/drivers/tty/serial/msm_serial.c -+++ b/drivers/tty/serial/msm_serial.c -@@ -444,7 +444,7 @@ static void msm_complete_tx_dma(void *ar - unsigned int count; - u32 val; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* Already stopped */ - if (!dma->count) -@@ -476,7 +476,7 @@ static void msm_complete_tx_dma(void *ar - - msm_handle_tx(port); - done: -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static int msm_handle_tx_dma(struct msm_port *msm_port, unsigned int count) -@@ -549,7 +549,7 @@ static void msm_complete_rx_dma(void *ar - unsigned long flags; - u32 val; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* Already stopped */ - if (!dma->count) -@@ -587,16 +587,16 @@ static void msm_complete_rx_dma(void *ar - if (!(port->read_status_mask & MSM_UART_SR_RX_BREAK)) - flag = TTY_NORMAL; - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - sysrq = uart_handle_sysrq_char(port, dma->virt[i]); -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - if (!sysrq) - tty_insert_flip_char(tport, dma->virt[i], flag); - } - - msm_start_rx_dma(msm_port); - done: -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - if (count) - tty_flip_buffer_push(tport); -@@ -762,9 +762,9 @@ static void msm_handle_rx_dm(struct uart - if (!(port->read_status_mask & MSM_UART_SR_RX_BREAK)) - flag = TTY_NORMAL; - -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - sysrq = uart_handle_sysrq_char(port, buf[i]); -- spin_lock(&port->lock); -+ uart_port_lock(port); - if (!sysrq) - tty_insert_flip_char(tport, buf[i], flag); - } -@@ -824,9 +824,9 @@ static void msm_handle_rx(struct uart_po - else if (sr & MSM_UART_SR_PAR_FRAME_ERR) - flag = TTY_FRAME; - -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - sysrq = uart_handle_sysrq_char(port, c); -- spin_lock(&port->lock); -+ uart_port_lock(port); - if (!sysrq) - tty_insert_flip_char(tport, c, flag); - } -@@ -951,7 +951,7 @@ static irqreturn_t msm_uart_irq(int irq, - unsigned int misr; - u32 val; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - misr = msm_read(port, MSM_UART_MISR); - msm_write(port, 0, MSM_UART_IMR); /* disable interrupt */ - -@@ -983,7 +983,7 @@ static irqreturn_t msm_uart_irq(int irq, - msm_handle_delta_cts(port); - - msm_write(port, msm_port->imr, MSM_UART_IMR); /* restore interrupt */ -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - return IRQ_HANDLED; - } -@@ -1128,13 +1128,13 @@ static int msm_set_baud_rate(struct uart - unsigned long flags, rate; - - flags = *saved_flags; -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - entry = msm_find_best_baud(port, baud, &rate); - clk_set_rate(msm_port->clk, rate); - baud = rate / 16 / entry->divisor; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - *saved_flags = flags; - port->uartclk = rate; - -@@ -1266,7 +1266,7 @@ static void msm_set_termios(struct uart_ - unsigned long flags; - unsigned int baud, mr; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - if (dma->chan) /* Terminate if any */ - msm_stop_dma(port, dma); -@@ -1338,7 +1338,7 @@ static void msm_set_termios(struct uart_ - /* Try to use DMA */ - msm_start_rx_dma(msm_port); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static const char *msm_type(struct uart_port *port) -@@ -1620,9 +1620,9 @@ static void __msm_console_write(struct u - if (port->sysrq) - locked = 0; - else if (oops_in_progress) -- locked = spin_trylock(&port->lock); -+ locked = uart_port_trylock(port); - else -- spin_lock(&port->lock); -+ uart_port_lock(port); - - if (is_uartdm) - msm_reset_dm_count(port, count); -@@ -1661,7 +1661,7 @@ static void __msm_console_write(struct u - } - - if (locked) -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - - local_irq_restore(flags); - } diff --git a/debian/patches-rt/0126-printk-nbcon-Start-printing-threads.patch b/debian/patches-rt/0042-printk-nbcon-Start-printing-threads.patch index ec41221636..8360fe1876 100644 --- a/debian/patches-rt/0126-printk-nbcon-Start-printing-threads.patch +++ b/debian/patches-rt/0042-printk-nbcon-Start-printing-threads.patch @@ -1,7 +1,7 @@ From: John Ogness <john.ogness@linutronix.de> Date: Tue, 5 Dec 2023 14:09:31 +0000 -Subject: [PATCH 126/134] printk: nbcon: Start printing threads -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 42/50] printk: nbcon: Start printing threads +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz If there are no boot consoles, the printing threads are started in early_initcall. @@ -91,7 +91,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> /** --- a/kernel/printk/printk.c +++ b/kernel/printk/printk.c -@@ -2389,6 +2389,9 @@ asmlinkage int vprintk_emit(int facility +@@ -2388,6 +2388,9 @@ asmlinkage int vprintk_emit(int facility * * - When this CPU is in panic. * @@ -101,7 +101,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> * - During shutdown, since the printing threads may not get * a chance to print the final messages. * -@@ -2398,6 +2401,7 @@ asmlinkage int vprintk_emit(int facility +@@ -2397,6 +2400,7 @@ asmlinkage int vprintk_emit(int facility * with boot consoles. */ if (is_panic_context || @@ -109,7 +109,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> (system_state > SYSTEM_RUNNING)) { nbcon_atomic_flush_all(); } -@@ -3685,6 +3689,7 @@ EXPORT_SYMBOL(register_console); +@@ -3692,6 +3696,7 @@ EXPORT_SYMBOL(register_console); /* Must be called under console_list_lock(). */ static int unregister_console_locked(struct console *console) { @@ -117,7 +117,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> bool found_legacy_con = false; bool found_nbcon_con = false; bool found_boot_con = false; -@@ -3756,6 +3761,15 @@ static int unregister_console_locked(str +@@ -3763,6 +3768,15 @@ static int unregister_console_locked(str if (!found_nbcon_con) have_nbcon_console = false; diff --git a/debian/patches-rt/0042-serial-mvebu-uart-Use-port-lock-wrappers.patch b/debian/patches-rt/0042-serial-mvebu-uart-Use-port-lock-wrappers.patch deleted file mode 100644 index 28b2c3b46e..0000000000 --- a/debian/patches-rt/0042-serial-mvebu-uart-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,108 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:43:59 +0206 -Subject: [PATCH 042/134] serial: mvebu-uart: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-43-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/mvebu-uart.c | 18 +++++++++--------- - 1 file changed, 9 insertions(+), 9 deletions(-) - ---- a/drivers/tty/serial/mvebu-uart.c -+++ b/drivers/tty/serial/mvebu-uart.c -@@ -187,9 +187,9 @@ static unsigned int mvebu_uart_tx_empty( - unsigned long flags; - unsigned int st; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - st = readl(port->membase + UART_STAT); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - return (st & STAT_TX_EMP) ? TIOCSER_TEMT : 0; - } -@@ -249,14 +249,14 @@ static void mvebu_uart_break_ctl(struct - unsigned int ctl; - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - ctl = readl(port->membase + UART_CTRL(port)); - if (brk == -1) - ctl |= CTRL_SND_BRK_SEQ; - else - ctl &= ~CTRL_SND_BRK_SEQ; - writel(ctl, port->membase + UART_CTRL(port)); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static void mvebu_uart_rx_chars(struct uart_port *port, unsigned int status) -@@ -540,7 +540,7 @@ static void mvebu_uart_set_termios(struc - unsigned long flags; - unsigned int baud, min_baud, max_baud; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - port->read_status_mask = STAT_RX_RDY(port) | STAT_OVR_ERR | - STAT_TX_RDY(port) | STAT_TX_FIFO_FUL; -@@ -589,7 +589,7 @@ static void mvebu_uart_set_termios(struc - uart_update_timeout(port, termios->c_cflag, baud); - } - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static const char *mvebu_uart_type(struct uart_port *port) -@@ -735,9 +735,9 @@ static void mvebu_uart_console_write(str - int locked = 1; - - if (oops_in_progress) -- locked = spin_trylock_irqsave(&port->lock, flags); -+ locked = uart_port_trylock_irqsave(port, &flags); - else -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - ier = readl(port->membase + UART_CTRL(port)) & CTRL_BRK_INT; - intr = readl(port->membase + UART_INTR(port)) & -@@ -758,7 +758,7 @@ static void mvebu_uart_console_write(str - } - - if (locked) -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static int mvebu_uart_console_setup(struct console *co, char *options) diff --git a/debian/patches-rt/0127-proc-Add-nbcon-support-for-proc-consoles.patch b/debian/patches-rt/0043-proc-Add-nbcon-support-for-proc-consoles.patch index 615ecb02a3..4e1b940659 100644 --- a/debian/patches-rt/0127-proc-Add-nbcon-support-for-proc-consoles.patch +++ b/debian/patches-rt/0043-proc-Add-nbcon-support-for-proc-consoles.patch @@ -1,7 +1,7 @@ From: John Ogness <john.ogness@linutronix.de> Date: Tue, 26 Sep 2023 13:31:00 +0000 -Subject: [PATCH 127/134] proc: Add nbcon support for /proc/consoles -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 43/50] proc: Add nbcon support for /proc/consoles +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz Update /proc/consoles output to show 'W' if an nbcon write callback is implemented (write_atomic or write_thread). diff --git a/debian/patches-rt/0043-serial-omap-Use-port-lock-wrappers.patch b/debian/patches-rt/0043-serial-omap-Use-port-lock-wrappers.patch deleted file mode 100644 index a79d6253c4..0000000000 --- a/debian/patches-rt/0043-serial-omap-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,180 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:44:00 +0206 -Subject: [PATCH 043/134] serial: omap: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-44-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/omap-serial.c | 38 +++++++++++++++++++------------------- - 1 file changed, 19 insertions(+), 19 deletions(-) - ---- a/drivers/tty/serial/omap-serial.c -+++ b/drivers/tty/serial/omap-serial.c -@@ -390,10 +390,10 @@ static void serial_omap_throttle(struct - struct uart_omap_port *up = to_uart_omap_port(port); - unsigned long flags; - -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - up->ier &= ~(UART_IER_RLSI | UART_IER_RDI); - serial_out(up, UART_IER, up->ier); -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - } - - static void serial_omap_unthrottle(struct uart_port *port) -@@ -401,10 +401,10 @@ static void serial_omap_unthrottle(struc - struct uart_omap_port *up = to_uart_omap_port(port); - unsigned long flags; - -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - up->ier |= UART_IER_RLSI | UART_IER_RDI; - serial_out(up, UART_IER, up->ier); -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - } - - static unsigned int check_modem_status(struct uart_omap_port *up) -@@ -527,7 +527,7 @@ static irqreturn_t serial_omap_irq(int i - irqreturn_t ret = IRQ_NONE; - int max_count = 256; - -- spin_lock(&up->port.lock); -+ uart_port_lock(&up->port); - - do { - iir = serial_in(up, UART_IIR); -@@ -563,7 +563,7 @@ static irqreturn_t serial_omap_irq(int i - } - } while (max_count--); - -- spin_unlock(&up->port.lock); -+ uart_port_unlock(&up->port); - - tty_flip_buffer_push(&up->port.state->port); - -@@ -579,9 +579,9 @@ static unsigned int serial_omap_tx_empty - unsigned int ret = 0; - - dev_dbg(up->port.dev, "serial_omap_tx_empty+%d\n", up->port.line); -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - ret = serial_in(up, UART_LSR) & UART_LSR_TEMT ? TIOCSER_TEMT : 0; -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - - return ret; - } -@@ -647,13 +647,13 @@ static void serial_omap_break_ctl(struct - unsigned long flags; - - dev_dbg(up->port.dev, "serial_omap_break_ctl+%d\n", up->port.line); -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - if (break_state == -1) - up->lcr |= UART_LCR_SBC; - else - up->lcr &= ~UART_LCR_SBC; - serial_out(up, UART_LCR, up->lcr); -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - } - - static int serial_omap_startup(struct uart_port *port) -@@ -701,13 +701,13 @@ static int serial_omap_startup(struct ua - * Now, initialize the UART - */ - serial_out(up, UART_LCR, UART_LCR_WLEN8); -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - /* - * Most PC uarts need OUT2 raised to enable interrupts. - */ - up->port.mctrl |= TIOCM_OUT2; - serial_omap_set_mctrl(&up->port, up->port.mctrl); -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - - up->msr_saved_flags = 0; - /* -@@ -742,10 +742,10 @@ static void serial_omap_shutdown(struct - up->ier = 0; - serial_out(up, UART_IER, 0); - -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - up->port.mctrl &= ~TIOCM_OUT2; - serial_omap_set_mctrl(&up->port, up->port.mctrl); -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - - /* - * Disable break condition and FIFOs -@@ -815,7 +815,7 @@ serial_omap_set_termios(struct uart_port - * Ok, we're now changing the port state. Do it with - * interrupts disabled. - */ -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - - /* - * Update the per-port timeout. -@@ -1013,7 +1013,7 @@ serial_omap_set_termios(struct uart_port - - serial_omap_set_mctrl(&up->port, up->port.mctrl); - -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - dev_dbg(up->port.dev, "serial_omap_set_termios+%d\n", up->port.line); - } - -@@ -1216,9 +1216,9 @@ serial_omap_console_write(struct console - if (up->port.sysrq) - locked = 0; - else if (oops_in_progress) -- locked = spin_trylock(&up->port.lock); -+ locked = uart_port_trylock(&up->port); - else -- spin_lock(&up->port.lock); -+ uart_port_lock(&up->port); - - /* - * First save the IER then disable the interrupts -@@ -1245,7 +1245,7 @@ serial_omap_console_write(struct console - check_modem_status(up); - - if (locked) -- spin_unlock(&up->port.lock); -+ uart_port_unlock(&up->port); - local_irq_restore(flags); - } - diff --git a/debian/patches-rt/0044-serial-owl-Use-port-lock-wrappers.patch b/debian/patches-rt/0044-serial-owl-Use-port-lock-wrappers.patch deleted file mode 100644 index fd8dc75013..0000000000 --- a/debian/patches-rt/0044-serial-owl-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,147 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:44:01 +0206 -Subject: [PATCH 044/134] serial: owl: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-45-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/owl-uart.c | 26 +++++++++++++------------- - 1 file changed, 13 insertions(+), 13 deletions(-) - ---- a/drivers/tty/serial/owl-uart.c -+++ b/drivers/tty/serial/owl-uart.c -@@ -125,12 +125,12 @@ static unsigned int owl_uart_tx_empty(st - u32 val; - unsigned int ret; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - val = owl_uart_read(port, OWL_UART_STAT); - ret = (val & OWL_UART_STAT_TFES) ? TIOCSER_TEMT : 0; - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - return ret; - } -@@ -232,7 +232,7 @@ static irqreturn_t owl_uart_irq(int irq, - unsigned long flags; - u32 stat; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - stat = owl_uart_read(port, OWL_UART_STAT); - -@@ -246,7 +246,7 @@ static irqreturn_t owl_uart_irq(int irq, - stat |= OWL_UART_STAT_RIP | OWL_UART_STAT_TIP; - owl_uart_write(port, stat, OWL_UART_STAT); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - return IRQ_HANDLED; - } -@@ -256,14 +256,14 @@ static void owl_uart_shutdown(struct uar - u32 val; - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - val = owl_uart_read(port, OWL_UART_CTL); - val &= ~(OWL_UART_CTL_TXIE | OWL_UART_CTL_RXIE - | OWL_UART_CTL_TXDE | OWL_UART_CTL_RXDE | OWL_UART_CTL_EN); - owl_uart_write(port, val, OWL_UART_CTL); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - free_irq(port->irq, port); - } -@@ -279,7 +279,7 @@ static int owl_uart_startup(struct uart_ - if (ret) - return ret; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - val = owl_uart_read(port, OWL_UART_STAT); - val |= OWL_UART_STAT_RIP | OWL_UART_STAT_TIP -@@ -291,7 +291,7 @@ static int owl_uart_startup(struct uart_ - val |= OWL_UART_CTL_EN; - owl_uart_write(port, val, OWL_UART_CTL); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - return 0; - } -@@ -311,7 +311,7 @@ static void owl_uart_set_termios(struct - u32 ctl; - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - ctl = owl_uart_read(port, OWL_UART_CTL); - -@@ -371,7 +371,7 @@ static void owl_uart_set_termios(struct - - uart_update_timeout(port, termios->c_cflag, baud); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static void owl_uart_release_port(struct uart_port *port) -@@ -515,9 +515,9 @@ static void owl_uart_port_write(struct u - if (port->sysrq) - locked = 0; - else if (oops_in_progress) -- locked = spin_trylock(&port->lock); -+ locked = uart_port_trylock(port); - else { -- spin_lock(&port->lock); -+ uart_port_lock(port); - locked = 1; - } - -@@ -541,7 +541,7 @@ static void owl_uart_port_write(struct u - owl_uart_write(port, old_ctl, OWL_UART_CTL); - - if (locked) -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - - local_irq_restore(flags); - } diff --git a/debian/patches-rt/0128-tty-sysfs-Add-nbcon-support-for-active.patch b/debian/patches-rt/0044-tty-sysfs-Add-nbcon-support-for-active.patch index f8b285f432..e0cf557da2 100644 --- a/debian/patches-rt/0128-tty-sysfs-Add-nbcon-support-for-active.patch +++ b/debian/patches-rt/0044-tty-sysfs-Add-nbcon-support-for-active.patch @@ -1,7 +1,7 @@ From: John Ogness <john.ogness@linutronix.de> Date: Fri, 22 Sep 2023 14:31:09 +0000 -Subject: [PATCH 128/134] tty: sysfs: Add nbcon support for 'active' -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 44/50] tty: sysfs: Add nbcon support for 'active' +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz Allow the 'active' attribute to list nbcon consoles. @@ -13,7 +13,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> --- a/drivers/tty/tty_io.c +++ b/drivers/tty/tty_io.c -@@ -3540,8 +3540,15 @@ static ssize_t show_cons_active(struct d +@@ -3544,8 +3544,15 @@ static ssize_t show_cons_active(struct d for_each_console(c) { if (!c->device) continue; diff --git a/debian/patches-rt/0129-printk-nbcon-Provide-function-to-reacquire-ownership.patch b/debian/patches-rt/0045-printk-nbcon-Provide-function-to-reacquire-ownership.patch index e878a4b1b7..98e303d30e 100644 --- a/debian/patches-rt/0129-printk-nbcon-Provide-function-to-reacquire-ownership.patch +++ b/debian/patches-rt/0045-printk-nbcon-Provide-function-to-reacquire-ownership.patch @@ -1,8 +1,7 @@ From: John Ogness <john.ogness@linutronix.de> Date: Fri, 20 Oct 2023 10:01:58 +0000 -Subject: [PATCH 129/134] printk: nbcon: Provide function to reacquire - ownership -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 45/50] printk: nbcon: Provide function to reacquire ownership +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz Contexts may become nbcon owners for various reasons, not just for printing. Indeed, the port->lock wrapper takes ownership @@ -34,7 +33,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> --- a/include/linux/console.h +++ b/include/linux/console.h -@@ -474,12 +474,14 @@ extern void nbcon_cpu_emergency_exit(voi +@@ -481,12 +481,14 @@ extern void nbcon_cpu_emergency_exit(voi extern bool nbcon_can_proceed(struct nbcon_write_context *wctxt); extern bool nbcon_enter_unsafe(struct nbcon_write_context *wctxt); extern bool nbcon_exit_unsafe(struct nbcon_write_context *wctxt); diff --git a/debian/patches-rt/0045-serial-pch-Use-port-lock-wrappers.patch b/debian/patches-rt/0045-serial-pch-Use-port-lock-wrappers.patch deleted file mode 100644 index 6c4781cd09..0000000000 --- a/debian/patches-rt/0045-serial-pch-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,80 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:44:02 +0206 -Subject: [PATCH 045/134] serial: pch: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-46-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/pch_uart.c | 10 +++++----- - 1 file changed, 5 insertions(+), 5 deletions(-) - ---- a/drivers/tty/serial/pch_uart.c -+++ b/drivers/tty/serial/pch_uart.c -@@ -1347,7 +1347,7 @@ static void pch_uart_set_termios(struct - baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk / 16); - - spin_lock_irqsave(&priv->lock, flags); -- spin_lock(&port->lock); -+ uart_port_lock(port); - - uart_update_timeout(port, termios->c_cflag, baud); - rtn = pch_uart_hal_set_line(priv, baud, parity, bits, stb); -@@ -1360,7 +1360,7 @@ static void pch_uart_set_termios(struct - tty_termios_encode_baud_rate(termios, baud, baud); - - out: -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - spin_unlock_irqrestore(&priv->lock, flags); - } - -@@ -1581,10 +1581,10 @@ pch_console_write(struct console *co, co - port_locked = 0; - } else if (oops_in_progress) { - priv_locked = spin_trylock(&priv->lock); -- port_locked = spin_trylock(&priv->port.lock); -+ port_locked = uart_port_trylock(&priv->port); - } else { - spin_lock(&priv->lock); -- spin_lock(&priv->port.lock); -+ uart_port_lock(&priv->port); - } - - /* -@@ -1604,7 +1604,7 @@ pch_console_write(struct console *co, co - iowrite8(ier, priv->membase + UART_IER); - - if (port_locked) -- spin_unlock(&priv->port.lock); -+ uart_port_unlock(&priv->port); - if (priv_locked) - spin_unlock(&priv->lock); - local_irq_restore(flags); diff --git a/debian/patches-rt/0130-serial-core-Provide-low-level-functions-to-port-lock.patch b/debian/patches-rt/0046-serial-core-Provide-low-level-functions-to-port-lock.patch index e8e506fe52..b6c03021b1 100644 --- a/debian/patches-rt/0130-serial-core-Provide-low-level-functions-to-port-lock.patch +++ b/debian/patches-rt/0046-serial-core-Provide-low-level-functions-to-port-lock.patch @@ -1,8 +1,7 @@ From: John Ogness <john.ogness@linutronix.de> Date: Mon, 11 Dec 2023 09:19:18 +0000 -Subject: [PATCH 130/134] serial: core: Provide low-level functions to port - lock -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 46/50] serial: core: Provide low-level functions to port lock +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz The nbcon console's driver_enter() and driver_exit() callbacks need to lock the port lock in order to synchronize against other hardware diff --git a/debian/patches-rt/0046-serial-pic32-Use-port-lock-wrappers.patch b/debian/patches-rt/0046-serial-pic32-Use-port-lock-wrappers.patch deleted file mode 100644 index 7cb8da7d86..0000000000 --- a/debian/patches-rt/0046-serial-pic32-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,118 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:44:03 +0206 -Subject: [PATCH 046/134] serial: pic32: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-47-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/pic32_uart.c | 20 ++++++++++---------- - 1 file changed, 10 insertions(+), 10 deletions(-) - ---- a/drivers/tty/serial/pic32_uart.c -+++ b/drivers/tty/serial/pic32_uart.c -@@ -243,7 +243,7 @@ static void pic32_uart_break_ctl(struct - struct pic32_sport *sport = to_pic32_sport(port); - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - if (ctl) - pic32_uart_writel(sport, PIC32_SET(PIC32_UART_STA), -@@ -252,7 +252,7 @@ static void pic32_uart_break_ctl(struct - pic32_uart_writel(sport, PIC32_CLR(PIC32_UART_STA), - PIC32_UART_STA_UTXBRK); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - /* get port type in string format */ -@@ -274,7 +274,7 @@ static void pic32_uart_do_rx(struct uart - */ - max_count = PIC32_UART_RX_FIFO_DEPTH; - -- spin_lock(&port->lock); -+ uart_port_lock(port); - - tty = &port->state->port; - -@@ -331,7 +331,7 @@ static void pic32_uart_do_rx(struct uart - - } while (--max_count); - -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - - tty_flip_buffer_push(tty); - } -@@ -410,9 +410,9 @@ static irqreturn_t pic32_uart_tx_interru - struct uart_port *port = dev_id; - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - pic32_uart_do_tx(port); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - return IRQ_HANDLED; - } -@@ -580,9 +580,9 @@ static void pic32_uart_shutdown(struct u - unsigned long flags; - - /* disable uart */ -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - pic32_uart_dsbl_and_mask(port); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - clk_disable_unprepare(sport->clk); - - /* free all 3 interrupts for this UART */ -@@ -604,7 +604,7 @@ static void pic32_uart_set_termios(struc - unsigned int quot; - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* disable uart and mask all interrupts while changing speed */ - pic32_uart_dsbl_and_mask(port); -@@ -672,7 +672,7 @@ static void pic32_uart_set_termios(struc - /* enable uart */ - pic32_uart_en_and_unmask(port); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - /* serial core request to claim uart iomem */ diff --git a/debian/patches-rt/0131-serial-8250-Switch-to-nbcon-console.patch b/debian/patches-rt/0047-serial-8250-Switch-to-nbcon-console.patch index 7ba577d9c4..015a996d2c 100644 --- a/debian/patches-rt/0131-serial-8250-Switch-to-nbcon-console.patch +++ b/debian/patches-rt/0047-serial-8250-Switch-to-nbcon-console.patch @@ -1,7 +1,7 @@ From: John Ogness <john.ogness@linutronix.de> Date: Wed, 13 Sep 2023 15:30:36 +0000 -Subject: [PATCH 131/134] serial: 8250: Switch to nbcon console -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 47/50] serial: 8250: Switch to nbcon console +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz Implement the necessary callbacks to switch the 8250 console driver to perform as an nbcon console. @@ -92,7 +92,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> }; --- a/drivers/tty/serial/8250/8250_port.c +++ b/drivers/tty/serial/8250/8250_port.c -@@ -557,6 +557,11 @@ static int serial8250_em485_init(struct +@@ -550,6 +550,11 @@ static int serial8250_em485_init(struct if (!p->em485) return -ENOMEM; @@ -104,7 +104,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> hrtimer_init(&p->em485->stop_tx_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL); hrtimer_init(&p->em485->start_tx_timer, CLOCK_MONOTONIC, -@@ -709,7 +714,11 @@ static void serial8250_set_sleep(struct +@@ -702,7 +707,11 @@ static void serial8250_set_sleep(struct serial8250_rpm_put(p); } @@ -117,7 +117,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> { if (up->capabilities & UART_CAP_UUE) serial_out(up, UART_IER, UART_IER_UUE); -@@ -717,6 +726,11 @@ static void serial8250_clear_IER(struct +@@ -710,6 +719,11 @@ static void serial8250_clear_IER(struct serial_out(up, UART_IER, 0); } @@ -129,7 +129,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> #ifdef CONFIG_SERIAL_8250_RSA /* * Attempts to turn on the RSA FIFO. Returns zero on failure. -@@ -3328,6 +3342,11 @@ static void serial8250_console_putchar(s +@@ -3320,6 +3334,11 @@ static void serial8250_console_putchar(s wait_for_xmitr(up, UART_LSR_THRE); serial_port_out(port, UART_TX, ch); @@ -141,7 +141,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> } /* -@@ -3356,6 +3375,7 @@ static void serial8250_console_restore(s +@@ -3348,6 +3367,7 @@ static void serial8250_console_restore(s serial8250_out_MCR(up, up->mcr | UART_MCR_DTR | UART_MCR_RTS); } @@ -149,7 +149,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> /* * Print a string to the serial port using the device FIFO * -@@ -3414,7 +3434,7 @@ void serial8250_console_write(struct uar +@@ -3406,7 +3426,7 @@ void serial8250_console_write(struct uar * First save the IER then disable the interrupts */ ier = serial_port_in(port, UART_IER); @@ -158,7 +158,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> /* check scratch reg to see if port powered off during system sleep */ if (up->canary && (up->canary != serial_port_in(port, UART_SCR))) { -@@ -3480,6 +3500,135 @@ void serial8250_console_write(struct uar +@@ -3472,6 +3492,135 @@ void serial8250_console_write(struct uar if (locked) uart_port_unlock_irqrestore(port, flags); } @@ -294,7 +294,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> static unsigned int probe_baud(struct uart_port *port) { -@@ -3498,6 +3647,7 @@ static unsigned int probe_baud(struct ua +@@ -3490,6 +3639,7 @@ static unsigned int probe_baud(struct ua int serial8250_console_setup(struct uart_port *port, char *options, bool probe) { @@ -302,7 +302,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> int baud = 9600; int bits = 8; int parity = 'n'; -@@ -3507,6 +3657,8 @@ int serial8250_console_setup(struct uart +@@ -3499,6 +3649,8 @@ int serial8250_console_setup(struct uart if (!port->iobase && !port->membase) return -ENODEV; diff --git a/debian/patches-rt/0047-serial-pmac_zilog-Use-port-lock-wrappers.patch b/debian/patches-rt/0047-serial-pmac_zilog-Use-port-lock-wrappers.patch deleted file mode 100644 index e4a81157e1..0000000000 --- a/debian/patches-rt/0047-serial-pmac_zilog-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,232 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:44:04 +0206 -Subject: [PATCH 047/134] serial: pmac_zilog: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-48-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/pmac_zilog.c | 52 ++++++++++++++++++++-------------------- - 1 file changed, 26 insertions(+), 26 deletions(-) - ---- a/drivers/tty/serial/pmac_zilog.c -+++ b/drivers/tty/serial/pmac_zilog.c -@@ -246,9 +246,9 @@ static bool pmz_receive_chars(struct uar - #endif /* USE_CTRL_O_SYSRQ */ - if (uap->port.sysrq) { - int swallow; -- spin_unlock(&uap->port.lock); -+ uart_port_unlock(&uap->port); - swallow = uart_handle_sysrq_char(&uap->port, ch); -- spin_lock(&uap->port.lock); -+ uart_port_lock(&uap->port); - if (swallow) - goto next_char; - } -@@ -435,7 +435,7 @@ static irqreturn_t pmz_interrupt(int irq - uap_a = pmz_get_port_A(uap); - uap_b = uap_a->mate; - -- spin_lock(&uap_a->port.lock); -+ uart_port_lock(&uap_a->port); - r3 = read_zsreg(uap_a, R3); - - /* Channel A */ -@@ -456,14 +456,14 @@ static irqreturn_t pmz_interrupt(int irq - rc = IRQ_HANDLED; - } - skip_a: -- spin_unlock(&uap_a->port.lock); -+ uart_port_unlock(&uap_a->port); - if (push) - tty_flip_buffer_push(&uap->port.state->port); - - if (!uap_b) - goto out; - -- spin_lock(&uap_b->port.lock); -+ uart_port_lock(&uap_b->port); - push = false; - if (r3 & (CHBEXT | CHBTxIP | CHBRxIP)) { - if (!ZS_IS_OPEN(uap_b)) { -@@ -481,7 +481,7 @@ static irqreturn_t pmz_interrupt(int irq - rc = IRQ_HANDLED; - } - skip_b: -- spin_unlock(&uap_b->port.lock); -+ uart_port_unlock(&uap_b->port); - if (push) - tty_flip_buffer_push(&uap->port.state->port); - -@@ -497,9 +497,9 @@ static inline u8 pmz_peek_status(struct - unsigned long flags; - u8 status; - -- spin_lock_irqsave(&uap->port.lock, flags); -+ uart_port_lock_irqsave(&uap->port, &flags); - status = read_zsreg(uap, R0); -- spin_unlock_irqrestore(&uap->port.lock, flags); -+ uart_port_unlock_irqrestore(&uap->port, flags); - - return status; - } -@@ -685,7 +685,7 @@ static void pmz_break_ctl(struct uart_po - else - clear_bits |= SND_BRK; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - new_reg = (uap->curregs[R5] | set_bits) & ~clear_bits; - if (new_reg != uap->curregs[R5]) { -@@ -693,7 +693,7 @@ static void pmz_break_ctl(struct uart_po - write_zsreg(uap, R5, uap->curregs[R5]); - } - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - #ifdef CONFIG_PPC_PMAC -@@ -865,18 +865,18 @@ static void pmz_irda_reset(struct uart_p - { - unsigned long flags; - -- spin_lock_irqsave(&uap->port.lock, flags); -+ uart_port_lock_irqsave(&uap->port, &flags); - uap->curregs[R5] |= DTR; - write_zsreg(uap, R5, uap->curregs[R5]); - zssync(uap); -- spin_unlock_irqrestore(&uap->port.lock, flags); -+ uart_port_unlock_irqrestore(&uap->port, flags); - msleep(110); - -- spin_lock_irqsave(&uap->port.lock, flags); -+ uart_port_lock_irqsave(&uap->port, &flags); - uap->curregs[R5] &= ~DTR; - write_zsreg(uap, R5, uap->curregs[R5]); - zssync(uap); -- spin_unlock_irqrestore(&uap->port.lock, flags); -+ uart_port_unlock_irqrestore(&uap->port, flags); - msleep(10); - } - -@@ -896,9 +896,9 @@ static int pmz_startup(struct uart_port - * initialize the chip - */ - if (!ZS_IS_CONS(uap)) { -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - pwr_delay = __pmz_startup(uap); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - sprintf(uap->irq_name, PMACZILOG_NAME"%d", uap->port.line); - if (request_irq(uap->port.irq, pmz_interrupt, IRQF_SHARED, -@@ -921,9 +921,9 @@ static int pmz_startup(struct uart_port - pmz_irda_reset(uap); - - /* Enable interrupt requests for the channel */ -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - pmz_interrupt_control(uap, 1); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - return 0; - } -@@ -933,7 +933,7 @@ static void pmz_shutdown(struct uart_por - struct uart_pmac_port *uap = to_pmz(port); - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* Disable interrupt requests for the channel */ - pmz_interrupt_control(uap, 0); -@@ -948,19 +948,19 @@ static void pmz_shutdown(struct uart_por - pmz_maybe_update_regs(uap); - } - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - /* Release interrupt handler */ - free_irq(uap->port.irq, uap); - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - uap->flags &= ~PMACZILOG_FLAG_IS_OPEN; - - if (!ZS_IS_CONS(uap)) - pmz_set_scc_power(uap, 0); /* Shut the chip down */ - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - /* Shared by TTY driver and serial console setup. The port lock is held -@@ -1247,7 +1247,7 @@ static void pmz_set_termios(struct uart_ - struct uart_pmac_port *uap = to_pmz(port); - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* Disable IRQs on the port */ - pmz_interrupt_control(uap, 0); -@@ -1259,7 +1259,7 @@ static void pmz_set_termios(struct uart_ - if (ZS_IS_OPEN(uap)) - pmz_interrupt_control(uap, 1); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static const char *pmz_type(struct uart_port *port) -@@ -1896,7 +1896,7 @@ static void pmz_console_write(struct con - struct uart_pmac_port *uap = &pmz_ports[con->index]; - unsigned long flags; - -- spin_lock_irqsave(&uap->port.lock, flags); -+ uart_port_lock_irqsave(&uap->port, &flags); - - /* Turn of interrupts and enable the transmitter. */ - write_zsreg(uap, R1, uap->curregs[1] & ~TxINT_ENAB); -@@ -1908,7 +1908,7 @@ static void pmz_console_write(struct con - write_zsreg(uap, R1, uap->curregs[1]); - /* Don't disable the transmitter. */ - -- spin_unlock_irqrestore(&uap->port.lock, flags); -+ uart_port_unlock_irqrestore(&uap->port, flags); - } - - /* diff --git a/debian/patches-rt/0132-printk-Add-kthread-for-all-legacy-consoles.patch b/debian/patches-rt/0048-printk-Add-kthread-for-all-legacy-consoles.patch index 7c46be7133..73a0c337be 100644 --- a/debian/patches-rt/0132-printk-Add-kthread-for-all-legacy-consoles.patch +++ b/debian/patches-rt/0048-printk-Add-kthread-for-all-legacy-consoles.patch @@ -1,7 +1,7 @@ From: John Ogness <john.ogness@linutronix.de> Date: Fri, 22 Sep 2023 17:35:04 +0000 -Subject: [PATCH 132/134] printk: Add kthread for all legacy consoles -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 48/50] printk: Add kthread for all legacy consoles +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz The write callback of legacy consoles make use of spinlocks. This is not permitted with PREEMPT_RT in atomic contexts. @@ -85,7 +85,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> /* All 3 protected by @syslog_lock. */ /* the next printk record to read by syslog(READ) or /proc/kmsg */ static u64 syslog_seq; -@@ -2345,7 +2348,8 @@ asmlinkage int vprintk_emit(int facility +@@ -2344,7 +2347,8 @@ asmlinkage int vprintk_emit(int facility const struct dev_printk_info *dev_info, const char *fmt, va_list args) { @@ -95,7 +95,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> int printed_len; /* Suppress unimportant messages after panic happens */ -@@ -2473,6 +2477,14 @@ EXPORT_SYMBOL(_printk); +@@ -2472,6 +2476,14 @@ EXPORT_SYMBOL(_printk); static bool pr_flush(int timeout_ms, bool reset_on_progress); static bool __pr_flush(struct console *con, int timeout_ms, bool reset_on_progress); @@ -110,7 +110,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> #else /* CONFIG_PRINTK */ #define printk_time false -@@ -2486,6 +2498,8 @@ static u64 syslog_seq; +@@ -2485,6 +2497,8 @@ static u64 syslog_seq; static bool pr_flush(int timeout_ms, bool reset_on_progress) { return true; } static bool __pr_flush(struct console *con, int timeout_ms, bool reset_on_progress) { return true; } @@ -119,7 +119,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> #endif /* CONFIG_PRINTK */ #ifdef CONFIG_EARLY_PRINTK -@@ -2723,6 +2737,8 @@ void resume_console(void) +@@ -2730,6 +2744,8 @@ void resume_console(void) } console_srcu_read_unlock(cookie); @@ -128,7 +128,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> pr_flush(1000, true); } -@@ -2737,7 +2753,8 @@ void resume_console(void) +@@ -2744,7 +2760,8 @@ void resume_console(void) */ static int console_cpu_notify(unsigned int cpu) { @@ -138,7 +138,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> /* If trylock fails, someone else is doing the printing */ if (console_trylock()) console_unlock(); -@@ -2962,31 +2979,43 @@ static bool console_emit_next_record(str +@@ -2969,31 +2986,43 @@ static bool console_emit_next_record(str con->dropped = 0; } @@ -202,7 +202,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> skip: return true; } -@@ -3096,19 +3125,7 @@ static bool console_flush_all(bool do_co +@@ -3103,19 +3132,7 @@ static bool console_flush_all(bool do_co return false; } @@ -223,7 +223,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> { bool do_cond_resched; bool handover; -@@ -3152,6 +3169,32 @@ void console_unlock(void) +@@ -3159,6 +3176,32 @@ void console_unlock(void) */ } while (prb_read_valid(prb, next_seq, NULL) && console_trylock()); } @@ -256,7 +256,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> EXPORT_SYMBOL(console_unlock); /** -@@ -3361,11 +3404,106 @@ void console_start(struct console *conso +@@ -3368,11 +3411,106 @@ void console_start(struct console *conso if (flags & CON_NBCON) nbcon_kthread_wake(console); @@ -363,7 +363,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> static int __read_mostly keep_bootcon; static int __init keep_bootcon_setup(char *str) -@@ -3632,6 +3770,7 @@ void register_console(struct console *ne +@@ -3639,6 +3777,7 @@ void register_console(struct console *ne nbcon_init(newcon); } else { have_legacy_console = true; @@ -371,7 +371,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> } if (newcon->flags & CON_BOOT) -@@ -3770,6 +3909,13 @@ static int unregister_console_locked(str +@@ -3777,6 +3916,13 @@ static int unregister_console_locked(str nbcon_kthread_create(c); } @@ -385,7 +385,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> return res; } -@@ -3929,8 +4075,12 @@ static bool __pr_flush(struct console *c +@@ -3936,8 +4082,12 @@ static bool __pr_flush(struct console *c seq = prb_next_reserve_seq(prb); @@ -400,7 +400,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> console_lock(); console_unlock(); } -@@ -4038,9 +4188,16 @@ static void wake_up_klogd_work_func(stru +@@ -4045,9 +4195,16 @@ static void wake_up_klogd_work_func(stru int pending = this_cpu_xchg(printk_pending, 0); if (pending & PRINTK_PENDING_OUTPUT) { diff --git a/debian/patches-rt/0048-serial-pxa-Use-port-lock-wrappers.patch b/debian/patches-rt/0048-serial-pxa-Use-port-lock-wrappers.patch deleted file mode 100644 index b0df211b6f..0000000000 --- a/debian/patches-rt/0048-serial-pxa-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,150 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:44:05 +0206 -Subject: [PATCH 048/134] serial: pxa: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-49-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/pxa.c | 30 +++++++++++++++--------------- - 1 file changed, 15 insertions(+), 15 deletions(-) - ---- a/drivers/tty/serial/pxa.c -+++ b/drivers/tty/serial/pxa.c -@@ -225,14 +225,14 @@ static inline irqreturn_t serial_pxa_irq - iir = serial_in(up, UART_IIR); - if (iir & UART_IIR_NO_INT) - return IRQ_NONE; -- spin_lock(&up->port.lock); -+ uart_port_lock(&up->port); - lsr = serial_in(up, UART_LSR); - if (lsr & UART_LSR_DR) - receive_chars(up, &lsr); - check_modem_status(up); - if (lsr & UART_LSR_THRE) - transmit_chars(up); -- spin_unlock(&up->port.lock); -+ uart_port_unlock(&up->port); - return IRQ_HANDLED; - } - -@@ -242,9 +242,9 @@ static unsigned int serial_pxa_tx_empty( - unsigned long flags; - unsigned int ret; - -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - ret = serial_in(up, UART_LSR) & UART_LSR_TEMT ? TIOCSER_TEMT : 0; -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - - return ret; - } -@@ -295,13 +295,13 @@ static void serial_pxa_break_ctl(struct - struct uart_pxa_port *up = (struct uart_pxa_port *)port; - unsigned long flags; - -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - if (break_state == -1) - up->lcr |= UART_LCR_SBC; - else - up->lcr &= ~UART_LCR_SBC; - serial_out(up, UART_LCR, up->lcr); -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - } - - static int serial_pxa_startup(struct uart_port *port) -@@ -346,10 +346,10 @@ static int serial_pxa_startup(struct uar - */ - serial_out(up, UART_LCR, UART_LCR_WLEN8); - -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - up->port.mctrl |= TIOCM_OUT2; - serial_pxa_set_mctrl(&up->port, up->port.mctrl); -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - - /* - * Finally, enable interrupts. Note: Modem status interrupts -@@ -383,10 +383,10 @@ static void serial_pxa_shutdown(struct u - up->ier = 0; - serial_out(up, UART_IER, 0); - -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - up->port.mctrl &= ~TIOCM_OUT2; - serial_pxa_set_mctrl(&up->port, up->port.mctrl); -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - - /* - * Disable break condition and FIFOs -@@ -434,7 +434,7 @@ serial_pxa_set_termios(struct uart_port - * Ok, we're now changing the port state. Do it with - * interrupts disabled. - */ -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - - /* - * Ensure the port will be enabled. -@@ -504,7 +504,7 @@ serial_pxa_set_termios(struct uart_port - up->lcr = cval; /* Save LCR */ - serial_pxa_set_mctrl(&up->port, up->port.mctrl); - serial_out(up, UART_FCR, fcr); -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - } - - static void -@@ -608,9 +608,9 @@ serial_pxa_console_write(struct console - if (up->port.sysrq) - locked = 0; - else if (oops_in_progress) -- locked = spin_trylock(&up->port.lock); -+ locked = uart_port_trylock(&up->port); - else -- spin_lock(&up->port.lock); -+ uart_port_lock(&up->port); - - /* - * First save the IER then disable the interrupts -@@ -628,7 +628,7 @@ serial_pxa_console_write(struct console - serial_out(up, UART_IER, ier); - - if (locked) -- spin_unlock(&up->port.lock); -+ uart_port_unlock(&up->port); - local_irq_restore(flags); - clk_disable(up->clk); - diff --git a/debian/patches-rt/0133-serial-8250-revert-drop-lockdep-annotation-from-seri.patch b/debian/patches-rt/0049-serial-8250-revert-drop-lockdep-annotation-from-seri.patch index c9eba0a738..1be252903e 100644 --- a/debian/patches-rt/0133-serial-8250-revert-drop-lockdep-annotation-from-seri.patch +++ b/debian/patches-rt/0049-serial-8250-revert-drop-lockdep-annotation-from-seri.patch @@ -1,8 +1,8 @@ From: John Ogness <john.ogness@linutronix.de> Date: Mon, 2 Oct 2023 15:30:43 +0000 -Subject: [PATCH 133/134] serial: 8250: revert "drop lockdep annotation from +Subject: [PATCH 49/50] serial: 8250: revert "drop lockdep annotation from serial8250_clear_IER()" -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz The 8250 driver no longer depends on @oops_in_progress and will no longer violate the port->lock locking constraints. @@ -17,7 +17,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> --- a/drivers/tty/serial/8250/8250_port.c +++ b/drivers/tty/serial/8250/8250_port.c -@@ -728,6 +728,9 @@ static void __serial8250_clear_IER(struc +@@ -721,6 +721,9 @@ static void __serial8250_clear_IER(struc static inline void serial8250_clear_IER(struct uart_8250_port *up) { diff --git a/debian/patches-rt/0049-serial-qcom-geni-Use-port-lock-wrappers.patch b/debian/patches-rt/0049-serial-qcom-geni-Use-port-lock-wrappers.patch deleted file mode 100644 index 4f1bc6a1cb..0000000000 --- a/debian/patches-rt/0049-serial-qcom-geni-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,71 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:44:06 +0206 -Subject: [PATCH 049/134] serial: qcom-geni: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Reviewed-by: Bjorn Andersson <quic_bjorande@quicinc.com> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-50-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/qcom_geni_serial.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - ---- a/drivers/tty/serial/qcom_geni_serial.c -+++ b/drivers/tty/serial/qcom_geni_serial.c -@@ -482,9 +482,9 @@ static void qcom_geni_serial_console_wri - - uport = &port->uport; - if (oops_in_progress) -- locked = spin_trylock_irqsave(&uport->lock, flags); -+ locked = uart_port_trylock_irqsave(uport, &flags); - else -- spin_lock_irqsave(&uport->lock, flags); -+ uart_port_lock_irqsave(uport, &flags); - - geni_status = readl(uport->membase + SE_GENI_STATUS); - -@@ -520,7 +520,7 @@ static void qcom_geni_serial_console_wri - qcom_geni_serial_setup_tx(uport, port->tx_remaining); - - if (locked) -- spin_unlock_irqrestore(&uport->lock, flags); -+ uart_port_unlock_irqrestore(uport, flags); - } - - static void handle_rx_console(struct uart_port *uport, u32 bytes, bool drop) -@@ -970,7 +970,7 @@ static irqreturn_t qcom_geni_serial_isr( - if (uport->suspended) - return IRQ_NONE; - -- spin_lock(&uport->lock); -+ uart_port_lock(uport); - - m_irq_status = readl(uport->membase + SE_GENI_M_IRQ_STATUS); - s_irq_status = readl(uport->membase + SE_GENI_S_IRQ_STATUS); diff --git a/debian/patches-rt/0134-printk-Avoid-false-positive-lockdep-report-for-legac.patch b/debian/patches-rt/0050-printk-Avoid-false-positive-lockdep-report-for-legac.patch index 225e8db694..7c9f453664 100644 --- a/debian/patches-rt/0134-printk-Avoid-false-positive-lockdep-report-for-legac.patch +++ b/debian/patches-rt/0050-printk-Avoid-false-positive-lockdep-report-for-legac.patch @@ -1,8 +1,8 @@ From: John Ogness <john.ogness@linutronix.de> Date: Mon, 11 Dec 2023 09:34:16 +0000 -Subject: [PATCH 134/134] printk: Avoid false positive lockdep report for - legacy driver. -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Subject: [PATCH 50/50] printk: Avoid false positive lockdep report for legacy + driver. +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz printk may invoke the legacy console driver from atomic context. This leads to a lockdep splat because the console driver will acquire a sleeping lock and the @@ -23,7 +23,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> --- a/kernel/printk/printk.c +++ b/kernel/printk/printk.c -@@ -2817,6 +2817,8 @@ static void __console_unlock(void) +@@ -2824,6 +2824,8 @@ static void __console_unlock(void) up_console_sem(); } @@ -32,7 +32,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> #ifdef CONFIG_PRINTK /* -@@ -2985,7 +2987,7 @@ static bool console_emit_next_record(str +@@ -2992,7 +2994,7 @@ static bool console_emit_next_record(str /* * On PREEMPT_RT this function is either in a thread or * panic context. So there is no need for concern about @@ -41,7 +41,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> */ con->write(con, outbuf, pmsg.outbuf_len); -@@ -3007,7 +3009,9 @@ static bool console_emit_next_record(str +@@ -3014,7 +3016,9 @@ static bool console_emit_next_record(str /* Do not trace print latency. */ stop_critical_timings(); @@ -51,7 +51,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> start_critical_timings(); -@@ -3084,7 +3088,10 @@ static bool console_flush_all(bool do_co +@@ -3091,7 +3095,10 @@ static bool console_flush_all(bool do_co any_usable = true; if (flags & CON_NBCON) { diff --git a/debian/patches-rt/0050-serial-rda-Use-port-lock-wrappers.patch b/debian/patches-rt/0050-serial-rda-Use-port-lock-wrappers.patch deleted file mode 100644 index 6d51972bcd..0000000000 --- a/debian/patches-rt/0050-serial-rda-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,177 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:44:07 +0206 -Subject: [PATCH 050/134] serial: rda: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-51-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/rda-uart.c | 34 +++++++++++++++++----------------- - 1 file changed, 17 insertions(+), 17 deletions(-) - ---- a/drivers/tty/serial/rda-uart.c -+++ b/drivers/tty/serial/rda-uart.c -@@ -139,12 +139,12 @@ static unsigned int rda_uart_tx_empty(st - unsigned int ret; - u32 val; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - val = rda_uart_read(port, RDA_UART_STATUS); - ret = (val & RDA_UART_TX_FIFO_MASK) ? TIOCSER_TEMT : 0; - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - return ret; - } -@@ -246,7 +246,7 @@ static void rda_uart_set_termios(struct - unsigned int baud; - u32 irq_mask; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - baud = uart_get_baud_rate(port, termios, old, 9600, port->uartclk / 4); - rda_uart_change_baudrate(rda_port, baud); -@@ -325,7 +325,7 @@ static void rda_uart_set_termios(struct - /* update the per-port timeout */ - uart_update_timeout(port, termios->c_cflag, baud); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static void rda_uart_send_chars(struct uart_port *port) -@@ -408,7 +408,7 @@ static irqreturn_t rda_interrupt(int irq - unsigned long flags; - u32 val, irq_mask; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* Clear IRQ cause */ - val = rda_uart_read(port, RDA_UART_IRQ_CAUSE); -@@ -425,7 +425,7 @@ static irqreturn_t rda_interrupt(int irq - rda_uart_send_chars(port); - } - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - return IRQ_HANDLED; - } -@@ -436,16 +436,16 @@ static int rda_uart_startup(struct uart_ - int ret; - u32 val; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - rda_uart_write(port, 0, RDA_UART_IRQ_MASK); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - ret = request_irq(port->irq, rda_interrupt, IRQF_NO_SUSPEND, - "rda-uart", port); - if (ret) - return ret; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - val = rda_uart_read(port, RDA_UART_CTRL); - val |= RDA_UART_ENABLE; -@@ -456,7 +456,7 @@ static int rda_uart_startup(struct uart_ - val |= (RDA_UART_RX_DATA_AVAILABLE | RDA_UART_RX_TIMEOUT); - rda_uart_write(port, val, RDA_UART_IRQ_MASK); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - return 0; - } -@@ -466,7 +466,7 @@ static void rda_uart_shutdown(struct uar - unsigned long flags; - u32 val; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - rda_uart_stop_tx(port); - rda_uart_stop_rx(port); -@@ -475,7 +475,7 @@ static void rda_uart_shutdown(struct uar - val &= ~RDA_UART_ENABLE; - rda_uart_write(port, val, RDA_UART_CTRL); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static const char *rda_uart_type(struct uart_port *port) -@@ -515,7 +515,7 @@ static void rda_uart_config_port(struct - rda_uart_request_port(port); - } - -- spin_lock_irqsave(&port->lock, irq_flags); -+ uart_port_lock_irqsave(port, &irq_flags); - - /* Clear mask, so no surprise interrupts. */ - rda_uart_write(port, 0, RDA_UART_IRQ_MASK); -@@ -523,7 +523,7 @@ static void rda_uart_config_port(struct - /* Clear status register */ - rda_uart_write(port, 0, RDA_UART_STATUS); - -- spin_unlock_irqrestore(&port->lock, irq_flags); -+ uart_port_unlock_irqrestore(port, irq_flags); - } - - static void rda_uart_release_port(struct uart_port *port) -@@ -597,9 +597,9 @@ static void rda_uart_port_write(struct u - if (port->sysrq) { - locked = 0; - } else if (oops_in_progress) { -- locked = spin_trylock(&port->lock); -+ locked = uart_port_trylock(port); - } else { -- spin_lock(&port->lock); -+ uart_port_lock(port); - locked = 1; - } - -@@ -615,7 +615,7 @@ static void rda_uart_port_write(struct u - rda_uart_write(port, old_irq_mask, RDA_UART_IRQ_MASK); - - if (locked) -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - - local_irq_restore(flags); - } diff --git a/debian/patches-rt/0051-serial-rp2-Use-port-lock-wrappers.patch b/debian/patches-rt/0051-serial-rp2-Use-port-lock-wrappers.patch deleted file mode 100644 index e2009ff4c6..0000000000 --- a/debian/patches-rt/0051-serial-rp2-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,114 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:44:08 +0206 -Subject: [PATCH 051/134] serial: rp2: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-52-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/rp2.c | 20 ++++++++++---------- - 1 file changed, 10 insertions(+), 10 deletions(-) - ---- a/drivers/tty/serial/rp2.c -+++ b/drivers/tty/serial/rp2.c -@@ -276,9 +276,9 @@ static unsigned int rp2_uart_tx_empty(st - * But the TXEMPTY bit doesn't seem to work unless the TX IRQ is - * enabled. - */ -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - tx_fifo_bytes = readw(up->base + RP2_TX_FIFO_COUNT); -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - - return tx_fifo_bytes ? 0 : TIOCSER_TEMT; - } -@@ -323,10 +323,10 @@ static void rp2_uart_break_ctl(struct ua - { - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - rp2_rmw(port_to_up(port), RP2_TXRX_CTL, RP2_TXRX_CTL_BREAK_m, - break_state ? RP2_TXRX_CTL_BREAK_m : 0); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static void rp2_uart_enable_ms(struct uart_port *port) -@@ -383,7 +383,7 @@ static void rp2_uart_set_termios(struct - if (tty_termios_baud_rate(new)) - tty_termios_encode_baud_rate(new, baud, baud); - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* ignore all characters if CREAD is not set */ - port->ignore_status_mask = (new->c_cflag & CREAD) ? 0 : RP2_DUMMY_READ; -@@ -391,7 +391,7 @@ static void rp2_uart_set_termios(struct - __rp2_uart_set_termios(up, new->c_cflag, new->c_iflag, baud_div); - uart_update_timeout(port, new->c_cflag, baud); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static void rp2_rx_chars(struct rp2_uart_port *up) -@@ -440,7 +440,7 @@ static void rp2_ch_interrupt(struct rp2_ - { - u32 status; - -- spin_lock(&up->port.lock); -+ uart_port_lock(&up->port); - - /* - * The IRQ status bits are clear-on-write. Other status bits in -@@ -456,7 +456,7 @@ static void rp2_ch_interrupt(struct rp2_ - if (status & RP2_CHAN_STAT_MS_CHANGED_MASK) - wake_up_interruptible(&up->port.state->port.delta_msr_wait); - -- spin_unlock(&up->port.lock); -+ uart_port_unlock(&up->port); - } - - static int rp2_asic_interrupt(struct rp2_card *card, unsigned int asic_id) -@@ -516,10 +516,10 @@ static void rp2_uart_shutdown(struct uar - - rp2_uart_break_ctl(port, 0); - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - rp2_mask_ch_irq(up, up->idx, 0); - rp2_rmw(up, RP2_CHAN_STAT, 0, 0); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static const char *rp2_uart_type(struct uart_port *port) diff --git a/debian/patches-rt/0052-serial-sa1100-Use-port-lock-wrappers.patch b/debian/patches-rt/0052-serial-sa1100-Use-port-lock-wrappers.patch deleted file mode 100644 index 2f8073a485..0000000000 --- a/debian/patches-rt/0052-serial-sa1100-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,117 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:44:09 +0206 -Subject: [PATCH 052/134] serial: sa1100: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-53-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/sa1100.c | 20 ++++++++++---------- - 1 file changed, 10 insertions(+), 10 deletions(-) - ---- a/drivers/tty/serial/sa1100.c -+++ b/drivers/tty/serial/sa1100.c -@@ -115,9 +115,9 @@ static void sa1100_timeout(struct timer_ - unsigned long flags; - - if (sport->port.state) { -- spin_lock_irqsave(&sport->port.lock, flags); -+ uart_port_lock_irqsave(&sport->port, &flags); - sa1100_mctrl_check(sport); -- spin_unlock_irqrestore(&sport->port.lock, flags); -+ uart_port_unlock_irqrestore(&sport->port, flags); - - mod_timer(&sport->timer, jiffies + MCTRL_TIMEOUT); - } -@@ -247,7 +247,7 @@ static irqreturn_t sa1100_int(int irq, v - struct sa1100_port *sport = dev_id; - unsigned int status, pass_counter = 0; - -- spin_lock(&sport->port.lock); -+ uart_port_lock(&sport->port); - status = UART_GET_UTSR0(sport); - status &= SM_TO_UTSR0(sport->port.read_status_mask) | ~UTSR0_TFS; - do { -@@ -276,7 +276,7 @@ static irqreturn_t sa1100_int(int irq, v - status &= SM_TO_UTSR0(sport->port.read_status_mask) | - ~UTSR0_TFS; - } while (status & (UTSR0_TFS | UTSR0_RFS | UTSR0_RID)); -- spin_unlock(&sport->port.lock); -+ uart_port_unlock(&sport->port); - - return IRQ_HANDLED; - } -@@ -321,14 +321,14 @@ static void sa1100_break_ctl(struct uart - unsigned long flags; - unsigned int utcr3; - -- spin_lock_irqsave(&sport->port.lock, flags); -+ uart_port_lock_irqsave(&sport->port, &flags); - utcr3 = UART_GET_UTCR3(sport); - if (break_state == -1) - utcr3 |= UTCR3_BRK; - else - utcr3 &= ~UTCR3_BRK; - UART_PUT_UTCR3(sport, utcr3); -- spin_unlock_irqrestore(&sport->port.lock, flags); -+ uart_port_unlock_irqrestore(&sport->port, flags); - } - - static int sa1100_startup(struct uart_port *port) -@@ -354,9 +354,9 @@ static int sa1100_startup(struct uart_po - /* - * Enable modem status interrupts - */ -- spin_lock_irq(&sport->port.lock); -+ uart_port_lock_irq(&sport->port); - sa1100_enable_ms(&sport->port); -- spin_unlock_irq(&sport->port.lock); -+ uart_port_unlock_irq(&sport->port); - - return 0; - } -@@ -423,7 +423,7 @@ sa1100_set_termios(struct uart_port *por - - del_timer_sync(&sport->timer); - -- spin_lock_irqsave(&sport->port.lock, flags); -+ uart_port_lock_irqsave(&sport->port, &flags); - - sport->port.read_status_mask &= UTSR0_TO_SM(UTSR0_TFS); - sport->port.read_status_mask |= UTSR1_TO_SM(UTSR1_ROR); -@@ -485,7 +485,7 @@ sa1100_set_termios(struct uart_port *por - if (UART_ENABLE_MS(&sport->port, termios->c_cflag)) - sa1100_enable_ms(&sport->port); - -- spin_unlock_irqrestore(&sport->port.lock, flags); -+ uart_port_unlock_irqrestore(&sport->port, flags); - } - - static const char *sa1100_type(struct uart_port *port) diff --git a/debian/patches-rt/0053-serial-samsung_tty-Use-port-lock-wrappers.patch b/debian/patches-rt/0053-serial-samsung_tty-Use-port-lock-wrappers.patch deleted file mode 100644 index 74dc3c0145..0000000000 --- a/debian/patches-rt/0053-serial-samsung_tty-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,245 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:44:10 +0206 -Subject: [PATCH 053/134] serial: samsung_tty: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-54-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/samsung_tty.c | 50 +++++++++++++++++++-------------------- - 1 file changed, 25 insertions(+), 25 deletions(-) - ---- a/drivers/tty/serial/samsung_tty.c -+++ b/drivers/tty/serial/samsung_tty.c -@@ -248,7 +248,7 @@ static void s3c24xx_serial_rx_enable(str - unsigned int ucon, ufcon; - int count = 10000; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - while (--count && !s3c24xx_serial_txempty_nofifo(port)) - udelay(100); -@@ -262,7 +262,7 @@ static void s3c24xx_serial_rx_enable(str - wr_regl(port, S3C2410_UCON, ucon); - - ourport->rx_enabled = 1; -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static void s3c24xx_serial_rx_disable(struct uart_port *port) -@@ -271,14 +271,14 @@ static void s3c24xx_serial_rx_disable(st - unsigned long flags; - unsigned int ucon; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - ucon = rd_regl(port, S3C2410_UCON); - ucon &= ~S3C2410_UCON_RXIRQMODE; - wr_regl(port, S3C2410_UCON, ucon); - - ourport->rx_enabled = 0; -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static void s3c24xx_serial_stop_tx(struct uart_port *port) -@@ -344,7 +344,7 @@ static void s3c24xx_serial_tx_dma_comple - dma->tx_transfer_addr, dma->tx_size, - DMA_TO_DEVICE); - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - uart_xmit_advance(port, count); - ourport->tx_in_progress = 0; -@@ -353,7 +353,7 @@ static void s3c24xx_serial_tx_dma_comple - uart_write_wakeup(port); - - s3c24xx_serial_start_next_tx(ourport); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static void enable_tx_dma(struct s3c24xx_uart_port *ourport) -@@ -619,7 +619,7 @@ static void s3c24xx_serial_rx_dma_comple - received = dma->rx_bytes_requested - state.residue; - async_tx_ack(dma->rx_desc); - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - if (received) - s3c24xx_uart_copy_rx_to_tty(ourport, t, received); -@@ -631,7 +631,7 @@ static void s3c24xx_serial_rx_dma_comple - - s3c64xx_start_rx_dma(ourport); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static void s3c64xx_start_rx_dma(struct s3c24xx_uart_port *ourport) -@@ -722,7 +722,7 @@ static irqreturn_t s3c24xx_serial_rx_cha - utrstat = rd_regl(port, S3C2410_UTRSTAT); - rd_regl(port, S3C2410_UFSTAT); - -- spin_lock(&port->lock); -+ uart_port_lock(port); - - if (!(utrstat & S3C2410_UTRSTAT_TIMEOUT)) { - s3c64xx_start_rx_dma(ourport); -@@ -751,7 +751,7 @@ static irqreturn_t s3c24xx_serial_rx_cha - wr_regl(port, S3C2410_UTRSTAT, S3C2410_UTRSTAT_TIMEOUT); - - finish: -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - - return IRQ_HANDLED; - } -@@ -849,9 +849,9 @@ static irqreturn_t s3c24xx_serial_rx_cha - struct s3c24xx_uart_port *ourport = dev_id; - struct uart_port *port = &ourport->port; - -- spin_lock(&port->lock); -+ uart_port_lock(port); - s3c24xx_serial_rx_drain_fifo(ourport); -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - - return IRQ_HANDLED; - } -@@ -932,11 +932,11 @@ static irqreturn_t s3c24xx_serial_tx_irq - struct s3c24xx_uart_port *ourport = id; - struct uart_port *port = &ourport->port; - -- spin_lock(&port->lock); -+ uart_port_lock(port); - - s3c24xx_serial_tx_chars(ourport); - -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - return IRQ_HANDLED; - } - -@@ -1033,7 +1033,7 @@ static void s3c24xx_serial_break_ctl(str - unsigned long flags; - unsigned int ucon; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - ucon = rd_regl(port, S3C2410_UCON); - -@@ -1044,7 +1044,7 @@ static void s3c24xx_serial_break_ctl(str - - wr_regl(port, S3C2410_UCON, ucon); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static int s3c24xx_serial_request_dma(struct s3c24xx_uart_port *p) -@@ -1303,7 +1303,7 @@ static int s3c64xx_serial_startup(struct - ourport->rx_enabled = 1; - ourport->tx_enabled = 0; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - ufcon = rd_regl(port, S3C2410_UFCON); - ufcon |= S3C2410_UFCON_RESETRX | S5PV210_UFCON_RXTRIG8; -@@ -1313,7 +1313,7 @@ static int s3c64xx_serial_startup(struct - - enable_rx_pio(ourport); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - /* Enable Rx Interrupt */ - s3c24xx_clear_bit(port, S3C64XX_UINTM_RXD, S3C64XX_UINTM); -@@ -1341,7 +1341,7 @@ static int apple_s5l_serial_startup(stru - ourport->rx_enabled = 1; - ourport->tx_enabled = 0; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - ufcon = rd_regl(port, S3C2410_UFCON); - ufcon |= S3C2410_UFCON_RESETRX | S5PV210_UFCON_RXTRIG8; -@@ -1351,7 +1351,7 @@ static int apple_s5l_serial_startup(stru - - enable_rx_pio(ourport); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - /* Enable Rx Interrupt */ - s3c24xx_set_bit(port, APPLE_S5L_UCON_RXTHRESH_ENA, S3C2410_UCON); -@@ -1626,7 +1626,7 @@ static void s3c24xx_serial_set_termios(s - ulcon |= S3C2410_LCON_PNONE; - } - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - dev_dbg(port->dev, - "setting ulcon to %08x, brddiv to %d, udivslot %08x\n", -@@ -1684,7 +1684,7 @@ static void s3c24xx_serial_set_termios(s - if ((termios->c_cflag & CREAD) == 0) - port->ignore_status_mask |= RXSTAT_DUMMY_READ; - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static const char *s3c24xx_serial_type(struct uart_port *port) -@@ -2376,14 +2376,14 @@ s3c24xx_serial_console_write(struct cons - if (cons_uart->sysrq) - locked = false; - else if (oops_in_progress) -- locked = spin_trylock_irqsave(&cons_uart->lock, flags); -+ locked = uart_port_trylock_irqsave(cons_uart, &flags); - else -- spin_lock_irqsave(&cons_uart->lock, flags); -+ uart_port_lock_irqsave(cons_uart, &flags); - - uart_console_write(cons_uart, s, count, s3c24xx_serial_console_putchar); - - if (locked) -- spin_unlock_irqrestore(&cons_uart->lock, flags); -+ uart_port_unlock_irqrestore(cons_uart, flags); - } - - /* Shouldn't be __init, as it can be instantiated from other module */ diff --git a/debian/patches-rt/0054-serial-sb1250-duart-Use-port-lock-wrappers.patch b/debian/patches-rt/0054-serial-sb1250-duart-Use-port-lock-wrappers.patch deleted file mode 100644 index e5aeb528fe..0000000000 --- a/debian/patches-rt/0054-serial-sb1250-duart-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,85 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:44:11 +0206 -Subject: [PATCH 054/134] serial: sb1250-duart: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-55-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/sb1250-duart.c | 12 ++++++------ - 1 file changed, 6 insertions(+), 6 deletions(-) - ---- a/drivers/tty/serial/sb1250-duart.c -+++ b/drivers/tty/serial/sb1250-duart.c -@@ -610,7 +610,7 @@ static void sbd_set_termios(struct uart_ - else - aux &= ~M_DUART_CTS_CHNG_ENA; - -- spin_lock(&uport->lock); -+ uart_port_lock(uport); - - if (sport->tx_stopped) - command |= M_DUART_TX_DIS; -@@ -632,7 +632,7 @@ static void sbd_set_termios(struct uart_ - - write_sbdchn(sport, R_DUART_CMD, command); - -- spin_unlock(&uport->lock); -+ uart_port_unlock(uport); - } - - -@@ -839,22 +839,22 @@ static void sbd_console_write(struct con - unsigned int mask; - - /* Disable transmit interrupts and enable the transmitter. */ -- spin_lock_irqsave(&uport->lock, flags); -+ uart_port_lock_irqsave(uport, &flags); - mask = read_sbdshr(sport, R_DUART_IMRREG((uport->line) % 2)); - write_sbdshr(sport, R_DUART_IMRREG((uport->line) % 2), - mask & ~M_DUART_IMR_TX); - write_sbdchn(sport, R_DUART_CMD, M_DUART_TX_EN); -- spin_unlock_irqrestore(&uport->lock, flags); -+ uart_port_unlock_irqrestore(uport, flags); - - uart_console_write(&sport->port, s, count, sbd_console_putchar); - - /* Restore transmit interrupts and the transmitter enable. */ -- spin_lock_irqsave(&uport->lock, flags); -+ uart_port_lock_irqsave(uport, &flags); - sbd_line_drain(sport); - if (sport->tx_stopped) - write_sbdchn(sport, R_DUART_CMD, M_DUART_TX_DIS); - write_sbdshr(sport, R_DUART_IMRREG((uport->line) % 2), mask); -- spin_unlock_irqrestore(&uport->lock, flags); -+ uart_port_unlock_irqrestore(uport, flags); - } - - static int __init sbd_console_setup(struct console *co, char *options) diff --git a/debian/patches-rt/0056-serial-tegra-Use-port-lock-wrappers.patch b/debian/patches-rt/0056-serial-tegra-Use-port-lock-wrappers.patch deleted file mode 100644 index f53b521dc0..0000000000 --- a/debian/patches-rt/0056-serial-tegra-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,176 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:44:13 +0206 -Subject: [PATCH 056/134] serial: tegra: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-57-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/serial-tegra.c | 32 ++++++++++++++++---------------- - 1 file changed, 16 insertions(+), 16 deletions(-) - ---- a/drivers/tty/serial/serial-tegra.c -+++ b/drivers/tty/serial/serial-tegra.c -@@ -411,7 +411,7 @@ static int tegra_set_baudrate(struct teg - divisor = DIV_ROUND_CLOSEST(rate, baud * 16); - } - -- spin_lock_irqsave(&tup->uport.lock, flags); -+ uart_port_lock_irqsave(&tup->uport, &flags); - lcr = tup->lcr_shadow; - lcr |= UART_LCR_DLAB; - tegra_uart_write(tup, lcr, UART_LCR); -@@ -424,7 +424,7 @@ static int tegra_set_baudrate(struct teg - - /* Dummy read to ensure the write is posted */ - tegra_uart_read(tup, UART_SCR); -- spin_unlock_irqrestore(&tup->uport.lock, flags); -+ uart_port_unlock_irqrestore(&tup->uport, flags); - - tup->current_baud = baud; - -@@ -522,13 +522,13 @@ static void tegra_uart_tx_dma_complete(v - dmaengine_tx_status(tup->tx_dma_chan, tup->tx_cookie, &state); - count = tup->tx_bytes_requested - state.residue; - async_tx_ack(tup->tx_dma_desc); -- spin_lock_irqsave(&tup->uport.lock, flags); -+ uart_port_lock_irqsave(&tup->uport, &flags); - uart_xmit_advance(&tup->uport, count); - tup->tx_in_progress = 0; - if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS) - uart_write_wakeup(&tup->uport); - tegra_uart_start_next_tx(tup); -- spin_unlock_irqrestore(&tup->uport.lock, flags); -+ uart_port_unlock_irqrestore(&tup->uport, flags); - } - - static int tegra_uart_start_tx_dma(struct tegra_uart_port *tup, -@@ -598,13 +598,13 @@ static unsigned int tegra_uart_tx_empty( - unsigned int ret = 0; - unsigned long flags; - -- spin_lock_irqsave(&u->lock, flags); -+ uart_port_lock_irqsave(u, &flags); - if (!tup->tx_in_progress) { - unsigned long lsr = tegra_uart_read(tup, UART_LSR); - if ((lsr & TX_EMPTY_STATUS) == TX_EMPTY_STATUS) - ret = TIOCSER_TEMT; - } -- spin_unlock_irqrestore(&u->lock, flags); -+ uart_port_unlock_irqrestore(u, flags); - return ret; - } - -@@ -727,7 +727,7 @@ static void tegra_uart_rx_dma_complete(v - struct dma_tx_state state; - enum dma_status status; - -- spin_lock_irqsave(&u->lock, flags); -+ uart_port_lock_irqsave(u, &flags); - - status = dmaengine_tx_status(tup->rx_dma_chan, tup->rx_cookie, &state); - -@@ -749,7 +749,7 @@ static void tegra_uart_rx_dma_complete(v - set_rts(tup, true); - - done: -- spin_unlock_irqrestore(&u->lock, flags); -+ uart_port_unlock_irqrestore(u, flags); - } - - static void tegra_uart_terminate_rx_dma(struct tegra_uart_port *tup) -@@ -836,7 +836,7 @@ static irqreturn_t tegra_uart_isr(int ir - bool is_rx_int = false; - unsigned long flags; - -- spin_lock_irqsave(&u->lock, flags); -+ uart_port_lock_irqsave(u, &flags); - while (1) { - iir = tegra_uart_read(tup, UART_IIR); - if (iir & UART_IIR_NO_INT) { -@@ -852,7 +852,7 @@ static irqreturn_t tegra_uart_isr(int ir - } else if (is_rx_start) { - tegra_uart_start_rx_dma(tup); - } -- spin_unlock_irqrestore(&u->lock, flags); -+ uart_port_unlock_irqrestore(u, flags); - return IRQ_HANDLED; - } - -@@ -969,11 +969,11 @@ static void tegra_uart_hw_deinit(struct - } - } - -- spin_lock_irqsave(&tup->uport.lock, flags); -+ uart_port_lock_irqsave(&tup->uport, &flags); - /* Reset the Rx and Tx FIFOs */ - tegra_uart_fifo_reset(tup, UART_FCR_CLEAR_XMIT | UART_FCR_CLEAR_RCVR); - tup->current_baud = 0; -- spin_unlock_irqrestore(&tup->uport.lock, flags); -+ uart_port_unlock_irqrestore(&tup->uport, flags); - - tup->rx_in_progress = 0; - tup->tx_in_progress = 0; -@@ -1292,7 +1292,7 @@ static void tegra_uart_set_termios(struc - int ret; - - max_divider *= 16; -- spin_lock_irqsave(&u->lock, flags); -+ uart_port_lock_irqsave(u, &flags); - - /* Changing configuration, it is safe to stop any rx now */ - if (tup->rts_active) -@@ -1341,7 +1341,7 @@ static void tegra_uart_set_termios(struc - baud = uart_get_baud_rate(u, termios, oldtermios, - parent_clk_rate/max_divider, - parent_clk_rate/16); -- spin_unlock_irqrestore(&u->lock, flags); -+ uart_port_unlock_irqrestore(u, flags); - ret = tegra_set_baudrate(tup, baud); - if (ret < 0) { - dev_err(tup->uport.dev, "Failed to set baud rate\n"); -@@ -1349,7 +1349,7 @@ static void tegra_uart_set_termios(struc - } - if (tty_termios_baud_rate(termios)) - tty_termios_encode_baud_rate(termios, baud, baud); -- spin_lock_irqsave(&u->lock, flags); -+ uart_port_lock_irqsave(u, &flags); - - /* Flow control */ - if (termios->c_cflag & CRTSCTS) { -@@ -1382,7 +1382,7 @@ static void tegra_uart_set_termios(struc - if (termios->c_iflag & IGNBRK) - tup->uport.ignore_status_mask |= UART_LSR_BI; - -- spin_unlock_irqrestore(&u->lock, flags); -+ uart_port_unlock_irqrestore(u, flags); - } - - static const char *tegra_uart_type(struct uart_port *u) diff --git a/debian/patches-rt/0057-serial-core-Use-port-lock-wrappers.patch b/debian/patches-rt/0057-serial-core-Use-port-lock-wrappers.patch deleted file mode 100644 index 33c2703827..0000000000 --- a/debian/patches-rt/0057-serial-core-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,365 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:44:14 +0206 -Subject: [PATCH 057/134] serial: core: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-58-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/serial_core.c | 92 +++++++++++++++++++-------------------- - drivers/tty/serial/serial_port.c | 4 - - 2 files changed, 48 insertions(+), 48 deletions(-) - ---- a/drivers/tty/serial/serial_core.c -+++ b/drivers/tty/serial/serial_core.c -@@ -79,7 +79,7 @@ - ({ \ - struct uart_port *__uport = uart_port_ref(state); \ - if (__uport) \ -- spin_lock_irqsave(&__uport->lock, flags); \ -+ uart_port_lock_irqsave(__uport, &flags); \ - __uport; \ - }) - -@@ -87,7 +87,7 @@ - ({ \ - struct uart_port *__uport = uport; \ - if (__uport) { \ -- spin_unlock_irqrestore(&__uport->lock, flags); \ -+ uart_port_unlock_irqrestore(__uport, flags); \ - uart_port_deref(__uport); \ - } \ - }) -@@ -179,12 +179,12 @@ - unsigned long flags; - unsigned int old; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - old = port->mctrl; - port->mctrl = (old & ~clear) | set; - if (old != port->mctrl && !(port->rs485.flags & SER_RS485_ENABLED)) - port->ops->set_mctrl(port, port->mctrl); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - #define uart_set_mctrl(port, set) uart_update_mctrl(port, set, 0) -@@ -219,7 +219,7 @@ - /* - * Set modem status enables based on termios cflag - */ -- spin_lock_irq(&uport->lock); -+ uart_port_lock_irq(uport); - if (termios->c_cflag & CRTSCTS) - uport->status |= UPSTAT_CTS_ENABLE; - else -@@ -240,7 +240,7 @@ - else - __uart_start(state); - } -- spin_unlock_irq(&uport->lock); -+ uart_port_unlock_irq(uport); - } - - /* -@@ -702,11 +702,11 @@ - if (port->ops->send_xchar) - port->ops->send_xchar(port, ch); - else { -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - port->x_char = ch; - if (ch) - port->ops->start_tx(port); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - uart_port_deref(port); - } -@@ -1085,9 +1085,9 @@ - - if (!tty_io_error(tty)) { - result = uport->mctrl; -- spin_lock_irq(&uport->lock); -+ uart_port_lock_irq(uport); - result |= uport->ops->get_mctrl(uport); -- spin_unlock_irq(&uport->lock); -+ uart_port_unlock_irq(uport); - } - out: - mutex_unlock(&port->mutex); -@@ -1223,16 +1223,16 @@ - uport = uart_port_ref(state); - if (!uport) - return -EIO; -- spin_lock_irq(&uport->lock); -+ uart_port_lock_irq(uport); - memcpy(&cprev, &uport->icount, sizeof(struct uart_icount)); - uart_enable_ms(uport); -- spin_unlock_irq(&uport->lock); -+ uart_port_unlock_irq(uport); - - add_wait_queue(&port->delta_msr_wait, &wait); - for (;;) { -- spin_lock_irq(&uport->lock); -+ uart_port_lock_irq(uport); - memcpy(&cnow, &uport->icount, sizeof(struct uart_icount)); -- spin_unlock_irq(&uport->lock); -+ uart_port_unlock_irq(uport); - - set_current_state(TASK_INTERRUPTIBLE); - -@@ -1277,9 +1277,9 @@ - uport = uart_port_ref(state); - if (!uport) - return -EIO; -- spin_lock_irq(&uport->lock); -+ uart_port_lock_irq(uport); - memcpy(&cnow, &uport->icount, sizeof(struct uart_icount)); -- spin_unlock_irq(&uport->lock); -+ uart_port_unlock_irq(uport); - uart_port_deref(uport); - - icount->cts = cnow.cts; -@@ -1432,9 +1432,9 @@ - uart_set_rs485_termination(port, rs485); - uart_set_rs485_rx_during_tx(port, rs485); - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - ret = port->rs485_config(port, NULL, rs485); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - if (ret) { - memset(rs485, 0, sizeof(*rs485)); - /* unset GPIOs */ -@@ -1451,9 +1451,9 @@ - unsigned long flags; - struct serial_rs485 aux; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - aux = port->rs485; -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - if (copy_to_user(rs485, &aux, sizeof(aux))) - return -EFAULT; -@@ -1481,7 +1481,7 @@ - uart_set_rs485_termination(port, &rs485); - uart_set_rs485_rx_during_tx(port, &rs485); - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - ret = port->rs485_config(port, &tty->termios, &rs485); - if (!ret) { - port->rs485 = rs485; -@@ -1490,7 +1490,7 @@ - if (!(rs485.flags & SER_RS485_ENABLED)) - port->ops->set_mctrl(port, port->mctrl); - } -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - if (ret) { - /* restore old GPIO settings */ - gpiod_set_value_cansleep(port->rs485_term_gpio, -@@ -1515,9 +1515,9 @@ - if (!port->iso7816_config) - return -ENOTTY; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - aux = port->iso7816; -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - if (copy_to_user(iso7816, &aux, sizeof(aux))) - return -EFAULT; -@@ -1546,9 +1546,9 @@ - if (iso7816.reserved[i]) - return -EINVAL; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - ret = port->iso7816_config(port, &iso7816); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - if (ret) - return ret; - -@@ -1765,9 +1765,9 @@ - if (WARN(!uport, "detached port still initialized!\n")) - return; - -- spin_lock_irq(&uport->lock); -+ uart_port_lock_irq(uport); - uport->ops->stop_rx(uport); -- spin_unlock_irq(&uport->lock); -+ uart_port_unlock_irq(uport); - - uart_port_shutdown(port); - -@@ -1781,10 +1781,10 @@ - /* - * Free the transmit buffer. - */ -- spin_lock_irq(&uport->lock); -+ uart_port_lock_irq(uport); - buf = state->xmit.buf; - state->xmit.buf = NULL; -- spin_unlock_irq(&uport->lock); -+ uart_port_unlock_irq(uport); - - free_page((unsigned long)buf); - -@@ -1927,10 +1927,10 @@ - */ - if (WARN_ON(!uport)) - return true; -- spin_lock_irq(&uport->lock); -+ uart_port_lock_irq(uport); - uart_enable_ms(uport); - mctrl = uport->ops->get_mctrl(uport); -- spin_unlock_irq(&uport->lock); -+ uart_port_unlock_irq(uport); - uart_port_deref(uport); - - return mctrl & TIOCM_CAR; -@@ -2047,9 +2047,9 @@ - pm_state = state->pm_state; - if (pm_state != UART_PM_STATE_ON) - uart_change_pm(state, UART_PM_STATE_ON); -- spin_lock_irq(&uport->lock); -+ uart_port_lock_irq(uport); - status = uport->ops->get_mctrl(uport); -- spin_unlock_irq(&uport->lock); -+ uart_port_unlock_irq(uport); - if (pm_state != UART_PM_STATE_ON) - uart_change_pm(state, pm_state); - -@@ -2388,9 +2388,9 @@ - */ - if (!console_suspend_enabled && uart_console(uport)) { - if (uport->ops->start_rx) { -- spin_lock_irq(&uport->lock); -+ uart_port_lock_irq(uport); - uport->ops->stop_rx(uport); -- spin_unlock_irq(&uport->lock); -+ uart_port_unlock_irq(uport); - } - goto unlock; - } -@@ -2405,7 +2405,7 @@ - tty_port_set_suspended(port, true); - tty_port_set_initialized(port, false); - -- spin_lock_irq(&uport->lock); -+ uart_port_lock_irq(uport); - ops->stop_tx(uport); - if (!(uport->rs485.flags & SER_RS485_ENABLED)) - ops->set_mctrl(uport, 0); -@@ -2413,7 +2413,7 @@ - mctrl = uport->mctrl; - uport->mctrl = 0; - ops->stop_rx(uport); -- spin_unlock_irq(&uport->lock); -+ uart_port_unlock_irq(uport); - - /* - * Wait for the transmitter to empty. -@@ -2485,9 +2485,9 @@ - uart_change_pm(state, UART_PM_STATE_ON); - uport->ops->set_termios(uport, &termios, NULL); - if (!console_suspend_enabled && uport->ops->start_rx) { -- spin_lock_irq(&uport->lock); -+ uart_port_lock_irq(uport); - uport->ops->start_rx(uport); -- spin_unlock_irq(&uport->lock); -+ uart_port_unlock_irq(uport); - } - if (console_suspend_enabled) - console_start(uport->cons); -@@ -2498,10 +2498,10 @@ - int ret; - - uart_change_pm(state, UART_PM_STATE_ON); -- spin_lock_irq(&uport->lock); -+ uart_port_lock_irq(uport); - if (!(uport->rs485.flags & SER_RS485_ENABLED)) - ops->set_mctrl(uport, 0); -- spin_unlock_irq(&uport->lock); -+ uart_port_unlock_irq(uport); - if (console_suspend_enabled || !uart_console(uport)) { - /* Protected by port mutex for now */ - struct tty_struct *tty = port->tty; -@@ -2511,11 +2511,11 @@ - if (tty) - uart_change_line_settings(tty, state, NULL); - uart_rs485_config(uport); -- spin_lock_irq(&uport->lock); -+ uart_port_lock_irq(uport); - if (!(uport->rs485.flags & SER_RS485_ENABLED)) - ops->set_mctrl(uport, uport->mctrl); - ops->start_tx(uport); -- spin_unlock_irq(&uport->lock); -+ uart_port_unlock_irq(uport); - tty_port_set_initialized(port, true); - } else { - /* -@@ -2618,11 +2618,11 @@ - * keep the DTR setting that is set in uart_set_options() - * We probably don't need a spinlock around this, but - */ -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - port->mctrl &= TIOCM_DTR; - if (!(port->rs485.flags & SER_RS485_ENABLED)) - port->ops->set_mctrl(port, port->mctrl); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - uart_rs485_config(port); - ---- a/drivers/tty/serial/serial_port.c -+++ b/drivers/tty/serial/serial_port.c -@@ -35,10 +35,10 @@ - goto out; - - /* Flush any pending TX for the port */ -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - if (__serial_port_busy(port)) - port->ops->start_tx(port); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - out: - pm_runtime_mark_last_busy(dev); diff --git a/debian/patches-rt/0058-serial-mctrl_gpio-Use-port-lock-wrappers.patch b/debian/patches-rt/0058-serial-mctrl_gpio-Use-port-lock-wrappers.patch deleted file mode 100644 index 46719cb077..0000000000 --- a/debian/patches-rt/0058-serial-mctrl_gpio-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,58 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:44:15 +0206 -Subject: [PATCH 058/134] serial: mctrl_gpio: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-59-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/serial_mctrl_gpio.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - ---- a/drivers/tty/serial/serial_mctrl_gpio.c -+++ b/drivers/tty/serial/serial_mctrl_gpio.c -@@ -184,7 +184,7 @@ static irqreturn_t mctrl_gpio_irq_handle - - mctrl_gpio_get(gpios, &mctrl); - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - mctrl_diff = mctrl ^ gpios->mctrl_prev; - gpios->mctrl_prev = mctrl; -@@ -205,7 +205,7 @@ static irqreturn_t mctrl_gpio_irq_handle - wake_up_interruptible(&port->state->port.delta_msr_wait); - } - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - return IRQ_HANDLED; - } diff --git a/debian/patches-rt/0059-serial-txx9-Use-port-lock-wrappers.patch b/debian/patches-rt/0059-serial-txx9-Use-port-lock-wrappers.patch deleted file mode 100644 index bbe48684ba..0000000000 --- a/debian/patches-rt/0059-serial-txx9-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,134 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:44:16 +0206 -Subject: [PATCH 059/134] serial: txx9: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-60-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/serial_txx9.c | 26 +++++++++++++------------- - 1 file changed, 13 insertions(+), 13 deletions(-) - ---- a/drivers/tty/serial/serial_txx9.c -+++ b/drivers/tty/serial/serial_txx9.c -@@ -335,13 +335,13 @@ static irqreturn_t serial_txx9_interrupt - unsigned int status; - - while (1) { -- spin_lock(&up->lock); -+ uart_port_lock(up); - status = sio_in(up, TXX9_SIDISR); - if (!(sio_in(up, TXX9_SIDICR) & TXX9_SIDICR_TIE)) - status &= ~TXX9_SIDISR_TDIS; - if (!(status & (TXX9_SIDISR_TDIS | TXX9_SIDISR_RDIS | - TXX9_SIDISR_TOUT))) { -- spin_unlock(&up->lock); -+ uart_port_unlock(up); - break; - } - -@@ -353,7 +353,7 @@ static irqreturn_t serial_txx9_interrupt - sio_mask(up, TXX9_SIDISR, - TXX9_SIDISR_TDIS | TXX9_SIDISR_RDIS | - TXX9_SIDISR_TOUT); -- spin_unlock(&up->lock); -+ uart_port_unlock(up); - - if (pass_counter++ > PASS_LIMIT) - break; -@@ -367,9 +367,9 @@ static unsigned int serial_txx9_tx_empty - unsigned long flags; - unsigned int ret; - -- spin_lock_irqsave(&up->lock, flags); -+ uart_port_lock_irqsave(up, &flags); - ret = (sio_in(up, TXX9_SICISR) & TXX9_SICISR_TXALS) ? TIOCSER_TEMT : 0; -- spin_unlock_irqrestore(&up->lock, flags); -+ uart_port_unlock_irqrestore(up, flags); - - return ret; - } -@@ -399,12 +399,12 @@ static void serial_txx9_break_ctl(struct - { - unsigned long flags; - -- spin_lock_irqsave(&up->lock, flags); -+ uart_port_lock_irqsave(up, &flags); - if (break_state == -1) - sio_set(up, TXX9_SIFLCR, TXX9_SIFLCR_TBRK); - else - sio_mask(up, TXX9_SIFLCR, TXX9_SIFLCR_TBRK); -- spin_unlock_irqrestore(&up->lock, flags); -+ uart_port_unlock_irqrestore(up, flags); - } - - #if defined(CONFIG_SERIAL_TXX9_CONSOLE) || defined(CONFIG_CONSOLE_POLL) -@@ -517,9 +517,9 @@ static int serial_txx9_startup(struct ua - /* - * Now, initialize the UART - */ -- spin_lock_irqsave(&up->lock, flags); -+ uart_port_lock_irqsave(up, &flags); - serial_txx9_set_mctrl(up, up->mctrl); -- spin_unlock_irqrestore(&up->lock, flags); -+ uart_port_unlock_irqrestore(up, flags); - - /* Enable RX/TX */ - sio_mask(up, TXX9_SIFLCR, TXX9_SIFLCR_RSDE | TXX9_SIFLCR_TSDE); -@@ -541,9 +541,9 @@ static void serial_txx9_shutdown(struct - */ - sio_out(up, TXX9_SIDICR, 0); /* disable all intrs */ - -- spin_lock_irqsave(&up->lock, flags); -+ uart_port_lock_irqsave(up, &flags); - serial_txx9_set_mctrl(up, up->mctrl); -- spin_unlock_irqrestore(&up->lock, flags); -+ uart_port_unlock_irqrestore(up, flags); - - /* - * Disable break condition -@@ -625,7 +625,7 @@ serial_txx9_set_termios(struct uart_port - * Ok, we're now changing the port state. Do it with - * interrupts disabled. - */ -- spin_lock_irqsave(&up->lock, flags); -+ uart_port_lock_irqsave(up, &flags); - - /* - * Update the per-port timeout. -@@ -676,7 +676,7 @@ serial_txx9_set_termios(struct uart_port - sio_out(up, TXX9_SIFCR, fcr); - - serial_txx9_set_mctrl(up, up->mctrl); -- spin_unlock_irqrestore(&up->lock, flags); -+ uart_port_unlock_irqrestore(up, flags); - } - - static void diff --git a/debian/patches-rt/0060-serial-sh-sci-Use-port-lock-wrappers.patch b/debian/patches-rt/0060-serial-sh-sci-Use-port-lock-wrappers.patch deleted file mode 100644 index 6d039c6658..0000000000 --- a/debian/patches-rt/0060-serial-sh-sci-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,302 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:44:17 +0206 -Subject: [PATCH 060/134] serial: sh-sci: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-61-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/sh-sci.c | 68 ++++++++++++++++++++++---------------------- - 1 file changed, 34 insertions(+), 34 deletions(-) - ---- a/drivers/tty/serial/sh-sci.c -+++ b/drivers/tty/serial/sh-sci.c -@@ -1205,7 +1205,7 @@ static void sci_dma_tx_complete(void *ar - - dev_dbg(port->dev, "%s(%d)\n", __func__, port->line); - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - uart_xmit_advance(port, s->tx_dma_len); - -@@ -1229,7 +1229,7 @@ static void sci_dma_tx_complete(void *ar - } - } - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - /* Locking: called with port lock held */ -@@ -1320,7 +1320,7 @@ static void sci_dma_rx_complete(void *ar - dev_dbg(port->dev, "%s(%d) active cookie %d\n", __func__, port->line, - s->active_rx); - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - active = sci_dma_rx_find_active(s); - if (active >= 0) -@@ -1347,20 +1347,20 @@ static void sci_dma_rx_complete(void *ar - - dma_async_issue_pending(chan); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - dev_dbg(port->dev, "%s: cookie %d #%d, new active cookie %d\n", - __func__, s->cookie_rx[active], active, s->active_rx); - return; - - fail: -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - dev_warn(port->dev, "Failed submitting Rx DMA descriptor\n"); - /* Switch to PIO */ -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - dmaengine_terminate_async(chan); - sci_dma_rx_chan_invalidate(s); - sci_dma_rx_reenable_irq(s); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static void sci_dma_tx_release(struct sci_port *s) -@@ -1409,13 +1409,13 @@ static int sci_dma_rx_submit(struct sci_ - fail: - /* Switch to PIO */ - if (!port_lock_held) -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - if (i) - dmaengine_terminate_async(chan); - sci_dma_rx_chan_invalidate(s); - sci_start_rx(port); - if (!port_lock_held) -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - return -EAGAIN; - } - -@@ -1437,14 +1437,14 @@ static void sci_dma_tx_work_fn(struct wo - * transmit till the end, and then the rest. Take the port lock to get a - * consistent xmit buffer state. - */ -- spin_lock_irq(&port->lock); -+ uart_port_lock_irq(port); - head = xmit->head; - tail = xmit->tail; - buf = s->tx_dma_addr + tail; - s->tx_dma_len = CIRC_CNT_TO_END(head, tail, UART_XMIT_SIZE); - if (!s->tx_dma_len) { - /* Transmit buffer has been flushed */ -- spin_unlock_irq(&port->lock); -+ uart_port_unlock_irq(port); - return; - } - -@@ -1452,7 +1452,7 @@ static void sci_dma_tx_work_fn(struct wo - DMA_MEM_TO_DEV, - DMA_PREP_INTERRUPT | DMA_CTRL_ACK); - if (!desc) { -- spin_unlock_irq(&port->lock); -+ uart_port_unlock_irq(port); - dev_warn(port->dev, "Failed preparing Tx DMA descriptor\n"); - goto switch_to_pio; - } -@@ -1464,12 +1464,12 @@ static void sci_dma_tx_work_fn(struct wo - desc->callback_param = s; - s->cookie_tx = dmaengine_submit(desc); - if (dma_submit_error(s->cookie_tx)) { -- spin_unlock_irq(&port->lock); -+ uart_port_unlock_irq(port); - dev_warn(port->dev, "Failed submitting Tx DMA descriptor\n"); - goto switch_to_pio; - } - -- spin_unlock_irq(&port->lock); -+ uart_port_unlock_irq(port); - dev_dbg(port->dev, "%s: %p: %d...%d, cookie %d\n", - __func__, xmit->buf, tail, head, s->cookie_tx); - -@@ -1477,10 +1477,10 @@ static void sci_dma_tx_work_fn(struct wo - return; - - switch_to_pio: -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - s->chan_tx = NULL; - sci_start_tx(port); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - return; - } - -@@ -1497,17 +1497,17 @@ static enum hrtimer_restart sci_dma_rx_t - - dev_dbg(port->dev, "DMA Rx timed out\n"); - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - active = sci_dma_rx_find_active(s); - if (active < 0) { -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - return HRTIMER_NORESTART; - } - - status = dmaengine_tx_status(s->chan_rx, s->active_rx, &state); - if (status == DMA_COMPLETE) { -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - dev_dbg(port->dev, "Cookie %d #%d has already completed\n", - s->active_rx, active); - -@@ -1525,7 +1525,7 @@ static enum hrtimer_restart sci_dma_rx_t - */ - status = dmaengine_tx_status(s->chan_rx, s->active_rx, &state); - if (status == DMA_COMPLETE) { -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - dev_dbg(port->dev, "Transaction complete after DMA engine was stopped"); - return HRTIMER_NORESTART; - } -@@ -1546,7 +1546,7 @@ static enum hrtimer_restart sci_dma_rx_t - - sci_dma_rx_reenable_irq(s); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - return HRTIMER_NORESTART; - } -@@ -1770,9 +1770,9 @@ static irqreturn_t sci_tx_interrupt(int - struct uart_port *port = ptr; - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - sci_transmit_chars(port); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - return IRQ_HANDLED; - } -@@ -1786,11 +1786,11 @@ static irqreturn_t sci_tx_end_interrupt( - if (port->type != PORT_SCI) - return sci_tx_interrupt(irq, ptr); - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - ctrl = serial_port_in(port, SCSCR); - ctrl &= ~(SCSCR_TE | SCSCR_TEIE); - serial_port_out(port, SCSCR, ctrl); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - return IRQ_HANDLED; - } -@@ -2187,7 +2187,7 @@ static void sci_break_ctl(struct uart_po - return; - } - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - scsptr = serial_port_in(port, SCSPTR); - scscr = serial_port_in(port, SCSCR); - -@@ -2201,7 +2201,7 @@ static void sci_break_ctl(struct uart_po - - serial_port_out(port, SCSPTR, scsptr); - serial_port_out(port, SCSCR, scscr); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static int sci_startup(struct uart_port *port) -@@ -2233,7 +2233,7 @@ static void sci_shutdown(struct uart_por - s->autorts = false; - mctrl_gpio_disable_ms(to_sci_port(port)->gpios); - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - sci_stop_rx(port); - sci_stop_tx(port); - /* -@@ -2243,7 +2243,7 @@ static void sci_shutdown(struct uart_por - scr = serial_port_in(port, SCSCR); - serial_port_out(port, SCSCR, scr & - (SCSCR_CKE1 | SCSCR_CKE0 | s->hscif_tot)); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - #ifdef CONFIG_SERIAL_SH_SCI_DMA - if (s->chan_rx_saved) { -@@ -2545,7 +2545,7 @@ static void sci_set_termios(struct uart_ - serial_port_out(port, SCCKS, sccks); - } - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - sci_reset(port); - -@@ -2667,7 +2667,7 @@ static void sci_set_termios(struct uart_ - if ((termios->c_cflag & CREAD) != 0) - sci_start_rx(port); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - sci_port_disable(s); - -@@ -3052,9 +3052,9 @@ static void serial_console_write(struct - if (port->sysrq) - locked = 0; - else if (oops_in_progress) -- locked = spin_trylock_irqsave(&port->lock, flags); -+ locked = uart_port_trylock_irqsave(port, &flags); - else -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* first save SCSCR then disable interrupts, keep clock source */ - ctrl = serial_port_in(port, SCSCR); -@@ -3074,7 +3074,7 @@ static void serial_console_write(struct - serial_port_out(port, SCSCR, ctrl); - - if (locked) -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static int serial_console_setup(struct console *co, char *options) diff --git a/debian/patches-rt/0061-serial-sifive-Use-port-lock-wrappers.patch b/debian/patches-rt/0061-serial-sifive-Use-port-lock-wrappers.patch deleted file mode 100644 index a2babdbea9..0000000000 --- a/debian/patches-rt/0061-serial-sifive-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,102 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:44:18 +0206 -Subject: [PATCH 061/134] serial: sifive: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-62-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/sifive.c | 16 ++++++++-------- - 1 file changed, 8 insertions(+), 8 deletions(-) - ---- a/drivers/tty/serial/sifive.c -+++ b/drivers/tty/serial/sifive.c -@@ -521,11 +521,11 @@ static irqreturn_t sifive_serial_irq(int - struct sifive_serial_port *ssp = dev_id; - u32 ip; - -- spin_lock(&ssp->port.lock); -+ uart_port_lock(&ssp->port); - - ip = __ssp_readl(ssp, SIFIVE_SERIAL_IP_OFFS); - if (!ip) { -- spin_unlock(&ssp->port.lock); -+ uart_port_unlock(&ssp->port); - return IRQ_NONE; - } - -@@ -534,7 +534,7 @@ static irqreturn_t sifive_serial_irq(int - if (ip & SIFIVE_SERIAL_IP_TXWM_MASK) - __ssp_transmit_chars(ssp); - -- spin_unlock(&ssp->port.lock); -+ uart_port_unlock(&ssp->port); - - return IRQ_HANDLED; - } -@@ -653,7 +653,7 @@ static void sifive_serial_set_termios(st - ssp->port.uartclk / 16); - __ssp_update_baud_rate(ssp, rate); - -- spin_lock_irqsave(&ssp->port.lock, flags); -+ uart_port_lock_irqsave(&ssp->port, &flags); - - /* Update the per-port timeout */ - uart_update_timeout(port, termios->c_cflag, rate); -@@ -670,7 +670,7 @@ static void sifive_serial_set_termios(st - if (v != old_v) - __ssp_writel(v, SIFIVE_SERIAL_RXCTRL_OFFS, ssp); - -- spin_unlock_irqrestore(&ssp->port.lock, flags); -+ uart_port_unlock_irqrestore(&ssp->port, flags); - } - - static void sifive_serial_release_port(struct uart_port *port) -@@ -795,9 +795,9 @@ static void sifive_serial_console_write( - if (ssp->port.sysrq) - locked = 0; - else if (oops_in_progress) -- locked = spin_trylock(&ssp->port.lock); -+ locked = uart_port_trylock(&ssp->port); - else -- spin_lock(&ssp->port.lock); -+ uart_port_lock(&ssp->port); - - ier = __ssp_readl(ssp, SIFIVE_SERIAL_IE_OFFS); - __ssp_writel(0, SIFIVE_SERIAL_IE_OFFS, ssp); -@@ -807,7 +807,7 @@ static void sifive_serial_console_write( - __ssp_writel(ier, SIFIVE_SERIAL_IE_OFFS, ssp); - - if (locked) -- spin_unlock(&ssp->port.lock); -+ uart_port_unlock(&ssp->port); - local_irq_restore(flags); - } - diff --git a/debian/patches-rt/0062-serial-sprd-Use-port-lock-wrappers.patch b/debian/patches-rt/0062-serial-sprd-Use-port-lock-wrappers.patch deleted file mode 100644 index 5be78db092..0000000000 --- a/debian/patches-rt/0062-serial-sprd-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,162 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:44:19 +0206 -Subject: [PATCH 062/134] serial: sprd: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-63-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/sprd_serial.c | 30 +++++++++++++++--------------- - 1 file changed, 15 insertions(+), 15 deletions(-) - ---- a/drivers/tty/serial/sprd_serial.c -+++ b/drivers/tty/serial/sprd_serial.c -@@ -247,7 +247,7 @@ static void sprd_complete_tx_dma(void *d - struct circ_buf *xmit = &port->state->xmit; - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - dma_unmap_single(port->dev, sp->tx_dma.phys_addr, - sp->tx_dma.trans_len, DMA_TO_DEVICE); - -@@ -260,7 +260,7 @@ static void sprd_complete_tx_dma(void *d - sprd_tx_dma_config(port)) - sp->tx_dma.trans_len = 0; - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static int sprd_uart_dma_submit(struct uart_port *port, -@@ -429,13 +429,13 @@ static void sprd_complete_rx_dma(void *d - enum dma_status status; - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - status = dmaengine_tx_status(sp->rx_dma.chn, - sp->rx_dma.cookie, &state); - if (status != DMA_COMPLETE) { - sprd_stop_rx(port); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - return; - } - -@@ -449,7 +449,7 @@ static void sprd_complete_rx_dma(void *d - if (sprd_start_dma_rx(port)) - sprd_stop_rx(port); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static int sprd_start_dma_rx(struct uart_port *port) -@@ -638,12 +638,12 @@ static irqreturn_t sprd_handle_irq(int i - struct uart_port *port = dev_id; - unsigned int ims; - -- spin_lock(&port->lock); -+ uart_port_lock(port); - - ims = serial_in(port, SPRD_IMSR); - - if (!ims) { -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - return IRQ_NONE; - } - -@@ -660,7 +660,7 @@ static irqreturn_t sprd_handle_irq(int i - if (ims & SPRD_IMSR_TX_FIFO_EMPTY) - sprd_tx(port); - -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - - return IRQ_HANDLED; - } -@@ -727,13 +727,13 @@ static int sprd_startup(struct uart_port - serial_out(port, SPRD_CTL1, fc); - - /* enable interrupt */ -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - ien = serial_in(port, SPRD_IEN); - ien |= SPRD_IEN_BREAK_DETECT | SPRD_IEN_TIMEOUT; - if (!sp->rx_dma.enable) - ien |= SPRD_IEN_RX_FULL; - serial_out(port, SPRD_IEN, ien); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - return 0; - } -@@ -793,7 +793,7 @@ static void sprd_set_termios(struct uart - lcr |= SPRD_LCR_EVEN_PAR; - } - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* update the per-port timeout */ - uart_update_timeout(port, termios->c_cflag, baud); -@@ -837,7 +837,7 @@ static void sprd_set_termios(struct uart - fc |= RX_TOUT_THLD_DEF | RX_HFC_THLD_DEF; - serial_out(port, SPRD_CTL1, fc); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - /* Don't rewrite B0 */ - if (tty_termios_baud_rate(termios)) -@@ -974,9 +974,9 @@ static void sprd_console_write(struct co - if (port->sysrq) - locked = 0; - else if (oops_in_progress) -- locked = spin_trylock_irqsave(&port->lock, flags); -+ locked = uart_port_trylock_irqsave(port, &flags); - else -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - uart_console_write(port, s, count, sprd_console_putchar); - -@@ -984,7 +984,7 @@ static void sprd_console_write(struct co - wait_for_xmitr(port); - - if (locked) -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static int sprd_console_setup(struct console *co, char *options) diff --git a/debian/patches-rt/0063-serial-st-asc-Use-port-lock-wrappers.patch b/debian/patches-rt/0063-serial-st-asc-Use-port-lock-wrappers.patch deleted file mode 100644 index 99f4358e61..0000000000 --- a/debian/patches-rt/0063-serial-st-asc-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,110 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:44:20 +0206 -Subject: [PATCH 063/134] serial: st-asc: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-64-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/st-asc.c | 18 +++++++++--------- - 1 file changed, 9 insertions(+), 9 deletions(-) - ---- a/drivers/tty/serial/st-asc.c -+++ b/drivers/tty/serial/st-asc.c -@@ -319,7 +319,7 @@ static irqreturn_t asc_interrupt(int irq - struct uart_port *port = ptr; - u32 status; - -- spin_lock(&port->lock); -+ uart_port_lock(port); - - status = asc_in(port, ASC_STA); - -@@ -334,7 +334,7 @@ static irqreturn_t asc_interrupt(int irq - asc_transmit_chars(port); - } - -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - - return IRQ_HANDLED; - } -@@ -452,10 +452,10 @@ static void asc_pm(struct uart_port *por - * we can come to turning it off. Note this is not called with - * the port spinlock held. - */ -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - ctl = asc_in(port, ASC_CTL) & ~ASC_CTL_RUN; - asc_out(port, ASC_CTL, ctl); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - clk_disable_unprepare(ascport->clk); - break; - } -@@ -480,7 +480,7 @@ static void asc_set_termios(struct uart_ - baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk/16); - cflag = termios->c_cflag; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* read control register */ - ctrl_val = asc_in(port, ASC_CTL); -@@ -594,7 +594,7 @@ static void asc_set_termios(struct uart_ - /* write final value and enable port */ - asc_out(port, ASC_CTL, (ctrl_val | ASC_CTL_RUN)); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static const char *asc_type(struct uart_port *port) -@@ -849,9 +849,9 @@ static void asc_console_write(struct con - if (port->sysrq) - locked = 0; /* asc_interrupt has already claimed the lock */ - else if (oops_in_progress) -- locked = spin_trylock_irqsave(&port->lock, flags); -+ locked = uart_port_trylock_irqsave(port, &flags); - else -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* - * Disable interrupts so we don't get the IRQ line bouncing -@@ -869,7 +869,7 @@ static void asc_console_write(struct con - asc_out(port, ASC_INTEN, intenable); - - if (locked) -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static int asc_console_setup(struct console *co, char *options) diff --git a/debian/patches-rt/0064-serial-stm32-Use-port-lock-wrappers.patch b/debian/patches-rt/0064-serial-stm32-Use-port-lock-wrappers.patch deleted file mode 100644 index cc261d43ee..0000000000 --- a/debian/patches-rt/0064-serial-stm32-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,184 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:44:21 +0206 -Subject: [PATCH 064/134] serial: stm32: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-65-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/stm32-usart.c | 38 +++++++++++++++++++------------------- - 1 file changed, 19 insertions(+), 19 deletions(-) - ---- a/drivers/tty/serial/stm32-usart.c -+++ b/drivers/tty/serial/stm32-usart.c -@@ -537,7 +537,7 @@ static void stm32_usart_rx_dma_complete( - unsigned int size; - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - size = stm32_usart_receive_chars(port, false); - uart_unlock_and_check_sysrq_irqrestore(port, flags); - if (size) -@@ -643,9 +643,9 @@ static void stm32_usart_tx_dma_complete( - stm32_usart_tx_dma_terminate(stm32port); - - /* Let's see if we have pending data to send */ -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - stm32_usart_transmit_chars(port); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static void stm32_usart_tx_interrupt_enable(struct uart_port *port) -@@ -889,7 +889,7 @@ static irqreturn_t stm32_usart_interrupt - if (!stm32_port->throttled) { - if (((sr & USART_SR_RXNE) && !stm32_usart_rx_dma_started(stm32_port)) || - ((sr & USART_SR_ERR_MASK) && stm32_usart_rx_dma_started(stm32_port))) { -- spin_lock(&port->lock); -+ uart_port_lock(port); - size = stm32_usart_receive_chars(port, false); - uart_unlock_and_check_sysrq(port); - if (size) -@@ -898,14 +898,14 @@ static irqreturn_t stm32_usart_interrupt - } - - if ((sr & USART_SR_TXE) && !(stm32_port->tx_ch)) { -- spin_lock(&port->lock); -+ uart_port_lock(port); - stm32_usart_transmit_chars(port); -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - } - - /* Receiver timeout irq for DMA RX */ - if (stm32_usart_rx_dma_started(stm32_port) && !stm32_port->throttled) { -- spin_lock(&port->lock); -+ uart_port_lock(port); - size = stm32_usart_receive_chars(port, false); - uart_unlock_and_check_sysrq(port); - if (size) -@@ -993,7 +993,7 @@ static void stm32_usart_throttle(struct - const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* - * Pause DMA transfer, so the RX data gets queued into the FIFO. -@@ -1006,7 +1006,7 @@ static void stm32_usart_throttle(struct - stm32_usart_clr_bits(port, ofs->cr3, stm32_port->cr3_irq); - - stm32_port->throttled = true; -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - /* Unthrottle the remote, the input buffer can now accept data. */ -@@ -1016,7 +1016,7 @@ static void stm32_usart_unthrottle(struc - const struct stm32_usart_offsets *ofs = &stm32_port->info->ofs; - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - stm32_usart_set_bits(port, ofs->cr1, stm32_port->cr1_irq); - if (stm32_port->cr3_irq) - stm32_usart_set_bits(port, ofs->cr3, stm32_port->cr3_irq); -@@ -1030,7 +1030,7 @@ static void stm32_usart_unthrottle(struc - if (stm32_port->rx_ch) - stm32_usart_rx_dma_start_or_resume(port); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - /* Receive stop */ -@@ -1158,7 +1158,7 @@ static void stm32_usart_set_termios(stru - - baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk / 8); - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - ret = readl_relaxed_poll_timeout_atomic(port->membase + ofs->isr, - isr, -@@ -1349,7 +1349,7 @@ static void stm32_usart_set_termios(stru - writel_relaxed(cr1, port->membase + ofs->cr1); - - stm32_usart_set_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit)); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - /* Handle modem control interrupts */ - if (UART_ENABLE_MS(port, termios->c_cflag)) -@@ -1399,9 +1399,9 @@ static void stm32_usart_pm(struct uart_p - pm_runtime_get_sync(port->dev); - break; - case UART_PM_STATE_OFF: -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - stm32_usart_clr_bits(port, ofs->cr1, BIT(cfg->uart_enable_bit)); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - pm_runtime_put_sync(port->dev); - break; - } -@@ -1884,9 +1884,9 @@ static void stm32_usart_console_write(st - int locked = 1; - - if (oops_in_progress) -- locked = spin_trylock_irqsave(&port->lock, flags); -+ locked = uart_port_trylock_irqsave(port, &flags); - else -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* Save and disable interrupts, enable the transmitter */ - old_cr1 = readl_relaxed(port->membase + ofs->cr1); -@@ -1900,7 +1900,7 @@ static void stm32_usart_console_write(st - writel_relaxed(old_cr1, port->membase + ofs->cr1); - - if (locked) -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static int stm32_usart_console_setup(struct console *co, char *options) -@@ -2035,7 +2035,7 @@ static int __maybe_unused stm32_usart_se - * low-power mode. - */ - if (stm32_port->rx_ch) { -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - /* Poll data from DMA RX buffer if any */ - if (!stm32_usart_rx_dma_pause(stm32_port)) - size += stm32_usart_receive_chars(port, true); diff --git a/debian/patches-rt/0065-serial-sunhv-Use-port-lock-wrappers.patch b/debian/patches-rt/0065-serial-sunhv-Use-port-lock-wrappers.patch deleted file mode 100644 index beacd2be79..0000000000 --- a/debian/patches-rt/0065-serial-sunhv-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,149 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:44:22 +0206 -Subject: [PATCH 065/134] serial: sunhv: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-66-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/sunhv.c | 28 ++++++++++++++-------------- - 1 file changed, 14 insertions(+), 14 deletions(-) - ---- a/drivers/tty/serial/sunhv.c -+++ b/drivers/tty/serial/sunhv.c -@@ -217,10 +217,10 @@ static irqreturn_t sunhv_interrupt(int i - struct tty_port *tport; - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - tport = receive_chars(port); - transmit_chars(port); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - if (tport) - tty_flip_buffer_push(tport); -@@ -271,7 +271,7 @@ static void sunhv_send_xchar(struct uart - if (ch == __DISABLED_CHAR) - return; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - while (limit-- > 0) { - long status = sun4v_con_putchar(ch); -@@ -280,7 +280,7 @@ static void sunhv_send_xchar(struct uart - udelay(1); - } - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - /* port->lock held by caller. */ -@@ -295,7 +295,7 @@ static void sunhv_break_ctl(struct uart_ - unsigned long flags; - int limit = 10000; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - while (limit-- > 0) { - long status = sun4v_con_putchar(CON_BREAK); -@@ -304,7 +304,7 @@ static void sunhv_break_ctl(struct uart_ - udelay(1); - } - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - } - -@@ -328,7 +328,7 @@ static void sunhv_set_termios(struct uar - unsigned int iflag, cflag; - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - iflag = termios->c_iflag; - cflag = termios->c_cflag; -@@ -343,7 +343,7 @@ static void sunhv_set_termios(struct uar - uart_update_timeout(port, cflag, - (port->uartclk / (16 * quot))); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static const char *sunhv_type(struct uart_port *port) -@@ -437,9 +437,9 @@ static void sunhv_console_write_paged(st - int locked = 1; - - if (port->sysrq || oops_in_progress) -- locked = spin_trylock_irqsave(&port->lock, flags); -+ locked = uart_port_trylock_irqsave(port, &flags); - else -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - while (n > 0) { - unsigned long ra = __pa(con_write_page); -@@ -470,7 +470,7 @@ static void sunhv_console_write_paged(st - } - - if (locked) -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static inline void sunhv_console_putchar(struct uart_port *port, char c) -@@ -492,9 +492,9 @@ static void sunhv_console_write_bychar(s - int i, locked = 1; - - if (port->sysrq || oops_in_progress) -- locked = spin_trylock_irqsave(&port->lock, flags); -+ locked = uart_port_trylock_irqsave(port, &flags); - else -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - for (i = 0; i < n; i++) { - if (*s == '\n') -@@ -503,7 +503,7 @@ static void sunhv_console_write_bychar(s - } - - if (locked) -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static struct console sunhv_console = { diff --git a/debian/patches-rt/0066-serial-sunplus-uart-Use-port-lock-wrappers.patch b/debian/patches-rt/0066-serial-sunplus-uart-Use-port-lock-wrappers.patch deleted file mode 100644 index 10ae6c477c..0000000000 --- a/debian/patches-rt/0066-serial-sunplus-uart-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,146 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:44:23 +0206 -Subject: [PATCH 066/134] serial: sunplus-uart: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-67-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/sunplus-uart.c | 26 +++++++++++++------------- - 1 file changed, 13 insertions(+), 13 deletions(-) - ---- a/drivers/tty/serial/sunplus-uart.c -+++ b/drivers/tty/serial/sunplus-uart.c -@@ -184,7 +184,7 @@ static void sunplus_break_ctl(struct uar - unsigned long flags; - unsigned int lcr; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - lcr = readl(port->membase + SUP_UART_LCR); - -@@ -195,7 +195,7 @@ static void sunplus_break_ctl(struct uar - - writel(lcr, port->membase + SUP_UART_LCR); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static void transmit_chars(struct uart_port *port) -@@ -277,7 +277,7 @@ static irqreturn_t sunplus_uart_irq(int - struct uart_port *port = args; - unsigned int isc; - -- spin_lock(&port->lock); -+ uart_port_lock(port); - - isc = readl(port->membase + SUP_UART_ISC); - -@@ -287,7 +287,7 @@ static irqreturn_t sunplus_uart_irq(int - if (isc & SUP_UART_ISC_TX) - transmit_chars(port); - -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - - return IRQ_HANDLED; - } -@@ -302,14 +302,14 @@ static int sunplus_startup(struct uart_p - if (ret) - return ret; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - /* isc define Bit[7:4] int setting, Bit[3:0] int status - * isc register will clean Bit[3:0] int status after read - * only do a write to Bit[7:4] int setting - */ - isc |= SUP_UART_ISC_RXM; - writel(isc, port->membase + SUP_UART_ISC); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - return 0; - } -@@ -318,13 +318,13 @@ static void sunplus_shutdown(struct uart - { - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - /* isc define Bit[7:4] int setting, Bit[3:0] int status - * isc register will clean Bit[3:0] int status after read - * only do a write to Bit[7:4] int setting - */ - writel(0, port->membase + SUP_UART_ISC); /* disable all interrupt */ -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - free_irq(port->irq, port); - } -@@ -372,7 +372,7 @@ static void sunplus_set_termios(struct u - lcr |= UART_LCR_EPAR; - } - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - uart_update_timeout(port, termios->c_cflag, baud); - -@@ -407,7 +407,7 @@ static void sunplus_set_termios(struct u - writel(div_l, port->membase + SUP_UART_DIV_L); - writel(lcr, port->membase + SUP_UART_LCR); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static void sunplus_set_ldisc(struct uart_port *port, struct ktermios *termios) -@@ -517,15 +517,15 @@ static void sunplus_console_write(struct - if (sunplus_console_ports[co->index]->port.sysrq) - locked = 0; - else if (oops_in_progress) -- locked = spin_trylock(&sunplus_console_ports[co->index]->port.lock); -+ locked = uart_port_trylock(&sunplus_console_ports[co->index]->port); - else -- spin_lock(&sunplus_console_ports[co->index]->port.lock); -+ uart_port_lock(&sunplus_console_ports[co->index]->port); - - uart_console_write(&sunplus_console_ports[co->index]->port, s, count, - sunplus_uart_console_putchar); - - if (locked) -- spin_unlock(&sunplus_console_ports[co->index]->port.lock); -+ uart_port_unlock(&sunplus_console_ports[co->index]->port); - - local_irq_restore(flags); - } diff --git a/debian/patches-rt/0067-serial-sunsab-Use-port-lock-wrappers.patch b/debian/patches-rt/0067-serial-sunsab-Use-port-lock-wrappers.patch deleted file mode 100644 index b96d5080cd..0000000000 --- a/debian/patches-rt/0067-serial-sunsab-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,176 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:44:24 +0206 -Subject: [PATCH 067/134] serial: sunsab: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-68-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/sunsab.c | 34 +++++++++++++++++----------------- - 1 file changed, 17 insertions(+), 17 deletions(-) - ---- a/drivers/tty/serial/sunsab.c -+++ b/drivers/tty/serial/sunsab.c -@@ -310,7 +310,7 @@ static irqreturn_t sunsab_interrupt(int - unsigned long flags; - unsigned char gis; - -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - - status.stat = 0; - gis = readb(&up->regs->r.gis) >> up->gis_shift; -@@ -331,7 +331,7 @@ static irqreturn_t sunsab_interrupt(int - transmit_chars(up, &status); - } - -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - - if (port) - tty_flip_buffer_push(port); -@@ -473,12 +473,12 @@ static void sunsab_send_xchar(struct uar - if (ch == __DISABLED_CHAR) - return; - -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - - sunsab_tec_wait(up); - writeb(ch, &up->regs->w.tic); - -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - } - - /* port->lock held by caller. */ -@@ -499,7 +499,7 @@ static void sunsab_break_ctl(struct uart - unsigned long flags; - unsigned char val; - -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - - val = up->cached_dafo; - if (break_state) -@@ -512,7 +512,7 @@ static void sunsab_break_ctl(struct uart - if (test_bit(SAB82532_XPR, &up->irqflags)) - sunsab_tx_idle(up); - -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - } - - /* port->lock is not held. */ -@@ -527,7 +527,7 @@ static int sunsab_startup(struct uart_po - if (err) - return err; - -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - - /* - * Wait for any commands or immediate characters -@@ -582,7 +582,7 @@ static int sunsab_startup(struct uart_po - set_bit(SAB82532_ALLS, &up->irqflags); - set_bit(SAB82532_XPR, &up->irqflags); - -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - - return 0; - } -@@ -594,7 +594,7 @@ static void sunsab_shutdown(struct uart_ - container_of(port, struct uart_sunsab_port, port); - unsigned long flags; - -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - - /* Disable Interrupts */ - up->interrupt_mask0 = 0xff; -@@ -628,7 +628,7 @@ static void sunsab_shutdown(struct uart_ - writeb(tmp, &up->regs->rw.ccr0); - #endif - -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - free_irq(up->port.irq, up); - } - -@@ -779,9 +779,9 @@ static void sunsab_set_termios(struct ua - unsigned int baud = uart_get_baud_rate(port, termios, old, 0, 4000000); - unsigned int quot = uart_get_divisor(port, baud); - -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - sunsab_convert_to_sab(up, termios->c_cflag, termios->c_iflag, baud, quot); -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - } - - static const char *sunsab_type(struct uart_port *port) -@@ -857,15 +857,15 @@ static void sunsab_console_write(struct - int locked = 1; - - if (up->port.sysrq || oops_in_progress) -- locked = spin_trylock_irqsave(&up->port.lock, flags); -+ locked = uart_port_trylock_irqsave(&up->port, &flags); - else -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - - uart_console_write(&up->port, s, n, sunsab_console_putchar); - sunsab_tec_wait(up); - - if (locked) -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - } - - static int sunsab_console_setup(struct console *con, char *options) -@@ -914,7 +914,7 @@ static int sunsab_console_setup(struct c - */ - sunsab_startup(&up->port); - -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - - /* - * Finally, enable interrupts -@@ -932,7 +932,7 @@ static int sunsab_console_setup(struct c - sunsab_convert_to_sab(up, con->cflag, 0, baud, quot); - sunsab_set_mctrl(&up->port, TIOCM_DTR | TIOCM_RTS); - -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - - return 0; - } diff --git a/debian/patches-rt/0068-serial-sunsu-Use-port-lock-wrappers.patch b/debian/patches-rt/0068-serial-sunsu-Use-port-lock-wrappers.patch deleted file mode 100644 index 77945a1edb..0000000000 --- a/debian/patches-rt/0068-serial-sunsu-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,219 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:44:25 +0206 -Subject: [PATCH 068/134] serial: sunsu: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-69-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/sunsu.c | 46 ++++++++++++++++++++++----------------------- - 1 file changed, 23 insertions(+), 23 deletions(-) - ---- a/drivers/tty/serial/sunsu.c -+++ b/drivers/tty/serial/sunsu.c -@@ -212,9 +212,9 @@ static void enable_rsa(struct uart_sunsu - { - if (up->port.type == PORT_RSA) { - if (up->port.uartclk != SERIAL_RSA_BAUD_BASE * 16) { -- spin_lock_irq(&up->port.lock); -+ uart_port_lock_irq(&up->port); - __enable_rsa(up); -- spin_unlock_irq(&up->port.lock); -+ uart_port_unlock_irq(&up->port); - } - if (up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16) - serial_outp(up, UART_RSA_FRR, 0); -@@ -234,7 +234,7 @@ static void disable_rsa(struct uart_suns - - if (up->port.type == PORT_RSA && - up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16) { -- spin_lock_irq(&up->port.lock); -+ uart_port_lock_irq(&up->port); - - mode = serial_inp(up, UART_RSA_MSR); - result = !(mode & UART_RSA_MSR_FIFO); -@@ -247,7 +247,7 @@ static void disable_rsa(struct uart_suns - - if (result) - up->port.uartclk = SERIAL_RSA_BAUD_BASE_LO * 16; -- spin_unlock_irq(&up->port.lock); -+ uart_port_unlock_irq(&up->port); - } - } - #endif /* CONFIG_SERIAL_8250_RSA */ -@@ -311,10 +311,10 @@ static void sunsu_enable_ms(struct uart_ - container_of(port, struct uart_sunsu_port, port); - unsigned long flags; - -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - up->ier |= UART_IER_MSI; - serial_out(up, UART_IER, up->ier); -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - } - - static void -@@ -456,7 +456,7 @@ static irqreturn_t sunsu_serial_interrup - unsigned long flags; - unsigned char status; - -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - - do { - status = serial_inp(up, UART_LSR); -@@ -470,7 +470,7 @@ static irqreturn_t sunsu_serial_interrup - - } while (!(serial_in(up, UART_IIR) & UART_IIR_NO_INT)); - -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - - return IRQ_HANDLED; - } -@@ -545,9 +545,9 @@ static unsigned int sunsu_tx_empty(struc - unsigned long flags; - unsigned int ret; - -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - ret = serial_in(up, UART_LSR) & UART_LSR_TEMT ? TIOCSER_TEMT : 0; -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - - return ret; - } -@@ -599,13 +599,13 @@ static void sunsu_break_ctl(struct uart_ - container_of(port, struct uart_sunsu_port, port); - unsigned long flags; - -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - if (break_state == -1) - up->lcr |= UART_LCR_SBC; - else - up->lcr &= ~UART_LCR_SBC; - serial_out(up, UART_LCR, up->lcr); -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - } - - static int sunsu_startup(struct uart_port *port) -@@ -683,12 +683,12 @@ static int sunsu_startup(struct uart_por - */ - serial_outp(up, UART_LCR, UART_LCR_WLEN8); - -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - - up->port.mctrl |= TIOCM_OUT2; - - sunsu_set_mctrl(&up->port, up->port.mctrl); -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - - /* - * Finally, enable interrupts. Note: Modem status interrupts -@@ -731,7 +731,7 @@ static void sunsu_shutdown(struct uart_p - up->ier = 0; - serial_outp(up, UART_IER, 0); - -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - if (up->port.flags & UPF_FOURPORT) { - /* reset interrupts on the AST Fourport board */ - inb((up->port.iobase & 0xfe0) | 0x1f); -@@ -740,7 +740,7 @@ static void sunsu_shutdown(struct uart_p - up->port.mctrl &= ~TIOCM_OUT2; - - sunsu_set_mctrl(&up->port, up->port.mctrl); -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - - /* - * Disable break condition and FIFOs -@@ -826,7 +826,7 @@ sunsu_change_speed(struct uart_port *por - * Ok, we're now changing the port state. Do it with - * interrupts disabled. - */ -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - - /* - * Update the per-port timeout. -@@ -891,7 +891,7 @@ sunsu_change_speed(struct uart_port *por - - up->cflag = cflag; - -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - } - - static void -@@ -1038,7 +1038,7 @@ static void sunsu_autoconfig(struct uart - up->type_probed = PORT_UNKNOWN; - up->port.iotype = UPIO_MEM; - -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - - if (!(up->port.flags & UPF_BUGGY_UART)) { - /* -@@ -1173,7 +1173,7 @@ static void sunsu_autoconfig(struct uart - serial_outp(up, UART_IER, 0); - - out: -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - } - - static struct uart_driver sunsu_reg = { -@@ -1298,9 +1298,9 @@ static void sunsu_console_write(struct c - int locked = 1; - - if (up->port.sysrq || oops_in_progress) -- locked = spin_trylock_irqsave(&up->port.lock, flags); -+ locked = uart_port_trylock_irqsave(&up->port, &flags); - else -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - - /* - * First save the UER then disable the interrupts -@@ -1318,7 +1318,7 @@ static void sunsu_console_write(struct c - serial_out(up, UART_IER, ier); - - if (locked) -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - } - - /* diff --git a/debian/patches-rt/0069-serial-sunzilog-Use-port-lock-wrappers.patch b/debian/patches-rt/0069-serial-sunzilog-Use-port-lock-wrappers.patch deleted file mode 100644 index dca4327a46..0000000000 --- a/debian/patches-rt/0069-serial-sunzilog-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,211 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:44:26 +0206 -Subject: [PATCH 069/134] serial: sunzilog: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-70-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/sunzilog.c | 42 +++++++++++++++++++++--------------------- - 1 file changed, 21 insertions(+), 21 deletions(-) - ---- a/drivers/tty/serial/sunzilog.c -+++ b/drivers/tty/serial/sunzilog.c -@@ -531,7 +531,7 @@ static irqreturn_t sunzilog_interrupt(in - struct tty_port *port; - unsigned char r3; - -- spin_lock(&up->port.lock); -+ uart_port_lock(&up->port); - r3 = read_zsreg(channel, R3); - - /* Channel A */ -@@ -548,7 +548,7 @@ static irqreturn_t sunzilog_interrupt(in - if (r3 & CHATxIP) - sunzilog_transmit_chars(up, channel); - } -- spin_unlock(&up->port.lock); -+ uart_port_unlock(&up->port); - - if (port) - tty_flip_buffer_push(port); -@@ -557,7 +557,7 @@ static irqreturn_t sunzilog_interrupt(in - up = up->next; - channel = ZILOG_CHANNEL_FROM_PORT(&up->port); - -- spin_lock(&up->port.lock); -+ uart_port_lock(&up->port); - port = NULL; - if (r3 & (CHBEXT | CHBTxIP | CHBRxIP)) { - writeb(RES_H_IUS, &channel->control); -@@ -571,7 +571,7 @@ static irqreturn_t sunzilog_interrupt(in - if (r3 & CHBTxIP) - sunzilog_transmit_chars(up, channel); - } -- spin_unlock(&up->port.lock); -+ uart_port_unlock(&up->port); - - if (port) - tty_flip_buffer_push(port); -@@ -604,11 +604,11 @@ static unsigned int sunzilog_tx_empty(st - unsigned char status; - unsigned int ret; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - status = sunzilog_read_channel_status(port); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - if (status & Tx_BUF_EMP) - ret = TIOCSER_TEMT; -@@ -764,7 +764,7 @@ static void sunzilog_break_ctl(struct ua - else - clear_bits |= SND_BRK; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - new_reg = (up->curregs[R5] | set_bits) & ~clear_bits; - if (new_reg != up->curregs[R5]) { -@@ -774,7 +774,7 @@ static void sunzilog_break_ctl(struct ua - write_zsreg(channel, R5, up->curregs[R5]); - } - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static void __sunzilog_startup(struct uart_sunzilog_port *up) -@@ -800,9 +800,9 @@ static int sunzilog_startup(struct uart_ - if (ZS_IS_CONS(up)) - return 0; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - __sunzilog_startup(up); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - return 0; - } - -@@ -840,7 +840,7 @@ static void sunzilog_shutdown(struct uar - if (ZS_IS_CONS(up)) - return; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - channel = ZILOG_CHANNEL_FROM_PORT(port); - -@@ -853,7 +853,7 @@ static void sunzilog_shutdown(struct uar - up->curregs[R5] &= ~SND_BRK; - sunzilog_maybe_update_regs(up, channel); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - /* Shared by TTY driver and serial console setup. The port lock is held -@@ -945,7 +945,7 @@ sunzilog_set_termios(struct uart_port *p - - baud = uart_get_baud_rate(port, termios, old, 1200, 76800); - -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - - brg = BPS_TO_BRG(baud, ZS_CLOCK / ZS_CLOCK_DIVISOR); - -@@ -962,7 +962,7 @@ sunzilog_set_termios(struct uart_port *p - - uart_update_timeout(port, termios->c_cflag, baud); - -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - } - - static const char *sunzilog_type(struct uart_port *port) -@@ -1201,15 +1201,15 @@ sunzilog_console_write(struct console *c - int locked = 1; - - if (up->port.sysrq || oops_in_progress) -- locked = spin_trylock_irqsave(&up->port.lock, flags); -+ locked = uart_port_trylock_irqsave(&up->port, &flags); - else -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - - uart_console_write(&up->port, s, count, sunzilog_putchar); - udelay(2); - - if (locked) -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - } - - static int __init sunzilog_console_setup(struct console *con, char *options) -@@ -1244,7 +1244,7 @@ static int __init sunzilog_console_setup - - brg = BPS_TO_BRG(baud, ZS_CLOCK / ZS_CLOCK_DIVISOR); - -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - - up->curregs[R15] |= BRKIE; - sunzilog_convert_to_zs(up, con->cflag, 0, brg); -@@ -1252,7 +1252,7 @@ static int __init sunzilog_console_setup - sunzilog_set_mctrl(&up->port, TIOCM_DTR | TIOCM_RTS); - __sunzilog_startup(up); - -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - - return 0; - } -@@ -1333,7 +1333,7 @@ static void sunzilog_init_hw(struct uart - - channel = ZILOG_CHANNEL_FROM_PORT(&up->port); - -- spin_lock_irqsave(&up->port.lock, flags); -+ uart_port_lock_irqsave(&up->port, &flags); - if (ZS_IS_CHANNEL_A(up)) { - write_zsreg(channel, R9, FHWRES); - ZSDELAY_LONG(); -@@ -1383,7 +1383,7 @@ static void sunzilog_init_hw(struct uart - write_zsreg(channel, R9, up->curregs[R9]); - } - -- spin_unlock_irqrestore(&up->port.lock, flags); -+ uart_port_unlock_irqrestore(&up->port, flags); - - #ifdef CONFIG_SERIO - if (up->flags & (SUNZILOG_FLAG_CONS_KEYB | diff --git a/debian/patches-rt/0070-serial-timbuart-Use-port-lock-wrappers.patch b/debian/patches-rt/0070-serial-timbuart-Use-port-lock-wrappers.patch deleted file mode 100644 index 2d5a3d95e3..0000000000 --- a/debian/patches-rt/0070-serial-timbuart-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,71 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:44:27 +0206 -Subject: [PATCH 070/134] serial: timbuart: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-71-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/timbuart.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - ---- a/drivers/tty/serial/timbuart.c -+++ b/drivers/tty/serial/timbuart.c -@@ -174,7 +174,7 @@ static void timbuart_tasklet(struct task - struct timbuart_port *uart = from_tasklet(uart, t, tasklet); - u32 isr, ier = 0; - -- spin_lock(&uart->port.lock); -+ uart_port_lock(&uart->port); - - isr = ioread32(uart->port.membase + TIMBUART_ISR); - dev_dbg(uart->port.dev, "%s ISR: %x\n", __func__, isr); -@@ -189,7 +189,7 @@ static void timbuart_tasklet(struct task - - iowrite32(ier, uart->port.membase + TIMBUART_IER); - -- spin_unlock(&uart->port.lock); -+ uart_port_unlock(&uart->port); - dev_dbg(uart->port.dev, "%s leaving\n", __func__); - } - -@@ -295,10 +295,10 @@ static void timbuart_set_termios(struct - tty_termios_copy_hw(termios, old); - tty_termios_encode_baud_rate(termios, baud, baud); - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - iowrite8((u8)bindex, port->membase + TIMBUART_BAUDRATE); - uart_update_timeout(port, termios->c_cflag, baud); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static const char *timbuart_type(struct uart_port *port) diff --git a/debian/patches-rt/0071-serial-uartlite-Use-port-lock-wrappers.patch b/debian/patches-rt/0071-serial-uartlite-Use-port-lock-wrappers.patch deleted file mode 100644 index 13c64d7eed..0000000000 --- a/debian/patches-rt/0071-serial-uartlite-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,105 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:44:28 +0206 -Subject: [PATCH 071/134] serial: uartlite: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-72-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/uartlite.c | 18 +++++++++--------- - 1 file changed, 9 insertions(+), 9 deletions(-) - ---- a/drivers/tty/serial/uartlite.c -+++ b/drivers/tty/serial/uartlite.c -@@ -216,11 +216,11 @@ static irqreturn_t ulite_isr(int irq, vo - unsigned long flags; - - do { -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - stat = uart_in32(ULITE_STATUS, port); - busy = ulite_receive(port, stat); - busy |= ulite_transmit(port, stat); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - n++; - } while (busy); - -@@ -238,9 +238,9 @@ static unsigned int ulite_tx_empty(struc - unsigned long flags; - unsigned int ret; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - ret = uart_in32(ULITE_STATUS, port); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - return ret & ULITE_STATUS_TXEMPTY ? TIOCSER_TEMT : 0; - } -@@ -323,7 +323,7 @@ static void ulite_set_termios(struct uar - termios->c_cflag |= pdata->cflags & (PARENB | PARODD | CSIZE); - tty_termios_encode_baud_rate(termios, pdata->baud, pdata->baud); - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - port->read_status_mask = ULITE_STATUS_RXVALID | ULITE_STATUS_OVERRUN - | ULITE_STATUS_TXFULL; -@@ -346,7 +346,7 @@ static void ulite_set_termios(struct uar - /* update timeout */ - uart_update_timeout(port, termios->c_cflag, pdata->baud); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static const char *ulite_type(struct uart_port *port) -@@ -495,9 +495,9 @@ static void ulite_console_write(struct c - int locked = 1; - - if (oops_in_progress) { -- locked = spin_trylock_irqsave(&port->lock, flags); -+ locked = uart_port_trylock_irqsave(port, &flags); - } else -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* save and disable interrupt */ - ier = uart_in32(ULITE_STATUS, port) & ULITE_STATUS_IE; -@@ -512,7 +512,7 @@ static void ulite_console_write(struct c - uart_out32(ULITE_CONTROL_IE, ULITE_CONTROL, port); - - if (locked) -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static int ulite_console_setup(struct console *co, char *options) diff --git a/debian/patches-rt/0072-serial-ucc_uart-Use-port-lock-wrappers.patch b/debian/patches-rt/0072-serial-ucc_uart-Use-port-lock-wrappers.patch deleted file mode 100644 index 30681434a7..0000000000 --- a/debian/patches-rt/0072-serial-ucc_uart-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,59 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:44:29 +0206 -Subject: [PATCH 072/134] serial: ucc_uart: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Acked-by: Timur Tabi <timur@kernel.org> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-73-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/ucc_uart.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - ---- a/drivers/tty/serial/ucc_uart.c -+++ b/drivers/tty/serial/ucc_uart.c -@@ -931,7 +931,7 @@ static void qe_uart_set_termios(struct u - baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk / 16); - - /* Do we really need a spinlock here? */ -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* Update the per-port timeout. */ - uart_update_timeout(port, termios->c_cflag, baud); -@@ -949,7 +949,7 @@ static void qe_uart_set_termios(struct u - qe_setbrg(qe_port->us_info.tx_clock, baud, 16); - } - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - /* diff --git a/debian/patches-rt/0073-serial-vt8500-Use-port-lock-wrappers.patch b/debian/patches-rt/0073-serial-vt8500-Use-port-lock-wrappers.patch deleted file mode 100644 index 7209ed0661..0000000000 --- a/debian/patches-rt/0073-serial-vt8500-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,76 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:44:30 +0206 -Subject: [PATCH 073/134] serial: vt8500: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-74-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/vt8500_serial.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - ---- a/drivers/tty/serial/vt8500_serial.c -+++ b/drivers/tty/serial/vt8500_serial.c -@@ -227,7 +227,7 @@ static irqreturn_t vt8500_irq(int irq, v - struct uart_port *port = dev_id; - unsigned long isr; - -- spin_lock(&port->lock); -+ uart_port_lock(port); - isr = vt8500_read(port, VT8500_URISR); - - /* Acknowledge active status bits */ -@@ -240,7 +240,7 @@ static irqreturn_t vt8500_irq(int irq, v - if (isr & TCTS) - handle_delta_cts(port); - -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - - return IRQ_HANDLED; - } -@@ -342,7 +342,7 @@ static void vt8500_set_termios(struct ua - unsigned int baud, lcr; - unsigned int loops = 1000; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* calculate and set baud rate */ - baud = uart_get_baud_rate(port, termios, old, 900, 921600); -@@ -410,7 +410,7 @@ static void vt8500_set_termios(struct ua - vt8500_write(&vt8500_port->uart, 0x881, VT8500_URFCR); - vt8500_write(&vt8500_port->uart, vt8500_port->ier, VT8500_URIER); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - static const char *vt8500_type(struct uart_port *port) diff --git a/debian/patches-rt/0074-serial-xilinx_uartps-Use-port-lock-wrappers.patch b/debian/patches-rt/0074-serial-xilinx_uartps-Use-port-lock-wrappers.patch deleted file mode 100644 index 307ee6df75..0000000000 --- a/debian/patches-rt/0074-serial-xilinx_uartps-Use-port-lock-wrappers.patch +++ /dev/null @@ -1,276 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Thu, 14 Sep 2023 20:44:31 +0206 -Subject: [PATCH 074/134] serial: xilinx_uartps: Use port lock wrappers -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When a serial port is used for kernel console output, then all -modifications to the UART registers which are done from other contexts, -e.g. getty, termios, are interference points for the kernel console. - -So far this has been ignored and the printk output is based on the -principle of hope. The rework of the console infrastructure which aims to -support threaded and atomic consoles, requires to mark sections which -modify the UART registers as unsafe. This allows the atomic write function -to make informed decisions and eventually to restore operational state. It -also allows to prevent the regular UART code from modifying UART registers -while printk output is in progress. - -All modifications of UART registers are guarded by the UART port lock, -which provides an obvious synchronization point with the console -infrastructure. - -To avoid adding this functionality to all UART drivers, wrap the -spin_[un]lock*() invocations for uart_port::lock into helper functions -which just contain the spin_[un]lock*() invocations for now. In a -subsequent step these helpers will gain the console synchronization -mechanisms. - -Converted with coccinelle. No functional change. - -Signed-off-by: Thomas Gleixner <tglx@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20230914183831.587273-75-john.ogness@linutronix.de -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/tty/serial/xilinx_uartps.c | 56 ++++++++++++++++++------------------- - 1 file changed, 28 insertions(+), 28 deletions(-) - ---- a/drivers/tty/serial/xilinx_uartps.c -+++ b/drivers/tty/serial/xilinx_uartps.c -@@ -346,7 +346,7 @@ static irqreturn_t cdns_uart_isr(int irq - struct uart_port *port = (struct uart_port *)dev_id; - unsigned int isrstatus; - -- spin_lock(&port->lock); -+ uart_port_lock(port); - - /* Read the interrupt status register to determine which - * interrupt(s) is/are active and clear them. -@@ -369,7 +369,7 @@ static irqreturn_t cdns_uart_isr(int irq - !(readl(port->membase + CDNS_UART_CR) & CDNS_UART_CR_RX_DIS)) - cdns_uart_handle_rx(dev_id, isrstatus); - -- spin_unlock(&port->lock); -+ uart_port_unlock(port); - return IRQ_HANDLED; - } - -@@ -506,14 +506,14 @@ static int cdns_uart_clk_notifier_cb(str - return NOTIFY_BAD; - } - -- spin_lock_irqsave(&cdns_uart->port->lock, flags); -+ uart_port_lock_irqsave(cdns_uart->port, &flags); - - /* Disable the TX and RX to set baud rate */ - ctrl_reg = readl(port->membase + CDNS_UART_CR); - ctrl_reg |= CDNS_UART_CR_TX_DIS | CDNS_UART_CR_RX_DIS; - writel(ctrl_reg, port->membase + CDNS_UART_CR); - -- spin_unlock_irqrestore(&cdns_uart->port->lock, flags); -+ uart_port_unlock_irqrestore(cdns_uart->port, flags); - - return NOTIFY_OK; - } -@@ -523,7 +523,7 @@ static int cdns_uart_clk_notifier_cb(str - * frequency. - */ - -- spin_lock_irqsave(&cdns_uart->port->lock, flags); -+ uart_port_lock_irqsave(cdns_uart->port, &flags); - - locked = 1; - port->uartclk = ndata->new_rate; -@@ -533,7 +533,7 @@ static int cdns_uart_clk_notifier_cb(str - fallthrough; - case ABORT_RATE_CHANGE: - if (!locked) -- spin_lock_irqsave(&cdns_uart->port->lock, flags); -+ uart_port_lock_irqsave(cdns_uart->port, &flags); - - /* Set TX/RX Reset */ - ctrl_reg = readl(port->membase + CDNS_UART_CR); -@@ -555,7 +555,7 @@ static int cdns_uart_clk_notifier_cb(str - ctrl_reg |= CDNS_UART_CR_TX_EN | CDNS_UART_CR_RX_EN; - writel(ctrl_reg, port->membase + CDNS_UART_CR); - -- spin_unlock_irqrestore(&cdns_uart->port->lock, flags); -+ uart_port_unlock_irqrestore(cdns_uart->port, flags); - - return NOTIFY_OK; - default: -@@ -652,7 +652,7 @@ static void cdns_uart_break_ctl(struct u - unsigned int status; - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - status = readl(port->membase + CDNS_UART_CR); - -@@ -664,7 +664,7 @@ static void cdns_uart_break_ctl(struct u - writel(CDNS_UART_CR_STOPBRK | status, - port->membase + CDNS_UART_CR); - } -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - /** -@@ -683,7 +683,7 @@ static void cdns_uart_set_termios(struct - unsigned long flags; - unsigned int ctrl_reg, mode_reg; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* Disable the TX and RX to set baud rate */ - ctrl_reg = readl(port->membase + CDNS_UART_CR); -@@ -794,7 +794,7 @@ static void cdns_uart_set_termios(struct - cval &= ~CDNS_UART_MODEMCR_FCM; - writel(cval, port->membase + CDNS_UART_MODEMCR); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - /** -@@ -813,7 +813,7 @@ static int cdns_uart_startup(struct uart - - is_brk_support = cdns_uart->quirks & CDNS_UART_RXBS_SUPPORT; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* Disable the TX and RX */ - writel(CDNS_UART_CR_TX_DIS | CDNS_UART_CR_RX_DIS, -@@ -861,7 +861,7 @@ static int cdns_uart_startup(struct uart - writel(readl(port->membase + CDNS_UART_ISR), - port->membase + CDNS_UART_ISR); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - ret = request_irq(port->irq, cdns_uart_isr, 0, CDNS_UART_NAME, port); - if (ret) { -@@ -889,7 +889,7 @@ static void cdns_uart_shutdown(struct ua - int status; - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* Disable interrupts */ - status = readl(port->membase + CDNS_UART_IMR); -@@ -900,7 +900,7 @@ static void cdns_uart_shutdown(struct ua - writel(CDNS_UART_CR_TX_DIS | CDNS_UART_CR_RX_DIS, - port->membase + CDNS_UART_CR); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - free_irq(port->irq, port); - } -@@ -1050,7 +1050,7 @@ static int cdns_uart_poll_get_char(struc - int c; - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* Check if FIFO is empty */ - if (readl(port->membase + CDNS_UART_SR) & CDNS_UART_SR_RXEMPTY) -@@ -1058,7 +1058,7 @@ static int cdns_uart_poll_get_char(struc - else /* Read a character */ - c = (unsigned char) readl(port->membase + CDNS_UART_FIFO); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - - return c; - } -@@ -1067,7 +1067,7 @@ static void cdns_uart_poll_put_char(stru - { - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* Wait until FIFO is empty */ - while (!(readl(port->membase + CDNS_UART_SR) & CDNS_UART_SR_TXEMPTY)) -@@ -1080,7 +1080,7 @@ static void cdns_uart_poll_put_char(stru - while (!(readl(port->membase + CDNS_UART_SR) & CDNS_UART_SR_TXEMPTY)) - cpu_relax(); - -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - #endif - -@@ -1232,9 +1232,9 @@ static void cdns_uart_console_write(stru - if (port->sysrq) - locked = 0; - else if (oops_in_progress) -- locked = spin_trylock_irqsave(&port->lock, flags); -+ locked = uart_port_trylock_irqsave(port, &flags); - else -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* save and disable interrupt */ - imr = readl(port->membase + CDNS_UART_IMR); -@@ -1257,7 +1257,7 @@ static void cdns_uart_console_write(stru - writel(imr, port->membase + CDNS_UART_IER); - - if (locked) -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - /** -@@ -1325,7 +1325,7 @@ static int cdns_uart_suspend(struct devi - if (console_suspend_enabled && uart_console(port) && may_wake) { - unsigned long flags; - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - /* Empty the receive FIFO 1st before making changes */ - while (!(readl(port->membase + CDNS_UART_SR) & - CDNS_UART_SR_RXEMPTY)) -@@ -1334,7 +1334,7 @@ static int cdns_uart_suspend(struct devi - writel(1, port->membase + CDNS_UART_RXWM); - /* disable RX timeout interrups */ - writel(CDNS_UART_IXR_TOUT, port->membase + CDNS_UART_IDR); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - /* -@@ -1372,7 +1372,7 @@ static int cdns_uart_resume(struct devic - return ret; - } - -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - - /* Set TX/RX Reset */ - ctrl_reg = readl(port->membase + CDNS_UART_CR); -@@ -1392,14 +1392,14 @@ static int cdns_uart_resume(struct devic - - clk_disable(cdns_uart->uartclk); - clk_disable(cdns_uart->pclk); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } else { -- spin_lock_irqsave(&port->lock, flags); -+ uart_port_lock_irqsave(port, &flags); - /* restore original rx trigger level */ - writel(rx_trigger_level, port->membase + CDNS_UART_RXWM); - /* enable RX timeout interrupt */ - writel(CDNS_UART_IXR_TOUT, port->membase + CDNS_UART_IER); -- spin_unlock_irqrestore(&port->lock, flags); -+ uart_port_unlock_irqrestore(port, flags); - } - - return uart_resume_port(cdns_uart->cdns_uart_driver, port); diff --git a/debian/patches-rt/0075-printk-Add-non-BKL-nbcon-console-basic-infrastructur.patch b/debian/patches-rt/0075-printk-Add-non-BKL-nbcon-console-basic-infrastructur.patch deleted file mode 100644 index 00f7850c36..0000000000 --- a/debian/patches-rt/0075-printk-Add-non-BKL-nbcon-console-basic-infrastructur.patch +++ /dev/null @@ -1,261 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Sat, 16 Sep 2023 21:26:00 +0206 -Subject: [PATCH 075/134] printk: Add non-BKL (nbcon) console basic - infrastructure -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -The current console/printk subsystem is protected by a Big Kernel Lock, -(aka console_lock) which has ill defined semantics and is more or less -stateless. This puts severe limitations on the console subsystem and -makes forced takeover and output in emergency and panic situations a -fragile endeavour that is based on try and pray. - -The goal of non-BKL (nbcon) consoles is to break out of the console lock -jail and to provide a new infrastructure that avoids the pitfalls and -also allows console drivers to be gradually converted over. - -The proposed infrastructure aims for the following properties: - - - Per console locking instead of global locking - - Per console state that allows to make informed decisions - - Stateful handover and takeover - -As a first step, state is added to struct console. The per console state -is an atomic_t using a 32bit bit field. - -Reserve state bits, which will be populated later in the series. Wire -it up into the console register/unregister functionality. - -It was decided to use a bitfield because using a plain u32 with -mask/shift operations resulted in uncomprehensible code. - -Co-developed-by: John Ogness <john.ogness@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Signed-off-by: Thomas Gleixner (Intel) <tglx@linutronix.de> -Reviewed-by: Petr Mladek <pmladek@suse.com> -Signed-off-by: Petr Mladek <pmladek@suse.com> -Link: https://lore.kernel.org/r/20230916192007.608398-2-john.ogness@linutronix.de -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - include/linux/console.h | 31 ++++++++++++++++++++ - kernel/printk/Makefile | 2 - - kernel/printk/internal.h | 8 +++++ - kernel/printk/nbcon.c | 70 +++++++++++++++++++++++++++++++++++++++++++++++ - kernel/printk/printk.c | 13 ++++++-- - 5 files changed, 120 insertions(+), 4 deletions(-) - create mode 100644 kernel/printk/nbcon.c - ---- a/include/linux/console.h -+++ b/include/linux/console.h -@@ -156,6 +156,8 @@ static inline int con_debug_leave(void) - * /dev/kmesg which requires a larger output buffer. - * @CON_SUSPENDED: Indicates if a console is suspended. If true, the - * printing callbacks must not be called. -+ * @CON_NBCON: Console can operate outside of the legacy style console_lock -+ * constraints. - */ - enum cons_flags { - CON_PRINTBUFFER = BIT(0), -@@ -166,9 +168,33 @@ enum cons_flags { - CON_BRL = BIT(5), - CON_EXTENDED = BIT(6), - CON_SUSPENDED = BIT(7), -+ CON_NBCON = BIT(8), - }; - - /** -+ * struct nbcon_state - console state for nbcon consoles -+ * @atom: Compound of the state fields for atomic operations -+ * -+ * To be used for reading and preparing of the value stored in the nbcon -+ * state variable @console::nbcon_state. -+ */ -+struct nbcon_state { -+ union { -+ unsigned int atom; -+ struct { -+ }; -+ }; -+}; -+ -+/* -+ * The nbcon_state struct is used to easily create and interpret values that -+ * are stored in the @console::nbcon_state variable. Ensure this struct stays -+ * within the size boundaries of the atomic variable's underlying type in -+ * order to avoid any accidental truncation. -+ */ -+static_assert(sizeof(struct nbcon_state) <= sizeof(int)); -+ -+/** - * struct console - The console descriptor structure - * @name: The name of the console driver - * @write: Write callback to output messages (Optional) -@@ -187,6 +213,8 @@ enum cons_flags { - * @dropped: Number of unreported dropped ringbuffer records - * @data: Driver private data - * @node: hlist node for the console list -+ * -+ * @nbcon_state: State for nbcon consoles - */ - struct console { - char name[16]; -@@ -206,6 +234,9 @@ struct console { - unsigned long dropped; - void *data; - struct hlist_node node; -+ -+ /* nbcon console specific members */ -+ atomic_t __private nbcon_state; - }; - - #ifdef CONFIG_LOCKDEP ---- a/kernel/printk/Makefile -+++ b/kernel/printk/Makefile -@@ -1,6 +1,6 @@ - # SPDX-License-Identifier: GPL-2.0-only - obj-y = printk.o --obj-$(CONFIG_PRINTK) += printk_safe.o -+obj-$(CONFIG_PRINTK) += printk_safe.o nbcon.o - obj-$(CONFIG_A11Y_BRAILLE_CONSOLE) += braille.o - obj-$(CONFIG_PRINTK_INDEX) += index.o - ---- a/kernel/printk/internal.h -+++ b/kernel/printk/internal.h -@@ -3,6 +3,7 @@ - * internal.h - printk internal definitions - */ - #include <linux/percpu.h> -+#include <linux/console.h> - - #if defined(CONFIG_PRINTK) && defined(CONFIG_SYSCTL) - void __init printk_sysctl_init(void); -@@ -61,6 +62,10 @@ void defer_console_output(void); - - u16 printk_parse_prefix(const char *text, int *level, - enum printk_info_flags *flags); -+ -+void nbcon_init(struct console *con); -+void nbcon_cleanup(struct console *con); -+ - #else - - #define PRINTK_PREFIX_MAX 0 -@@ -76,6 +81,9 @@ u16 printk_parse_prefix(const char *text - #define printk_safe_exit_irqrestore(flags) local_irq_restore(flags) - - static inline bool printk_percpu_data_ready(void) { return false; } -+static inline void nbcon_init(struct console *con) { } -+static inline void nbcon_cleanup(struct console *con) { } -+ - #endif /* CONFIG_PRINTK */ - - /** ---- /dev/null -+++ b/kernel/printk/nbcon.c -@@ -0,0 +1,70 @@ -+// SPDX-License-Identifier: GPL-2.0-only -+// Copyright (C) 2022 Linutronix GmbH, John Ogness -+// Copyright (C) 2022 Intel, Thomas Gleixner -+ -+#include <linux/kernel.h> -+#include <linux/console.h> -+#include "internal.h" -+/* -+ * Printk console printing implementation for consoles which does not depend -+ * on the legacy style console_lock mechanism. -+ */ -+ -+/** -+ * nbcon_state_set - Helper function to set the console state -+ * @con: Console to update -+ * @new: The new state to write -+ * -+ * Only to be used when the console is not yet or no longer visible in the -+ * system. Otherwise use nbcon_state_try_cmpxchg(). -+ */ -+static inline void nbcon_state_set(struct console *con, struct nbcon_state *new) -+{ -+ atomic_set(&ACCESS_PRIVATE(con, nbcon_state), new->atom); -+} -+ -+/** -+ * nbcon_state_read - Helper function to read the console state -+ * @con: Console to read -+ * @state: The state to store the result -+ */ -+static inline void nbcon_state_read(struct console *con, struct nbcon_state *state) -+{ -+ state->atom = atomic_read(&ACCESS_PRIVATE(con, nbcon_state)); -+} -+ -+/** -+ * nbcon_state_try_cmpxchg() - Helper function for atomic_try_cmpxchg() on console state -+ * @con: Console to update -+ * @cur: Old/expected state -+ * @new: New state -+ * -+ * Return: True on success. False on fail and @cur is updated. -+ */ -+static inline bool nbcon_state_try_cmpxchg(struct console *con, struct nbcon_state *cur, -+ struct nbcon_state *new) -+{ -+ return atomic_try_cmpxchg(&ACCESS_PRIVATE(con, nbcon_state), &cur->atom, new->atom); -+} -+ -+/** -+ * nbcon_init - Initialize the nbcon console specific data -+ * @con: Console to initialize -+ */ -+void nbcon_init(struct console *con) -+{ -+ struct nbcon_state state = { }; -+ -+ nbcon_state_set(con, &state); -+} -+ -+/** -+ * nbcon_cleanup - Cleanup the nbcon console specific data -+ * @con: Console to cleanup -+ */ -+void nbcon_cleanup(struct console *con) -+{ -+ struct nbcon_state state = { }; -+ -+ nbcon_state_set(con, &state); -+} ---- a/kernel/printk/printk.c -+++ b/kernel/printk/printk.c -@@ -3326,9 +3326,10 @@ static void try_enable_default_console(s - newcon->flags |= CON_CONSDEV; - } - --#define con_printk(lvl, con, fmt, ...) \ -- printk(lvl pr_fmt("%sconsole [%s%d] " fmt), \ -- (con->flags & CON_BOOT) ? "boot" : "", \ -+#define con_printk(lvl, con, fmt, ...) \ -+ printk(lvl pr_fmt("%s%sconsole [%s%d] " fmt), \ -+ (con->flags & CON_NBCON) ? "" : "legacy ", \ -+ (con->flags & CON_BOOT) ? "boot" : "", \ - con->name, con->index, ##__VA_ARGS__) - - static void console_init_seq(struct console *newcon, bool bootcon_registered) -@@ -3488,6 +3489,9 @@ void register_console(struct console *ne - newcon->dropped = 0; - console_init_seq(newcon, bootcon_registered); - -+ if (newcon->flags & CON_NBCON) -+ nbcon_init(newcon); -+ - /* - * Put this console in the list - keep the - * preferred driver at the head of the list. -@@ -3579,6 +3583,9 @@ static int unregister_console_locked(str - */ - synchronize_srcu(&console_srcu); - -+ if (console->flags & CON_NBCON) -+ nbcon_cleanup(console); -+ - console_sysfs_notify(); - - if (console->exit) diff --git a/debian/patches-rt/0076-printk-nbcon-Add-acquire-release-logic.patch b/debian/patches-rt/0076-printk-nbcon-Add-acquire-release-logic.patch deleted file mode 100644 index 2718379038..0000000000 --- a/debian/patches-rt/0076-printk-nbcon-Add-acquire-release-logic.patch +++ /dev/null @@ -1,705 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Sat, 16 Sep 2023 21:26:01 +0206 -Subject: [PATCH 076/134] printk: nbcon: Add acquire/release logic -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -Add per console acquire/release functionality. - -The state of the console is maintained in the "nbcon_state" atomic -variable. - -The console is locked when: - - - The 'prio' field contains the priority of the context that owns the - console. Only higher priority contexts are allowed to take over the - lock. A value of 0 (NBCON_PRIO_NONE) means the console is not locked. - - - The 'cpu' field denotes on which CPU the console is locked. It is used - to prevent busy waiting on the same CPU. Also it informs the lock owner - that it has lost the lock in a more complex scenario when the lock was - taken over by a higher priority context, released, and taken on another - CPU with the same priority as the interrupted owner. - -The acquire mechanism uses a few more fields: - - - The 'req_prio' field is used by the handover approach to make the - current owner aware that there is a context with a higher priority - waiting for the friendly handover. - - - The 'unsafe' field allows to take over the console in a safe way in the - middle of emitting a message. The field is set only when accessing some - shared resources or when the console device is manipulated. It can be - cleared, for example, after emitting one character when the console - device is in a consistent state. - - - The 'unsafe_takeover' field is set when a hostile takeover took the - console in an unsafe state. The console will stay in the unsafe state - until re-initialized. - -The acquire mechanism uses three approaches: - - 1) Direct acquire when the console is not owned or is owned by a lower - priority context and is in a safe state. - - 2) Friendly handover mechanism uses a request/grant handshake. It is used - when the current owner has lower priority and the console is in an - unsafe state. - - The requesting context: - - a) Sets its priority into the 'req_prio' field. - - b) Waits (with a timeout) for the owning context to unlock the - console. - - c) Takes the lock and clears the 'req_prio' field. - - The owning context: - - a) Observes the 'req_prio' field set on exit from the unsafe - console state. - - b) Gives up console ownership by clearing the 'prio' field. - - 3) Unsafe hostile takeover allows to take over the lock even when the - console is an unsafe state. It is used only in panic() by the final - attempt to flush consoles in a try and hope mode. - - Note that separate record buffers are used in panic(). As a result, - the messages can be read and formatted without any risk even after - using the hostile takeover in unsafe state. - -The release function simply clears the 'prio' field. - -All operations on @console::nbcon_state are atomic cmpxchg based to -handle concurrency. - -The acquire/release functions implement only minimal policies: - - - Preference for higher priority contexts. - - Protection of the panic CPU. - -All other policy decisions must be made at the call sites: - - - What is marked as an unsafe section. - - Whether to spin-wait if there is already an owner and the console is - in an unsafe state. - - Whether to attempt an unsafe hostile takeover. - -The design allows to implement the well known: - - acquire() - output_one_printk_record() - release() - -The output of one printk record might be interrupted with a higher priority -context. The new owner is supposed to reprint the entire interrupted record -from scratch. - -Co-developed-by: John Ogness <john.ogness@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Signed-off-by: Thomas Gleixner (Intel) <tglx@linutronix.de> -Signed-off-by: Petr Mladek <pmladek@suse.com> -Link: https://lore.kernel.org/r/20230916192007.608398-3-john.ogness@linutronix.de -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - include/linux/console.h | 56 +++++ - kernel/printk/nbcon.c | 497 ++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 553 insertions(+) - ---- a/include/linux/console.h -+++ b/include/linux/console.h -@@ -175,13 +175,29 @@ enum cons_flags { - * struct nbcon_state - console state for nbcon consoles - * @atom: Compound of the state fields for atomic operations - * -+ * @req_prio: The priority of a handover request -+ * @prio: The priority of the current owner -+ * @unsafe: Console is busy in a non takeover region -+ * @unsafe_takeover: A hostile takeover in an unsafe state happened in the -+ * past. The console cannot be safe until re-initialized. -+ * @cpu: The CPU on which the owner runs -+ * - * To be used for reading and preparing of the value stored in the nbcon - * state variable @console::nbcon_state. -+ * -+ * The @prio and @req_prio fields are particularly important to allow -+ * spin-waiting to timeout and give up without the risk of a waiter being -+ * assigned the lock after giving up. - */ - struct nbcon_state { - union { - unsigned int atom; - struct { -+ unsigned int prio : 2; -+ unsigned int req_prio : 2; -+ unsigned int unsafe : 1; -+ unsigned int unsafe_takeover : 1; -+ unsigned int cpu : 24; - }; - }; - }; -@@ -195,6 +211,46 @@ struct nbcon_state { - static_assert(sizeof(struct nbcon_state) <= sizeof(int)); - - /** -+ * nbcon_prio - console owner priority for nbcon consoles -+ * @NBCON_PRIO_NONE: Unused -+ * @NBCON_PRIO_NORMAL: Normal (non-emergency) usage -+ * @NBCON_PRIO_EMERGENCY: Emergency output (WARN/OOPS...) -+ * @NBCON_PRIO_PANIC: Panic output -+ * @NBCON_PRIO_MAX: The number of priority levels -+ * -+ * A higher priority context can takeover the console when it is -+ * in the safe state. The final attempt to flush consoles in panic() -+ * can be allowed to do so even in an unsafe state (Hope and pray). -+ */ -+enum nbcon_prio { -+ NBCON_PRIO_NONE = 0, -+ NBCON_PRIO_NORMAL, -+ NBCON_PRIO_EMERGENCY, -+ NBCON_PRIO_PANIC, -+ NBCON_PRIO_MAX, -+}; -+ -+struct console; -+ -+/** -+ * struct nbcon_context - Context for console acquire/release -+ * @console: The associated console -+ * @spinwait_max_us: Limit for spin-wait acquire -+ * @prio: Priority of the context -+ * @allow_unsafe_takeover: Allow performing takeover even if unsafe. Can -+ * be used only with NBCON_PRIO_PANIC @prio. It -+ * might cause a system freeze when the console -+ * is used later. -+ */ -+struct nbcon_context { -+ /* members set by caller */ -+ struct console *console; -+ unsigned int spinwait_max_us; -+ enum nbcon_prio prio; -+ unsigned int allow_unsafe_takeover : 1; -+}; -+ -+/** - * struct console - The console descriptor structure - * @name: The name of the console driver - * @write: Write callback to output messages (Optional) ---- a/kernel/printk/nbcon.c -+++ b/kernel/printk/nbcon.c -@@ -4,10 +4,98 @@ - - #include <linux/kernel.h> - #include <linux/console.h> -+#include <linux/delay.h> - #include "internal.h" - /* - * Printk console printing implementation for consoles which does not depend - * on the legacy style console_lock mechanism. -+ * -+ * The state of the console is maintained in the "nbcon_state" atomic -+ * variable. -+ * -+ * The console is locked when: -+ * -+ * - The 'prio' field contains the priority of the context that owns the -+ * console. Only higher priority contexts are allowed to take over the -+ * lock. A value of 0 (NBCON_PRIO_NONE) means the console is not locked. -+ * -+ * - The 'cpu' field denotes on which CPU the console is locked. It is used -+ * to prevent busy waiting on the same CPU. Also it informs the lock owner -+ * that it has lost the lock in a more complex scenario when the lock was -+ * taken over by a higher priority context, released, and taken on another -+ * CPU with the same priority as the interrupted owner. -+ * -+ * The acquire mechanism uses a few more fields: -+ * -+ * - The 'req_prio' field is used by the handover approach to make the -+ * current owner aware that there is a context with a higher priority -+ * waiting for the friendly handover. -+ * -+ * - The 'unsafe' field allows to take over the console in a safe way in the -+ * middle of emitting a message. The field is set only when accessing some -+ * shared resources or when the console device is manipulated. It can be -+ * cleared, for example, after emitting one character when the console -+ * device is in a consistent state. -+ * -+ * - The 'unsafe_takeover' field is set when a hostile takeover took the -+ * console in an unsafe state. The console will stay in the unsafe state -+ * until re-initialized. -+ * -+ * The acquire mechanism uses three approaches: -+ * -+ * 1) Direct acquire when the console is not owned or is owned by a lower -+ * priority context and is in a safe state. -+ * -+ * 2) Friendly handover mechanism uses a request/grant handshake. It is used -+ * when the current owner has lower priority and the console is in an -+ * unsafe state. -+ * -+ * The requesting context: -+ * -+ * a) Sets its priority into the 'req_prio' field. -+ * -+ * b) Waits (with a timeout) for the owning context to unlock the -+ * console. -+ * -+ * c) Takes the lock and clears the 'req_prio' field. -+ * -+ * The owning context: -+ * -+ * a) Observes the 'req_prio' field set on exit from the unsafe -+ * console state. -+ * -+ * b) Gives up console ownership by clearing the 'prio' field. -+ * -+ * 3) Unsafe hostile takeover allows to take over the lock even when the -+ * console is an unsafe state. It is used only in panic() by the final -+ * attempt to flush consoles in a try and hope mode. -+ * -+ * The release function simply clears the 'prio' field. -+ * -+ * All operations on @console::nbcon_state are atomic cmpxchg based to -+ * handle concurrency. -+ * -+ * The acquire/release functions implement only minimal policies: -+ * -+ * - Preference for higher priority contexts. -+ * - Protection of the panic CPU. -+ * -+ * All other policy decisions must be made at the call sites: -+ * -+ * - What is marked as an unsafe section. -+ * - Whether to spin-wait if there is already an owner and the console is -+ * in an unsafe state. -+ * - Whether to attempt an unsafe hostile takeover. -+ * -+ * The design allows to implement the well known: -+ * -+ * acquire() -+ * output_one_printk_record() -+ * release() -+ * -+ * The output of one printk record might be interrupted with a higher priority -+ * context. The new owner is supposed to reprint the entire interrupted record -+ * from scratch. - */ - - /** -@@ -48,6 +136,415 @@ static inline bool nbcon_state_try_cmpxc - } - - /** -+ * nbcon_context_try_acquire_direct - Try to acquire directly -+ * @ctxt: The context of the caller -+ * @cur: The current console state -+ * -+ * Acquire the console when it is released. Also acquire the console when -+ * the current owner has a lower priority and the console is in a safe state. -+ * -+ * Return: 0 on success. Otherwise, an error code on failure. Also @cur -+ * is updated to the latest state when failed to modify it. -+ * -+ * Errors: -+ * -+ * -EPERM: A panic is in progress and this is not the panic CPU. -+ * Or the current owner or waiter has the same or higher -+ * priority. No acquire method can be successful in -+ * this case. -+ * -+ * -EBUSY: The current owner has a lower priority but the console -+ * in an unsafe state. The caller should try using -+ * the handover acquire method. -+ */ -+static int nbcon_context_try_acquire_direct(struct nbcon_context *ctxt, -+ struct nbcon_state *cur) -+{ -+ unsigned int cpu = smp_processor_id(); -+ struct console *con = ctxt->console; -+ struct nbcon_state new; -+ -+ do { -+ if (other_cpu_in_panic()) -+ return -EPERM; -+ -+ if (ctxt->prio <= cur->prio || ctxt->prio <= cur->req_prio) -+ return -EPERM; -+ -+ if (cur->unsafe) -+ return -EBUSY; -+ -+ /* -+ * The console should never be safe for a direct acquire -+ * if an unsafe hostile takeover has ever happened. -+ */ -+ WARN_ON_ONCE(cur->unsafe_takeover); -+ -+ new.atom = cur->atom; -+ new.prio = ctxt->prio; -+ new.req_prio = NBCON_PRIO_NONE; -+ new.unsafe = cur->unsafe_takeover; -+ new.cpu = cpu; -+ -+ } while (!nbcon_state_try_cmpxchg(con, cur, &new)); -+ -+ return 0; -+} -+ -+static bool nbcon_waiter_matches(struct nbcon_state *cur, int expected_prio) -+{ -+ /* -+ * The request context is well defined by the @req_prio because: -+ * -+ * - Only a context with a higher priority can take over the request. -+ * - There are only three priorities. -+ * - Only one CPU is allowed to request PANIC priority. -+ * - Lower priorities are ignored during panic() until reboot. -+ * -+ * As a result, the following scenario is *not* possible: -+ * -+ * 1. Another context with a higher priority directly takes ownership. -+ * 2. The higher priority context releases the ownership. -+ * 3. A lower priority context takes the ownership. -+ * 4. Another context with the same priority as this context -+ * creates a request and starts waiting. -+ */ -+ -+ return (cur->req_prio == expected_prio); -+} -+ -+/** -+ * nbcon_context_try_acquire_requested - Try to acquire after having -+ * requested a handover -+ * @ctxt: The context of the caller -+ * @cur: The current console state -+ * -+ * This is a helper function for nbcon_context_try_acquire_handover(). -+ * It is called when the console is in an unsafe state. The current -+ * owner will release the console on exit from the unsafe region. -+ * -+ * Return: 0 on success and @cur is updated to the new console state. -+ * Otherwise an error code on failure. -+ * -+ * Errors: -+ * -+ * -EPERM: A panic is in progress and this is not the panic CPU -+ * or this context is no longer the waiter. -+ * -+ * -EBUSY: The console is still locked. The caller should -+ * continue waiting. -+ * -+ * Note: The caller must still remove the request when an error has occurred -+ * except when this context is no longer the waiter. -+ */ -+static int nbcon_context_try_acquire_requested(struct nbcon_context *ctxt, -+ struct nbcon_state *cur) -+{ -+ unsigned int cpu = smp_processor_id(); -+ struct console *con = ctxt->console; -+ struct nbcon_state new; -+ -+ /* Note that the caller must still remove the request! */ -+ if (other_cpu_in_panic()) -+ return -EPERM; -+ -+ /* -+ * Note that the waiter will also change if there was an unsafe -+ * hostile takeover. -+ */ -+ if (!nbcon_waiter_matches(cur, ctxt->prio)) -+ return -EPERM; -+ -+ /* If still locked, caller should continue waiting. */ -+ if (cur->prio != NBCON_PRIO_NONE) -+ return -EBUSY; -+ -+ /* -+ * The previous owner should have never released ownership -+ * in an unsafe region. -+ */ -+ WARN_ON_ONCE(cur->unsafe); -+ -+ new.atom = cur->atom; -+ new.prio = ctxt->prio; -+ new.req_prio = NBCON_PRIO_NONE; -+ new.unsafe = cur->unsafe_takeover; -+ new.cpu = cpu; -+ -+ if (!nbcon_state_try_cmpxchg(con, cur, &new)) { -+ /* -+ * The acquire could fail only when it has been taken -+ * over by a higher priority context. -+ */ -+ WARN_ON_ONCE(nbcon_waiter_matches(cur, ctxt->prio)); -+ return -EPERM; -+ } -+ -+ /* Handover success. This context now owns the console. */ -+ return 0; -+} -+ -+/** -+ * nbcon_context_try_acquire_handover - Try to acquire via handover -+ * @ctxt: The context of the caller -+ * @cur: The current console state -+ * -+ * The function must be called only when the context has higher priority -+ * than the current owner and the console is in an unsafe state. -+ * It is the case when nbcon_context_try_acquire_direct() returns -EBUSY. -+ * -+ * The function sets "req_prio" field to make the current owner aware of -+ * the request. Then it waits until the current owner releases the console, -+ * or an even higher context takes over the request, or timeout expires. -+ * -+ * The current owner checks the "req_prio" field on exit from the unsafe -+ * region and releases the console. It does not touch the "req_prio" field -+ * so that the console stays reserved for the waiter. -+ * -+ * Return: 0 on success. Otherwise, an error code on failure. Also @cur -+ * is updated to the latest state when failed to modify it. -+ * -+ * Errors: -+ * -+ * -EPERM: A panic is in progress and this is not the panic CPU. -+ * Or a higher priority context has taken over the -+ * console or the handover request. -+ * -+ * -EBUSY: The current owner is on the same CPU so that the hand -+ * shake could not work. Or the current owner is not -+ * willing to wait (zero timeout). Or the console does -+ * not enter the safe state before timeout passed. The -+ * caller might still use the unsafe hostile takeover -+ * when allowed. -+ * -+ * -EAGAIN: @cur has changed when creating the handover request. -+ * The caller should retry with direct acquire. -+ */ -+static int nbcon_context_try_acquire_handover(struct nbcon_context *ctxt, -+ struct nbcon_state *cur) -+{ -+ unsigned int cpu = smp_processor_id(); -+ struct console *con = ctxt->console; -+ struct nbcon_state new; -+ int timeout; -+ int request_err = -EBUSY; -+ -+ /* -+ * Check that the handover is called when the direct acquire failed -+ * with -EBUSY. -+ */ -+ WARN_ON_ONCE(ctxt->prio <= cur->prio || ctxt->prio <= cur->req_prio); -+ WARN_ON_ONCE(!cur->unsafe); -+ -+ /* Handover is not possible on the same CPU. */ -+ if (cur->cpu == cpu) -+ return -EBUSY; -+ -+ /* -+ * Console stays unsafe after an unsafe takeover until re-initialized. -+ * Waiting is not going to help in this case. -+ */ -+ if (cur->unsafe_takeover) -+ return -EBUSY; -+ -+ /* Is the caller willing to wait? */ -+ if (ctxt->spinwait_max_us == 0) -+ return -EBUSY; -+ -+ /* -+ * Setup a request for the handover. The caller should try to acquire -+ * the console directly when the current state has been modified. -+ */ -+ new.atom = cur->atom; -+ new.req_prio = ctxt->prio; -+ if (!nbcon_state_try_cmpxchg(con, cur, &new)) -+ return -EAGAIN; -+ -+ cur->atom = new.atom; -+ -+ /* Wait until there is no owner and then acquire the console. */ -+ for (timeout = ctxt->spinwait_max_us; timeout >= 0; timeout--) { -+ /* On successful acquire, this request is cleared. */ -+ request_err = nbcon_context_try_acquire_requested(ctxt, cur); -+ if (!request_err) -+ return 0; -+ -+ /* -+ * If the acquire should be aborted, it must be ensured -+ * that the request is removed before returning to caller. -+ */ -+ if (request_err == -EPERM) -+ break; -+ -+ udelay(1); -+ -+ /* Re-read the state because some time has passed. */ -+ nbcon_state_read(con, cur); -+ } -+ -+ /* Timed out or aborted. Carefully remove handover request. */ -+ do { -+ /* -+ * No need to remove request if there is a new waiter. This -+ * can only happen if a higher priority context has taken over -+ * the console or the handover request. -+ */ -+ if (!nbcon_waiter_matches(cur, ctxt->prio)) -+ return -EPERM; -+ -+ /* Unset request for handover. */ -+ new.atom = cur->atom; -+ new.req_prio = NBCON_PRIO_NONE; -+ if (nbcon_state_try_cmpxchg(con, cur, &new)) { -+ /* -+ * Request successfully unset. Report failure of -+ * acquiring via handover. -+ */ -+ cur->atom = new.atom; -+ return request_err; -+ } -+ -+ /* -+ * Unable to remove request. Try to acquire in case -+ * the owner has released the lock. -+ */ -+ } while (nbcon_context_try_acquire_requested(ctxt, cur)); -+ -+ /* Lucky timing. The acquire succeeded while removing the request. */ -+ return 0; -+} -+ -+/** -+ * nbcon_context_try_acquire_hostile - Acquire via unsafe hostile takeover -+ * @ctxt: The context of the caller -+ * @cur: The current console state -+ * -+ * Acquire the console even in the unsafe state. -+ * -+ * It can be permitted by setting the 'allow_unsafe_takeover' field only -+ * by the final attempt to flush messages in panic(). -+ * -+ * Return: 0 on success. -EPERM when not allowed by the context. -+ */ -+static int nbcon_context_try_acquire_hostile(struct nbcon_context *ctxt, -+ struct nbcon_state *cur) -+{ -+ unsigned int cpu = smp_processor_id(); -+ struct console *con = ctxt->console; -+ struct nbcon_state new; -+ -+ if (!ctxt->allow_unsafe_takeover) -+ return -EPERM; -+ -+ /* Ensure caller is allowed to perform unsafe hostile takeovers. */ -+ if (WARN_ON_ONCE(ctxt->prio != NBCON_PRIO_PANIC)) -+ return -EPERM; -+ -+ /* -+ * Check that try_acquire_direct() and try_acquire_handover() returned -+ * -EBUSY in the right situation. -+ */ -+ WARN_ON_ONCE(ctxt->prio <= cur->prio || ctxt->prio <= cur->req_prio); -+ WARN_ON_ONCE(cur->unsafe != true); -+ -+ do { -+ new.atom = cur->atom; -+ new.cpu = cpu; -+ new.prio = ctxt->prio; -+ new.unsafe |= cur->unsafe_takeover; -+ new.unsafe_takeover |= cur->unsafe; -+ -+ } while (!nbcon_state_try_cmpxchg(con, cur, &new)); -+ -+ return 0; -+} -+ -+/** -+ * nbcon_context_try_acquire - Try to acquire nbcon console -+ * @ctxt: The context of the caller -+ * -+ * Return: True if the console was acquired. False otherwise. -+ * -+ * If the caller allowed an unsafe hostile takeover, on success the -+ * caller should check the current console state to see if it is -+ * in an unsafe state. Otherwise, on success the caller may assume -+ * the console is not in an unsafe state. -+ */ -+__maybe_unused -+static bool nbcon_context_try_acquire(struct nbcon_context *ctxt) -+{ -+ struct console *con = ctxt->console; -+ struct nbcon_state cur; -+ int err; -+ -+ nbcon_state_read(con, &cur); -+try_again: -+ err = nbcon_context_try_acquire_direct(ctxt, &cur); -+ if (err != -EBUSY) -+ goto out; -+ -+ err = nbcon_context_try_acquire_handover(ctxt, &cur); -+ if (err == -EAGAIN) -+ goto try_again; -+ if (err != -EBUSY) -+ goto out; -+ -+ err = nbcon_context_try_acquire_hostile(ctxt, &cur); -+out: -+ return !err; -+} -+ -+static bool nbcon_owner_matches(struct nbcon_state *cur, int expected_cpu, -+ int expected_prio) -+{ -+ /* -+ * Since consoles can only be acquired by higher priorities, -+ * owning contexts are uniquely identified by @prio. However, -+ * since contexts can unexpectedly lose ownership, it is -+ * possible that later another owner appears with the same -+ * priority. For this reason @cpu is also needed. -+ */ -+ -+ if (cur->prio != expected_prio) -+ return false; -+ -+ if (cur->cpu != expected_cpu) -+ return false; -+ -+ return true; -+} -+ -+/** -+ * nbcon_context_release - Release the console -+ * @ctxt: The nbcon context from nbcon_context_try_acquire() -+ */ -+__maybe_unused -+static void nbcon_context_release(struct nbcon_context *ctxt) -+{ -+ unsigned int cpu = smp_processor_id(); -+ struct console *con = ctxt->console; -+ struct nbcon_state cur; -+ struct nbcon_state new; -+ -+ nbcon_state_read(con, &cur); -+ -+ do { -+ if (!nbcon_owner_matches(&cur, cpu, ctxt->prio)) -+ return; -+ -+ new.atom = cur.atom; -+ new.prio = NBCON_PRIO_NONE; -+ -+ /* -+ * If @unsafe_takeover is set, it is kept set so that -+ * the state remains permanently unsafe. -+ */ -+ new.unsafe |= cur.unsafe_takeover; -+ -+ } while (!nbcon_state_try_cmpxchg(con, &cur, &new)); -+} -+ -+/** - * nbcon_init - Initialize the nbcon console specific data - * @con: Console to initialize - */ diff --git a/debian/patches-rt/0077-printk-Make-static-printk-buffers-available-to-nbcon.patch b/debian/patches-rt/0077-printk-Make-static-printk-buffers-available-to-nbcon.patch deleted file mode 100644 index f3fbb6a822..0000000000 --- a/debian/patches-rt/0077-printk-Make-static-printk-buffers-available-to-nbcon.patch +++ /dev/null @@ -1,65 +0,0 @@ -From: John Ogness <john.ogness@linutronix.de> -Date: Sat, 16 Sep 2023 21:26:02 +0206 -Subject: [PATCH 077/134] printk: Make static printk buffers available to nbcon -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -The nbcon boot consoles also need printk buffers that are available -very early. Since the nbcon boot consoles will also be serialized -by the console_lock, they can use the same static printk buffers -that the legacy consoles are using. - -Make the legacy static printk buffers available outside of printk.c -so they can be used by nbcon.c. - -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Reviewed-by: Petr Mladek <pmladek@suse.com> -Signed-off-by: Petr Mladek <pmladek@suse.com> -Link: https://lore.kernel.org/r/20230916192007.608398-4-john.ogness@linutronix.de -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - kernel/printk/internal.h | 2 ++ - kernel/printk/printk.c | 13 +++++++++---- - 2 files changed, 11 insertions(+), 4 deletions(-) - ---- a/kernel/printk/internal.h -+++ b/kernel/printk/internal.h -@@ -86,6 +86,8 @@ static inline void nbcon_cleanup(struct - - #endif /* CONFIG_PRINTK */ - -+extern struct printk_buffers printk_shared_pbufs; -+ - /** - * struct printk_buffers - Buffers to read/format/output printk messages. - * @outbuf: After formatting, contains text to output. ---- a/kernel/printk/printk.c -+++ b/kernel/printk/printk.c -@@ -2847,6 +2847,13 @@ static bool printk_get_next_message(stru - } - - /* -+ * Used as the printk buffers for non-panic, serialized console printing. -+ * This is for legacy (!CON_NBCON) as well as all boot (CON_BOOT) consoles. -+ * Its usage requires the console_lock held. -+ */ -+struct printk_buffers printk_shared_pbufs; -+ -+/* - * Print one record for the given console. The record printed is whatever - * record is the next available record for the given console. - * -@@ -2863,12 +2870,10 @@ static bool printk_get_next_message(stru - */ - static bool console_emit_next_record(struct console *con, bool *handover, int cookie) - { -- static struct printk_buffers pbufs; -- - bool is_extended = console_srcu_read_flags(con) & CON_EXTENDED; -- char *outbuf = &pbufs.outbuf[0]; -+ char *outbuf = &printk_shared_pbufs.outbuf[0]; - struct printk_message pmsg = { -- .pbufs = &pbufs, -+ .pbufs = &printk_shared_pbufs, - }; - unsigned long flags; - diff --git a/debian/patches-rt/0078-printk-nbcon-Add-buffer-management.patch b/debian/patches-rt/0078-printk-nbcon-Add-buffer-management.patch deleted file mode 100644 index ea96abd7ed..0000000000 --- a/debian/patches-rt/0078-printk-nbcon-Add-buffer-management.patch +++ /dev/null @@ -1,311 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Sat, 16 Sep 2023 21:26:03 +0206 -Subject: [PATCH 078/134] printk: nbcon: Add buffer management -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -In case of hostile takeovers it must be ensured that the previous -owner cannot scribble over the output buffer of the emergency/panic -context. This is achieved by: - - - Adding a global output buffer instance for the panic context. - This is the only situation where hostile takeovers can occur and - there is always at most 1 panic context. - - - Allocating an output buffer per non-boot console upon console - registration. This buffer is used by the console owner when not - in panic context. (For boot consoles, the existing shared global - legacy output buffer is used instead. Boot console printing will - be synchronized with legacy console printing.) - - - Choosing the appropriate buffer is handled in the acquire/release - functions. - -Co-developed-by: John Ogness <john.ogness@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Signed-off-by: Thomas Gleixner (Intel) <tglx@linutronix.de> -Reviewed-by: Petr Mladek <pmladek@suse.com> -Signed-off-by: Petr Mladek <pmladek@suse.com> -Link: https://lore.kernel.org/r/20230916192007.608398-5-john.ogness@linutronix.de -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - include/linux/console.h | 7 ++++ - kernel/printk/internal.h | 12 ++++++- - kernel/printk/nbcon.c | 73 +++++++++++++++++++++++++++++++++++++++++++---- - kernel/printk/printk.c | 22 +++++++++----- - 4 files changed, 99 insertions(+), 15 deletions(-) - ---- a/include/linux/console.h -+++ b/include/linux/console.h -@@ -231,6 +231,7 @@ enum nbcon_prio { - }; - - struct console; -+struct printk_buffers; - - /** - * struct nbcon_context - Context for console acquire/release -@@ -241,6 +242,7 @@ struct console; - * be used only with NBCON_PRIO_PANIC @prio. It - * might cause a system freeze when the console - * is used later. -+ * @pbufs: Pointer to the text buffer for this context - */ - struct nbcon_context { - /* members set by caller */ -@@ -248,6 +250,9 @@ struct nbcon_context { - unsigned int spinwait_max_us; - enum nbcon_prio prio; - unsigned int allow_unsafe_takeover : 1; -+ -+ /* members set by acquire */ -+ struct printk_buffers *pbufs; - }; - - /** -@@ -271,6 +276,7 @@ struct nbcon_context { - * @node: hlist node for the console list - * - * @nbcon_state: State for nbcon consoles -+ * @pbufs: Pointer to nbcon private buffer - */ - struct console { - char name[16]; -@@ -293,6 +299,7 @@ struct console { - - /* nbcon console specific members */ - atomic_t __private nbcon_state; -+ struct printk_buffers *pbufs; - }; - - #ifdef CONFIG_LOCKDEP ---- a/kernel/printk/internal.h -+++ b/kernel/printk/internal.h -@@ -13,6 +13,12 @@ int devkmsg_sysctl_set_loglvl(struct ctl - #define printk_sysctl_init() do { } while (0) - #endif - -+#define con_printk(lvl, con, fmt, ...) \ -+ printk(lvl pr_fmt("%s%sconsole [%s%d] " fmt), \ -+ (con->flags & CON_NBCON) ? "" : "legacy ", \ -+ (con->flags & CON_BOOT) ? "boot" : "", \ -+ con->name, con->index, ##__VA_ARGS__) -+ - #ifdef CONFIG_PRINTK - - #ifdef CONFIG_PRINTK_CALLER -@@ -63,8 +69,9 @@ void defer_console_output(void); - u16 printk_parse_prefix(const char *text, int *level, - enum printk_info_flags *flags); - -+bool nbcon_alloc(struct console *con); - void nbcon_init(struct console *con); --void nbcon_cleanup(struct console *con); -+void nbcon_free(struct console *con); - - #else - -@@ -81,8 +88,9 @@ void nbcon_cleanup(struct console *con); - #define printk_safe_exit_irqrestore(flags) local_irq_restore(flags) - - static inline bool printk_percpu_data_ready(void) { return false; } -+static inline bool nbcon_alloc(struct console *con) { return false; } - static inline void nbcon_init(struct console *con) { } --static inline void nbcon_cleanup(struct console *con) { } -+static inline void nbcon_free(struct console *con) { } - - #endif /* CONFIG_PRINTK */ - ---- a/kernel/printk/nbcon.c -+++ b/kernel/printk/nbcon.c -@@ -5,6 +5,7 @@ - #include <linux/kernel.h> - #include <linux/console.h> - #include <linux/delay.h> -+#include <linux/slab.h> - #include "internal.h" - /* - * Printk console printing implementation for consoles which does not depend -@@ -70,6 +71,10 @@ - * console is an unsafe state. It is used only in panic() by the final - * attempt to flush consoles in a try and hope mode. - * -+ * Note that separate record buffers are used in panic(). As a result, -+ * the messages can be read and formatted without any risk even after -+ * using the hostile takeover in unsafe state. -+ * - * The release function simply clears the 'prio' field. - * - * All operations on @console::nbcon_state are atomic cmpxchg based to -@@ -459,6 +464,8 @@ static int nbcon_context_try_acquire_hos - return 0; - } - -+static struct printk_buffers panic_nbcon_pbufs; -+ - /** - * nbcon_context_try_acquire - Try to acquire nbcon console - * @ctxt: The context of the caller -@@ -473,6 +480,7 @@ static int nbcon_context_try_acquire_hos - __maybe_unused - static bool nbcon_context_try_acquire(struct nbcon_context *ctxt) - { -+ unsigned int cpu = smp_processor_id(); - struct console *con = ctxt->console; - struct nbcon_state cur; - int err; -@@ -491,7 +499,18 @@ static bool nbcon_context_try_acquire(st - - err = nbcon_context_try_acquire_hostile(ctxt, &cur); - out: -- return !err; -+ if (err) -+ return false; -+ -+ /* Acquire succeeded. */ -+ -+ /* Assign the appropriate buffer for this context. */ -+ if (atomic_read(&panic_cpu) == cpu) -+ ctxt->pbufs = &panic_nbcon_pbufs; -+ else -+ ctxt->pbufs = con->pbufs; -+ -+ return true; - } - - static bool nbcon_owner_matches(struct nbcon_state *cur, int expected_cpu, -@@ -530,7 +549,7 @@ static void nbcon_context_release(struct - - do { - if (!nbcon_owner_matches(&cur, cpu, ctxt->prio)) -- return; -+ break; - - new.atom = cur.atom; - new.prio = NBCON_PRIO_NONE; -@@ -542,26 +561,70 @@ static void nbcon_context_release(struct - new.unsafe |= cur.unsafe_takeover; - - } while (!nbcon_state_try_cmpxchg(con, &cur, &new)); -+ -+ ctxt->pbufs = NULL; -+} -+ -+/** -+ * nbcon_alloc - Allocate buffers needed by the nbcon console -+ * @con: Console to allocate buffers for -+ * -+ * Return: True on success. False otherwise and the console cannot -+ * be used. -+ * -+ * This is not part of nbcon_init() because buffer allocation must -+ * be performed earlier in the console registration process. -+ */ -+bool nbcon_alloc(struct console *con) -+{ -+ if (con->flags & CON_BOOT) { -+ /* -+ * Boot console printing is synchronized with legacy console -+ * printing, so boot consoles can share the same global printk -+ * buffers. -+ */ -+ con->pbufs = &printk_shared_pbufs; -+ } else { -+ con->pbufs = kmalloc(sizeof(*con->pbufs), GFP_KERNEL); -+ if (!con->pbufs) { -+ con_printk(KERN_ERR, con, "failed to allocate printing buffer\n"); -+ return false; -+ } -+ } -+ -+ return true; - } - - /** - * nbcon_init - Initialize the nbcon console specific data - * @con: Console to initialize -+ * -+ * nbcon_alloc() *must* be called and succeed before this function -+ * is called. - */ - void nbcon_init(struct console *con) - { - struct nbcon_state state = { }; - -+ /* nbcon_alloc() must have been called and successful! */ -+ BUG_ON(!con->pbufs); -+ - nbcon_state_set(con, &state); - } - - /** -- * nbcon_cleanup - Cleanup the nbcon console specific data -- * @con: Console to cleanup -+ * nbcon_free - Free and cleanup the nbcon console specific data -+ * @con: Console to free/cleanup nbcon data - */ --void nbcon_cleanup(struct console *con) -+void nbcon_free(struct console *con) - { - struct nbcon_state state = { }; - - nbcon_state_set(con, &state); -+ -+ /* Boot consoles share global printk buffers. */ -+ if (!(con->flags & CON_BOOT)) -+ kfree(con->pbufs); -+ -+ con->pbufs = NULL; - } ---- a/kernel/printk/printk.c -+++ b/kernel/printk/printk.c -@@ -3331,12 +3331,6 @@ static void try_enable_default_console(s - newcon->flags |= CON_CONSDEV; - } - --#define con_printk(lvl, con, fmt, ...) \ -- printk(lvl pr_fmt("%s%sconsole [%s%d] " fmt), \ -- (con->flags & CON_NBCON) ? "" : "legacy ", \ -- (con->flags & CON_BOOT) ? "boot" : "", \ -- con->name, con->index, ##__VA_ARGS__) -- - static void console_init_seq(struct console *newcon, bool bootcon_registered) - { - struct console *con; -@@ -3450,6 +3444,15 @@ void register_console(struct console *ne - goto unlock; - } - -+ if (newcon->flags & CON_NBCON) { -+ /* -+ * Ensure the nbcon console buffers can be allocated -+ * before modifying any global data. -+ */ -+ if (!nbcon_alloc(newcon)) -+ goto unlock; -+ } -+ - /* - * See if we want to enable this console driver by default. - * -@@ -3477,8 +3480,11 @@ void register_console(struct console *ne - err = try_enable_preferred_console(newcon, false); - - /* printk() messages are not printed to the Braille console. */ -- if (err || newcon->flags & CON_BRL) -+ if (err || newcon->flags & CON_BRL) { -+ if (newcon->flags & CON_NBCON) -+ nbcon_free(newcon); - goto unlock; -+ } - - /* - * If we have a bootconsole, and are switching to a real console, -@@ -3589,7 +3595,7 @@ static int unregister_console_locked(str - synchronize_srcu(&console_srcu); - - if (console->flags & CON_NBCON) -- nbcon_cleanup(console); -+ nbcon_free(console); - - console_sysfs_notify(); - diff --git a/debian/patches-rt/0079-printk-nbcon-Add-ownership-state-functions.patch b/debian/patches-rt/0079-printk-nbcon-Add-ownership-state-functions.patch deleted file mode 100644 index e26a5f332d..0000000000 --- a/debian/patches-rt/0079-printk-nbcon-Add-ownership-state-functions.patch +++ /dev/null @@ -1,179 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Sat, 16 Sep 2023 21:26:04 +0206 -Subject: [PATCH 079/134] printk: nbcon: Add ownership state functions -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -Provide functions that are related to the safe handover mechanism -and allow console drivers to dynamically specify unsafe regions: - - - nbcon_context_can_proceed() - - Invoked by a console owner to check whether a handover request - is pending or whether the console has been taken over by another - context. If a handover request is pending, this function will - also perform the handover, thus cancelling its own ownership. - - - nbcon_context_enter_unsafe()/nbcon_context_exit_unsafe() - - Invoked by a console owner to denote that the driver is about - to enter or leave a critical region where a take over is unsafe. - The exit variant is the point where the current owner releases - the lock for a higher priority context which asked for the - friendly handover. - - The unsafe state is stored in the console state and allows a - new context to make informed decisions whether to attempt a - takeover of such a console. The unsafe state is also available - to the driver so that it can make informed decisions about the - required actions and possibly take a special emergency path. - -Co-developed-by: John Ogness <john.ogness@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Signed-off-by: Thomas Gleixner (Intel) <tglx@linutronix.de> -Reviewed-by: Petr Mladek <pmladek@suse.com> -Signed-off-by: Petr Mladek <pmladek@suse.com> -Link: https://lore.kernel.org/r/20230916192007.608398-6-john.ogness@linutronix.de -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - kernel/printk/nbcon.c | 123 +++++++++++++++++++++++++++++++++++++++++++++++++- - 1 file changed, 122 insertions(+), 1 deletion(-) - ---- a/kernel/printk/nbcon.c -+++ b/kernel/printk/nbcon.c -@@ -537,7 +537,6 @@ static bool nbcon_owner_matches(struct n - * nbcon_context_release - Release the console - * @ctxt: The nbcon context from nbcon_context_try_acquire() - */ --__maybe_unused - static void nbcon_context_release(struct nbcon_context *ctxt) - { - unsigned int cpu = smp_processor_id(); -@@ -566,6 +565,128 @@ static void nbcon_context_release(struct - } - - /** -+ * nbcon_context_can_proceed - Check whether ownership can proceed -+ * @ctxt: The nbcon context from nbcon_context_try_acquire() -+ * @cur: The current console state -+ * -+ * Return: True if this context still owns the console. False if -+ * ownership was handed over or taken. -+ * -+ * Must be invoked when entering the unsafe state to make sure that it still -+ * owns the lock. Also must be invoked when exiting the unsafe context -+ * to eventually free the lock for a higher priority context which asked -+ * for the friendly handover. -+ * -+ * It can be called inside an unsafe section when the console is just -+ * temporary in safe state instead of exiting and entering the unsafe -+ * state. -+ * -+ * Also it can be called in the safe context before doing an expensive -+ * safe operation. It does not make sense to do the operation when -+ * a higher priority context took the lock. -+ * -+ * When this function returns false then the calling context no longer owns -+ * the console and is no longer allowed to go forward. In this case it must -+ * back out immediately and carefully. The buffer content is also no longer -+ * trusted since it no longer belongs to the calling context. -+ */ -+static bool nbcon_context_can_proceed(struct nbcon_context *ctxt, struct nbcon_state *cur) -+{ -+ unsigned int cpu = smp_processor_id(); -+ -+ /* Make sure this context still owns the console. */ -+ if (!nbcon_owner_matches(cur, cpu, ctxt->prio)) -+ return false; -+ -+ /* The console owner can proceed if there is no waiter. */ -+ if (cur->req_prio == NBCON_PRIO_NONE) -+ return true; -+ -+ /* -+ * A console owner within an unsafe region is always allowed to -+ * proceed, even if there are waiters. It can perform a handover -+ * when exiting the unsafe region. Otherwise the waiter will -+ * need to perform an unsafe hostile takeover. -+ */ -+ if (cur->unsafe) -+ return true; -+ -+ /* Waiters always have higher priorities than owners. */ -+ WARN_ON_ONCE(cur->req_prio <= cur->prio); -+ -+ /* -+ * Having a safe point for take over and eventually a few -+ * duplicated characters or a full line is way better than a -+ * hostile takeover. Post processing can take care of the garbage. -+ * Release and hand over. -+ */ -+ nbcon_context_release(ctxt); -+ -+ /* -+ * It is not clear whether the waiter really took over ownership. The -+ * outermost callsite must make the final decision whether console -+ * ownership is needed for it to proceed. If yes, it must reacquire -+ * ownership (possibly hostile) before carefully proceeding. -+ * -+ * The calling context no longer owns the console so go back all the -+ * way instead of trying to implement reacquire heuristics in tons of -+ * places. -+ */ -+ return false; -+} -+ -+#define nbcon_context_enter_unsafe(c) __nbcon_context_update_unsafe(c, true) -+#define nbcon_context_exit_unsafe(c) __nbcon_context_update_unsafe(c, false) -+ -+/** -+ * __nbcon_context_update_unsafe - Update the unsafe bit in @con->nbcon_state -+ * @ctxt: The nbcon context from nbcon_context_try_acquire() -+ * @unsafe: The new value for the unsafe bit -+ * -+ * Return: True if the unsafe state was updated and this context still -+ * owns the console. Otherwise false if ownership was handed -+ * over or taken. -+ * -+ * This function allows console owners to modify the unsafe status of the -+ * console. -+ * -+ * When this function returns false then the calling context no longer owns -+ * the console and is no longer allowed to go forward. In this case it must -+ * back out immediately and carefully. The buffer content is also no longer -+ * trusted since it no longer belongs to the calling context. -+ * -+ * Internal helper to avoid duplicated code. -+ */ -+__maybe_unused -+static bool __nbcon_context_update_unsafe(struct nbcon_context *ctxt, bool unsafe) -+{ -+ struct console *con = ctxt->console; -+ struct nbcon_state cur; -+ struct nbcon_state new; -+ -+ nbcon_state_read(con, &cur); -+ -+ do { -+ /* -+ * The unsafe bit must not be cleared if an -+ * unsafe hostile takeover has occurred. -+ */ -+ if (!unsafe && cur.unsafe_takeover) -+ goto out; -+ -+ if (!nbcon_context_can_proceed(ctxt, &cur)) -+ return false; -+ -+ new.atom = cur.atom; -+ new.unsafe = unsafe; -+ } while (!nbcon_state_try_cmpxchg(con, &cur, &new)); -+ -+ cur.atom = new.atom; -+out: -+ return nbcon_context_can_proceed(ctxt, &cur); -+} -+ -+/** - * nbcon_alloc - Allocate buffers needed by the nbcon console - * @con: Console to allocate buffers for - * diff --git a/debian/patches-rt/0080-printk-nbcon-Add-sequence-handling.patch b/debian/patches-rt/0080-printk-nbcon-Add-sequence-handling.patch deleted file mode 100644 index 3988d6124a..0000000000 --- a/debian/patches-rt/0080-printk-nbcon-Add-sequence-handling.patch +++ /dev/null @@ -1,311 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Sat, 16 Sep 2023 21:26:05 +0206 -Subject: [PATCH 080/134] printk: nbcon: Add sequence handling -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -Add an atomic_long_t field @nbcon_seq to the console struct to -store the sequence number for nbcon consoles. For nbcon consoles -this will be used instead of the non-atomic @seq field. The new -field allows for safe atomic sequence number updates without -requiring any locking. - -On 64bit systems the new field stores the full sequence number. -On 32bit systems the new field stores the lower 32 bits of the -sequence number, which are expanded to 64bit as needed by -folding the values based on the sequence numbers available in -the ringbuffer. - -For 32bit systems, having a 32bit representation in the console -is sufficient. If a console ever gets more than 2^31 records -behind the ringbuffer then this is the least of the problems. - -Co-developed-by: John Ogness <john.ogness@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Signed-off-by: Thomas Gleixner (Intel) <tglx@linutronix.de> -Signed-off-by: Petr Mladek <pmladek@suse.com> -Link: https://lore.kernel.org/r/20230916192007.608398-7-john.ogness@linutronix.de -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - include/linux/console.h | 4 + - kernel/printk/internal.h | 7 +++ - kernel/printk/nbcon.c | 101 +++++++++++++++++++++++++++++++++++++++++++++++ - kernel/printk/printk.c | 31 +++++++++++--- - 4 files changed, 136 insertions(+), 7 deletions(-) - ---- a/include/linux/console.h -+++ b/include/linux/console.h -@@ -243,6 +243,7 @@ struct printk_buffers; - * might cause a system freeze when the console - * is used later. - * @pbufs: Pointer to the text buffer for this context -+ * @seq: The sequence number to print for this context - */ - struct nbcon_context { - /* members set by caller */ -@@ -253,6 +254,7 @@ struct nbcon_context { - - /* members set by acquire */ - struct printk_buffers *pbufs; -+ u64 seq; - }; - - /** -@@ -276,6 +278,7 @@ struct nbcon_context { - * @node: hlist node for the console list - * - * @nbcon_state: State for nbcon consoles -+ * @nbcon_seq: Sequence number of the next record for nbcon to print - * @pbufs: Pointer to nbcon private buffer - */ - struct console { -@@ -299,6 +302,7 @@ struct console { - - /* nbcon console specific members */ - atomic_t __private nbcon_state; -+ atomic_long_t __private nbcon_seq; - struct printk_buffers *pbufs; - }; - ---- a/kernel/printk/internal.h -+++ b/kernel/printk/internal.h -@@ -4,6 +4,7 @@ - */ - #include <linux/percpu.h> - #include <linux/console.h> -+#include "printk_ringbuffer.h" - - #if defined(CONFIG_PRINTK) && defined(CONFIG_SYSCTL) - void __init printk_sysctl_init(void); -@@ -42,6 +43,8 @@ enum printk_info_flags { - LOG_CONT = 8, /* text is a fragment of a continuation line */ - }; - -+extern struct printk_ringbuffer *prb; -+ - __printf(4, 0) - int vprintk_store(int facility, int level, - const struct dev_printk_info *dev_info, -@@ -69,6 +72,8 @@ void defer_console_output(void); - u16 printk_parse_prefix(const char *text, int *level, - enum printk_info_flags *flags); - -+u64 nbcon_seq_read(struct console *con); -+void nbcon_seq_force(struct console *con, u64 seq); - bool nbcon_alloc(struct console *con); - void nbcon_init(struct console *con); - void nbcon_free(struct console *con); -@@ -88,6 +93,8 @@ void nbcon_free(struct console *con); - #define printk_safe_exit_irqrestore(flags) local_irq_restore(flags) - - static inline bool printk_percpu_data_ready(void) { return false; } -+static inline u64 nbcon_seq_read(struct console *con) { return 0; } -+static inline void nbcon_seq_force(struct console *con, u64 seq) { } - static inline bool nbcon_alloc(struct console *con) { return false; } - static inline void nbcon_init(struct console *con) { } - static inline void nbcon_free(struct console *con) { } ---- a/kernel/printk/nbcon.c -+++ b/kernel/printk/nbcon.c -@@ -140,6 +140,101 @@ static inline bool nbcon_state_try_cmpxc - return atomic_try_cmpxchg(&ACCESS_PRIVATE(con, nbcon_state), &cur->atom, new->atom); - } - -+#ifdef CONFIG_64BIT -+ -+#define __seq_to_nbcon_seq(seq) (seq) -+#define __nbcon_seq_to_seq(seq) (seq) -+ -+#else /* CONFIG_64BIT */ -+ -+#define __seq_to_nbcon_seq(seq) ((u32)seq) -+ -+static inline u64 __nbcon_seq_to_seq(u32 nbcon_seq) -+{ -+ u64 seq; -+ u64 rb_next_seq; -+ -+ /* -+ * The provided sequence is only the lower 32 bits of the ringbuffer -+ * sequence. It needs to be expanded to 64bit. Get the next sequence -+ * number from the ringbuffer and fold it. -+ * -+ * Having a 32bit representation in the console is sufficient. -+ * If a console ever gets more than 2^31 records behind -+ * the ringbuffer then this is the least of the problems. -+ * -+ * Also the access to the ring buffer is always safe. -+ */ -+ rb_next_seq = prb_next_seq(prb); -+ seq = rb_next_seq - ((u32)rb_next_seq - nbcon_seq); -+ -+ return seq; -+} -+ -+#endif /* CONFIG_64BIT */ -+ -+/** -+ * nbcon_seq_read - Read the current console sequence -+ * @con: Console to read the sequence of -+ * -+ * Return: Sequence number of the next record to print on @con. -+ */ -+u64 nbcon_seq_read(struct console *con) -+{ -+ unsigned long nbcon_seq = atomic_long_read(&ACCESS_PRIVATE(con, nbcon_seq)); -+ -+ return __nbcon_seq_to_seq(nbcon_seq); -+} -+ -+/** -+ * nbcon_seq_force - Force console sequence to a specific value -+ * @con: Console to work on -+ * @seq: Sequence number value to set -+ * -+ * Only to be used during init (before registration) or in extreme situations -+ * (such as panic with CONSOLE_REPLAY_ALL). -+ */ -+void nbcon_seq_force(struct console *con, u64 seq) -+{ -+ /* -+ * If the specified record no longer exists, the oldest available record -+ * is chosen. This is especially important on 32bit systems because only -+ * the lower 32 bits of the sequence number are stored. The upper 32 bits -+ * are derived from the sequence numbers available in the ringbuffer. -+ */ -+ u64 valid_seq = max_t(u64, seq, prb_first_valid_seq(prb)); -+ -+ atomic_long_set(&ACCESS_PRIVATE(con, nbcon_seq), __seq_to_nbcon_seq(valid_seq)); -+ -+ /* Clear con->seq since nbcon consoles use con->nbcon_seq instead. */ -+ con->seq = 0; -+} -+ -+/** -+ * nbcon_seq_try_update - Try to update the console sequence number -+ * @ctxt: Pointer to an acquire context that contains -+ * all information about the acquire mode -+ * @new_seq: The new sequence number to set -+ * -+ * @ctxt->seq is updated to the new value of @con::nbcon_seq (expanded to -+ * the 64bit value). This could be a different value than @new_seq if -+ * nbcon_seq_force() was used or the current context no longer owns the -+ * console. In the later case, it will stop printing anyway. -+ */ -+__maybe_unused -+static void nbcon_seq_try_update(struct nbcon_context *ctxt, u64 new_seq) -+{ -+ unsigned long nbcon_seq = __seq_to_nbcon_seq(ctxt->seq); -+ struct console *con = ctxt->console; -+ -+ if (atomic_long_try_cmpxchg(&ACCESS_PRIVATE(con, nbcon_seq), &nbcon_seq, -+ __seq_to_nbcon_seq(new_seq))) { -+ ctxt->seq = new_seq; -+ } else { -+ ctxt->seq = nbcon_seq_read(con); -+ } -+} -+ - /** - * nbcon_context_try_acquire_direct - Try to acquire directly - * @ctxt: The context of the caller -@@ -510,6 +605,9 @@ static bool nbcon_context_try_acquire(st - else - ctxt->pbufs = con->pbufs; - -+ /* Set the record sequence for this context to print. */ -+ ctxt->seq = nbcon_seq_read(ctxt->console); -+ - return true; - } - -@@ -722,6 +820,8 @@ bool nbcon_alloc(struct console *con) - * - * nbcon_alloc() *must* be called and succeed before this function - * is called. -+ * -+ * This function expects that the legacy @con->seq has been set. - */ - void nbcon_init(struct console *con) - { -@@ -730,6 +830,7 @@ void nbcon_init(struct console *con) - /* nbcon_alloc() must have been called and successful! */ - BUG_ON(!con->pbufs); - -+ nbcon_seq_force(con, con->seq); - nbcon_state_set(con, &state); - } - ---- a/kernel/printk/printk.c -+++ b/kernel/printk/printk.c -@@ -494,7 +494,7 @@ static u32 log_buf_len = __LOG_BUF_LEN; - - static struct printk_ringbuffer printk_rb_dynamic; - --static struct printk_ringbuffer *prb = &printk_rb_static; -+struct printk_ringbuffer *prb = &printk_rb_static; - - /* - * We cannot access per-CPU data (e.g. per-CPU flush irq_work) before -@@ -3168,6 +3168,7 @@ void console_flush_on_panic(enum con_flu - - if (mode == CONSOLE_REPLAY_ALL) { - struct console *c; -+ short flags; - int cookie; - u64 seq; - -@@ -3175,11 +3176,17 @@ void console_flush_on_panic(enum con_flu - - cookie = console_srcu_read_lock(); - for_each_console_srcu(c) { -- /* -- * This is an unsynchronized assignment, but the -- * kernel is in "hope and pray" mode anyway. -- */ -- c->seq = seq; -+ flags = console_srcu_read_flags(c); -+ -+ if (flags & CON_NBCON) { -+ nbcon_seq_force(c, seq); -+ } else { -+ /* -+ * This is an unsynchronized assignment. On -+ * panic legacy consoles are only best effort. -+ */ -+ c->seq = seq; -+ } - } - console_srcu_read_unlock(cookie); - } -@@ -3750,6 +3757,7 @@ static bool __pr_flush(struct console *c - struct console *c; - u64 last_diff = 0; - u64 printk_seq; -+ short flags; - int cookie; - u64 diff; - u64 seq; -@@ -3777,6 +3785,9 @@ static bool __pr_flush(struct console *c - for_each_console_srcu(c) { - if (con && con != c) - continue; -+ -+ flags = console_srcu_read_flags(c); -+ - /* - * If consoles are not usable, it cannot be expected - * that they make forward progress, so only increment -@@ -3784,7 +3795,13 @@ static bool __pr_flush(struct console *c - */ - if (!console_is_usable(c)) - continue; -- printk_seq = c->seq; -+ -+ if (flags & CON_NBCON) { -+ printk_seq = nbcon_seq_read(c); -+ } else { -+ printk_seq = c->seq; -+ } -+ - if (printk_seq < seq) - diff += seq - printk_seq; - } diff --git a/debian/patches-rt/0081-printk-nbcon-Add-emit-function-and-callback-function.patch b/debian/patches-rt/0081-printk-nbcon-Add-emit-function-and-callback-function.patch deleted file mode 100644 index ab32a05b19..0000000000 --- a/debian/patches-rt/0081-printk-nbcon-Add-emit-function-and-callback-function.patch +++ /dev/null @@ -1,262 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Sat, 16 Sep 2023 21:26:06 +0206 -Subject: [PATCH 081/134] printk: nbcon: Add emit function and callback - function for atomic printing -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -Implement an emit function for nbcon consoles to output printk -messages. It utilizes the lockless printk_get_next_message() and -console_prepend_dropped() functions to retrieve/build the output -message. The emit function includes the required safety points to -check for handover/takeover and calls a new write_atomic callback -of the console driver to output the message. It also includes -proper handling for updating the nbcon console sequence number. - -A new nbcon_write_context struct is introduced. This is provided -to the write_atomic callback and includes only the information -necessary for performing atomic writes. - -Co-developed-by: John Ogness <john.ogness@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Signed-off-by: Thomas Gleixner (Intel) <tglx@linutronix.de> -Reviewed-by: Petr Mladek <pmladek@suse.com> -Signed-off-by: Petr Mladek <pmladek@suse.com> -Link: https://lore.kernel.org/r/20230916192007.608398-8-john.ogness@linutronix.de -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - include/linux/console.h | 21 +++++++++ - kernel/printk/internal.h | 6 ++ - kernel/printk/nbcon.c | 106 ++++++++++++++++++++++++++++++++++++++++++++++- - kernel/printk/printk.c | 9 +-- - 4 files changed, 134 insertions(+), 8 deletions(-) - ---- a/include/linux/console.h -+++ b/include/linux/console.h -@@ -242,6 +242,7 @@ struct printk_buffers; - * be used only with NBCON_PRIO_PANIC @prio. It - * might cause a system freeze when the console - * is used later. -+ * @backlog: Ringbuffer has pending records - * @pbufs: Pointer to the text buffer for this context - * @seq: The sequence number to print for this context - */ -@@ -252,12 +253,29 @@ struct nbcon_context { - enum nbcon_prio prio; - unsigned int allow_unsafe_takeover : 1; - -+ /* members set by emit */ -+ unsigned int backlog : 1; -+ - /* members set by acquire */ - struct printk_buffers *pbufs; - u64 seq; - }; - - /** -+ * struct nbcon_write_context - Context handed to the nbcon write callbacks -+ * @ctxt: The core console context -+ * @outbuf: Pointer to the text buffer for output -+ * @len: Length to write -+ * @unsafe_takeover: If a hostile takeover in an unsafe state has occurred -+ */ -+struct nbcon_write_context { -+ struct nbcon_context __private ctxt; -+ char *outbuf; -+ unsigned int len; -+ bool unsafe_takeover; -+}; -+ -+/** - * struct console - The console descriptor structure - * @name: The name of the console driver - * @write: Write callback to output messages (Optional) -@@ -277,6 +295,7 @@ struct nbcon_context { - * @data: Driver private data - * @node: hlist node for the console list - * -+ * @write_atomic: Write callback for atomic context - * @nbcon_state: State for nbcon consoles - * @nbcon_seq: Sequence number of the next record for nbcon to print - * @pbufs: Pointer to nbcon private buffer -@@ -301,6 +320,8 @@ struct console { - struct hlist_node node; - - /* nbcon console specific members */ -+ bool (*write_atomic)(struct console *con, -+ struct nbcon_write_context *wctxt); - atomic_t __private nbcon_state; - atomic_long_t __private nbcon_seq; - struct printk_buffers *pbufs; ---- a/kernel/printk/internal.h -+++ b/kernel/printk/internal.h -@@ -130,3 +130,9 @@ struct printk_message { - }; - - bool other_cpu_in_panic(void); -+bool printk_get_next_message(struct printk_message *pmsg, u64 seq, -+ bool is_extended, bool may_supress); -+ -+#ifdef CONFIG_PRINTK -+void console_prepend_dropped(struct printk_message *pmsg, unsigned long dropped); -+#endif ---- a/kernel/printk/nbcon.c -+++ b/kernel/printk/nbcon.c -@@ -221,7 +221,6 @@ void nbcon_seq_force(struct console *con - * nbcon_seq_force() was used or the current context no longer owns the - * console. In the later case, it will stop printing anyway. - */ --__maybe_unused - static void nbcon_seq_try_update(struct nbcon_context *ctxt, u64 new_seq) - { - unsigned long nbcon_seq = __seq_to_nbcon_seq(ctxt->seq); -@@ -755,7 +754,6 @@ static bool nbcon_context_can_proceed(st - * - * Internal helper to avoid duplicated code. - */ --__maybe_unused - static bool __nbcon_context_update_unsafe(struct nbcon_context *ctxt, bool unsafe) - { - struct console *con = ctxt->console; -@@ -785,6 +783,110 @@ static bool __nbcon_context_update_unsaf - } - - /** -+ * nbcon_emit_next_record - Emit a record in the acquired context -+ * @wctxt: The write context that will be handed to the write function -+ * -+ * Return: True if this context still owns the console. False if -+ * ownership was handed over or taken. -+ * -+ * When this function returns false then the calling context no longer owns -+ * the console and is no longer allowed to go forward. In this case it must -+ * back out immediately and carefully. The buffer content is also no longer -+ * trusted since it no longer belongs to the calling context. If the caller -+ * wants to do more it must reacquire the console first. -+ * -+ * When true is returned, @wctxt->ctxt.backlog indicates whether there are -+ * still records pending in the ringbuffer, -+ */ -+__maybe_unused -+static bool nbcon_emit_next_record(struct nbcon_write_context *wctxt) -+{ -+ struct nbcon_context *ctxt = &ACCESS_PRIVATE(wctxt, ctxt); -+ struct console *con = ctxt->console; -+ bool is_extended = console_srcu_read_flags(con) & CON_EXTENDED; -+ struct printk_message pmsg = { -+ .pbufs = ctxt->pbufs, -+ }; -+ unsigned long con_dropped; -+ struct nbcon_state cur; -+ unsigned long dropped; -+ bool done; -+ -+ /* -+ * The printk buffers are filled within an unsafe section. This -+ * prevents NBCON_PRIO_NORMAL and NBCON_PRIO_EMERGENCY from -+ * clobbering each other. -+ */ -+ -+ if (!nbcon_context_enter_unsafe(ctxt)) -+ return false; -+ -+ ctxt->backlog = printk_get_next_message(&pmsg, ctxt->seq, is_extended, true); -+ if (!ctxt->backlog) -+ return nbcon_context_exit_unsafe(ctxt); -+ -+ /* -+ * @con->dropped is not protected in case of an unsafe hostile -+ * takeover. In that situation the update can be racy so -+ * annotate it accordingly. -+ */ -+ con_dropped = data_race(READ_ONCE(con->dropped)); -+ -+ dropped = con_dropped + pmsg.dropped; -+ if (dropped && !is_extended) -+ console_prepend_dropped(&pmsg, dropped); -+ -+ if (!nbcon_context_exit_unsafe(ctxt)) -+ return false; -+ -+ /* For skipped records just update seq/dropped in @con. */ -+ if (pmsg.outbuf_len == 0) -+ goto update_con; -+ -+ /* Initialize the write context for driver callbacks. */ -+ wctxt->outbuf = &pmsg.pbufs->outbuf[0]; -+ wctxt->len = pmsg.outbuf_len; -+ nbcon_state_read(con, &cur); -+ wctxt->unsafe_takeover = cur.unsafe_takeover; -+ -+ if (con->write_atomic) { -+ done = con->write_atomic(con, wctxt); -+ } else { -+ nbcon_context_release(ctxt); -+ WARN_ON_ONCE(1); -+ done = false; -+ } -+ -+ /* If not done, the emit was aborted. */ -+ if (!done) -+ return false; -+ -+ /* -+ * Since any dropped message was successfully output, reset the -+ * dropped count for the console. -+ */ -+ dropped = 0; -+update_con: -+ /* -+ * The dropped count and the sequence number are updated within an -+ * unsafe section. This limits update races to the panic context and -+ * allows the panic context to win. -+ */ -+ -+ if (!nbcon_context_enter_unsafe(ctxt)) -+ return false; -+ -+ if (dropped != con_dropped) { -+ /* Counterpart to the READ_ONCE() above. */ -+ WRITE_ONCE(con->dropped, dropped); -+ } -+ -+ nbcon_seq_try_update(ctxt, pmsg.seq + 1); -+ -+ return nbcon_context_exit_unsafe(ctxt); -+} -+ -+/** - * nbcon_alloc - Allocate buffers needed by the nbcon console - * @con: Console to allocate buffers for - * ---- a/kernel/printk/printk.c -+++ b/kernel/printk/printk.c -@@ -698,9 +698,6 @@ static ssize_t msg_print_ext_body(char * - return len; - } - --static bool printk_get_next_message(struct printk_message *pmsg, u64 seq, -- bool is_extended, bool may_supress); -- - /* /dev/kmsg - userspace message inject/listen interface */ - struct devkmsg_user { - atomic64_t seq; -@@ -2733,7 +2730,7 @@ static void __console_unlock(void) - * If @pmsg->pbufs->outbuf is modified, @pmsg->outbuf_len is updated. - */ - #ifdef CONFIG_PRINTK --static void console_prepend_dropped(struct printk_message *pmsg, unsigned long dropped) -+void console_prepend_dropped(struct printk_message *pmsg, unsigned long dropped) - { - struct printk_buffers *pbufs = pmsg->pbufs; - const size_t scratchbuf_sz = sizeof(pbufs->scratchbuf); -@@ -2787,8 +2784,8 @@ static void console_prepend_dropped(stru - * of @pmsg are valid. (See the documentation of struct printk_message - * for information about the @pmsg fields.) - */ --static bool printk_get_next_message(struct printk_message *pmsg, u64 seq, -- bool is_extended, bool may_suppress) -+bool printk_get_next_message(struct printk_message *pmsg, u64 seq, -+ bool is_extended, bool may_suppress) - { - static int panic_console_dropped; - diff --git a/debian/patches-rt/0082-printk-nbcon-Allow-drivers-to-mark-unsafe-regions-an.patch b/debian/patches-rt/0082-printk-nbcon-Allow-drivers-to-mark-unsafe-regions-an.patch deleted file mode 100644 index 16a07a839e..0000000000 --- a/debian/patches-rt/0082-printk-nbcon-Allow-drivers-to-mark-unsafe-regions-an.patch +++ /dev/null @@ -1,136 +0,0 @@ -From: Thomas Gleixner <tglx@linutronix.de> -Date: Sat, 16 Sep 2023 21:26:07 +0206 -Subject: [PATCH 082/134] printk: nbcon: Allow drivers to mark unsafe regions - and check state -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -For the write_atomic callback, the console driver may have unsafe -regions that need to be appropriately marked. Provide functions -that accept the nbcon_write_context struct to allow for the driver -to enter and exit unsafe regions. - -Also provide a function for drivers to check if they are still the -owner of the console. - -Co-developed-by: John Ogness <john.ogness@linutronix.de> -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Signed-off-by: Thomas Gleixner (Intel) <tglx@linutronix.de> -Reviewed-by: Petr Mladek <pmladek@suse.com> -Signed-off-by: Petr Mladek <pmladek@suse.com> -Link: https://lore.kernel.org/r/20230916192007.608398-9-john.ogness@linutronix.de -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - include/linux/console.h | 10 ++++++ - kernel/printk/nbcon.c | 75 ++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 85 insertions(+) - ---- a/include/linux/console.h -+++ b/include/linux/console.h -@@ -451,6 +451,16 @@ static inline bool console_is_registered - lockdep_assert_console_list_lock_held(); \ - hlist_for_each_entry(con, &console_list, node) - -+#ifdef CONFIG_PRINTK -+extern bool nbcon_can_proceed(struct nbcon_write_context *wctxt); -+extern bool nbcon_enter_unsafe(struct nbcon_write_context *wctxt); -+extern bool nbcon_exit_unsafe(struct nbcon_write_context *wctxt); -+#else -+static inline bool nbcon_can_proceed(struct nbcon_write_context *wctxt) { return false; } -+static inline bool nbcon_enter_unsafe(struct nbcon_write_context *wctxt) { return false; } -+static inline bool nbcon_exit_unsafe(struct nbcon_write_context *wctxt) { return false; } -+#endif -+ - extern int console_set_on_cmdline; - extern struct console *early_console; - ---- a/kernel/printk/nbcon.c -+++ b/kernel/printk/nbcon.c -@@ -732,6 +732,41 @@ static bool nbcon_context_can_proceed(st - return false; - } - -+/** -+ * nbcon_can_proceed - Check whether ownership can proceed -+ * @wctxt: The write context that was handed to the write function -+ * -+ * Return: True if this context still owns the console. False if -+ * ownership was handed over or taken. -+ * -+ * It is used in nbcon_enter_unsafe() to make sure that it still owns the -+ * lock. Also it is used in nbcon_exit_unsafe() to eventually free the lock -+ * for a higher priority context which asked for the friendly handover. -+ * -+ * It can be called inside an unsafe section when the console is just -+ * temporary in safe state instead of exiting and entering the unsafe state. -+ * -+ * Also it can be called in the safe context before doing an expensive safe -+ * operation. It does not make sense to do the operation when a higher -+ * priority context took the lock. -+ * -+ * When this function returns false then the calling context no longer owns -+ * the console and is no longer allowed to go forward. In this case it must -+ * back out immediately and carefully. The buffer content is also no longer -+ * trusted since it no longer belongs to the calling context. -+ */ -+bool nbcon_can_proceed(struct nbcon_write_context *wctxt) -+{ -+ struct nbcon_context *ctxt = &ACCESS_PRIVATE(wctxt, ctxt); -+ struct console *con = ctxt->console; -+ struct nbcon_state cur; -+ -+ nbcon_state_read(con, &cur); -+ -+ return nbcon_context_can_proceed(ctxt, &cur); -+} -+EXPORT_SYMBOL_GPL(nbcon_can_proceed); -+ - #define nbcon_context_enter_unsafe(c) __nbcon_context_update_unsafe(c, true) - #define nbcon_context_exit_unsafe(c) __nbcon_context_update_unsafe(c, false) - -@@ -783,6 +818,46 @@ static bool __nbcon_context_update_unsaf - } - - /** -+ * nbcon_enter_unsafe - Enter an unsafe region in the driver -+ * @wctxt: The write context that was handed to the write function -+ * -+ * Return: True if this context still owns the console. False if -+ * ownership was handed over or taken. -+ * -+ * When this function returns false then the calling context no longer owns -+ * the console and is no longer allowed to go forward. In this case it must -+ * back out immediately and carefully. The buffer content is also no longer -+ * trusted since it no longer belongs to the calling context. -+ */ -+bool nbcon_enter_unsafe(struct nbcon_write_context *wctxt) -+{ -+ struct nbcon_context *ctxt = &ACCESS_PRIVATE(wctxt, ctxt); -+ -+ return nbcon_context_enter_unsafe(ctxt); -+} -+EXPORT_SYMBOL_GPL(nbcon_enter_unsafe); -+ -+/** -+ * nbcon_exit_unsafe - Exit an unsafe region in the driver -+ * @wctxt: The write context that was handed to the write function -+ * -+ * Return: True if this context still owns the console. False if -+ * ownership was handed over or taken. -+ * -+ * When this function returns false then the calling context no longer owns -+ * the console and is no longer allowed to go forward. In this case it must -+ * back out immediately and carefully. The buffer content is also no longer -+ * trusted since it no longer belongs to the calling context. -+ */ -+bool nbcon_exit_unsafe(struct nbcon_write_context *wctxt) -+{ -+ struct nbcon_context *ctxt = &ACCESS_PRIVATE(wctxt, ctxt); -+ -+ return nbcon_context_exit_unsafe(ctxt); -+} -+EXPORT_SYMBOL_GPL(nbcon_exit_unsafe); -+ -+/** - * nbcon_emit_next_record - Emit a record in the acquired context - * @wctxt: The write context that will be handed to the write function - * diff --git a/debian/patches-rt/0083-printk-fix-illegal-pbufs-access-for-CONFIG_PRINTK.patch b/debian/patches-rt/0083-printk-fix-illegal-pbufs-access-for-CONFIG_PRINTK.patch deleted file mode 100644 index 80de1c716d..0000000000 --- a/debian/patches-rt/0083-printk-fix-illegal-pbufs-access-for-CONFIG_PRINTK.patch +++ /dev/null @@ -1,134 +0,0 @@ -From: John Ogness <john.ogness@linutronix.de> -Date: Wed, 20 Sep 2023 17:58:38 +0206 -Subject: [PATCH 083/134] printk: fix illegal pbufs access for !CONFIG_PRINTK -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -When CONFIG_PRINTK is not set, PRINTK_MESSAGE_MAX is 0. This -leads to a zero-sized array @outbuf in @printk_shared_pbufs. In -console_flush_all() a pointer to the first element of the array -is assigned with: - - char *outbuf = &printk_shared_pbufs.outbuf[0]; - -For !CONFIG_PRINTK this leads to a compiler warning: - - warning: array subscript 0 is outside array bounds of - 'char[0]' [-Warray-bounds] - -This is not really dangerous because printk_get_next_message() -always returns false for !CONFIG_PRINTK, which leads to @outbuf -never being used. However, it makes no sense to even compile -these functions for !CONFIG_PRINTK. - -Extend the existing '#ifdef CONFIG_PRINTK' block to contain -the formatting and emitting functions since these have no -purpose in !CONFIG_PRINTK. This also allows removing several -more !CONFIG_PRINTK dummies as well as moving -@suppress_panic_printk into a CONFIG_PRINTK block. - -Reported-by: kernel test robot <lkp@intel.com> -Closes: https://lore.kernel.org/oe-kbuild-all/202309201724.M9BMAQIh-lkp@intel.com/ -Signed-off-by: John Ogness <john.ogness@linutronix.de> -Reviewed-by: Sergey Senozhatsky <senozhatsky@chromium.org> -Signed-off-by: Petr Mladek <pmladek@suse.com> -Link: https://lore.kernel.org/r/20230920155238.670439-1-john.ogness@linutronix.de -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - kernel/printk/printk.c | 44 ++++++++++++++++++-------------------------- - 1 file changed, 18 insertions(+), 26 deletions(-) - ---- a/kernel/printk/printk.c -+++ b/kernel/printk/printk.c -@@ -102,12 +102,6 @@ DEFINE_STATIC_SRCU(console_srcu); - */ - int __read_mostly suppress_printk; - --/* -- * During panic, heavy printk by other CPUs can delay the -- * panic and risk deadlock on console resources. -- */ --static int __read_mostly suppress_panic_printk; -- - #ifdef CONFIG_LOCKDEP - static struct lockdep_map console_lock_dep_map = { - .name = "console_lock" -@@ -445,6 +439,12 @@ static int console_msg_format = MSG_FORM - static DEFINE_MUTEX(syslog_lock); - - #ifdef CONFIG_PRINTK -+/* -+ * During panic, heavy printk by other CPUs can delay the -+ * panic and risk deadlock on console resources. -+ */ -+static int __read_mostly suppress_panic_printk; -+ - DECLARE_WAIT_QUEUE_HEAD(log_wait); - /* All 3 protected by @syslog_lock. */ - /* the next printk record to read by syslog(READ) or /proc/kmsg */ -@@ -2346,22 +2346,6 @@ static bool __pr_flush(struct console *c - - static u64 syslog_seq; - --static size_t record_print_text(const struct printk_record *r, -- bool syslog, bool time) --{ -- return 0; --} --static ssize_t info_print_ext_header(char *buf, size_t size, -- struct printk_info *info) --{ -- return 0; --} --static ssize_t msg_print_ext_body(char *buf, size_t size, -- char *text, size_t text_len, -- struct dev_printk_info *dev_info) { return 0; } --static void console_lock_spinning_enable(void) { } --static int console_lock_spinning_disable_and_check(int cookie) { return 0; } --static bool suppress_message_printing(int level) { return false; } - static bool pr_flush(int timeout_ms, bool reset_on_progress) { return true; } - static bool __pr_flush(struct console *con, int timeout_ms, bool reset_on_progress) { return true; } - -@@ -2715,6 +2699,8 @@ static void __console_unlock(void) - up_console_sem(); - } - -+#ifdef CONFIG_PRINTK -+ - /* - * Prepend the message in @pmsg->pbufs->outbuf with a "dropped message". This - * is achieved by shifting the existing message over and inserting the dropped -@@ -2729,7 +2715,6 @@ static void __console_unlock(void) - * - * If @pmsg->pbufs->outbuf is modified, @pmsg->outbuf_len is updated. - */ --#ifdef CONFIG_PRINTK - void console_prepend_dropped(struct printk_message *pmsg, unsigned long dropped) - { - struct printk_buffers *pbufs = pmsg->pbufs; -@@ -2761,9 +2746,6 @@ void console_prepend_dropped(struct prin - memcpy(outbuf, scratchbuf, len); - pmsg->outbuf_len += len; - } --#else --#define console_prepend_dropped(pmsg, dropped) --#endif /* CONFIG_PRINTK */ - - /* - * Read and format the specified record (or a later record if the specified -@@ -2921,6 +2903,16 @@ static bool console_emit_next_record(str - return true; - } - -+#else -+ -+static bool console_emit_next_record(struct console *con, bool *handover, int cookie) -+{ -+ *handover = false; -+ return false; -+} -+ -+#endif /* CONFIG_PRINTK */ -+ - /* - * Print out all remaining records to all consoles. - * diff --git a/debian/patches-rt/0084-printk-Reduce-pr_flush-pooling-time.patch b/debian/patches-rt/0084-printk-Reduce-pr_flush-pooling-time.patch deleted file mode 100644 index 09d1d343f4..0000000000 --- a/debian/patches-rt/0084-printk-Reduce-pr_flush-pooling-time.patch +++ /dev/null @@ -1,102 +0,0 @@ -From: Petr Mladek <pmladek@suse.com> -Date: Fri, 6 Oct 2023 10:21:51 +0200 -Subject: [PATCH 084/134] printk: Reduce pr_flush() pooling time -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -pr_flush() does not guarantee that all messages would really get flushed -to the console. The best it could do is to wait with a given timeout.[*] - -The current interval 100ms for checking the progress might seem too -long in some situations. For example, such delays are not appreciated -during suspend and resume especially when the consoles have been flushed -"long" time before the check. - -On the other hand, the sleeping wait might be useful in other situations. -Especially, it would allow flushing the messages using printk kthreads -on the same CPU[*]. - -Use msleep(1) as a compromise. - -Also measure the time using jiffies. msleep() does not guarantee -precise wakeup after the given delay. It might be much longer, -especially for times < 20s. See Documentation/timers/timers-howto.rst -for more details. - -Note that msecs_to_jiffies() already translates a negative value into -an infinite timeout. - -[*] console_unlock() does not guarantee flushing the consoles since - the commit dbdda842fe96f893 ("printk: Add console owner and waiter - logic to load balance console writes"). - - It would be possible to guarantee it another way. For example, - the spinning might be enabled only when the console_lock has been - taken via console_trylock(). - - But the load balancing is helpful. And more importantly, the flush - with a timeout has been added as a preparation step for introducing - printk kthreads. - -Signed-off-by: Petr Mladek <pmladek@suse.com> -Reviewed-by: John Ogness <john.ogness@linutronix.de> -Link: https://lore.kernel.org/r/20231006082151.6969-3-pmladek@suse.com -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - kernel/printk/printk.c | 26 +++++++++++++------------- - 1 file changed, 13 insertions(+), 13 deletions(-) - ---- a/kernel/printk/printk.c -+++ b/kernel/printk/printk.c -@@ -3742,7 +3742,8 @@ late_initcall(printk_late_init); - /* If @con is specified, only wait for that console. Otherwise wait for all. */ - static bool __pr_flush(struct console *con, int timeout_ms, bool reset_on_progress) - { -- int remaining = timeout_ms; -+ unsigned long timeout_jiffies = msecs_to_jiffies(timeout_ms); -+ unsigned long remaining_jiffies = timeout_jiffies; - struct console *c; - u64 last_diff = 0; - u64 printk_seq; -@@ -3760,6 +3761,9 @@ static bool __pr_flush(struct console *c - console_unlock(); - - for (;;) { -+ unsigned long begin_jiffies; -+ unsigned long slept_jiffies; -+ - diff = 0; - - /* -@@ -3797,24 +3801,20 @@ static bool __pr_flush(struct console *c - console_srcu_read_unlock(cookie); - - if (diff != last_diff && reset_on_progress) -- remaining = timeout_ms; -+ remaining_jiffies = timeout_jiffies; - - console_unlock(); - - /* Note: @diff is 0 if there are no usable consoles. */ -- if (diff == 0 || remaining == 0) -+ if (diff == 0 || remaining_jiffies == 0) - break; - -- if (remaining < 0) { -- /* no timeout limit */ -- msleep(100); -- } else if (remaining < 100) { -- msleep(remaining); -- remaining = 0; -- } else { -- msleep(100); -- remaining -= 100; -- } -+ /* msleep(1) might sleep much longer. Check time by jiffies. */ -+ begin_jiffies = jiffies; -+ msleep(1); -+ slept_jiffies = jiffies - begin_jiffies; -+ -+ remaining_jiffies -= min(slept_jiffies, remaining_jiffies); - - last_diff = diff; - } diff --git a/debian/patches-rt/ARM64__Allow_to_enable_RT.patch b/debian/patches-rt/ARM64__Allow_to_enable_RT.patch index 3657ef8700..e89d7841ae 100644 --- a/debian/patches-rt/ARM64__Allow_to_enable_RT.patch +++ b/debian/patches-rt/ARM64__Allow_to_enable_RT.patch @@ -1,7 +1,7 @@ Subject: ARM64: Allow to enable RT From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Date: Fri Oct 11 13:14:35 2019 +0200 -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> diff --git a/debian/patches-rt/ARM__Allow_to_enable_RT.patch b/debian/patches-rt/ARM__Allow_to_enable_RT.patch index 902eca18c3..296114d458 100644 --- a/debian/patches-rt/ARM__Allow_to_enable_RT.patch +++ b/debian/patches-rt/ARM__Allow_to_enable_RT.patch @@ -1,7 +1,7 @@ Subject: ARM: Allow to enable RT From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Date: Fri Oct 11 13:14:29 2019 +0200 -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> @@ -17,7 +17,7 @@ Signed-off-by: Thomas Gleixner <tglx@linutronix.de> --- --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig -@@ -34,6 +34,7 @@ config ARM +@@ -35,6 +35,7 @@ config ARM select ARCH_OPTIONAL_KERNEL_RWX_DEFAULT if CPU_V7 select ARCH_SUPPORTS_ATOMIC_RMW select ARCH_SUPPORTS_HUGETLBFS if ARM_LPAE @@ -25,7 +25,7 @@ Signed-off-by: Thomas Gleixner <tglx@linutronix.de> select ARCH_USE_BUILTIN_BSWAP select ARCH_USE_CMPXCHG_LOCKREF select ARCH_USE_MEMTEST -@@ -118,6 +119,7 @@ config ARM +@@ -119,6 +120,7 @@ config ARM select HAVE_PERF_EVENTS select HAVE_PERF_REGS select HAVE_PERF_USER_STACK_DUMP diff --git a/debian/patches-rt/ARM__enable_irq_in_translation_section_permission_fault_handlers.patch b/debian/patches-rt/ARM__enable_irq_in_translation_section_permission_fault_handlers.patch index ce42fd3a27..b8c3c370fb 100644 --- a/debian/patches-rt/ARM__enable_irq_in_translation_section_permission_fault_handlers.patch +++ b/debian/patches-rt/ARM__enable_irq_in_translation_section_permission_fault_handlers.patch @@ -1,7 +1,7 @@ Subject: ARM: enable irq in translation/section permission fault handlers From: Yadi.hu <yadi.hu@windriver.com> Date: Wed Dec 10 10:32:09 2014 +0800 -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz From: Yadi.hu <yadi.hu@windriver.com> diff --git a/debian/patches-rt/Add_localversion_for_-RT_release.patch b/debian/patches-rt/Add_localversion_for_-RT_release.patch index 55db77eff5..7a09b5ac27 100644 --- a/debian/patches-rt/Add_localversion_for_-RT_release.patch +++ b/debian/patches-rt/Add_localversion_for_-RT_release.patch @@ -1,7 +1,7 @@ Subject: Add localversion for -RT release From: Thomas Gleixner <tglx@linutronix.de> Date: Fri Jul 8 20:25:16 2011 +0200 -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz From: Thomas Gleixner <tglx@linutronix.de> @@ -16,4 +16,4 @@ Signed-off-by: Thomas Gleixner <tglx@linutronix.de> --- /dev/null +++ b/localversion-rt @@ -0,0 +1 @@ -+-rt18 ++-rt6 diff --git a/debian/patches-rt/POWERPC__Allow_to_enable_RT.patch b/debian/patches-rt/POWERPC__Allow_to_enable_RT.patch index 797e2084b4..12443b10dc 100644 --- a/debian/patches-rt/POWERPC__Allow_to_enable_RT.patch +++ b/debian/patches-rt/POWERPC__Allow_to_enable_RT.patch @@ -1,7 +1,7 @@ Subject: POWERPC: Allow to enable RT From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Date: Fri Oct 11 13:14:41 2019 +0200 -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> @@ -25,7 +25,7 @@ Signed-off-by: Thomas Gleixner <tglx@linutronix.de> select ARCH_USE_BUILTIN_BSWAP select ARCH_USE_CMPXCHG_LOCKREF if PPC64 select ARCH_USE_MEMTEST -@@ -268,6 +269,7 @@ config PPC +@@ -269,6 +270,7 @@ config PPC select HAVE_PERF_USER_STACK_DUMP select HAVE_REGS_AND_STACK_ACCESS_API select HAVE_RELIABLE_STACKTRACE diff --git a/debian/patches-rt/PREEMPT_AUTO.patch b/debian/patches-rt/PREEMPT_AUTO.patch index 859dadc20c..323b18f798 100644 --- a/debian/patches-rt/PREEMPT_AUTO.patch +++ b/debian/patches-rt/PREEMPT_AUTO.patch @@ -1,7 +1,7 @@ From: Thomas Gleixner <tglx@linutronix.de> Date: Sat, 23 Sep 2023 03:11:05 +0200 Subject: [PATCH] sched: define TIF_ALLOW_RESCHED -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz On Fri, Sep 22 2023 at 00:55, Thomas Gleixner wrote: > On Thu, Sep 21 2023 at 09:00, Linus Torvalds wrote: @@ -187,7 +187,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> --- a/include/linux/sched.h +++ b/include/linux/sched.h -@@ -2050,17 +2050,17 @@ static inline void update_tsk_thread_fla +@@ -2055,17 +2055,17 @@ static inline void update_tsk_thread_fla update_ti_thread_flag(task_thread_info(tsk), flag, value); } @@ -208,7 +208,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> { return test_ti_thread_flag(task_thread_info(tsk), flag); } -@@ -2073,9 +2073,11 @@ static inline void set_tsk_need_resched( +@@ -2078,9 +2078,11 @@ static inline void set_tsk_need_resched( static inline void clear_tsk_need_resched(struct task_struct *tsk) { clear_tsk_thread_flag(tsk,TIF_NEED_RESCHED); @@ -221,7 +221,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> { return unlikely(test_tsk_thread_flag(tsk,TIF_NEED_RESCHED)); } -@@ -2256,7 +2258,7 @@ static inline int rwlock_needbreak(rwloc +@@ -2261,7 +2263,7 @@ static inline int rwlock_needbreak(rwloc static __always_inline bool need_resched(void) { @@ -434,15 +434,15 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> /* @@ -922,7 +923,7 @@ static bool set_nr_if_polling(struct tas - for (;;) { + do { if (!(val & _TIF_POLLING_NRFLAG)) return false; - if (val & _TIF_NEED_RESCHED) + if (val & (_TIF_NEED_RESCHED | _TIF_NEED_RESCHED_LAZY)) return true; - if (try_cmpxchg(&ti->flags, &val, val | _TIF_NEED_RESCHED)) - break; -@@ -931,9 +932,9 @@ static bool set_nr_if_polling(struct tas + } while (!try_cmpxchg(&ti->flags, &val, val | _TIF_NEED_RESCHED)); + +@@ -930,9 +931,9 @@ static bool set_nr_if_polling(struct tas } #else @@ -454,7 +454,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> return true; } -@@ -1038,28 +1039,47 @@ void wake_up_q(struct wake_q_head *head) +@@ -1037,28 +1038,47 @@ void wake_up_q(struct wake_q_head *head) * might also involve a cross-CPU call to trigger the scheduler on * the target CPU. */ @@ -510,7 +510,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> } void resched_cpu(int cpu) -@@ -1132,7 +1152,7 @@ static void wake_up_idle_cpu(int cpu) +@@ -1131,7 +1151,7 @@ static void wake_up_idle_cpu(int cpu) if (cpu == smp_processor_id()) return; @@ -556,7 +556,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> late_initcall(sched_init_debug); --- a/kernel/sched/fair.c +++ b/kernel/sched/fair.c -@@ -1016,8 +1016,10 @@ static void clear_buddies(struct cfs_rq +@@ -1001,8 +1001,10 @@ static void clear_buddies(struct cfs_rq * XXX: strictly: vd_i += N*r_i/w_i such that: vd_i > ve_i * this is probably good enough. */ @@ -568,7 +568,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> if ((s64)(se->vruntime - se->deadline) < 0) return; -@@ -1036,10 +1038,19 @@ static void update_deadline(struct cfs_r +@@ -1021,10 +1023,19 @@ static void update_deadline(struct cfs_r /* * The task has consumed its request, reschedule. */ @@ -591,7 +591,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> } #include "pelt.h" -@@ -1147,7 +1158,7 @@ static void update_tg_load_avg(struct cf +@@ -1132,7 +1143,7 @@ static void update_tg_load_avg(struct cf /* * Update the current task's runtime statistics. */ @@ -600,7 +600,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> { struct sched_entity *curr = cfs_rq->curr; u64 now = rq_clock_task(rq_of(cfs_rq)); -@@ -1174,7 +1185,7 @@ static void update_curr(struct cfs_rq *c +@@ -1159,7 +1170,7 @@ static void update_curr(struct cfs_rq *c schedstat_add(cfs_rq->exec_clock, delta_exec); curr->vruntime += calc_delta_fair(delta_exec, curr); @@ -609,7 +609,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> update_min_vruntime(cfs_rq); if (entity_is_task(curr)) { -@@ -1188,6 +1199,11 @@ static void update_curr(struct cfs_rq *c +@@ -1173,6 +1184,11 @@ static void update_curr(struct cfs_rq *c account_cfs_rq_runtime(cfs_rq, delta_exec); } @@ -621,7 +621,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> static void update_curr_fair(struct rq *rq) { update_curr(cfs_rq_of(&rq->curr->se)); -@@ -5398,7 +5414,7 @@ entity_tick(struct cfs_rq *cfs_rq, struc +@@ -5449,7 +5465,7 @@ entity_tick(struct cfs_rq *cfs_rq, struc /* * Update run-time statistics of the 'current'. */ @@ -630,7 +630,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> /* * Ensure that runnable average is periodically updated. -@@ -5412,7 +5428,7 @@ entity_tick(struct cfs_rq *cfs_rq, struc +@@ -5463,7 +5479,7 @@ entity_tick(struct cfs_rq *cfs_rq, struc * validating it and just reschedule. */ if (queued) { @@ -639,7 +639,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> return; } /* -@@ -5558,7 +5574,7 @@ static void __account_cfs_rq_runtime(str +@@ -5609,7 +5625,7 @@ static void __account_cfs_rq_runtime(str * hierarchy can be throttled */ if (!assign_cfs_rq_runtime(cfs_rq) && likely(cfs_rq->curr)) @@ -648,7 +648,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> } static __always_inline -@@ -5818,7 +5834,7 @@ void unthrottle_cfs_rq(struct cfs_rq *cf +@@ -5869,7 +5885,7 @@ void unthrottle_cfs_rq(struct cfs_rq *cf /* Determine whether we need to wake up potentially idle CPU: */ if (rq->curr == rq->idle && rq->cfs.nr_running) @@ -657,7 +657,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> } #ifdef CONFIG_SMP -@@ -6523,7 +6539,7 @@ static void hrtick_start_fair(struct rq +@@ -6584,7 +6600,7 @@ static void hrtick_start_fair(struct rq if (delta < 0) { if (task_current(rq, p)) @@ -666,7 +666,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> return; } hrtick_start(rq, delta); -@@ -8175,7 +8191,7 @@ static void check_preempt_wakeup(struct +@@ -8240,7 +8256,7 @@ static void check_preempt_wakeup_fair(st * prevents us from potentially nominating it as a false LAST_BUDDY * below. */ @@ -675,7 +675,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> return; /* Idle tasks are by definition preempted by non-idle tasks. */ -@@ -8217,7 +8233,7 @@ static void check_preempt_wakeup(struct +@@ -8282,7 +8298,7 @@ static void check_preempt_wakeup_fair(st return; preempt: @@ -684,7 +684,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> } #ifdef CONFIG_SMP -@@ -12374,7 +12390,7 @@ static inline void task_tick_core(struct +@@ -12449,7 +12465,7 @@ static inline void task_tick_core(struct */ if (rq->core->core_forceidle_count && rq->cfs.nr_running == 1 && __entity_slice_used(&curr->se, MIN_NR_TASKS_DURING_FORCEIDLE)) @@ -693,18 +693,18 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> } /* -@@ -12539,7 +12555,7 @@ prio_changed_fair(struct rq *rq, struct +@@ -12614,7 +12630,7 @@ prio_changed_fair(struct rq *rq, struct */ if (task_current(rq, p)) { if (p->prio > oldprio) - resched_curr(rq); + resched_curr_lazy(rq); } else - check_preempt_curr(rq, p, 0); + wakeup_preempt(rq, p, 0); } --- a/kernel/sched/features.h +++ b/kernel/sched/features.h -@@ -89,3 +89,5 @@ SCHED_FEAT(UTIL_EST_FASTUP, true) +@@ -88,3 +88,5 @@ SCHED_FEAT(UTIL_EST_FASTUP, true) SCHED_FEAT(LATENCY_WARN, false) SCHED_FEAT(HZ_BW, true) @@ -724,7 +724,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> --- a/kernel/sched/sched.h +++ b/kernel/sched/sched.h -@@ -2435,6 +2435,7 @@ extern void init_sched_fair_class(void); +@@ -2419,6 +2419,7 @@ extern void init_sched_fair_class(void); extern void reweight_task(struct task_struct *p, int prio); extern void resched_curr(struct rq *rq); @@ -734,7 +734,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> extern struct rt_bandwidth def_rt_bandwidth; --- a/kernel/trace/trace.c +++ b/kernel/trace/trace.c -@@ -2722,6 +2722,8 @@ unsigned int tracing_gen_ctx_irq_test(un +@@ -2723,6 +2723,8 @@ unsigned int tracing_gen_ctx_irq_test(un if (tif_need_resched()) trace_flags |= TRACE_FLAG_NEED_RESCHED; diff --git a/debian/patches-rt/RISC-V-Probe-misaligned-access-speed-in-parallel.patch b/debian/patches-rt/RISC-V-Probe-misaligned-access-speed-in-parallel.patch deleted file mode 100644 index 78e57b07a5..0000000000 --- a/debian/patches-rt/RISC-V-Probe-misaligned-access-speed-in-parallel.patch +++ /dev/null @@ -1,197 +0,0 @@ -From: Evan Green <evan@rivosinc.com> -Date: Mon, 6 Nov 2023 14:58:55 -0800 -Subject: [PATCH] RISC-V: Probe misaligned access speed in parallel -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -Probing for misaligned access speed takes about 0.06 seconds. On a -system with 64 cores, doing this in smp_callin() means it's done -serially, extending boot time by 3.8 seconds. That's a lot of boot time. - -Instead of measuring each CPU serially, let's do the measurements on -all CPUs in parallel. If we disable preemption on all CPUs, the -jiffies stop ticking, so we can do this in stages of 1) everybody -except core 0, then 2) core 0. The allocations are all done outside of -on_each_cpu() to avoid calling alloc_pages() with interrupts disabled. - -For hotplugged CPUs that come in after the boot time measurement, -register CPU hotplug callbacks, and do the measurement there. Interrupts -are enabled in those callbacks, so they're fine to do alloc_pages() in. - -[bigeasy: merge the individual patches into the final step.] - -Reported-by: Jisheng Zhang <jszhang@kernel.org> -Closes: https://lore.kernel.org/all/mhng-9359993d-6872-4134-83ce-c97debe1cf9a@palmer-ri-x1c9/T/#mae9b8f40016f9df428829d33360144dc5026bcbf -Fixes: 584ea6564bca ("RISC-V: Probe for unaligned access speed") -Signed-off-by: Evan Green <evan@rivosinc.com> -Link: https://lore.kernel.org/r/20231106225855.3121724-1-evan@rivosinc.com -Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com> -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - arch/riscv/include/asm/cpufeature.h | 2 - arch/riscv/kernel/cpufeature.c | 90 ++++++++++++++++++++++++++++++------ - arch/riscv/kernel/smpboot.c | 1 - 3 files changed, 76 insertions(+), 17 deletions(-) - ---- a/arch/riscv/include/asm/cpufeature.h -+++ b/arch/riscv/include/asm/cpufeature.h -@@ -30,6 +30,4 @@ DECLARE_PER_CPU(long, misaligned_access_ - /* Per-cpu ISA extensions. */ - extern struct riscv_isainfo hart_isa[NR_CPUS]; - --void check_unaligned_access(int cpu); -- - #endif ---- a/arch/riscv/kernel/cpufeature.c -+++ b/arch/riscv/kernel/cpufeature.c -@@ -8,6 +8,7 @@ - - #include <linux/acpi.h> - #include <linux/bitmap.h> -+#include <linux/cpuhotplug.h> - #include <linux/ctype.h> - #include <linux/log2.h> - #include <linux/memory.h> -@@ -29,6 +30,7 @@ - - #define MISALIGNED_ACCESS_JIFFIES_LG2 1 - #define MISALIGNED_BUFFER_SIZE 0x4000 -+#define MISALIGNED_BUFFER_ORDER get_order(MISALIGNED_BUFFER_SIZE) - #define MISALIGNED_COPY_SIZE ((MISALIGNED_BUFFER_SIZE / 2) - 0x80) - - unsigned long elf_hwcap __read_mostly; -@@ -556,24 +558,19 @@ unsigned long riscv_get_elf_hwcap(void) - return hwcap; - } - --void check_unaligned_access(int cpu) -+static int check_unaligned_access(void *param) - { -+ int cpu = smp_processor_id(); - u64 start_cycles, end_cycles; - u64 word_cycles; - u64 byte_cycles; - int ratio; - unsigned long start_jiffies, now; -- struct page *page; -+ struct page *page = param; - void *dst; - void *src; - long speed = RISCV_HWPROBE_MISALIGNED_SLOW; - -- page = alloc_pages(GFP_NOWAIT, get_order(MISALIGNED_BUFFER_SIZE)); -- if (!page) { -- pr_warn("Can't alloc pages to measure memcpy performance"); -- return; -- } -- - /* Make an unaligned destination buffer. */ - dst = (void *)((unsigned long)page_address(page) | 0x1); - /* Unalign src as well, but differently (off by 1 + 2 = 3). */ -@@ -626,7 +623,7 @@ void check_unaligned_access(int cpu) - pr_warn("cpu%d: rdtime lacks granularity needed to measure unaligned access speed\n", - cpu); - -- goto out; -+ return 0; - } - - if (word_cycles < byte_cycles) -@@ -640,18 +637,83 @@ void check_unaligned_access(int cpu) - (speed == RISCV_HWPROBE_MISALIGNED_FAST) ? "fast" : "slow"); - - per_cpu(misaligned_access_speed, cpu) = speed; -+ return 0; -+} - --out: -- __free_pages(page, get_order(MISALIGNED_BUFFER_SIZE)); -+static void check_unaligned_access_nonboot_cpu(void *param) -+{ -+ unsigned int cpu = smp_processor_id(); -+ struct page **pages = param; -+ -+ if (smp_processor_id() != 0) -+ check_unaligned_access(pages[cpu]); -+} -+ -+static int riscv_online_cpu(unsigned int cpu) -+{ -+ static struct page *buf; -+ -+ /* We are already set since the last check */ -+ if (per_cpu(misaligned_access_speed, cpu) != RISCV_HWPROBE_MISALIGNED_UNKNOWN) -+ return 0; -+ -+ buf = alloc_pages(GFP_KERNEL, MISALIGNED_BUFFER_ORDER); -+ if (!buf) { -+ pr_warn("Allocation failure, not measuring misaligned performance\n"); -+ return -ENOMEM; -+ } -+ -+ check_unaligned_access(buf); -+ __free_pages(buf, MISALIGNED_BUFFER_ORDER); -+ return 0; - } - --static int check_unaligned_access_boot_cpu(void) -+/* Measure unaligned access on all CPUs present at boot in parallel. */ -+static int check_unaligned_access_all_cpus(void) - { -- check_unaligned_access(0); -+ unsigned int cpu; -+ unsigned int cpu_count = num_possible_cpus(); -+ struct page **bufs = kzalloc(cpu_count * sizeof(struct page *), -+ GFP_KERNEL); -+ -+ if (!bufs) { -+ pr_warn("Allocation failure, not measuring misaligned performance\n"); -+ return 0; -+ } -+ -+ /* -+ * Allocate separate buffers for each CPU so there's no fighting over -+ * cache lines. -+ */ -+ for_each_cpu(cpu, cpu_online_mask) { -+ bufs[cpu] = alloc_pages(GFP_KERNEL, MISALIGNED_BUFFER_ORDER); -+ if (!bufs[cpu]) { -+ pr_warn("Allocation failure, not measuring misaligned performance\n"); -+ goto out; -+ } -+ } -+ -+ /* Check everybody except 0, who stays behind to tend jiffies. */ -+ on_each_cpu(check_unaligned_access_nonboot_cpu, bufs, 1); -+ -+ /* Check core 0. */ -+ smp_call_on_cpu(0, check_unaligned_access, bufs[0], true); -+ -+ /* Setup hotplug callback for any new CPUs that come online. */ -+ cpuhp_setup_state_nocalls(CPUHP_AP_ONLINE_DYN, "riscv:online", -+ riscv_online_cpu, NULL); -+ -+out: -+ for_each_cpu(cpu, cpu_online_mask) { -+ if (bufs[cpu]) -+ __free_pages(bufs[cpu], MISALIGNED_BUFFER_ORDER); -+ } -+ -+ kfree(bufs); - return 0; - } - --arch_initcall(check_unaligned_access_boot_cpu); -+arch_initcall(check_unaligned_access_all_cpus); - - #ifdef CONFIG_RISCV_ALTERNATIVE - /* ---- a/arch/riscv/kernel/smpboot.c -+++ b/arch/riscv/kernel/smpboot.c -@@ -246,7 +246,6 @@ asmlinkage __visible void smp_callin(voi - - numa_add_cpu(curr_cpuid); - set_cpu_online(curr_cpuid, 1); -- check_unaligned_access(curr_cpuid); - - if (has_vector()) { - if (riscv_v_setup_vsize()) diff --git a/debian/patches-rt/Revert-drm-i915-Depend-on-PREEMPT_RT.patch b/debian/patches-rt/Revert-drm-i915-Depend-on-PREEMPT_RT.patch index dc62e007e8..1797f4ee2d 100644 --- a/debian/patches-rt/Revert-drm-i915-Depend-on-PREEMPT_RT.patch +++ b/debian/patches-rt/Revert-drm-i915-Depend-on-PREEMPT_RT.patch @@ -1,7 +1,7 @@ From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Date: Mon, 21 Feb 2022 17:59:14 +0100 Subject: [PATCH] Revert "drm/i915: Depend on !PREEMPT_RT." -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz Once the known issues are addressed, it should be safe to enable the driver. diff --git a/debian/patches-rt/drm-i915-Do-not-disable-preemption-for-resets.patch b/debian/patches-rt/drm-i915-Do-not-disable-preemption-for-resets.patch deleted file mode 100644 index 5869667030..0000000000 --- a/debian/patches-rt/drm-i915-Do-not-disable-preemption-for-resets.patch +++ /dev/null @@ -1,99 +0,0 @@ -From: Tvrtko Ursulin <tvrtko.ursulin@intel.com> -Date: Wed, 5 Jul 2023 10:30:25 +0100 -Subject: [PATCH] drm/i915: Do not disable preemption for resets -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz - -Commit ade8a0f59844 ("drm/i915: Make all GPU resets atomic") added a -preempt disable section over the hardware reset callback to prepare the -driver for being able to reset from atomic contexts. - -In retrospect I can see that the work item at a time was about removing -the struct mutex from the reset path. Code base also briefly entertained -the idea of doing the reset under stop_machine in order to serialize -userspace mmap and temporary glitch in the fence registers (see -eb8d0f5af4ec ("drm/i915: Remove GPU reset dependence on struct_mutex"), -but that never materialized and was soon removed in 2caffbf11762 -("drm/i915: Revoke mmaps and prevent access to fence registers across -reset") and replaced with a SRCU based solution. - -As such, as far as I can see, today we still have a requirement that -resets must not sleep (invoked from submission tasklets), but no need to -support invoking them from a truly atomic context. - -Given that the preemption section is problematic on RT kernels, since the -uncore lock becomes a sleeping lock and so is invalid in such section, -lets try and remove it. Potential downside is that our short waits on GPU -to complete the reset may get extended if CPU scheduling interferes, but -in practice that probably isn't a deal breaker. - -In terms of mechanics, since the preemption disabled block is being -removed we just need to replace a few of the wait_for_atomic macros into -busy looping versions which will work (and not complain) when called from -non-atomic sections. - -Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com> -Cc: Chris Wilson <chris.p.wilson@intel.com> -Cc: Paul Gortmaker <paul.gortmaker@windriver.com> -Cc: Sebastian Andrzej Siewior <bigeasy@linutronix.de> -Acked-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> -Link: https://lore.kernel.org/r/20230705093025.3689748-1-tvrtko.ursulin@linux.intel.com -Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> ---- - drivers/gpu/drm/i915/gt/intel_reset.c | 12 +++++------- - 1 file changed, 5 insertions(+), 7 deletions(-) - ---- a/drivers/gpu/drm/i915/gt/intel_reset.c -+++ b/drivers/gpu/drm/i915/gt/intel_reset.c -@@ -164,13 +164,13 @@ static int i915_do_reset(struct intel_gt - /* Assert reset for at least 20 usec, and wait for acknowledgement. */ - pci_write_config_byte(pdev, I915_GDRST, GRDOM_RESET_ENABLE); - udelay(50); -- err = wait_for_atomic(i915_in_reset(pdev), 50); -+ err = _wait_for_atomic(i915_in_reset(pdev), 50, 0); - - /* Clear the reset request. */ - pci_write_config_byte(pdev, I915_GDRST, 0); - udelay(50); - if (!err) -- err = wait_for_atomic(!i915_in_reset(pdev), 50); -+ err = _wait_for_atomic(!i915_in_reset(pdev), 50, 0); - - return err; - } -@@ -190,7 +190,7 @@ static int g33_do_reset(struct intel_gt - struct pci_dev *pdev = to_pci_dev(gt->i915->drm.dev); - - pci_write_config_byte(pdev, I915_GDRST, GRDOM_RESET_ENABLE); -- return wait_for_atomic(g4x_reset_complete(pdev), 50); -+ return _wait_for_atomic(g4x_reset_complete(pdev), 50, 0); - } - - static int g4x_do_reset(struct intel_gt *gt, -@@ -207,7 +207,7 @@ static int g4x_do_reset(struct intel_gt - - pci_write_config_byte(pdev, I915_GDRST, - GRDOM_MEDIA | GRDOM_RESET_ENABLE); -- ret = wait_for_atomic(g4x_reset_complete(pdev), 50); -+ ret = _wait_for_atomic(g4x_reset_complete(pdev), 50, 0); - if (ret) { - GT_TRACE(gt, "Wait for media reset failed\n"); - goto out; -@@ -215,7 +215,7 @@ static int g4x_do_reset(struct intel_gt - - pci_write_config_byte(pdev, I915_GDRST, - GRDOM_RENDER | GRDOM_RESET_ENABLE); -- ret = wait_for_atomic(g4x_reset_complete(pdev), 50); -+ ret = _wait_for_atomic(g4x_reset_complete(pdev), 50, 0); - if (ret) { - GT_TRACE(gt, "Wait for render reset failed\n"); - goto out; -@@ -785,9 +785,7 @@ int __intel_gt_reset(struct intel_gt *gt - reset_mask = wa_14015076503_start(gt, engine_mask, !retry); - - GT_TRACE(gt, "engine_mask=%x\n", reset_mask); -- preempt_disable(); - ret = reset(gt, reset_mask, retry); -- preempt_enable(); - - wa_14015076503_end(gt, reset_mask); - } diff --git a/debian/patches-rt/drm-i915-guc-Consider-also-RCU-depth-in-busy-loop.patch b/debian/patches-rt/drm-i915-guc-Consider-also-RCU-depth-in-busy-loop.patch index 0f030b42f2..0ed0ac24ae 100644 --- a/debian/patches-rt/drm-i915-guc-Consider-also-RCU-depth-in-busy-loop.patch +++ b/debian/patches-rt/drm-i915-guc-Consider-also-RCU-depth-in-busy-loop.patch @@ -1,7 +1,7 @@ From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Date: Tue, 3 Oct 2023 21:37:21 +0200 Subject: [PATCH] drm/i915/guc: Consider also RCU depth in busy loop. -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz intel_guc_send_busy_loop() looks at in_atomic() and irqs_disabled() to decide if it should busy-spin while waiting or if it may sleep. @@ -18,7 +18,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> --- a/drivers/gpu/drm/i915/gt/uc/intel_guc.h +++ b/drivers/gpu/drm/i915/gt/uc/intel_guc.h -@@ -317,7 +317,7 @@ static inline int intel_guc_send_busy_lo +@@ -349,7 +349,7 @@ static inline int intel_guc_send_busy_lo { int err; unsigned int sleep_period_ms = 1; diff --git a/debian/patches-rt/net-Avoid-the-IPI-to-free-the.patch b/debian/patches-rt/net-Avoid-the-IPI-to-free-the.patch index 6005e7a2e6..70bfac405a 100644 --- a/debian/patches-rt/net-Avoid-the-IPI-to-free-the.patch +++ b/debian/patches-rt/net-Avoid-the-IPI-to-free-the.patch @@ -1,7 +1,7 @@ From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Date: Mon, 15 Aug 2022 17:29:50 +0200 Subject: [PATCH] net: Avoid the IPI to free the -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz skb_attempt_defer_free() collects a skbs, which was allocated on a remote CPU, on a per-CPU list. These skbs are either freed on that @@ -25,7 +25,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h -@@ -3258,7 +3258,11 @@ struct softnet_data { +@@ -3288,7 +3288,11 @@ struct softnet_data { int defer_count; int defer_ipi_scheduled; struct sk_buff *defer_list; @@ -39,7 +39,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> static inline void input_queue_head_incr(struct softnet_data *sd) --- a/net/core/dev.c +++ b/net/core/dev.c -@@ -4702,15 +4702,6 @@ static void rps_trigger_softirq(void *da +@@ -4679,15 +4679,6 @@ static void rps_trigger_softirq(void *da #endif /* CONFIG_RPS */ @@ -55,7 +55,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> /* * After we queued a packet into sd->input_pkt_queue, * we need to make sure this queue is serviced soon. -@@ -6679,6 +6670,32 @@ static void skb_defer_free_flush(struct +@@ -6658,6 +6649,32 @@ static void skb_defer_free_flush(struct } } @@ -88,7 +88,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> static int napi_threaded_poll(void *data) { struct napi_struct *napi = data; -@@ -11603,7 +11620,11 @@ static int __init net_dev_init(void) +@@ -11621,7 +11638,11 @@ static int __init net_dev_init(void) INIT_CSD(&sd->csd, rps_trigger_softirq, sd); sd->cpu = i; #endif @@ -102,7 +102,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> init_gro_hash(&sd->backlog); --- a/net/core/skbuff.c +++ b/net/core/skbuff.c -@@ -6841,8 +6841,13 @@ nodefer: __kfree_skb(skb); +@@ -6858,8 +6858,13 @@ nodefer: __kfree_skb(skb); /* Make sure to trigger NET_RX_SOFTIRQ on the remote CPU * if we are unlucky enough (this seems very unlikely). */ diff --git a/debian/patches-rt/powerpc-pseries-Select-the-generic-memory-allocator.patch b/debian/patches-rt/powerpc-pseries-Select-the-generic-memory-allocator.patch index 6eb1f4c871..35ced542ba 100644 --- a/debian/patches-rt/powerpc-pseries-Select-the-generic-memory-allocator.patch +++ b/debian/patches-rt/powerpc-pseries-Select-the-generic-memory-allocator.patch @@ -1,7 +1,7 @@ From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Date: Thu, 9 Mar 2023 09:13:52 +0100 Subject: [PATCH] powerpc/pseries: Select the generic memory allocator. -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz The RTAS work area allocator is using the generic memory allocator and as such it must select it. diff --git a/debian/patches-rt/powerpc__traps__Use_PREEMPT_RT.patch b/debian/patches-rt/powerpc__traps__Use_PREEMPT_RT.patch index de8c14fd76..7d9af1ed24 100644 --- a/debian/patches-rt/powerpc__traps__Use_PREEMPT_RT.patch +++ b/debian/patches-rt/powerpc__traps__Use_PREEMPT_RT.patch @@ -1,7 +1,7 @@ Subject: powerpc: traps: Use PREEMPT_RT From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Date: Fri Jul 26 11:30:49 2019 +0200 -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> diff --git a/debian/patches-rt/powerpc_kvm__Disable_in-kernel_MPIC_emulation_for_PREEMPT_RT.patch b/debian/patches-rt/powerpc_kvm__Disable_in-kernel_MPIC_emulation_for_PREEMPT_RT.patch index f53f527b3a..0cb5032994 100644 --- a/debian/patches-rt/powerpc_kvm__Disable_in-kernel_MPIC_emulation_for_PREEMPT_RT.patch +++ b/debian/patches-rt/powerpc_kvm__Disable_in-kernel_MPIC_emulation_for_PREEMPT_RT.patch @@ -1,7 +1,7 @@ Subject: powerpc/kvm: Disable in-kernel MPIC emulation for PREEMPT_RT From: Bogdan Purcareata <bogdan.purcareata@freescale.com> Date: Fri Apr 24 15:53:13 2015 +0000 -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz From: Bogdan Purcareata <bogdan.purcareata@freescale.com> diff --git a/debian/patches-rt/powerpc_pseries_iommu__Use_a_locallock_instead_local_irq_save.patch b/debian/patches-rt/powerpc_pseries_iommu__Use_a_locallock_instead_local_irq_save.patch index f20adf29e0..db47dc2146 100644 --- a/debian/patches-rt/powerpc_pseries_iommu__Use_a_locallock_instead_local_irq_save.patch +++ b/debian/patches-rt/powerpc_pseries_iommu__Use_a_locallock_instead_local_irq_save.patch @@ -1,7 +1,7 @@ Subject: powerpc/pseries/iommu: Use a locallock instead local_irq_save() From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Date: Tue Mar 26 18:31:54 2019 +0100 -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> diff --git a/debian/patches-rt/powerpc_stackprotector__work_around_stack-guard_init_from_atomic.patch b/debian/patches-rt/powerpc_stackprotector__work_around_stack-guard_init_from_atomic.patch index c8994ca9d6..41f2983999 100644 --- a/debian/patches-rt/powerpc_stackprotector__work_around_stack-guard_init_from_atomic.patch +++ b/debian/patches-rt/powerpc_stackprotector__work_around_stack-guard_init_from_atomic.patch @@ -1,7 +1,7 @@ Subject: powerpc/stackprotector: work around stack-guard init from atomic From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Date: Tue Mar 26 18:31:29 2019 +0100 -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> diff --git a/debian/patches-rt/preempt-Put-preempt_enable-within-an-instrumentation.patch b/debian/patches-rt/preempt-Put-preempt_enable-within-an-instrumentation.patch index beddd4726f..9a39dab226 100644 --- a/debian/patches-rt/preempt-Put-preempt_enable-within-an-instrumentation.patch +++ b/debian/patches-rt/preempt-Put-preempt_enable-within-an-instrumentation.patch @@ -2,7 +2,7 @@ From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Date: Wed, 8 Mar 2023 16:29:38 +0100 Subject: [PATCH] preempt: Put preempt_enable() within an instrumentation*() section. -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz Callers of preempt_enable() can be within an noinstr section leading to: | vmlinux.o: warning: objtool: native_sched_clock+0x97: call to preempt_schedule_notrace_thunk() leaves .noinstr.text section diff --git a/debian/patches-rt/rcutorture-Also-force-sched-priority-to-timersd-on-b.patch b/debian/patches-rt/rcutorture-Also-force-sched-priority-to-timersd-on-b.patch index a75971478b..601db1b514 100644 --- a/debian/patches-rt/rcutorture-Also-force-sched-priority-to-timersd-on-b.patch +++ b/debian/patches-rt/rcutorture-Also-force-sched-priority-to-timersd-on-b.patch @@ -2,7 +2,7 @@ From: Frederic Weisbecker <frederic@kernel.org> Date: Tue, 5 Apr 2022 03:07:51 +0200 Subject: [PATCH] rcutorture: Also force sched priority to timersd on boosting test. -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz ksoftirqd is statically boosted to the priority level right above the one of rcu_torture_boost() so that timers, which torture readers rely on, @@ -45,7 +45,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> --- a/kernel/rcu/rcutorture.c +++ b/kernel/rcu/rcutorture.c -@@ -2408,6 +2408,12 @@ static int rcutorture_booster_init(unsig +@@ -2409,6 +2409,12 @@ static int rcutorture_booster_init(unsig WARN_ON_ONCE(!t); sp.sched_priority = 2; sched_setscheduler_nocheck(t, SCHED_FIFO, &sp); diff --git a/debian/patches-rt/riscv-add-PREEMPT_AUTO-support.patch b/debian/patches-rt/riscv-add-PREEMPT_AUTO-support.patch index 60c3bf3aa1..17219c0a1b 100644 --- a/debian/patches-rt/riscv-add-PREEMPT_AUTO-support.patch +++ b/debian/patches-rt/riscv-add-PREEMPT_AUTO-support.patch @@ -1,7 +1,7 @@ From: Jisheng Zhang <jszhang@kernel.org> Date: Tue, 31 Oct 2023 22:35:20 +0800 Subject: [PATCH] riscv: add PREEMPT_AUTO support -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz riscv has switched to GENERIC_ENTRY, so adding PREEMPT_AUTO is as simple as adding TIF_ARCH_RESCHED_LAZY related definitions and enabling @@ -16,7 +16,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> --- a/arch/riscv/Kconfig +++ b/arch/riscv/Kconfig -@@ -135,6 +135,7 @@ config RISCV +@@ -137,6 +137,7 @@ config RISCV select HAVE_PERF_USER_STACK_DUMP select HAVE_POSIX_CPU_TIMERS_TASK_WORK select HAVE_PREEMPT_DYNAMIC_KEY if !XIP_KERNEL @@ -26,7 +26,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> select HAVE_RSEQ --- a/arch/riscv/include/asm/thread_info.h +++ b/arch/riscv/include/asm/thread_info.h -@@ -82,6 +82,7 @@ int arch_dup_task_struct(struct task_str +@@ -95,6 +95,7 @@ int arch_dup_task_struct(struct task_str * - pending work-to-be-done flags are in lowest half-word * - other flags in upper half-word(s) */ @@ -34,7 +34,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> #define TIF_NOTIFY_RESUME 1 /* callback before returning to user */ #define TIF_SIGPENDING 2 /* signal pending */ #define TIF_NEED_RESCHED 3 /* rescheduling necessary */ -@@ -96,6 +97,7 @@ int arch_dup_task_struct(struct task_str +@@ -109,6 +110,7 @@ int arch_dup_task_struct(struct task_str #define _TIF_NEED_RESCHED (1 << TIF_NEED_RESCHED) #define _TIF_NOTIFY_SIGNAL (1 << TIF_NOTIFY_SIGNAL) #define _TIF_UPROBE (1 << TIF_UPROBE) diff --git a/debian/patches-rt/riscv-allow-to-enable-RT.patch b/debian/patches-rt/riscv-allow-to-enable-RT.patch index 66fcfc8e7f..f39489b4f6 100644 --- a/debian/patches-rt/riscv-allow-to-enable-RT.patch +++ b/debian/patches-rt/riscv-allow-to-enable-RT.patch @@ -1,7 +1,7 @@ From: Jisheng Zhang <jszhang@kernel.org> Date: Tue, 31 Oct 2023 22:35:21 +0800 Subject: [PATCH] riscv: allow to enable RT -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz Now, it's ready to enable RT on riscv. @@ -13,11 +13,11 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> --- a/arch/riscv/Kconfig +++ b/arch/riscv/Kconfig -@@ -48,6 +48,7 @@ config RISCV +@@ -49,6 +49,7 @@ config RISCV select ARCH_SUPPORTS_HUGETLBFS if MMU select ARCH_SUPPORTS_PAGE_TABLE_CHECK if MMU select ARCH_SUPPORTS_PER_VMA_LOCK if MMU + select ARCH_SUPPORTS_RT + select ARCH_SUPPORTS_SHADOW_CALL_STACK if HAVE_SHADOW_CALL_STACK select ARCH_USE_MEMTEST select ARCH_USE_QUEUED_RWLOCKS - select ARCH_USES_CFI_TRAPS if CFI_CLANG diff --git a/debian/patches-rt/sched-rt-Don-t-try-push-tasks-if-there-are-none.patch b/debian/patches-rt/sched-rt-Don-t-try-push-tasks-if-there-are-none.patch index 01e19e8fcc..9c757c60df 100644 --- a/debian/patches-rt/sched-rt-Don-t-try-push-tasks-if-there-are-none.patch +++ b/debian/patches-rt/sched-rt-Don-t-try-push-tasks-if-there-are-none.patch @@ -1,7 +1,7 @@ From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Date: Tue, 1 Aug 2023 17:26:48 +0200 Subject: [PATCH] sched/rt: Don't try push tasks if there are none. -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz I have a RT task X at a high priority and cyclictest on each CPU with lower priority than X's. If X is active and each CPU wakes their own @@ -43,7 +43,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> --- a/kernel/sched/rt.c +++ b/kernel/sched/rt.c -@@ -2249,8 +2249,11 @@ static int rto_next_cpu(struct root_doma +@@ -2203,8 +2203,11 @@ static int rto_next_cpu(struct root_doma rd->rto_cpu = cpu; diff --git a/debian/patches-rt/series b/debian/patches-rt/series index 9269d7464f..284e04d142 100644 --- a/debian/patches-rt/series +++ b/debian/patches-rt/series @@ -9,24 +9,7 @@ ########################################################################### # Posted ########################################################################### -0001-sched-Constrain-locks-in-sched_submit_work.patch -0002-locking-rtmutex-Avoid-unconditional-slowpath-for-DEB.patch -0003-sched-Extract-__schedule_loop.patch -0004-sched-Provide-rt_mutex-specific-scheduler-helpers.patch -0005-locking-rtmutex-Use-rt_mutex-specific-scheduler-help.patch -0006-locking-rtmutex-Add-a-lockdep-assert-to-catch-potent.patch -0007-futex-pi-Fix-recursive-rt_mutex-waiter-state.patch - -# Hacks to get ptrace to work. -0001-signal-Add-proper-comment-about-the-preempt-disable-.patch -0002-signal-Don-t-disable-preemption-in-ptrace_stop-on-PR.patch - -# DRM AMD GPU -0001-drm-amd-display-Remove-migrate_en-dis-from-dc_fpu_be.patch -0002-drm-amd-display-Simplify-the-per-CPU-usage.patch -0003-drm-amd-display-Add-a-warning-if-the-FPU-is-used-out.patch -0004-drm-amd-display-Move-the-memory-allocation-out-of-dc.patch -0005-drm-amd-display-Move-the-memory-allocation-out-of-dc.patch +# printk related ########################################################################### # Post @@ -61,138 +44,56 @@ preempt-Put-preempt_enable-within-an-instrumentation.patch ########################################################################### # John's printk queue ########################################################################### -0002-serial-core-Use-lock-wrappers.patch -0003-serial-21285-Use-port-lock-wrappers.patch -0004-serial-8250_aspeed_vuart-Use-port-lock-wrappers.patch -0005-serial-8250_bcm7271-Use-port-lock-wrappers.patch -0006-serial-8250-Use-port-lock-wrappers.patch -0007-serial-8250_dma-Use-port-lock-wrappers.patch -0008-serial-8250_dw-Use-port-lock-wrappers.patch -0009-serial-8250_exar-Use-port-lock-wrappers.patch -0010-serial-8250_fsl-Use-port-lock-wrappers.patch -0011-serial-8250_mtk-Use-port-lock-wrappers.patch -0012-serial-8250_omap-Use-port-lock-wrappers.patch -0013-serial-8250_pci1xxxx-Use-port-lock-wrappers.patch -0014-serial-altera_jtaguart-Use-port-lock-wrappers.patch -0015-serial-altera_uart-Use-port-lock-wrappers.patch -0016-serial-amba-pl010-Use-port-lock-wrappers.patch -0017-serial-amba-pl011-Use-port-lock-wrappers.patch -0018-serial-apb-Use-port-lock-wrappers.patch -0019-serial-ar933x-Use-port-lock-wrappers.patch -0020-serial-arc_uart-Use-port-lock-wrappers.patch -0021-serial-atmel-Use-port-lock-wrappers.patch -0022-serial-bcm63xx-uart-Use-port-lock-wrappers.patch -0023-serial-cpm_uart-Use-port-lock-wrappers.patch -0024-serial-digicolor-Use-port-lock-wrappers.patch -0025-serial-dz-Use-port-lock-wrappers.patch -0026-serial-linflexuart-Use-port-lock-wrappers.patch -0027-serial-fsl_lpuart-Use-port-lock-wrappers.patch -0028-serial-icom-Use-port-lock-wrappers.patch -0029-serial-imx-Use-port-lock-wrappers.patch -0030-serial-ip22zilog-Use-port-lock-wrappers.patch -0031-serial-jsm-Use-port-lock-wrappers.patch -0032-serial-liteuart-Use-port-lock-wrappers.patch -0033-serial-lpc32xx_hs-Use-port-lock-wrappers.patch -0034-serial-ma35d1-Use-port-lock-wrappers.patch -0035-serial-mcf-Use-port-lock-wrappers.patch -0036-serial-men_z135_uart-Use-port-lock-wrappers.patch -0037-serial-meson-Use-port-lock-wrappers.patch -0038-serial-milbeaut_usio-Use-port-lock-wrappers.patch -0039-serial-mpc52xx-Use-port-lock-wrappers.patch -0040-serial-mps2-uart-Use-port-lock-wrappers.patch -0041-serial-msm-Use-port-lock-wrappers.patch -0042-serial-mvebu-uart-Use-port-lock-wrappers.patch -0043-serial-omap-Use-port-lock-wrappers.patch -0044-serial-owl-Use-port-lock-wrappers.patch -0045-serial-pch-Use-port-lock-wrappers.patch -0046-serial-pic32-Use-port-lock-wrappers.patch -0047-serial-pmac_zilog-Use-port-lock-wrappers.patch -0048-serial-pxa-Use-port-lock-wrappers.patch -0049-serial-qcom-geni-Use-port-lock-wrappers.patch -0050-serial-rda-Use-port-lock-wrappers.patch -0051-serial-rp2-Use-port-lock-wrappers.patch -0052-serial-sa1100-Use-port-lock-wrappers.patch -0053-serial-samsung_tty-Use-port-lock-wrappers.patch -0054-serial-sb1250-duart-Use-port-lock-wrappers.patch -0056-serial-tegra-Use-port-lock-wrappers.patch -0057-serial-core-Use-port-lock-wrappers.patch -0058-serial-mctrl_gpio-Use-port-lock-wrappers.patch -0059-serial-txx9-Use-port-lock-wrappers.patch -0060-serial-sh-sci-Use-port-lock-wrappers.patch -0061-serial-sifive-Use-port-lock-wrappers.patch -0062-serial-sprd-Use-port-lock-wrappers.patch -0063-serial-st-asc-Use-port-lock-wrappers.patch -0064-serial-stm32-Use-port-lock-wrappers.patch -0065-serial-sunhv-Use-port-lock-wrappers.patch -0066-serial-sunplus-uart-Use-port-lock-wrappers.patch -0067-serial-sunsab-Use-port-lock-wrappers.patch -0068-serial-sunsu-Use-port-lock-wrappers.patch -0069-serial-sunzilog-Use-port-lock-wrappers.patch -0070-serial-timbuart-Use-port-lock-wrappers.patch -0071-serial-uartlite-Use-port-lock-wrappers.patch -0072-serial-ucc_uart-Use-port-lock-wrappers.patch -0073-serial-vt8500-Use-port-lock-wrappers.patch -0074-serial-xilinx_uartps-Use-port-lock-wrappers.patch -0075-printk-Add-non-BKL-nbcon-console-basic-infrastructur.patch -0076-printk-nbcon-Add-acquire-release-logic.patch -0077-printk-Make-static-printk-buffers-available-to-nbcon.patch -0078-printk-nbcon-Add-buffer-management.patch -0079-printk-nbcon-Add-ownership-state-functions.patch -0080-printk-nbcon-Add-sequence-handling.patch -0081-printk-nbcon-Add-emit-function-and-callback-function.patch -0082-printk-nbcon-Allow-drivers-to-mark-unsafe-regions-an.patch -0083-printk-fix-illegal-pbufs-access-for-CONFIG_PRINTK.patch -0084-printk-Reduce-pr_flush-pooling-time.patch -0085-printk-nbcon-Relocate-32bit-seq-macros.patch -0086-printk-Adjust-mapping-for-32bit-seq-macros.patch -0087-printk-Use-prb_first_seq-as-base-for-32bit-seq-macro.patch -0088-printk-ringbuffer-Do-not-skip-non-finalized-records-.patch -0089-printk-ringbuffer-Clarify-special-lpos-values.patch -0090-printk-For-suppress_panic_printk-check-for-other-CPU.patch -0091-printk-Add-this_cpu_in_panic.patch -0092-printk-ringbuffer-Cleanup-reader-terminology.patch -0093-printk-Wait-for-all-reserved-records-with-pr_flush.patch -0094-printk-ringbuffer-Skip-non-finalized-records-in-pani.patch -0095-printk-ringbuffer-Consider-committed-as-finalized-in.patch -0096-printk-Disable-passing-console-lock-owner-completely.patch -0097-printk-Avoid-non-panic-CPUs-writing-to-ringbuffer.patch -0098-panic-Flush-kernel-log-buffer-at-the-end.patch -0099-printk-Consider-nbcon-boot-consoles-on-seq-init.patch -0100-printk-Add-sparse-notation-to-console_srcu-locking.patch -0101-printk-nbcon-Ensure-ownership-release-on-failed-emit.patch -0102-printk-Check-printk_deferred_enter-_exit-usage.patch -0103-printk-nbcon-Implement-processing-in-port-lock-wrapp.patch -0104-printk-nbcon-Add-driver_enter-driver_exit-console-ca.patch -0105-printk-Make-console_is_usable-available-to-nbcon.patch -0106-printk-Let-console_is_usable-handle-nbcon.patch -0107-printk-Add-flags-argument-for-console_is_usable.patch -0108-printk-nbcon-Provide-function-to-flush-using-write_a.patch -0109-printk-Track-registered-boot-consoles.patch -0110-printk-nbcon-Use-nbcon-consoles-in-console_flush_all.patch -0111-printk-nbcon-Assign-priority-based-on-CPU-state.patch -0112-printk-nbcon-Add-unsafe-flushing-on-panic.patch -0113-printk-Avoid-console_lock-dance-if-no-legacy-or-boot.patch -0114-printk-Track-nbcon-consoles.patch -0115-printk-Coordinate-direct-printing-in-panic.patch -0116-printk-nbcon-Implement-emergency-sections.patch -0117-panic-Mark-emergency-section-in-warn.patch -0118-panic-Mark-emergency-section-in-oops.patch -0119-rcu-Mark-emergency-section-in-rcu-stalls.patch -0120-lockdep-Mark-emergency-section-in-lockdep-splats.patch -0121-printk-nbcon-Introduce-printing-kthreads.patch -0122-printk-Atomic-print-in-printk-context-on-shutdown.patch -0123-printk-nbcon-Add-context-to-console_is_usable.patch -0124-printk-nbcon-Add-printer-thread-wakeups.patch -0125-printk-nbcon-Stop-threads-on-shutdown-reboot.patch -0126-printk-nbcon-Start-printing-threads.patch -0127-proc-Add-nbcon-support-for-proc-consoles.patch -0128-tty-sysfs-Add-nbcon-support-for-active.patch -0129-printk-nbcon-Provide-function-to-reacquire-ownership.patch -0130-serial-core-Provide-low-level-functions-to-port-lock.patch -0131-serial-8250-Switch-to-nbcon-console.patch -0132-printk-Add-kthread-for-all-legacy-consoles.patch -0133-serial-8250-revert-drop-lockdep-annotation-from-seri.patch -0134-printk-Avoid-false-positive-lockdep-report-for-legac.patch +0001-printk-nbcon-Relocate-32bit-seq-macros.patch +0002-printk-Adjust-mapping-for-32bit-seq-macros.patch +0003-printk-Use-prb_first_seq-as-base-for-32bit-seq-macro.patch +0004-printk-ringbuffer-Do-not-skip-non-finalized-records-.patch +0005-printk-ringbuffer-Clarify-special-lpos-values.patch +0006-printk-For-suppress_panic_printk-check-for-other-CPU.patch +0007-printk-Add-this_cpu_in_panic.patch +0008-printk-ringbuffer-Cleanup-reader-terminology.patch +0009-printk-Wait-for-all-reserved-records-with-pr_flush.patch +0010-printk-ringbuffer-Skip-non-finalized-records-in-pani.patch +0011-printk-ringbuffer-Consider-committed-as-finalized-in.patch +0012-printk-Disable-passing-console-lock-owner-completely.patch +0013-printk-Avoid-non-panic-CPUs-writing-to-ringbuffer.patch +0014-panic-Flush-kernel-log-buffer-at-the-end.patch +0015-printk-Consider-nbcon-boot-consoles-on-seq-init.patch +0016-printk-Add-sparse-notation-to-console_srcu-locking.patch +0017-printk-nbcon-Ensure-ownership-release-on-failed-emit.patch +0018-printk-Check-printk_deferred_enter-_exit-usage.patch +0019-printk-nbcon-Implement-processing-in-port-lock-wrapp.patch +0020-printk-nbcon-Add-driver_enter-driver_exit-console-ca.patch +0021-printk-Make-console_is_usable-available-to-nbcon.patch +0022-printk-Let-console_is_usable-handle-nbcon.patch +0023-printk-Add-flags-argument-for-console_is_usable.patch +0024-printk-nbcon-Provide-function-to-flush-using-write_a.patch +0025-printk-Track-registered-boot-consoles.patch +0026-printk-nbcon-Use-nbcon-consoles-in-console_flush_all.patch +0027-printk-nbcon-Assign-priority-based-on-CPU-state.patch +0028-printk-nbcon-Add-unsafe-flushing-on-panic.patch +0029-printk-Avoid-console_lock-dance-if-no-legacy-or-boot.patch +0030-printk-Track-nbcon-consoles.patch +0031-printk-Coordinate-direct-printing-in-panic.patch +0032-printk-nbcon-Implement-emergency-sections.patch +0033-panic-Mark-emergency-section-in-warn.patch +0034-panic-Mark-emergency-section-in-oops.patch +0035-rcu-Mark-emergency-section-in-rcu-stalls.patch +0036-lockdep-Mark-emergency-section-in-lockdep-splats.patch +0037-printk-nbcon-Introduce-printing-kthreads.patch +0038-printk-Atomic-print-in-printk-context-on-shutdown.patch +0039-printk-nbcon-Add-context-to-console_is_usable.patch +0040-printk-nbcon-Add-printer-thread-wakeups.patch +0041-printk-nbcon-Stop-threads-on-shutdown-reboot.patch +0042-printk-nbcon-Start-printing-threads.patch +0043-proc-Add-nbcon-support-for-proc-consoles.patch +0044-tty-sysfs-Add-nbcon-support-for-active.patch +0045-printk-nbcon-Provide-function-to-reacquire-ownership.patch +0046-serial-core-Provide-low-level-functions-to-port-lock.patch +0047-serial-8250-Switch-to-nbcon-console.patch +0048-printk-Add-kthread-for-all-legacy-consoles.patch +0049-serial-8250-revert-drop-lockdep-annotation-from-seri.patch +0050-printk-Avoid-false-positive-lockdep-report-for-legac.patch ########################################################################### # DRM: @@ -205,7 +106,6 @@ preempt-Put-preempt_enable-within-an-instrumentation.patch 0008-drm-i915-gt-Queue-and-wait-for-the-irq_work-item.patch 0009-drm-i915-gt-Use-spin_lock_irq-instead-of-local_irq_d.patch 0010-drm-i915-Drop-the-irqs_disabled-check.patch -drm-i915-Do-not-disable-preemption-for-resets.patch drm-i915-guc-Consider-also-RCU-depth-in-busy-loop.patch Revert-drm-i915-Depend-on-PREEMPT_RT.patch @@ -242,7 +142,6 @@ POWERPC__Allow_to_enable_RT.patch ########################################################################### # RISC-V ########################################################################### -#RISC-V-Probe-misaligned-access-speed-in-parallel.patch riscv-add-PREEMPT_AUTO-support.patch riscv-allow-to-enable-RT.patch diff --git a/debian/patches-rt/softirq-Use-a-dedicated-thread-for-timer-wakeups.patch b/debian/patches-rt/softirq-Use-a-dedicated-thread-for-timer-wakeups.patch index 949ff6da70..7d6eb399b5 100644 --- a/debian/patches-rt/softirq-Use-a-dedicated-thread-for-timer-wakeups.patch +++ b/debian/patches-rt/softirq-Use-a-dedicated-thread-for-timer-wakeups.patch @@ -1,7 +1,7 @@ From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Date: Wed, 1 Dec 2021 17:41:09 +0100 Subject: [PATCH] softirq: Use a dedicated thread for timer wakeups. -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz A timer/hrtimer softirq is raised in-IRQ context. With threaded interrupts enabled or on PREEMPT_RT this leads to waking the ksoftirqd diff --git a/debian/patches-rt/softirq-Wake-ktimers-thread-also-in-softirq.patch b/debian/patches-rt/softirq-Wake-ktimers-thread-also-in-softirq.patch index 21609fe207..23fe32ea39 100644 --- a/debian/patches-rt/softirq-Wake-ktimers-thread-also-in-softirq.patch +++ b/debian/patches-rt/softirq-Wake-ktimers-thread-also-in-softirq.patch @@ -1,7 +1,7 @@ From: Junxiao Chang <junxiao.chang@intel.com> Date: Mon, 20 Feb 2023 09:12:20 +0100 Subject: [PATCH] softirq: Wake ktimers thread also in softirq. -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz If the hrtimer is raised while a softirq is processed then it does not wake the corresponding ktimers thread. This is due to the optimisation in the diff --git a/debian/patches-rt/sysfs__Add__sys_kernel_realtime_entry.patch b/debian/patches-rt/sysfs__Add__sys_kernel_realtime_entry.patch index 2e6928846b..56e82149df 100644 --- a/debian/patches-rt/sysfs__Add__sys_kernel_realtime_entry.patch +++ b/debian/patches-rt/sysfs__Add__sys_kernel_realtime_entry.patch @@ -1,7 +1,7 @@ Subject: sysfs: Add /sys/kernel/realtime entry From: Clark Williams <williams@redhat.com> Date: Sat Jul 30 21:55:53 2011 -0500 -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz From: Clark Williams <williams@redhat.com> diff --git a/debian/patches-rt/tick-Fix-timer-storm-since-introduction-of-timersd.patch b/debian/patches-rt/tick-Fix-timer-storm-since-introduction-of-timersd.patch index 874c7b3b3d..c04b555691 100644 --- a/debian/patches-rt/tick-Fix-timer-storm-since-introduction-of-timersd.patch +++ b/debian/patches-rt/tick-Fix-timer-storm-since-introduction-of-timersd.patch @@ -1,7 +1,7 @@ From: Frederic Weisbecker <frederic@kernel.org> Date: Tue, 5 Apr 2022 03:07:52 +0200 Subject: [PATCH] tick: Fix timer storm since introduction of timersd -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz If timers are pending while the tick is reprogrammed on nohz_mode, the next expiry is not armed to fire now, it is delayed one jiffy forward @@ -95,7 +95,7 @@ Link: https://lkml.kernel.org/r/20220405010752.1347437-2-frederic@kernel.org { --- a/kernel/time/tick-sched.c +++ b/kernel/time/tick-sched.c -@@ -795,7 +795,7 @@ static void tick_nohz_restart(struct tic +@@ -796,7 +796,7 @@ static void tick_nohz_restart(struct tic static inline bool local_timer_softirq_pending(void) { diff --git a/debian/patches-rt/tty_serial_omap__Make_the_locking_RT_aware.patch b/debian/patches-rt/tty_serial_omap__Make_the_locking_RT_aware.patch index 89d7447401..fd1f459b75 100644 --- a/debian/patches-rt/tty_serial_omap__Make_the_locking_RT_aware.patch +++ b/debian/patches-rt/tty_serial_omap__Make_the_locking_RT_aware.patch @@ -1,7 +1,7 @@ Subject: tty/serial/omap: Make the locking RT aware From: Thomas Gleixner <tglx@linutronix.de> Date: Thu Jul 28 13:32:57 2011 +0200 -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz From: Thomas Gleixner <tglx@linutronix.de> diff --git a/debian/patches-rt/tty_serial_pl011__Make_the_locking_work_on_RT.patch b/debian/patches-rt/tty_serial_pl011__Make_the_locking_work_on_RT.patch index 32ff14fba0..c9a40db398 100644 --- a/debian/patches-rt/tty_serial_pl011__Make_the_locking_work_on_RT.patch +++ b/debian/patches-rt/tty_serial_pl011__Make_the_locking_work_on_RT.patch @@ -1,7 +1,7 @@ Subject: tty/serial/pl011: Make the locking work on RT From: Thomas Gleixner <tglx@linutronix.de> Date: Tue Jan 8 21:36:51 2013 +0100 -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz From: Thomas Gleixner <tglx@linutronix.de> diff --git a/debian/patches-rt/x86__Allow_to_enable_RT.patch b/debian/patches-rt/x86__Allow_to_enable_RT.patch index 3fa433084a..a0c01233f8 100644 --- a/debian/patches-rt/x86__Allow_to_enable_RT.patch +++ b/debian/patches-rt/x86__Allow_to_enable_RT.patch @@ -1,7 +1,7 @@ Subject: x86: Allow to enable RT From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Date: Wed Aug 7 18:15:38 2019 +0200 -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> @@ -22,6 +22,6 @@ Signed-off-by: Thomas Gleixner <tglx@linutronix.de> select ARCH_SUPPORTS_INT128 if CC_HAS_INT128 select ARCH_SUPPORTS_PER_VMA_LOCK + select ARCH_SUPPORTS_RT - select ARCH_USE_CMPXCHG_LOCKREF select HAVE_ARCH_SOFT_DIRTY select MODULES_USE_ELF_RELA + select NEED_DMA_MAP_STATE diff --git a/debian/patches-rt/x86__Enable_RT_also_on_32bit.patch b/debian/patches-rt/x86__Enable_RT_also_on_32bit.patch index 3092b41acb..6b6f7e84af 100644 --- a/debian/patches-rt/x86__Enable_RT_also_on_32bit.patch +++ b/debian/patches-rt/x86__Enable_RT_also_on_32bit.patch @@ -1,7 +1,7 @@ Subject: x86: Enable RT also on 32bit From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Date: Thu Nov 7 17:49:20 2019 +0100 -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> @@ -15,19 +15,19 @@ Signed-off-by: Thomas Gleixner <tglx@linutronix.de> --- --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig -@@ -28,7 +28,6 @@ config X86_64 +@@ -27,7 +27,6 @@ config X86_64 + # Options that are inherently 64-bit kernel only: select ARCH_HAS_GIGANTIC_PAGE select ARCH_SUPPORTS_INT128 if CC_HAS_INT128 - select ARCH_SUPPORTS_PER_VMA_LOCK -- select ARCH_SUPPORTS_RT - select ARCH_USE_CMPXCHG_LOCKREF +- select ARCH_SUPPORTS_PER_VMA_LOCK + select ARCH_SUPPORTS_RT select HAVE_ARCH_SOFT_DIRTY select MODULES_USE_ELF_RELA -@@ -118,6 +117,7 @@ config X86 +@@ -117,6 +116,7 @@ config X86 select ARCH_USES_CFI_TRAPS if X86_64 && CFI_CLANG select ARCH_SUPPORTS_LTO_CLANG select ARCH_SUPPORTS_LTO_CLANG_THIN + select ARCH_SUPPORTS_RT select ARCH_USE_BUILTIN_BSWAP + select ARCH_USE_CMPXCHG_LOCKREF if X86_CMPXCHG64 select ARCH_USE_MEMTEST - select ARCH_USE_QUEUED_RWLOCKS diff --git a/debian/patches-rt/zram-Replace-bit-spinlocks-with-spinlock_t-for-PREEM.patch b/debian/patches-rt/zram-Replace-bit-spinlocks-with-spinlock_t-for-PREEM.patch index 0ccb2d87cc..24895a4fb5 100644 --- a/debian/patches-rt/zram-Replace-bit-spinlocks-with-spinlock_t-for-PREEM.patch +++ b/debian/patches-rt/zram-Replace-bit-spinlocks-with-spinlock_t-for-PREEM.patch @@ -1,7 +1,7 @@ From: Mike Galbraith <umgwanakikbuti@gmail.com> Date: Thu, 31 Mar 2016 04:08:28 +0200 Subject: [PATCH] zram: Replace bit spinlocks with spinlock_t for PREEMPT_RT. -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6.7-rt18.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rt6.tar.xz The bit spinlock disables preemption. The spinlock_t lock becomes a sleeping lock on PREEMPT_RT and it can not be acquired in this context. In this locked @@ -72,7 +72,7 @@ Link: https://lore.kernel.org/20230323161830.jFbWCosd@linutronix.de static inline bool init_done(struct zram *zram) { -@@ -1245,6 +1281,7 @@ static bool zram_meta_alloc(struct zram +@@ -1242,6 +1278,7 @@ static bool zram_meta_alloc(struct zram if (!huge_class_size) huge_class_size = zs_huge_class_size(zram->mem_pool); diff --git a/debian/patches/bugfix/all/firmware-remove-redundant-log-messages-from-drivers.patch b/debian/patches/bugfix/all/firmware-remove-redundant-log-messages-from-drivers.patch index e6eec33dd7..7f5da028c5 100644 --- a/debian/patches/bugfix/all/firmware-remove-redundant-log-messages-from-drivers.patch +++ b/debian/patches/bugfix/all/firmware-remove-redundant-log-messages-from-drivers.patch @@ -11,7 +11,7 @@ upstream submission. --- a/arch/x86/kernel/cpu/microcode/amd.c +++ b/arch/x86/kernel/cpu/microcode/amd.c -@@ -912,10 +912,8 @@ static enum ucode_state request_microcod +@@ -894,10 +894,8 @@ static enum ucode_state request_microcod if (c->x86 >= 0x15) snprintf(fw_name, sizeof(fw_name), "amd-ucode/microcode_amd_fam%.2xh.bin", c->x86); @@ -22,7 +22,7 @@ upstream submission. - } ret = UCODE_ERROR; - if (!verify_container(fw->data, fw->size, false)) + if (!verify_container(fw->data, fw->size)) --- a/drivers/atm/fore200e.c +++ b/drivers/atm/fore200e.c @@ -2398,10 +2398,9 @@ static int fore200e_load_and_start_fw(st @@ -499,7 +499,7 @@ upstream submission. --- a/drivers/media/pci/bt8xx/bttv-cards.c +++ b/drivers/media/pci/bt8xx/bttv-cards.c -@@ -3901,10 +3901,8 @@ static int pvr_boot(struct bttv *btv) +@@ -3902,10 +3902,8 @@ static int pvr_boot(struct bttv *btv) int rc; rc = request_firmware(&fw_entry, "hcwamc.rbf", &btv->c.pci->dev); @@ -712,7 +712,7 @@ upstream submission. } --- a/drivers/media/usb/cx231xx/cx231xx-417.c +++ b/drivers/media/usb/cx231xx/cx231xx-417.c -@@ -983,11 +983,6 @@ static int cx231xx_load_firmware(struct +@@ -982,11 +982,6 @@ static int cx231xx_load_firmware(struct dev->dev); if (retval != 0) { @@ -1090,7 +1090,7 @@ upstream submission. if (bp->mips_firmware->size < sizeof(*mips_fw) || --- a/drivers/net/ethernet/broadcom/tg3.c +++ b/drivers/net/ethernet/broadcom/tg3.c -@@ -11394,11 +11394,8 @@ static int tg3_request_firmware(struct t +@@ -11474,11 +11474,8 @@ static int tg3_request_firmware(struct t { const struct tg3_firmware_hdr *fw_hdr; @@ -1281,7 +1281,7 @@ upstream submission. fwh = (struct at76_fw_header *)(fwe->fw->data); --- a/drivers/net/wireless/atmel/atmel.c +++ b/drivers/net/wireless/atmel/atmel.c -@@ -3892,12 +3892,8 @@ static int reset_atmel_card(struct net_d +@@ -3820,12 +3820,8 @@ static int reset_atmel_card(struct net_d strcpy(priv->firmware_id, "atmel_at76c502.bin"); } err = request_firmware(&fw_entry, priv->firmware_id, priv->sys_dev); @@ -1359,7 +1359,7 @@ upstream submission. } --- a/drivers/net/wireless/intel/ipw2x00/ipw2100.c +++ b/drivers/net/wireless/intel/ipw2x00/ipw2100.c -@@ -8359,12 +8359,8 @@ static int ipw2100_get_firmware(struct i +@@ -8354,12 +8354,8 @@ static int ipw2100_get_firmware(struct i rc = request_firmware(&fw->fw_entry, fw_name, &priv->pci_dev->dev); @@ -1399,7 +1399,7 @@ upstream submission. else --- a/drivers/net/wireless/intel/iwlwifi/iwl-drv.c +++ b/drivers/net/wireless/intel/iwlwifi/iwl-drv.c -@@ -241,8 +241,6 @@ static int iwl_request_firmware(struct i +@@ -249,8 +249,6 @@ static int iwl_request_firmware(struct i drv->fw_index--; if (drv->fw_index < cfg->ucode_api_min) { @@ -1744,7 +1744,7 @@ upstream submission. } --- a/drivers/scsi/ipr.c +++ b/drivers/scsi/ipr.c -@@ -4009,10 +4009,8 @@ static ssize_t ipr_store_update_fw(struc +@@ -4013,10 +4013,8 @@ static ssize_t ipr_store_update_fw(struc if (endline) *endline = '\0'; @@ -1770,7 +1770,7 @@ upstream submission. } --- a/drivers/scsi/qla1280.c +++ b/drivers/scsi/qla1280.c -@@ -1504,8 +1504,6 @@ qla1280_request_firmware(struct scsi_qla +@@ -1506,8 +1506,6 @@ qla1280_request_firmware(struct scsi_qla err = request_firmware(&fw, fwname, &ha->pdev->dev); if (err) { @@ -1819,7 +1819,7 @@ upstream submission. if (qla82xx_validate_firmware_blob(vha, --- a/drivers/scsi/qla2xxx/qla_os.c +++ b/drivers/scsi/qla2xxx/qla_os.c -@@ -7696,8 +7696,6 @@ qla2x00_request_firmware(scsi_qla_host_t +@@ -7697,8 +7697,6 @@ qla2x00_request_firmware(scsi_qla_host_t goto out; if (request_firmware(&blob->fw, blob->name, &ha->pdev->dev)) { @@ -1843,20 +1843,6 @@ upstream submission. if (fw->size % 2) { printk(KERN_ERR "Bogus length %zu in image \"%s\"\n", fw->size, fwname); ---- a/drivers/staging/rtl8192u/r819xU_firmware.c -+++ b/drivers/staging/rtl8192u/r819xU_firmware.c -@@ -240,10 +240,8 @@ bool init_firmware(struct net_device *de - */ - if (rst_opt == OPT_SYSTEM_RESET) { - rc = request_firmware(&fw_entry, fw_name[init_step], &priv->udev->dev); -- if (rc < 0) { -- RT_TRACE(COMP_ERR, "request firmware fail!\n"); -+ if (rc) - goto download_firmware_fail; -- } - - if (fw_entry->size > sizeof(pfirmware->firmware_buf)) { - RT_TRACE(COMP_ERR, "img file size exceed the container buffer fail!\n"); --- a/drivers/staging/rtl8712/hal_init.c +++ b/drivers/staging/rtl8712/hal_init.c @@ -72,8 +72,6 @@ int rtl871x_load_fw(struct _adapter *pad @@ -2280,7 +2266,7 @@ upstream submission. snd_emu1010_fpga_read(emu, EMU_HANA_ID, ®); --- a/sound/pci/hda/hda_intel.c +++ b/sound/pci/hda/hda_intel.c -@@ -2040,8 +2040,6 @@ static void azx_firmware_cb(const struct +@@ -2034,8 +2034,6 @@ static void azx_firmware_cb(const struct if (fw) chip->fw = fw; diff --git a/debian/patches/debian/Revert-docs-kernel_feat.py-fix-potential-command-inj.patch b/debian/patches/debian/Revert-docs-kernel_feat.py-fix-potential-command-inj.patch deleted file mode 100644 index 7bfaf99b47..0000000000 --- a/debian/patches/debian/Revert-docs-kernel_feat.py-fix-potential-command-inj.patch +++ /dev/null @@ -1,295 +0,0 @@ -From 4f86519c560fd00b2ab58721cf2943e07107437d Mon Sep 17 00:00:00 2001 -From: Salvatore Bonaccorso <carnil@debian.org> -Date: Sun, 4 Feb 2024 21:02:11 +0100 -Subject: [PATCH 2/2] Revert "docs: kernel_feat.py: fix potential command - injection" - -This reverts commit e961f8c6966abbd486ff87549e29e53f3c69b685. ---- - Documentation/admin-guide/features.rst | 2 +- - Documentation/arch/arc/features.rst | 2 +- - Documentation/arch/arm/features.rst | 2 +- - Documentation/arch/arm64/features.rst | 2 +- - Documentation/arch/loongarch/features.rst | 2 +- - Documentation/arch/m68k/features.rst | 2 +- - Documentation/arch/mips/features.rst | 2 +- - Documentation/arch/nios2/features.rst | 2 +- - Documentation/arch/openrisc/features.rst | 2 +- - Documentation/arch/parisc/features.rst | 2 +- - Documentation/arch/s390/features.rst | 2 +- - Documentation/arch/sh/features.rst | 2 +- - Documentation/arch/sparc/features.rst | 2 +- - Documentation/arch/x86/features.rst | 2 +- - Documentation/arch/xtensa/features.rst | 2 +- - Documentation/powerpc/features.rst | 2 +- - Documentation/riscv/features.rst | 2 +- - Documentation/sphinx/kernel_feat.py | 55 +++++++++++++++---- - .../zh_CN/arch/loongarch/features.rst | 2 +- - .../translations/zh_CN/arch/mips/features.rst | 2 +- - 20 files changed, 63 insertions(+), 30 deletions(-) - -diff --git a/Documentation/admin-guide/features.rst b/Documentation/admin-guide/features.rst -index 7651eca38227..8c167082a84f 100644 ---- a/Documentation/admin-guide/features.rst -+++ b/Documentation/admin-guide/features.rst -@@ -1,3 +1,3 @@ - .. SPDX-License-Identifier: GPL-2.0 - --.. kernel-feat:: features -+.. kernel-feat:: $srctree/Documentation/features -diff --git a/Documentation/arch/arc/features.rst b/Documentation/arch/arc/features.rst -index 49ff446ff744..b793583d688a 100644 ---- a/Documentation/arch/arc/features.rst -+++ b/Documentation/arch/arc/features.rst -@@ -1,3 +1,3 @@ - .. SPDX-License-Identifier: GPL-2.0 - --.. kernel-feat:: features arc -+.. kernel-feat:: $srctree/Documentation/features arc -diff --git a/Documentation/arch/arm/features.rst b/Documentation/arch/arm/features.rst -index 0e76aaf68eca..7414ec03dd15 100644 ---- a/Documentation/arch/arm/features.rst -+++ b/Documentation/arch/arm/features.rst -@@ -1,3 +1,3 @@ - .. SPDX-License-Identifier: GPL-2.0 - --.. kernel-feat:: features arm -+.. kernel-feat:: $srctree/Documentation/features arm -diff --git a/Documentation/arch/arm64/features.rst b/Documentation/arch/arm64/features.rst -index 03321f4309d0..dfa4cb3cd3ef 100644 ---- a/Documentation/arch/arm64/features.rst -+++ b/Documentation/arch/arm64/features.rst -@@ -1,3 +1,3 @@ - .. SPDX-License-Identifier: GPL-2.0 - --.. kernel-feat:: features arm64 -+.. kernel-feat:: $srctree/Documentation/features arm64 -diff --git a/Documentation/arch/loongarch/features.rst b/Documentation/arch/loongarch/features.rst -index 009f44c7951f..ebacade3ea45 100644 ---- a/Documentation/arch/loongarch/features.rst -+++ b/Documentation/arch/loongarch/features.rst -@@ -1,3 +1,3 @@ - .. SPDX-License-Identifier: GPL-2.0 - --.. kernel-feat:: features loongarch -+.. kernel-feat:: $srctree/Documentation/features loongarch -diff --git a/Documentation/arch/m68k/features.rst b/Documentation/arch/m68k/features.rst -index de7f0ccf7fc8..5107a2119472 100644 ---- a/Documentation/arch/m68k/features.rst -+++ b/Documentation/arch/m68k/features.rst -@@ -1,3 +1,3 @@ - .. SPDX-License-Identifier: GPL-2.0 - --.. kernel-feat:: features m68k -+.. kernel-feat:: $srctree/Documentation/features m68k -diff --git a/Documentation/arch/mips/features.rst b/Documentation/arch/mips/features.rst -index 6e0ffe3e7354..1973d729b29a 100644 ---- a/Documentation/arch/mips/features.rst -+++ b/Documentation/arch/mips/features.rst -@@ -1,3 +1,3 @@ - .. SPDX-License-Identifier: GPL-2.0 - --.. kernel-feat:: features mips -+.. kernel-feat:: $srctree/Documentation/features mips -diff --git a/Documentation/arch/nios2/features.rst b/Documentation/arch/nios2/features.rst -index 89913810ccb5..8449e63f69b2 100644 ---- a/Documentation/arch/nios2/features.rst -+++ b/Documentation/arch/nios2/features.rst -@@ -1,3 +1,3 @@ - .. SPDX-License-Identifier: GPL-2.0 - --.. kernel-feat:: features nios2 -+.. kernel-feat:: $srctree/Documentation/features nios2 -diff --git a/Documentation/arch/openrisc/features.rst b/Documentation/arch/openrisc/features.rst -index bae2e25adfd6..3f7c40d219f2 100644 ---- a/Documentation/arch/openrisc/features.rst -+++ b/Documentation/arch/openrisc/features.rst -@@ -1,3 +1,3 @@ - .. SPDX-License-Identifier: GPL-2.0 - --.. kernel-feat:: features openrisc -+.. kernel-feat:: $srctree/Documentation/features openrisc -diff --git a/Documentation/arch/parisc/features.rst b/Documentation/arch/parisc/features.rst -index b3aa4d243b93..501d7c450037 100644 ---- a/Documentation/arch/parisc/features.rst -+++ b/Documentation/arch/parisc/features.rst -@@ -1,3 +1,3 @@ - .. SPDX-License-Identifier: GPL-2.0 - --.. kernel-feat:: features parisc -+.. kernel-feat:: $srctree/Documentation/features parisc -diff --git a/Documentation/arch/s390/features.rst b/Documentation/arch/s390/features.rst -index 2883dc950681..57c296a9d8f3 100644 ---- a/Documentation/arch/s390/features.rst -+++ b/Documentation/arch/s390/features.rst -@@ -1,3 +1,3 @@ - .. SPDX-License-Identifier: GPL-2.0 - --.. kernel-feat:: features s390 -+.. kernel-feat:: $srctree/Documentation/features s390 -diff --git a/Documentation/arch/sh/features.rst b/Documentation/arch/sh/features.rst -index fae48fe81e9b..f722af3b6c99 100644 ---- a/Documentation/arch/sh/features.rst -+++ b/Documentation/arch/sh/features.rst -@@ -1,3 +1,3 @@ - .. SPDX-License-Identifier: GPL-2.0 - --.. kernel-feat:: features sh -+.. kernel-feat:: $srctree/Documentation/features sh -diff --git a/Documentation/arch/sparc/features.rst b/Documentation/arch/sparc/features.rst -index 96835b6d598a..c0c92468b0fe 100644 ---- a/Documentation/arch/sparc/features.rst -+++ b/Documentation/arch/sparc/features.rst -@@ -1,3 +1,3 @@ - .. SPDX-License-Identifier: GPL-2.0 - --.. kernel-feat:: features sparc -+.. kernel-feat:: $srctree/Documentation/features sparc -diff --git a/Documentation/arch/x86/features.rst b/Documentation/arch/x86/features.rst -index a33616346a38..b663f15053ce 100644 ---- a/Documentation/arch/x86/features.rst -+++ b/Documentation/arch/x86/features.rst -@@ -1,3 +1,3 @@ - .. SPDX-License-Identifier: GPL-2.0 - --.. kernel-feat:: features x86 -+.. kernel-feat:: $srctree/Documentation/features x86 -diff --git a/Documentation/arch/xtensa/features.rst b/Documentation/arch/xtensa/features.rst -index 28dcce1759be..6b92c7bfa19d 100644 ---- a/Documentation/arch/xtensa/features.rst -+++ b/Documentation/arch/xtensa/features.rst -@@ -1,3 +1,3 @@ - .. SPDX-License-Identifier: GPL-2.0 - --.. kernel-feat:: features xtensa -+.. kernel-feat:: $srctree/Documentation/features xtensa -diff --git a/Documentation/powerpc/features.rst b/Documentation/powerpc/features.rst -index ee4b95e04202..aeae73df86b0 100644 ---- a/Documentation/powerpc/features.rst -+++ b/Documentation/powerpc/features.rst -@@ -1,3 +1,3 @@ - .. SPDX-License-Identifier: GPL-2.0 - --.. kernel-feat:: features powerpc -+.. kernel-feat:: $srctree/Documentation/features powerpc -diff --git a/Documentation/riscv/features.rst b/Documentation/riscv/features.rst -index 36e90144adab..c70ef6ac2368 100644 ---- a/Documentation/riscv/features.rst -+++ b/Documentation/riscv/features.rst -@@ -1,3 +1,3 @@ - .. SPDX-License-Identifier: GPL-2.0 - --.. kernel-feat:: features riscv -+.. kernel-feat:: $srctree/Documentation/features riscv -diff --git a/Documentation/sphinx/kernel_feat.py b/Documentation/sphinx/kernel_feat.py -index bdfaa3e4b202..27b701ed3681 100644 ---- a/Documentation/sphinx/kernel_feat.py -+++ b/Documentation/sphinx/kernel_feat.py -@@ -37,6 +37,8 @@ import re - import subprocess - import sys - -+from os import path -+ - from docutils import nodes, statemachine - from docutils.statemachine import ViewList - from docutils.parsers.rst import directives, Directive -@@ -74,26 +76,33 @@ class KernelFeat(Directive): - self.state.document.settings.env.app.warn(message, prefix="") - - def run(self): -+ - doc = self.state.document - if not doc.settings.file_insertion_enabled: - raise self.warning("docutils: file insertion disabled") - - env = doc.settings.env -+ cwd = path.dirname(doc.current_source) -+ cmd = "get_feat.pl rest --enable-fname --dir " -+ cmd += self.arguments[0] -+ -+ if len(self.arguments) > 1: -+ cmd += " --arch " + self.arguments[1] - -- srctree = os.path.abspath(os.environ["srctree"]) -+ srctree = path.abspath(os.environ["srctree"]) - -- args = [ -- os.path.join(srctree, 'scripts/get_feat.pl'), -- 'rest', -- '--enable-fname', -- '--dir', -- os.path.join(srctree, 'Documentation', self.arguments[0]), -- ] -+ fname = cmd - -- if len(self.arguments) > 1: -- args.extend(['--arch', self.arguments[1]]) -+ # extend PATH with $(srctree)/scripts -+ path_env = os.pathsep.join([ -+ srctree + os.sep + "scripts", -+ os.environ["PATH"] -+ ]) -+ shell_env = os.environ.copy() -+ shell_env["PATH"] = path_env -+ shell_env["srctree"] = srctree - -- lines = subprocess.check_output(args, cwd=os.path.dirname(doc.current_source)).decode('utf-8') -+ lines = self.runCmd(cmd, shell=True, cwd=cwd, env=shell_env) - - line_regex = re.compile("^\.\. FILE (\S+)$") - -@@ -112,6 +121,30 @@ class KernelFeat(Directive): - nodeList = self.nestedParse(out_lines, fname) - return nodeList - -+ def runCmd(self, cmd, **kwargs): -+ u"""Run command ``cmd`` and return its stdout as unicode.""" -+ -+ try: -+ proc = subprocess.Popen( -+ cmd -+ , stdout = subprocess.PIPE -+ , stderr = subprocess.PIPE -+ , **kwargs -+ ) -+ out, err = proc.communicate() -+ -+ out, err = codecs.decode(out, 'utf-8'), codecs.decode(err, 'utf-8') -+ -+ if proc.returncode != 0: -+ raise self.severe( -+ u"command '%s' failed with return code %d" -+ % (cmd, proc.returncode) -+ ) -+ except OSError as exc: -+ raise self.severe(u"problems with '%s' directive: %s." -+ % (self.name, ErrorString(exc))) -+ return out -+ - def nestedParse(self, lines, fname): - content = ViewList() - node = nodes.section() -diff --git a/Documentation/translations/zh_CN/arch/loongarch/features.rst b/Documentation/translations/zh_CN/arch/loongarch/features.rst -index cec38dda8298..82bfac180bdc 100644 ---- a/Documentation/translations/zh_CN/arch/loongarch/features.rst -+++ b/Documentation/translations/zh_CN/arch/loongarch/features.rst -@@ -5,4 +5,4 @@ - :Original: Documentation/arch/loongarch/features.rst - :Translator: Huacai Chen <chenhuacai@loongson.cn> - --.. kernel-feat:: features loongarch -+.. kernel-feat:: $srctree/Documentation/features loongarch -diff --git a/Documentation/translations/zh_CN/arch/mips/features.rst b/Documentation/translations/zh_CN/arch/mips/features.rst -index 0d6df97db069..da1b956e4a40 100644 ---- a/Documentation/translations/zh_CN/arch/mips/features.rst -+++ b/Documentation/translations/zh_CN/arch/mips/features.rst -@@ -10,4 +10,4 @@ - - .. _cn_features: - --.. kernel-feat:: features mips -+.. kernel-feat:: $srctree/Documentation/features mips --- -2.43.0 - diff --git a/debian/patches/debian/add-sysctl-to-disallow-unprivileged-CLONE_NEWUSER-by-default.patch b/debian/patches/debian/add-sysctl-to-disallow-unprivileged-CLONE_NEWUSER-by-default.patch index 205510d6bf..32d158cc2a 100644 --- a/debian/patches/debian/add-sysctl-to-disallow-unprivileged-CLONE_NEWUSER-by-default.patch +++ b/debian/patches/debian/add-sysctl-to-disallow-unprivileged-CLONE_NEWUSER-by-default.patch @@ -18,7 +18,7 @@ Index: linux/kernel/fork.c =================================================================== --- linux.orig/kernel/fork.c +++ linux/kernel/fork.c -@@ -108,6 +108,11 @@ +@@ -110,6 +110,11 @@ #define CREATE_TRACE_POINTS #include <trace/events/task.h> @@ -30,7 +30,7 @@ Index: linux/kernel/fork.c /* * Minimum number of threads to boot the kernel -@@ -2008,6 +2013,10 @@ static __latent_entropy struct task_stru +@@ -2265,6 +2270,10 @@ static __latent_entropy struct task_stru if ((clone_flags & (CLONE_NEWUSER|CLONE_FS)) == (CLONE_NEWUSER|CLONE_FS)) return ERR_PTR(-EINVAL); @@ -41,7 +41,7 @@ Index: linux/kernel/fork.c /* * Thread groups must share signals as well, and detached threads * can only be started up within the thread group. -@@ -3166,6 +3175,12 @@ int ksys_unshare(unsigned long unshare_f +@@ -3411,6 +3420,12 @@ int ksys_unshare(unsigned long unshare_f if (unshare_flags & CLONE_NEWNS) unshare_flags |= CLONE_FS; @@ -58,7 +58,7 @@ Index: linux/kernel/sysctl.c =================================================================== --- linux.orig/kernel/sysctl.c +++ linux/kernel/sysctl.c -@@ -136,6 +136,10 @@ static enum sysctl_writes_mode sysctl_wr +@@ -135,6 +135,10 @@ static enum sysctl_writes_mode sysctl_wr int sysctl_legacy_va_layout; #endif @@ -69,7 +69,7 @@ Index: linux/kernel/sysctl.c #endif /* CONFIG_SYSCTL */ /* -@@ -1659,6 +1663,15 @@ static struct ctl_table kern_table[] = { +@@ -1623,6 +1627,15 @@ static struct ctl_table kern_table[] = { .mode = 0644, .proc_handler = proc_dointvec, }, @@ -96,6 +96,6 @@ Index: linux/kernel/user_namespace.c +/* sysctl */ +int unprivileged_userns_clone = 1; + - static struct kmem_cache *user_ns_cachep __read_mostly; + static struct kmem_cache *user_ns_cachep __ro_after_init; static DEFINE_MUTEX(userns_state_mutex); diff --git a/debian/patches/debian/dfsg/drivers-net-appletalk-cops.patch b/debian/patches/debian/dfsg/drivers-net-appletalk-cops.patch deleted file mode 100644 index 3bf7ca6b33..0000000000 --- a/debian/patches/debian/dfsg/drivers-net-appletalk-cops.patch +++ /dev/null @@ -1,55 +0,0 @@ -From: Frederik Schüler <fs@debian.org> -Date: Fri, 05 Jan 2007 15:55:24 +0000 -Subject: Add removal patches for: 3c359, smctr, keyspan, cops -Forwarded: not-needed - ---- - drivers/net/appletalk/Kconfig | 26 -------------------------- - drivers/net/appletalk/Makefile | 1 - - 2 files changed, 27 deletions(-) - ---- a/drivers/net/appletalk/Kconfig -+++ b/drivers/net/appletalk/Kconfig -@@ -39,35 +39,6 @@ config DEV_APPLETALK - connect to the AppleTalk network, say Y. - - --config COPS -- tristate "COPS LocalTalk PC support" -- depends on DEV_APPLETALK && ISA -- depends on NETDEVICES -- select NETDEV_LEGACY_INIT -- help -- This allows you to use COPS AppleTalk cards to connect to LocalTalk -- networks. You also need version 1.3.3 or later of the netatalk -- package. This driver is experimental, which means that it may not -- work. This driver will only work if you choose "AppleTalk DDP" -- networking support, above. -- Please read the file -- <file:Documentation/networking/device_drivers/appletalk/cops.rst>. -- --config COPS_DAYNA -- bool "Dayna firmware support" -- depends on COPS -- help -- Support COPS compatible cards with Dayna style firmware (Dayna -- DL2000/ Daynatalk/PC (half length), COPS LT-95, Farallon PhoneNET PC -- III, Farallon PhoneNET PC II). -- --config COPS_TANGENT -- bool "Tangent firmware support" -- depends on COPS -- help -- Support COPS compatible cards with Tangent style firmware (Tangent -- ATB_II, Novell NL-1000, Daystar Digital LT-200. -- - config IPDDP - tristate "Appletalk-IP driver support" - depends on DEV_APPLETALK && ATALK ---- a/drivers/net/appletalk/Makefile -+++ b/drivers/net/appletalk/Makefile -@@ -4,4 +4,3 @@ - # - - obj-$(CONFIG_IPDDP) += ipddp.o --obj-$(CONFIG_COPS) += cops.o diff --git a/debian/patches/debian/dfsg/video-remove-nvidiafb-and-rivafb.patch b/debian/patches/debian/dfsg/video-remove-nvidiafb-and-rivafb.patch index cbef215c16..5f1258c910 100644 --- a/debian/patches/debian/dfsg/video-remove-nvidiafb-and-rivafb.patch +++ b/debian/patches/debian/dfsg/video-remove-nvidiafb-and-rivafb.patch @@ -15,7 +15,7 @@ probably discontinued 10 years ago. --- --- a/drivers/video/fbdev/Kconfig +++ b/drivers/video/fbdev/Kconfig -@@ -882,101 +882,6 @@ config FB_ATMEL +@@ -690,102 +690,6 @@ config FB_ATMEL help This enables support for the AT91 LCD Controller. @@ -23,10 +23,10 @@ probably discontinued 10 years ago. - tristate "nVidia Framebuffer Support" - depends on FB && PCI - select FB_BACKLIGHT if FB_NVIDIA_BACKLIGHT -- select FB_MODE_HELPERS - select FB_CFB_FILLRECT - select FB_CFB_COPYAREA - select FB_CFB_IMAGEBLIT +- select FB_IOMEM_FOPS - select BITREVERSE - select VGASTATE - select VIDEO_NOMODESET @@ -71,10 +71,11 @@ probably discontinued 10 years ago. - tristate "nVidia Riva support" - depends on FB && PCI - select FB_BACKLIGHT if FB_RIVA_BACKLIGHT -- select FB_MODE_HELPERS - select FB_CFB_FILLRECT - select FB_CFB_COPYAREA - select FB_CFB_IMAGEBLIT +- select FB_IOMEM_FOPS +- select FB_MODE_HELPERS - select BITREVERSE - select VGASTATE - select VIDEO_NOMODESET @@ -119,7 +120,7 @@ probably discontinued 10 years ago. depends on FB && PCI --- a/drivers/video/fbdev/Makefile +++ b/drivers/video/fbdev/Makefile -@@ -21,8 +21,6 @@ obj-$(CONFIG_FB_PM3) += pm3fb.o +@@ -22,8 +22,6 @@ obj-$(CONFIG_FB_PM3) += pm3fb.o obj-$(CONFIG_FB_I740) += i740fb.o obj-$(CONFIG_FB_MATROX) += matrox/ diff --git a/debian/patches/debian/gitignore.patch b/debian/patches/debian/gitignore.patch index 4be8009d88..3f7334b812 100644 --- a/debian/patches/debian/gitignore.patch +++ b/debian/patches/debian/gitignore.patch @@ -9,8 +9,8 @@ Index: linux/.gitignore =================================================================== --- linux.orig/.gitignore +++ linux/.gitignore -@@ -77,11 +77,6 @@ modules.order - /kernel.spec +@@ -76,11 +76,6 @@ modules.order + # /rpmbuild/ -# @@ -21,7 +21,7 @@ Index: linux/.gitignore # # Snap directory (make snap-pkg) # -@@ -92,18 +87,6 @@ modules.order +@@ -91,18 +86,6 @@ modules.order # /tar-install/ @@ -40,7 +40,7 @@ Index: linux/.gitignore # # Generated include files # -@@ -170,3 +153,10 @@ sphinx_*/ +@@ -169,3 +152,10 @@ sphinx_*/ # Rust analyzer configuration /rust-project.json diff --git a/debian/patches/debian/ia64-hardcode-arch-script-output.patch b/debian/patches/debian/ia64-hardcode-arch-script-output.patch deleted file mode 100644 index 79356c4900..0000000000 --- a/debian/patches/debian/ia64-hardcode-arch-script-output.patch +++ /dev/null @@ -1,71 +0,0 @@ -From: dann frazier <dannf@debian.org> -Subject: Hardcode arch script output -Date: Mon, 26 Mar 2007 16:30:51 -0600 -Bug-Debian: https://bugs.debian.org/392592 -Forwarded: not-needed - -Here's a patch that simply uses hardcoded definitions instead of -doing the dynamic tests that require architecture-specific scripts. - -I don't particularly like this approach because it restricts -portability and diverts from upstream. But, it is simpler, and this -really needs to be fixed somehow before etch (along with a rebuild of -linux-modules-extra-2.6), so I'm willing to live with it if my other -patch is deemed unacceptable. - -My primary concern is that, in the future, the output of these scripts -will change and we (or our successors) will either not notice or -forget to update the hardcoded values. - -Including the scripts in linux-kbuild will avoid this manual step -altogether, and allow for the possibility of other archs to provide -their own scripts in the future. ---- - arch/ia64/Makefile | 17 ++--------------- - 1 file changed, 2 insertions(+), 15 deletions(-) - ---- a/arch/ia64/Makefile -+++ b/arch/ia64/Makefile -@@ -26,16 +26,7 @@ cflags-y := -pipe $(EXTRA) -ffixed-r13 - - -frename-registers -fno-optimize-sibling-calls - KBUILD_CFLAGS_KERNEL := -mconstant-gp - --GAS_STATUS = $(shell $(srctree)/arch/ia64/scripts/check-gas "$(CC)" "$(OBJDUMP)") --KBUILD_CPPFLAGS += $(shell $(srctree)/arch/ia64/scripts/toolchain-flags "$(CC)" "$(OBJDUMP)" "$(READELF)") -- --ifeq ($(GAS_STATUS),buggy) --$(error Sorry, you need a newer version of the assember, one that is built from \ -- a source-tree that post-dates 18-Dec-2002. You can find a pre-compiled \ -- static binary of such an assembler at: \ -- \ -- ftp://ftp.hpl.hp.com/pub/linux-ia64/gas-030124.tar.gz) --endif -+KBUILD_CPPFLAGS += -DHAVE_WORKING_TEXT_ALIGN -DHAVE_MODEL_SMALL_ATTRIBUTE -DHAVE_SERIALIZE_DIRECTIVE - - quiet_cmd_gzip = GZIP $@ - cmd_gzip = cat $(real-prereqs) | $(KGZIP) -n -f -9 > $@ -@@ -52,7 +42,7 @@ drivers-y += arch/ia64/pci/ arch/ia64/ - - PHONY += compressed check - --all: compressed unwcheck -+all: compressed - - compressed: vmlinux.gz - -@@ -64,9 +54,6 @@ vmlinux.gz: vmlinux.bin FORCE - vmlinux.bin: vmlinux FORCE - $(call if_changed,objcopy) - --unwcheck: vmlinux -- -$(Q)READELF=$(READELF) $(PYTHON3) $(srctree)/arch/ia64/scripts/unwcheck.py $< -- - archheaders: - $(Q)$(MAKE) $(build)=arch/ia64/kernel/syscalls all - -@@ -78,5 +66,4 @@ install: vmlinux.gz - define archhelp - echo '* compressed - Build compressed kernel image' - echo ' install - Install compressed kernel image' -- echo '* unwcheck - Check vmlinux for invalid unwind info' - endef diff --git a/debian/patches/debian/kbuild-look-for-module.lds-under-arch-directory-too.patch b/debian/patches/debian/kbuild-look-for-module.lds-under-arch-directory-too.patch index eea69e4558..174199c4c7 100644 --- a/debian/patches/debian/kbuild-look-for-module.lds-under-arch-directory-too.patch +++ b/debian/patches/debian/kbuild-look-for-module.lds-under-arch-directory-too.patch @@ -22,26 +22,29 @@ Therefore, we move module.lds under the arch build directory in rules.real and change Makefile.modfinal to look for it in both places. --- -Index: linux/scripts/Makefile.modfinal -=================================================================== ---- linux.orig/scripts/Makefile.modfinal -+++ linux/scripts/Makefile.modfinal -@@ -29,12 +29,13 @@ quiet_cmd_cc_o_c = CC [M] $@ + scripts/Makefile.modfinal | 6 ++++-- + 1 file changed, 4 insertions(+), 2 deletions(-) + +diff --git a/scripts/Makefile.modfinal b/scripts/Makefile.modfinal +index 8568d256d6fb..415cff66539b 100644 +--- a/scripts/Makefile.modfinal ++++ b/scripts/Makefile.modfinal +@@ -28,11 +28,13 @@ quiet_cmd_cc_o_c = CC [M] $@ + %.mod.o: %.mod.c FORCE $(call if_changed_dep,cc_o_c) - ARCH_POSTLINK := $(wildcard $(srctree)/arch/$(SRCARCH)/Makefile.postlink) +ARCH_MODULE_LDS := $(word 1,$(wildcard scripts/module.lds arch/$(SRCARCH)/module.lds)) - ++ quiet_cmd_ld_ko_o = LD [M] $@ cmd_ld_ko_o += \ $(LD) -r $(KBUILD_LDFLAGS) \ $(KBUILD_LDFLAGS_MODULE) $(LDFLAGS_MODULE) \ -- -T scripts/module.lds -o $@ $(filter %.o, $^); \ -+ -T $(ARCH_MODULE_LDS) -o $@ $(filter %.o, $^); \ - $(if $(ARCH_POSTLINK), $(MAKE) -f $(ARCH_POSTLINK) $@, true) +- -T scripts/module.lds -o $@ $(filter %.o, $^) ++ -T $(ARCH_MODULE_LDS) -o $@ $(filter %.o, $^) quiet_cmd_btf_ko = BTF [M] $@ -@@ -57,7 +58,7 @@ if_changed_except = $(if $(call newer_pr + cmd_btf_ko = \ +@@ -52,7 +54,7 @@ if_changed_except = $(if $(call newer_prereqs_except,$(2))$(cmd-check), \ printf '%s\n' 'savedcmd_$@ := $(make-cmd)' > $(dot-target).cmd, @:) # Re-generate module BTFs if either module's .ko or vmlinux changed @@ -50,3 +53,5 @@ Index: linux/scripts/Makefile.modfinal +$(call if_changed_except,ld_ko_o,vmlinux) ifdef CONFIG_DEBUG_INFO_BTF_MODULES +$(if $(newer-prereqs),$(call cmd,btf_ko)) +-- +2.42.0 diff --git a/debian/patches/debian/version.patch b/debian/patches/debian/version.patch index 7f80a9dd0a..6cc13c7be4 100644 --- a/debian/patches/debian/version.patch +++ b/debian/patches/debian/version.patch @@ -8,12 +8,11 @@ $DISTRIBUTION_OFFICIAL_BUILD, $DISTRIBUTOR and $DISTRIBUTION_VERSION are set. --- Makefile | 15 ++++++++++++++- - arch/ia64/kernel/process.c | 5 +++-- arch/powerpc/kernel/process.c | 6 ++++-- arch/x86/um/sysrq_64.c | 6 ++++-- kernel/hung_task.c | 6 ++++-- lib/dump_stack.c | 6 ++++-- - 6 files changed, 33 insertions(+), 11 deletions(-) + 5 files changed, 30 insertions(+), 9 deletions(-) --- a/Makefile +++ b/Makefile @@ -54,28 +53,6 @@ are set. PHONY += headerdep headerdep: $(Q)find $(srctree)/include/ -name '*.h' | xargs --max-args 1 \ ---- a/arch/ia64/kernel/process.c -+++ b/arch/ia64/kernel/process.c -@@ -35,6 +35,7 @@ - #include <linux/utsname.h> - #include <linux/resume_user_mode.h> - #include <linux/rcupdate.h> -+#include <generated/package.h> - - #include <asm/cpu.h> - #include <asm/delay.h> -@@ -102,9 +103,9 @@ show_regs (struct pt_regs *regs) - print_modules(); - printk("\n"); - show_regs_print_info(KERN_DEFAULT); -- printk("psr : %016lx ifs : %016lx ip : [<%016lx>] %s (%s)\n", -+ printk("psr : %016lx ifs : %016lx ip : [<%016lx>] %s (%s%s)\n", - regs->cr_ipsr, regs->cr_ifs, ip, print_tainted(), -- init_utsname()->release); -+ init_utsname()->release, LINUX_PACKAGE_ID); - printk("ip is at %pS\n", (void *)ip); - printk("unat: %016lx pfs : %016lx rsc : %016lx\n", - regs->ar_unat, regs->ar_pfs, regs->ar_rsc); --- a/arch/powerpc/kernel/process.c +++ b/arch/powerpc/kernel/process.c @@ -38,6 +38,7 @@ diff --git a/debian/patches/features/all/driver-core-Emit-reason-for-pending-deferred-probe.patch b/debian/patches/features/all/driver-core-Emit-reason-for-pending-deferred-probe.patch new file mode 100644 index 0000000000..4c4be6b22a --- /dev/null +++ b/debian/patches/features/all/driver-core-Emit-reason-for-pending-deferred-probe.patch @@ -0,0 +1,35 @@ +From: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> +Date: Wed, 22 Nov 2023 10:33:33 +0100 +Subject: driver core: Emit reason for pending deferred probe +Origin: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit?id=7c41da586e9f45bf8842b4dca08681df8d586ebb + +Ending a boot log with + + platform 3f202000.mmc: deferred probe pending + +is already a nice hint about the problem. Sometimes there is a more +detailed error indicator available, add that to the output. + +Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> +Link: https://lore.kernel.org/r/20231122093332.274145-2-u.kleine-koenig@pengutronix.de +Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> +--- + drivers/base/dd.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/drivers/base/dd.c b/drivers/base/dd.c +index 0c3725c3eefa..85152537dbf1 100644 +--- a/drivers/base/dd.c ++++ b/drivers/base/dd.c +@@ -313,7 +313,7 @@ static void deferred_probe_timeout_work_func(struct work_struct *work) + + mutex_lock(&deferred_probe_mutex); + list_for_each_entry(p, &deferred_probe_pending_list, deferred_probe) +- dev_info(p->device, "deferred probe pending\n"); ++ dev_info(p->device, "deferred probe pending: %s", p->deferred_probe_reason ?: "(reason unknown)\n"); + mutex_unlock(&deferred_probe_mutex); + + fw_devlink_probing_done(); +-- +2.43.0 + diff --git a/debian/patches/features/x86/intel-iommu-add-kconfig-option-to-exclude-igpu-by-default.patch b/debian/patches/features/x86/intel-iommu-add-kconfig-option-to-exclude-igpu-by-default.patch index 16cac663c1..a4576e75f4 100644 --- a/debian/patches/features/x86/intel-iommu-add-kconfig-option-to-exclude-igpu-by-default.patch +++ b/debian/patches/features/x86/intel-iommu-add-kconfig-option-to-exclude-igpu-by-default.patch @@ -49,8 +49,8 @@ Signed-off-by: Ben Hutchings <ben@decadent.org.uk> depends on BROKEN && X86 --- a/drivers/iommu/intel/iommu.c +++ b/drivers/iommu/intel/iommu.c -@@ -283,14 +283,14 @@ static LIST_HEAD(dmar_satc_units); - static void device_block_translation(struct device *dev); +@@ -284,14 +284,14 @@ static LIST_HEAD(dmar_satc_units); + static void intel_iommu_domain_free(struct iommu_domain *domain); -int dmar_disabled = !IS_ENABLED(CONFIG_INTEL_IOMMU_DEFAULT_ON); @@ -66,7 +66,7 @@ Signed-off-by: Ben Hutchings <ben@decadent.org.uk> static int intel_iommu_superpage = 1; static int iommu_identity_mapping; static int iommu_skip_te_disable; -@@ -328,6 +328,7 @@ static int __init intel_iommu_setup(char +@@ -333,6 +333,7 @@ static int __init intel_iommu_setup(char while (*str) { if (!strncmp(str, "on", 2)) { dmar_disabled = 0; diff --git a/debian/patches/features/x86/intel-iommu-add-option-to-exclude-integrated-gpu-only.patch b/debian/patches/features/x86/intel-iommu-add-option-to-exclude-integrated-gpu-only.patch index a3543d90e9..6950c937d5 100644 --- a/debian/patches/features/x86/intel-iommu-add-option-to-exclude-integrated-gpu-only.patch +++ b/debian/patches/features/x86/intel-iommu-add-option-to-exclude-integrated-gpu-only.patch @@ -22,7 +22,7 @@ Signed-off-by: Ben Hutchings <ben@decadent.org.uk> --- a/Documentation/admin-guide/kernel-parameters.txt +++ b/Documentation/admin-guide/kernel-parameters.txt -@@ -2053,6 +2053,8 @@ +@@ -2122,6 +2122,8 @@ bypassed by not enabling DMAR with this option. In this case, gfx device will use physical address for DMA. @@ -33,7 +33,7 @@ Signed-off-by: Ben Hutchings <ben@decadent.org.uk> sp_off [Default Off] --- a/drivers/iommu/intel/iommu.c +++ b/drivers/iommu/intel/iommu.c -@@ -35,6 +35,9 @@ +@@ -36,6 +36,9 @@ #define CONTEXT_SIZE VTD_PAGE_SIZE #define IS_GFX_DEVICE(pdev) ((pdev->class >> 16) == PCI_BASE_CLASS_DISPLAY) @@ -43,7 +43,7 @@ Signed-off-by: Ben Hutchings <ben@decadent.org.uk> #define IS_USB_DEVICE(pdev) ((pdev->class >> 8) == PCI_CLASS_SERIAL_USB) #define IS_ISA_DEVICE(pdev) ((pdev->class >> 8) == PCI_CLASS_BRIDGE_ISA) #define IS_AZALIA(pdev) ((pdev)->vendor == 0x8086 && (pdev)->device == 0x3a3e) -@@ -293,12 +296,14 @@ int intel_iommu_enabled = 0; +@@ -291,12 +294,14 @@ int intel_iommu_enabled = 0; EXPORT_SYMBOL_GPL(intel_iommu_enabled); static int dmar_map_gfx = 1; @@ -57,8 +57,8 @@ Signed-off-by: Ben Hutchings <ben@decadent.org.uk> +#define IDENTMAP_INTGPU 8 const struct iommu_ops intel_iommu_ops; - -@@ -337,6 +342,9 @@ static int __init intel_iommu_setup(char + static const struct iommu_dirty_ops intel_dirty_ops; +@@ -336,6 +341,9 @@ static int __init intel_iommu_setup(char } else if (!strncmp(str, "igfx_off", 8)) { dmar_map_gfx = 0; pr_info("Disable GFX device mapping\n"); @@ -68,7 +68,7 @@ Signed-off-by: Ben Hutchings <ben@decadent.org.uk> } else if (!strncmp(str, "forcedac", 8)) { pr_warn("intel_iommu=forcedac deprecated; use iommu.forcedac instead\n"); iommu_dma_forcedac = true; -@@ -2582,6 +2590,9 @@ static int device_def_domain_type(struct +@@ -2548,6 +2556,9 @@ static int device_def_domain_type(struct if ((iommu_identity_mapping & IDENTMAP_GFX) && IS_GFX_DEVICE(pdev)) return IOMMU_DOMAIN_IDENTITY; @@ -78,7 +78,7 @@ Signed-off-by: Ben Hutchings <ben@decadent.org.uk> } return 0; -@@ -2985,6 +2996,9 @@ static int __init init_dmars(void) +@@ -2855,6 +2866,9 @@ static int __init init_dmars(void) if (!dmar_map_gfx) iommu_identity_mapping |= IDENTMAP_GFX; diff --git a/debian/patches/features/x86/x86-make-x32-syscall-support-conditional.patch b/debian/patches/features/x86/x86-make-x32-syscall-support-conditional.patch index 010fa59105..c77b75f36d 100644 --- a/debian/patches/features/x86/x86-make-x32-syscall-support-conditional.patch +++ b/debian/patches/features/x86/x86-make-x32-syscall-support-conditional.patch @@ -29,7 +29,7 @@ Signed-off-by: Ben Hutchings <ben@decadent.org.uk> --- a/Documentation/admin-guide/kernel-parameters.txt +++ b/Documentation/admin-guide/kernel-parameters.txt -@@ -6172,6 +6172,10 @@ +@@ -6410,6 +6410,10 @@ later by a loaded module cannot be set this way. Example: sysctl.vm.swappiness=40 @@ -42,7 +42,7 @@ Signed-off-by: Ben Hutchings <ben@decadent.org.uk> Ignore sysrq setting - this boot parameter will --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig -@@ -3058,6 +3058,14 @@ config COMPAT_32 +@@ -3024,6 +3024,14 @@ config COMPAT_32 select HAVE_UID16 select OLD_SIGSUSPEND3 @@ -59,7 +59,7 @@ Signed-off-by: Ben Hutchings <ben@decadent.org.uk> depends on IA32_EMULATION || X86_X32_ABI --- a/arch/x86/entry/common.c +++ b/arch/x86/entry/common.c -@@ -62,7 +62,7 @@ static __always_inline bool do_syscall_x +@@ -63,7 +63,7 @@ static __always_inline bool do_syscall_x */ unsigned int xnr = nr - __X32_SYSCALL_BIT; @@ -129,7 +129,7 @@ Signed-off-by: Ben Hutchings <ben@decadent.org.uk> +arch_param_cb(x32, &x32_param_ops, NULL, 0444); --- a/arch/x86/include/asm/elf.h +++ b/arch/x86/include/asm/elf.h -@@ -11,6 +11,9 @@ +@@ -12,6 +12,9 @@ #include <asm/user.h> #include <asm/auxvec.h> #include <asm/fsgsbase.h> @@ -142,7 +142,7 @@ Signed-off-by: Ben Hutchings <ben@decadent.org.uk> @@ -150,7 +153,8 @@ do { \ #define compat_elf_check_arch(x) \ - (elf_check_arch_ia32(x) || \ + ((elf_check_arch_ia32(x) && ia32_enabled()) || \ - (IS_ENABLED(CONFIG_X86_X32_ABI) && (x)->e_machine == EM_X86_64)) + (IS_ENABLED(CONFIG_X86_X32_ABI) && x32_enabled && \ + (x)->e_machine == EM_X86_64)) diff --git a/debian/patches/series b/debian/patches/series index 9401d26da0..8c1ff52363 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -3,7 +3,6 @@ debian/gitignore.patch # Disable features broken by exclusion of upstream files debian/dfsg/arch-powerpc-platforms-8xx-ucode-disable.patch debian/dfsg/drivers-media-dvb-dvb-usb-af9005-disable.patch -debian/dfsg/drivers-net-appletalk-cops.patch debian/dfsg/video-remove-nvidiafb-and-rivafb.patch debian/dfsg/documentation-fix-broken-link-to-cipso-draft.patch @@ -11,7 +10,6 @@ debian/dfsg/documentation-fix-broken-link-to-cipso-draft.patch debian/version.patch debian/uname-version-timestamp.patch debian/kernelvariables.patch -debian/ia64-hardcode-arch-script-output.patch debian/mips-disable-werror.patch debian/mips-boston-disable-its.patch debian/mips-ieee754-relaxed.patch @@ -78,9 +76,9 @@ features/x86/x86-make-x32-syscall-support-conditional.patch # Miscellaneous bug fixes bugfix/all/disable-some-marvell-phys.patch bugfix/all/fs-add-module_softdep-declarations-for-hard-coded-cr.patch -debian/Revert-docs-kernel_feat.py-fix-potential-command-inj.patch # Miscellaneous features +features/all/driver-core-Emit-reason-for-pending-deferred-probe.patch # Lockdown missing pieces features/all/lockdown/efi-add-an-efi_secure_boot-flag-to-indicate-secure-b.patch diff --git a/debian/rules b/debian/rules index b3e901a39e..5d76443b53 100755 --- a/debian/rules +++ b/debian/rules @@ -98,7 +98,6 @@ maintainerclean: # We cannot use dh_clean here because it requires debian/control to exist rm -rf debian/.debhelper debian/*.debhelper* debian/files debian/generated.* rm -f \ - debian/config.defines.dump \ debian/control \ debian/control.md5sum \ debian/linux-doc.maintscript \ @@ -123,7 +122,7 @@ clean: debian/control dh_clean CONTROL_FILES = $(BUILD_DIR)/version-info $(wildcard debian/templates/*.in) -CONTROL_FILES += debian/config/defines $(wildcard debian/config/*/defines) $(wildcard debian/config/*/*/defines) +CONTROL_FILES += debian/config/defines.toml $(wildcard debian/config/*/defines.toml) CONTROL_FILES += debian/installer/package-list # debian/bin/gencontrol.py uses debian/changelog as input, but the @@ -132,7 +131,8 @@ CONTROL_FILES += debian/installer/package-list # in the checksum. $(BUILD_DIR)/version-info: debian/changelog mkdir -p $(@D) - printf >$@ 'Source: %s\nVersion: %s\n' $(DEB_SOURCE) $(DEB_VERSION_SOURCE) +# Use DEB_VERSION_SOURCE to allow binNMU + printf >$@ 'Source: %s\nVersion: %s\n' $(DEB_SOURCE) $(DEB_VERSION) debian/control debian/rules.gen: debian/bin/gencontrol.py $(CONTROL_FILES) ifeq ($(wildcard debian/control.md5sum),) diff --git a/debian/rules.d/scripts/mod/Makefile.real b/debian/rules.d/scripts/mod/Makefile.real index 6d56ff6ae4..40e3ca24eb 100644 --- a/debian/rules.d/scripts/mod/Makefile.real +++ b/debian/rules.d/scripts/mod/Makefile.real @@ -5,7 +5,7 @@ include $(top_rulesdir)/Makefile.inc wrapperdir = $(top_rulesdir)/$(OUTDIR) CFLAGS += -I $(CURDIR)/real-$(TYPE) -I $(wrapperdir)/real-$(TYPE) -modpost.real-$(TYPE): file2alias.real-$(TYPE).o modpost.real-$(TYPE).o sumversion.real-$(TYPE).o +modpost.real-$(TYPE): file2alias.real-$(TYPE).o modpost.real-$(TYPE).o sumversion.real-$(TYPE).o symsearch.real-$(TYPE).o $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ %.real-$(TYPE).o: $(SOURCEDIR)/%.c real-$(TYPE)/devicetable-offsets.h diff --git a/debian/rules.d/tools/perf/Makefile b/debian/rules.d/tools/perf/Makefile index 910f03776f..b81116ab17 100644 --- a/debian/rules.d/tools/perf/Makefile +++ b/debian/rules.d/tools/perf/Makefile @@ -50,8 +50,12 @@ ifeq (,$(filter nodoc,$(DEB_BUILD_PROFILES))) +$(MAKE_PERF) -C $(top_srcdir)/tools/perf/Documentation man endif # Check that perf didn't get linked against incompatibly-licensed libraries - type ldd - ! ldd $(CURDIR)/perf | grep -E '\blib(bfd|crypto|debuginfod)' + @if readelf -d $(CURDIR)/perf | sed -rne 's/.*NEEDED.*\[(.*)\]/\1/p' | grep -E '\blib(bfd|crypto|debuginfod)'; then \ + echo; \ + echo 'perf linked against incompatibly-licensed libraries'; \ + echo; \ + exit 1; \ + fi # Check that it links against abi::__cxa_demangle from libstdc++ grep __cxa_demangle $(CURDIR)/perf diff --git a/debian/rules.gen b/debian/rules.gen index 22cae1841c..d96743f32d 100644 --- a/debian/rules.gen +++ b/debian/rules.gen @@ -4,3045 +4,3010 @@ packages_enabled := $(shell dh_listpackages) define if_package $(if $(filter $(1),$(packages_enabled)),$(2)) endef -binary-arch:binary-arch_alpha binary-arch_amd64 binary-arch_arm64 binary-arch_armel binary-arch_armhf binary-arch_hppa binary-arch_i386 binary-arch_ia64 binary-arch_m68k binary-arch_mips binary-arch_mips64 binary-arch_mips64el binary-arch_mips64r6el binary-arch_mipsel binary-arch_powerpc binary-arch_ppc64 binary-arch_ppc64el binary-arch_riscv64 binary-arch_s390x binary-arch_sh4 binary-arch_sparc64 binary-arch_x32 +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_loong64 binary-arch_m68k binary-arch_mips binary-arch_mips64 binary-arch_mips64el binary-arch_mips64r6el binary-arch_mipsel binary-arch_powerpc binary-arch_ppc64 binary-arch_ppc64el binary-arch_riscv64 binary-arch_s390x binary-arch_sh4 binary-arch_sparc64 binary-arch_x32 binary-arch_alpha:binary-arch_alpha_bpftool binary-arch_alpha_config binary-arch_alpha_cpupower binary-arch_alpha_hyperv-daemons binary-arch_alpha_kbuild binary-arch_alpha_none binary-arch_alpha_perf binary-arch_alpha_rtla binary-arch_alpha_usbip binary-arch_alpha_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.6.15' ARCH='alpha' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='alpha' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.7.7' ARCH='alpha' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='alpha' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_alpha_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real binary_config ABINAME='6.6.15' ARCH='alpha' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='alpha' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real binary_config ABINAME='6.7.7' ARCH='alpha' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='alpha' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_alpha_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.6.15' ARCH='alpha' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='alpha' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.7.7' ARCH='alpha' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='alpha' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_alpha_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.6.15' ARCH='alpha' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='alpha' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.7.7' ARCH='alpha' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='alpha' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_alpha_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.6.15' ARCH='alpha' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='alpha' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.7.7' ARCH='alpha' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='alpha' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_alpha_none:binary-arch_alpha_none_alpha-generic binary-arch_alpha_none_alpha-smp binary-arch_alpha_none_alpha-generic:binary-arch_alpha_none_alpha-generic_headers binary-arch_alpha_none_alpha-generic_image binary-arch_alpha_none_alpha-generic_image-dbg binary-arch_alpha_none_alpha-generic_installer binary-arch_alpha_none_alpha-generic_meta binary-arch_alpha_none_alpha-generic_headers: - $(call if_package, linux-headers-6.6.15-alpha-generic, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-alpha-generic' DH_OPTIONS='-plinux-headers-6.6.15-alpha-generic' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' PACKAGE_NAME='linux-headers-6.6.15-alpha-generic' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-alpha-generic, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-alpha-generic' DH_OPTIONS='-plinux-headers-6.7.7-alpha-generic' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' PACKAGE_NAME='linux-headers-6.7.7-alpha-generic' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_alpha_none_alpha-generic_image: - $(call if_package, linux-image-6.6.15-alpha-generic, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-alpha-generic' DH_OPTIONS='-plinux-image-6.6.15-alpha-generic' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' PACKAGE_NAME='linux-image-6.6.15-alpha-generic' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-alpha-generic, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-alpha-generic' DH_OPTIONS='-plinux-image-6.7.7-alpha-generic' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' PACKAGE_NAME='linux-image-6.7.7-alpha-generic' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_alpha_none_alpha-generic_image-dbg: - $(call if_package, linux-image-6.6.15-alpha-generic-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-alpha-generic-dbg' DH_OPTIONS='-plinux-image-6.6.15-alpha-generic-dbg' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' PACKAGE_NAME='linux-image-6.6.15-alpha-generic-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-alpha-generic-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-alpha-generic-dbg' DH_OPTIONS='-plinux-image-6.7.7-alpha-generic-dbg' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' PACKAGE_NAME='linux-image-6.7.7-alpha-generic-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_alpha_none_alpha-generic_installer: - $(call if_package, ata-modules-6.6.15-alpha-generic-di btrfs-modules-6.6.15-alpha-generic-di cdrom-core-modules-6.6.15-alpha-generic-di crc-modules-6.6.15-alpha-generic-di crypto-dm-modules-6.6.15-alpha-generic-di crypto-modules-6.6.15-alpha-generic-di event-modules-6.6.15-alpha-generic-di ext4-modules-6.6.15-alpha-generic-di f2fs-modules-6.6.15-alpha-generic-di fat-modules-6.6.15-alpha-generic-di fb-modules-6.6.15-alpha-generic-di i2c-modules-6.6.15-alpha-generic-di input-modules-6.6.15-alpha-generic-di isofs-modules-6.6.15-alpha-generic-di jfs-modules-6.6.15-alpha-generic-di kernel-image-6.6.15-alpha-generic-di loop-modules-6.6.15-alpha-generic-di md-modules-6.6.15-alpha-generic-di mouse-modules-6.6.15-alpha-generic-di multipath-modules-6.6.15-alpha-generic-di nbd-modules-6.6.15-alpha-generic-di nic-modules-6.6.15-alpha-generic-di nic-pcmcia-modules-6.6.15-alpha-generic-di nic-shared-modules-6.6.15-alpha-generic-di nic-usb-modules-6.6.15-alpha-generic-di nic-wireless-modules-6.6.15-alpha-generic-di pata-modules-6.6.15-alpha-generic-di pcmcia-modules-6.6.15-alpha-generic-di ppp-modules-6.6.15-alpha-generic-di sata-modules-6.6.15-alpha-generic-di scsi-core-modules-6.6.15-alpha-generic-di scsi-modules-6.6.15-alpha-generic-di scsi-nic-modules-6.6.15-alpha-generic-di serial-modules-6.6.15-alpha-generic-di squashfs-modules-6.6.15-alpha-generic-di srm-modules-6.6.15-alpha-generic-di usb-modules-6.6.15-alpha-generic-di usb-serial-modules-6.6.15-alpha-generic-di usb-storage-modules-6.6.15-alpha-generic-di xfs-modules-6.6.15-alpha-generic-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.6.15-alpha-generic-di -pbtrfs-modules-6.6.15-alpha-generic-di -pcdrom-core-modules-6.6.15-alpha-generic-di -pcrc-modules-6.6.15-alpha-generic-di -pcrypto-dm-modules-6.6.15-alpha-generic-di -pcrypto-modules-6.6.15-alpha-generic-di -pevent-modules-6.6.15-alpha-generic-di -pext4-modules-6.6.15-alpha-generic-di -pf2fs-modules-6.6.15-alpha-generic-di -pfat-modules-6.6.15-alpha-generic-di -pfb-modules-6.6.15-alpha-generic-di -pi2c-modules-6.6.15-alpha-generic-di -pinput-modules-6.6.15-alpha-generic-di -pisofs-modules-6.6.15-alpha-generic-di -pjfs-modules-6.6.15-alpha-generic-di -pkernel-image-6.6.15-alpha-generic-di -ploop-modules-6.6.15-alpha-generic-di -pmd-modules-6.6.15-alpha-generic-di -pmouse-modules-6.6.15-alpha-generic-di -pmultipath-modules-6.6.15-alpha-generic-di -pnbd-modules-6.6.15-alpha-generic-di -pnic-modules-6.6.15-alpha-generic-di -pnic-pcmcia-modules-6.6.15-alpha-generic-di -pnic-shared-modules-6.6.15-alpha-generic-di -pnic-usb-modules-6.6.15-alpha-generic-di -pnic-wireless-modules-6.6.15-alpha-generic-di -ppata-modules-6.6.15-alpha-generic-di -ppcmcia-modules-6.6.15-alpha-generic-di -pppp-modules-6.6.15-alpha-generic-di -psata-modules-6.6.15-alpha-generic-di -pscsi-core-modules-6.6.15-alpha-generic-di -pscsi-modules-6.6.15-alpha-generic-di -pscsi-nic-modules-6.6.15-alpha-generic-di -pserial-modules-6.6.15-alpha-generic-di -psquashfs-modules-6.6.15-alpha-generic-di -psrm-modules-6.6.15-alpha-generic-di -pusb-modules-6.6.15-alpha-generic-di -pusb-serial-modules-6.6.15-alpha-generic-di -pusb-storage-modules-6.6.15-alpha-generic-di -pxfs-modules-6.6.15-alpha-generic-di' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-alpha-generic-di' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, ata-modules-6.7.7-alpha-generic-di btrfs-modules-6.7.7-alpha-generic-di cdrom-core-modules-6.7.7-alpha-generic-di crc-modules-6.7.7-alpha-generic-di crypto-dm-modules-6.7.7-alpha-generic-di crypto-modules-6.7.7-alpha-generic-di event-modules-6.7.7-alpha-generic-di ext4-modules-6.7.7-alpha-generic-di f2fs-modules-6.7.7-alpha-generic-di fat-modules-6.7.7-alpha-generic-di fb-modules-6.7.7-alpha-generic-di i2c-modules-6.7.7-alpha-generic-di input-modules-6.7.7-alpha-generic-di isofs-modules-6.7.7-alpha-generic-di jfs-modules-6.7.7-alpha-generic-di kernel-image-6.7.7-alpha-generic-di loop-modules-6.7.7-alpha-generic-di md-modules-6.7.7-alpha-generic-di mouse-modules-6.7.7-alpha-generic-di multipath-modules-6.7.7-alpha-generic-di nbd-modules-6.7.7-alpha-generic-di nic-modules-6.7.7-alpha-generic-di nic-pcmcia-modules-6.7.7-alpha-generic-di nic-shared-modules-6.7.7-alpha-generic-di nic-usb-modules-6.7.7-alpha-generic-di nic-wireless-modules-6.7.7-alpha-generic-di pata-modules-6.7.7-alpha-generic-di pcmcia-modules-6.7.7-alpha-generic-di ppp-modules-6.7.7-alpha-generic-di sata-modules-6.7.7-alpha-generic-di scsi-core-modules-6.7.7-alpha-generic-di scsi-modules-6.7.7-alpha-generic-di scsi-nic-modules-6.7.7-alpha-generic-di serial-modules-6.7.7-alpha-generic-di squashfs-modules-6.7.7-alpha-generic-di srm-modules-6.7.7-alpha-generic-di usb-modules-6.7.7-alpha-generic-di usb-serial-modules-6.7.7-alpha-generic-di usb-storage-modules-6.7.7-alpha-generic-di xfs-modules-6.7.7-alpha-generic-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.7.7-alpha-generic-di -pbtrfs-modules-6.7.7-alpha-generic-di -pcdrom-core-modules-6.7.7-alpha-generic-di -pcrc-modules-6.7.7-alpha-generic-di -pcrypto-dm-modules-6.7.7-alpha-generic-di -pcrypto-modules-6.7.7-alpha-generic-di -pevent-modules-6.7.7-alpha-generic-di -pext4-modules-6.7.7-alpha-generic-di -pf2fs-modules-6.7.7-alpha-generic-di -pfat-modules-6.7.7-alpha-generic-di -pfb-modules-6.7.7-alpha-generic-di -pi2c-modules-6.7.7-alpha-generic-di -pinput-modules-6.7.7-alpha-generic-di -pisofs-modules-6.7.7-alpha-generic-di -pjfs-modules-6.7.7-alpha-generic-di -pkernel-image-6.7.7-alpha-generic-di -ploop-modules-6.7.7-alpha-generic-di -pmd-modules-6.7.7-alpha-generic-di -pmouse-modules-6.7.7-alpha-generic-di -pmultipath-modules-6.7.7-alpha-generic-di -pnbd-modules-6.7.7-alpha-generic-di -pnic-modules-6.7.7-alpha-generic-di -pnic-pcmcia-modules-6.7.7-alpha-generic-di -pnic-shared-modules-6.7.7-alpha-generic-di -pnic-usb-modules-6.7.7-alpha-generic-di -pnic-wireless-modules-6.7.7-alpha-generic-di -ppata-modules-6.7.7-alpha-generic-di -ppcmcia-modules-6.7.7-alpha-generic-di -pppp-modules-6.7.7-alpha-generic-di -psata-modules-6.7.7-alpha-generic-di -pscsi-core-modules-6.7.7-alpha-generic-di -pscsi-modules-6.7.7-alpha-generic-di -pscsi-nic-modules-6.7.7-alpha-generic-di -pserial-modules-6.7.7-alpha-generic-di -psquashfs-modules-6.7.7-alpha-generic-di -psrm-modules-6.7.7-alpha-generic-di -pusb-modules-6.7.7-alpha-generic-di -pusb-serial-modules-6.7.7-alpha-generic-di -pusb-storage-modules-6.7.7-alpha-generic-di -pxfs-modules-6.7.7-alpha-generic-di' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-alpha-generic-di' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_alpha_none_alpha-generic_meta: - $(call if_package, linux-image-alpha-generic, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-alpha-generic' DH_OPTIONS='-plinux-image-alpha-generic' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-alpha-generic' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' PACKAGE_NAME='linux-image-alpha-generic' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-alpha-generic, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-alpha-generic' DH_OPTIONS='-plinux-headers-alpha-generic' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-alpha-generic' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' PACKAGE_NAME='linux-headers-alpha-generic' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-alpha-generic-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-alpha-generic-dbg' DH_OPTIONS='-plinux-image-alpha-generic-dbg' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-alpha-generic-dbg' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' PACKAGE_NAME='linux-image-alpha-generic-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-alpha-generic, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-alpha-generic' DH_OPTIONS='-plinux-image-alpha-generic' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-alpha-generic' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' PACKAGE_NAME='linux-image-alpha-generic' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-alpha-generic, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-alpha-generic' DH_OPTIONS='-plinux-headers-alpha-generic' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-alpha-generic' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' PACKAGE_NAME='linux-headers-alpha-generic' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-alpha-generic-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-alpha-generic-dbg' DH_OPTIONS='-plinux-image-alpha-generic-dbg' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-alpha-generic-dbg' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' PACKAGE_NAME='linux-image-alpha-generic-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_alpha_none_alpha-smp:binary-arch_alpha_none_alpha-smp_headers binary-arch_alpha_none_alpha-smp_image binary-arch_alpha_none_alpha-smp_image-dbg binary-arch_alpha_none_alpha-smp_meta binary-arch_alpha_none_alpha-smp_headers: - $(call if_package, linux-headers-6.6.15-alpha-smp, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-alpha-smp' DH_OPTIONS='-plinux-headers-6.6.15-alpha-smp' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' PACKAGE_NAME='linux-headers-6.6.15-alpha-smp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-alpha-smp, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-alpha-smp' DH_OPTIONS='-plinux-headers-6.7.7-alpha-smp' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' PACKAGE_NAME='linux-headers-6.7.7-alpha-smp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_alpha_none_alpha-smp_image: - $(call if_package, linux-image-6.6.15-alpha-smp, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-alpha-smp' DH_OPTIONS='-plinux-image-6.6.15-alpha-smp' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' PACKAGE_NAME='linux-image-6.6.15-alpha-smp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-alpha-smp, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-alpha-smp' DH_OPTIONS='-plinux-image-6.7.7-alpha-smp' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' PACKAGE_NAME='linux-image-6.7.7-alpha-smp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_alpha_none_alpha-smp_image-dbg: - $(call if_package, linux-image-6.6.15-alpha-smp-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-alpha-smp-dbg' DH_OPTIONS='-plinux-image-6.6.15-alpha-smp-dbg' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' PACKAGE_NAME='linux-image-6.6.15-alpha-smp-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-alpha-smp-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-alpha-smp-dbg' DH_OPTIONS='-plinux-image-6.7.7-alpha-smp-dbg' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' PACKAGE_NAME='linux-image-6.7.7-alpha-smp-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_alpha_none_alpha-smp_meta: - $(call if_package, linux-image-alpha-smp, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-alpha-smp' DH_OPTIONS='-plinux-image-alpha-smp' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-alpha-smp' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' PACKAGE_NAME='linux-image-alpha-smp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-alpha-smp, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-alpha-smp' DH_OPTIONS='-plinux-headers-alpha-smp' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-alpha-smp' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' PACKAGE_NAME='linux-headers-alpha-smp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-alpha-smp-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-alpha-smp-dbg' DH_OPTIONS='-plinux-image-alpha-smp-dbg' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-alpha-smp-dbg' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' PACKAGE_NAME='linux-image-alpha-smp-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-alpha-smp, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-alpha-smp' DH_OPTIONS='-plinux-image-alpha-smp' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-alpha-smp' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' PACKAGE_NAME='linux-image-alpha-smp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-alpha-smp, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-alpha-smp' DH_OPTIONS='-plinux-headers-alpha-smp' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-alpha-smp' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' PACKAGE_NAME='linux-headers-alpha-smp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-alpha-smp-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-alpha-smp-dbg' DH_OPTIONS='-plinux-image-alpha-smp-dbg' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-alpha-smp-dbg' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' PACKAGE_NAME='linux-image-alpha-smp-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_alpha_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.6.15' ARCH='alpha' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='alpha' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.7.7' ARCH='alpha' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='alpha' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_alpha_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.6.15' ARCH='alpha' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='alpha' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.7.7' ARCH='alpha' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='alpha' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_alpha_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.6.15' ARCH='alpha' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='alpha' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.7.7' ARCH='alpha' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='alpha' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_amd64:binary-arch_amd64_bpftool binary-arch_amd64_config binary-arch_amd64_cpupower binary-arch_amd64_hyperv-daemons binary-arch_amd64_kbuild binary-arch_amd64_none binary-arch_amd64_perf binary-arch_amd64_rt binary-arch_amd64_rtla binary-arch_amd64_signed-template binary-arch_amd64_usbip binary-arch_amd64_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.6.15' ARCH='amd64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='x86' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.7.7' ARCH='amd64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='x86' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_amd64_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real binary_config ABINAME='6.6.15' ARCH='amd64' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='x86' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real binary_config ABINAME='6.7.7' ARCH='amd64' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='x86' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_amd64_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.6.15' ARCH='amd64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='x86' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.7.7' ARCH='amd64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='x86' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_amd64_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.6.15' ARCH='amd64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='x86' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.7.7' ARCH='amd64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='x86' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_amd64_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.6.15' ARCH='amd64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='x86' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.7.7' ARCH='amd64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='x86' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_amd64_none:binary-arch_amd64_none_amd64 binary-arch_amd64_none_cloud-amd64 binary-arch_amd64_none_amd64:binary-arch_amd64_none_amd64_headers binary-arch_amd64_none_amd64_image binary-arch_amd64_none_amd64_image-dbg binary-arch_amd64_none_amd64_installer-test binary-arch_amd64_none_amd64_meta binary-arch_amd64_none_amd64_headers: - $(call if_package, linux-headers-6.6.15-amd64, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-amd64' DH_OPTIONS='-plinux-headers-6.6.15-amd64' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-headers-6.6.15-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-amd64, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-amd64' DH_OPTIONS='-plinux-headers-6.7.7-amd64' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-headers-6.7.7-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_amd64_none_amd64_image: - $(call if_package, linux-image-6.6.15-amd64-unsigned, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-amd64-unsigned' DH_OPTIONS='-plinux-image-6.6.15-amd64-unsigned' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-image-6.6.15-amd64-unsigned' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-amd64-unsigned, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-amd64-unsigned' DH_OPTIONS='-plinux-image-6.7.7-amd64-unsigned' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-image-6.7.7-amd64-unsigned' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_amd64_none_amd64_image-dbg: - $(call if_package, linux-image-6.6.15-amd64-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-amd64-dbg' DH_OPTIONS='-plinux-image-6.6.15-amd64-dbg' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-image-6.6.15-amd64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-amd64-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-amd64-dbg' DH_OPTIONS='-plinux-image-6.7.7-amd64-dbg' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-image-6.7.7-amd64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_amd64_none_amd64_installer-test: - $(MAKE) -f debian/rules.real binary_installer-test ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pacpi-modules-6.6.15-amd64-di -pata-modules-6.6.15-amd64-di -pbtrfs-modules-6.6.15-amd64-di -pcdrom-core-modules-6.6.15-amd64-di -pcrc-modules-6.6.15-amd64-di -pcrypto-dm-modules-6.6.15-amd64-di -pcrypto-modules-6.6.15-amd64-di -pefi-modules-6.6.15-amd64-di -pevent-modules-6.6.15-amd64-di -pext4-modules-6.6.15-amd64-di -pf2fs-modules-6.6.15-amd64-di -pfat-modules-6.6.15-amd64-di -pfb-modules-6.6.15-amd64-di -pfirewire-core-modules-6.6.15-amd64-di -pi2c-modules-6.6.15-amd64-di -pinput-modules-6.6.15-amd64-di -pisofs-modules-6.6.15-amd64-di -pjfs-modules-6.6.15-amd64-di -pkernel-image-6.6.15-amd64-di -ploop-modules-6.6.15-amd64-di -pmd-modules-6.6.15-amd64-di -pmmc-core-modules-6.6.15-amd64-di -pmmc-modules-6.6.15-amd64-di -pmouse-modules-6.6.15-amd64-di -pmtd-core-modules-6.6.15-amd64-di -pmultipath-modules-6.6.15-amd64-di -pnbd-modules-6.6.15-amd64-di -pnic-modules-6.6.15-amd64-di -pnic-pcmcia-modules-6.6.15-amd64-di -pnic-shared-modules-6.6.15-amd64-di -pnic-usb-modules-6.6.15-amd64-di -pnic-wireless-modules-6.6.15-amd64-di -ppata-modules-6.6.15-amd64-di -ppcmcia-modules-6.6.15-amd64-di -ppcmcia-storage-modules-6.6.15-amd64-di -pppp-modules-6.6.15-amd64-di -prfkill-modules-6.6.15-amd64-di -psata-modules-6.6.15-amd64-di -pscsi-core-modules-6.6.15-amd64-di -pscsi-modules-6.6.15-amd64-di -pscsi-nic-modules-6.6.15-amd64-di -pserial-modules-6.6.15-amd64-di -psound-modules-6.6.15-amd64-di -pspeakup-modules-6.6.15-amd64-di -psquashfs-modules-6.6.15-amd64-di -pudf-modules-6.6.15-amd64-di -puinput-modules-6.6.15-amd64-di -pusb-modules-6.6.15-amd64-di -pusb-serial-modules-6.6.15-amd64-di -pusb-storage-modules-6.6.15-amd64-di -pxfs-modules-6.6.15-amd64-di' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6' + $(MAKE) -f debian/rules.real binary_installer-test ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pacpi-modules-6.7.7-amd64-di -pata-modules-6.7.7-amd64-di -pbtrfs-modules-6.7.7-amd64-di -pcdrom-core-modules-6.7.7-amd64-di -pcrc-modules-6.7.7-amd64-di -pcrypto-dm-modules-6.7.7-amd64-di -pcrypto-modules-6.7.7-amd64-di -pefi-modules-6.7.7-amd64-di -pevent-modules-6.7.7-amd64-di -pext4-modules-6.7.7-amd64-di -pf2fs-modules-6.7.7-amd64-di -pfat-modules-6.7.7-amd64-di -pfb-modules-6.7.7-amd64-di -pfirewire-core-modules-6.7.7-amd64-di -pi2c-modules-6.7.7-amd64-di -pinput-modules-6.7.7-amd64-di -pisofs-modules-6.7.7-amd64-di -pjfs-modules-6.7.7-amd64-di -pkernel-image-6.7.7-amd64-di -ploop-modules-6.7.7-amd64-di -pmd-modules-6.7.7-amd64-di -pmmc-core-modules-6.7.7-amd64-di -pmmc-modules-6.7.7-amd64-di -pmouse-modules-6.7.7-amd64-di -pmtd-core-modules-6.7.7-amd64-di -pmultipath-modules-6.7.7-amd64-di -pnbd-modules-6.7.7-amd64-di -pnic-modules-6.7.7-amd64-di -pnic-pcmcia-modules-6.7.7-amd64-di -pnic-shared-modules-6.7.7-amd64-di -pnic-usb-modules-6.7.7-amd64-di -pnic-wireless-modules-6.7.7-amd64-di -ppata-modules-6.7.7-amd64-di -ppcmcia-modules-6.7.7-amd64-di -ppcmcia-storage-modules-6.7.7-amd64-di -pppp-modules-6.7.7-amd64-di -prfkill-modules-6.7.7-amd64-di -psata-modules-6.7.7-amd64-di -pscsi-core-modules-6.7.7-amd64-di -pscsi-modules-6.7.7-amd64-di -pscsi-nic-modules-6.7.7-amd64-di -pserial-modules-6.7.7-amd64-di -psound-modules-6.7.7-amd64-di -pspeakup-modules-6.7.7-amd64-di -psquashfs-modules-6.7.7-amd64-di -pudf-modules-6.7.7-amd64-di -puinput-modules-6.7.7-amd64-di -pusb-modules-6.7.7-amd64-di -pusb-serial-modules-6.7.7-amd64-di -pusb-storage-modules-6.7.7-amd64-di -pxfs-modules-6.7.7-amd64-di' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7' binary-arch_amd64_none_amd64_meta: - $(call if_package, linux-image-amd64-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-amd64-dbg' DH_OPTIONS='-plinux-image-amd64-dbg' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-amd64-dbg' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-image-amd64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-amd64-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-amd64-dbg' DH_OPTIONS='-plinux-image-amd64-dbg' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-amd64-dbg' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-image-amd64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_amd64_none_cloud-amd64:binary-arch_amd64_none_cloud-amd64_headers binary-arch_amd64_none_cloud-amd64_image binary-arch_amd64_none_cloud-amd64_image-dbg binary-arch_amd64_none_cloud-amd64_meta binary-arch_amd64_none_cloud-amd64_headers: - $(call if_package, linux-headers-6.6.15-cloud-amd64, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-cloud-amd64' DH_OPTIONS='-plinux-headers-6.6.15-cloud-amd64' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/amd64/config.cloud-amd64 debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-headers-6.6.15-cloud-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-cloud-amd64, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-cloud-amd64' DH_OPTIONS='-plinux-headers-6.7.7-cloud-amd64' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-headers-6.7.7-cloud-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_amd64_none_cloud-amd64_image: - $(call if_package, linux-image-6.6.15-cloud-amd64-unsigned, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-cloud-amd64-unsigned' DH_OPTIONS='-plinux-image-6.6.15-cloud-amd64-unsigned' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/amd64/config.cloud-amd64 debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-image-6.6.15-cloud-amd64-unsigned' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-cloud-amd64-unsigned, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-cloud-amd64-unsigned' DH_OPTIONS='-plinux-image-6.7.7-cloud-amd64-unsigned' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-image-6.7.7-cloud-amd64-unsigned' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_amd64_none_cloud-amd64_image-dbg: - $(call if_package, linux-image-6.6.15-cloud-amd64-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-cloud-amd64-dbg' DH_OPTIONS='-plinux-image-6.6.15-cloud-amd64-dbg' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/amd64/config.cloud-amd64 debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-image-6.6.15-cloud-amd64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-cloud-amd64-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-cloud-amd64-dbg' DH_OPTIONS='-plinux-image-6.7.7-cloud-amd64-dbg' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-image-6.7.7-cloud-amd64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_amd64_none_cloud-amd64_meta: - $(call if_package, linux-image-cloud-amd64-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-cloud-amd64-dbg' DH_OPTIONS='-plinux-image-cloud-amd64-dbg' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-cloud-amd64-dbg' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/amd64/config.cloud-amd64 debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-image-cloud-amd64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-cloud-amd64-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-cloud-amd64-dbg' DH_OPTIONS='-plinux-image-cloud-amd64-dbg' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-cloud-amd64-dbg' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-image-cloud-amd64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_amd64_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.6.15' ARCH='amd64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='x86' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.7.7' ARCH='amd64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='x86' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_amd64_rt:binary-arch_amd64_rt_amd64 binary-arch_amd64_rt_amd64:binary-arch_amd64_rt_amd64_headers binary-arch_amd64_rt_amd64_image binary-arch_amd64_rt_amd64_image-dbg binary-arch_amd64_rt_amd64_meta binary-arch_amd64_rt_amd64_headers: - $(call if_package, linux-headers-6.6.15-rt-amd64, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-rt-amd64' DH_OPTIONS='-plinux-headers-6.6.15-rt-amd64' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-headers-6.6.15-rt-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-rt-amd64, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-rt-amd64' DH_OPTIONS='-plinux-headers-6.7.7-rt-amd64' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-headers-6.7.7-rt-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_amd64_rt_amd64_image: - $(call if_package, linux-image-6.6.15-rt-amd64-unsigned, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-rt-amd64-unsigned' DH_OPTIONS='-plinux-image-6.6.15-rt-amd64-unsigned' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-image-6.6.15-rt-amd64-unsigned' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-rt-amd64-unsigned, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-rt-amd64-unsigned' DH_OPTIONS='-plinux-image-6.7.7-rt-amd64-unsigned' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-image-6.7.7-rt-amd64-unsigned' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_amd64_rt_amd64_image-dbg: - $(call if_package, linux-image-6.6.15-rt-amd64-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-rt-amd64-dbg' DH_OPTIONS='-plinux-image-6.6.15-rt-amd64-dbg' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-image-6.6.15-rt-amd64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-rt-amd64-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-rt-amd64-dbg' DH_OPTIONS='-plinux-image-6.7.7-rt-amd64-dbg' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-image-6.7.7-rt-amd64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_amd64_rt_amd64_meta: - $(call if_package, linux-image-rt-amd64-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-amd64-dbg' DH_OPTIONS='-plinux-image-rt-amd64-dbg' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-rt-amd64-dbg' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-image-rt-amd64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-rt-amd64-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-amd64-dbg' DH_OPTIONS='-plinux-image-rt-amd64-dbg' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-rt-amd64-dbg' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-image-rt-amd64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_amd64_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.6.15' ARCH='amd64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='x86' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.7.7' ARCH='amd64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='x86' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_amd64_signed-template: - $(call if_package, linux-image-amd64-signed-template, $(MAKE) -f debian/rules.real binary_signed-template ABINAME='6.6.15' ARCH='amd64' DESTDIR='$(CURDIR)/debian/linux-image-amd64-signed-template' DH_OPTIONS='-plinux-image-amd64-signed-template' KERNEL_ARCH='x86' PACKAGE_NAME='linux-image-amd64-signed-template' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-amd64-signed-template, $(MAKE) -f debian/rules.real binary_signed-template ABINAME='6.7.7' ARCH='amd64' DESTDIR='$(CURDIR)/debian/linux-image-amd64-signed-template' DH_OPTIONS='-plinux-image-amd64-signed-template' KERNEL_ARCH='x86' PACKAGE_NAME='linux-image-amd64-signed-template' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_amd64_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.6.15' ARCH='amd64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='x86' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.7.7' ARCH='amd64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='x86' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_arm64:binary-arch_arm64_bpftool binary-arch_arm64_config binary-arch_arm64_cpupower binary-arch_arm64_hyperv-daemons binary-arch_arm64_kbuild binary-arch_arm64_none binary-arch_arm64_perf binary-arch_arm64_rt binary-arch_arm64_rtla binary-arch_arm64_signed-template binary-arch_arm64_usbip binary-arch_arm64_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.6.15' ARCH='arm64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='arm64' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.7.7' ARCH='arm64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='arm64' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_arm64_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real binary_config ABINAME='6.6.15' ARCH='arm64' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='arm64' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real binary_config ABINAME='6.7.7' ARCH='arm64' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='arm64' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_arm64_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.6.15' ARCH='arm64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.7.7' ARCH='arm64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_arm64_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.6.15' ARCH='arm64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='arm64' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.7.7' ARCH='arm64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='arm64' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_arm64_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.6.15' ARCH='arm64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='arm64' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.7.7' ARCH='arm64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='arm64' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_arm64_none:binary-arch_arm64_none_arm64 binary-arch_arm64_none_cloud-arm64 binary-arch_arm64_none_arm64:binary-arch_arm64_none_arm64_headers binary-arch_arm64_none_arm64_image binary-arch_arm64_none_arm64_image-dbg binary-arch_arm64_none_arm64_installer-test binary-arch_arm64_none_arm64_meta binary-arch_arm64_none_arm64_headers: - $(call if_package, linux-headers-6.6.15-arm64, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-arm64' DH_OPTIONS='-plinux-headers-6.6.15-arm64' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-headers-6.6.15-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-arm64, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-arm64' DH_OPTIONS='-plinux-headers-6.7.7-arm64' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-headers-6.7.7-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_arm64_none_arm64_image: - $(call if_package, linux-image-6.6.15-arm64-unsigned, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-arm64-unsigned' DH_OPTIONS='-plinux-image-6.6.15-arm64-unsigned' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-image-6.6.15-arm64-unsigned' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-arm64-unsigned, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-arm64-unsigned' DH_OPTIONS='-plinux-image-6.7.7-arm64-unsigned' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-image-6.7.7-arm64-unsigned' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_arm64_none_arm64_image-dbg: - $(call if_package, linux-image-6.6.15-arm64-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-arm64-dbg' DH_OPTIONS='-plinux-image-6.6.15-arm64-dbg' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-image-6.6.15-arm64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-arm64-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-arm64-dbg' DH_OPTIONS='-plinux-image-6.7.7-arm64-dbg' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-image-6.7.7-arm64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_arm64_none_arm64_installer-test: - $(MAKE) -f debian/rules.real binary_installer-test ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.6.15-arm64-di -pbtrfs-modules-6.6.15-arm64-di -pcdrom-core-modules-6.6.15-arm64-di -pcrc-modules-6.6.15-arm64-di -pcrypto-dm-modules-6.6.15-arm64-di -pcrypto-modules-6.6.15-arm64-di -pefi-modules-6.6.15-arm64-di -pevent-modules-6.6.15-arm64-di -pext4-modules-6.6.15-arm64-di -pf2fs-modules-6.6.15-arm64-di -pfat-modules-6.6.15-arm64-di -pfb-modules-6.6.15-arm64-di -pi2c-modules-6.6.15-arm64-di -pinput-modules-6.6.15-arm64-di -pisofs-modules-6.6.15-arm64-di -pjfs-modules-6.6.15-arm64-di -pkernel-image-6.6.15-arm64-di -pleds-modules-6.6.15-arm64-di -ploop-modules-6.6.15-arm64-di -pmd-modules-6.6.15-arm64-di -pmmc-modules-6.6.15-arm64-di -pmtd-core-modules-6.6.15-arm64-di -pmultipath-modules-6.6.15-arm64-di -pnbd-modules-6.6.15-arm64-di -pnic-modules-6.6.15-arm64-di -pnic-shared-modules-6.6.15-arm64-di -pnic-usb-modules-6.6.15-arm64-di -pnic-wireless-modules-6.6.15-arm64-di -pppp-modules-6.6.15-arm64-di -psata-modules-6.6.15-arm64-di -pscsi-core-modules-6.6.15-arm64-di -pscsi-modules-6.6.15-arm64-di -pscsi-nic-modules-6.6.15-arm64-di -psound-modules-6.6.15-arm64-di -pspeakup-modules-6.6.15-arm64-di -psquashfs-modules-6.6.15-arm64-di -pudf-modules-6.6.15-arm64-di -puinput-modules-6.6.15-arm64-di -pusb-modules-6.6.15-arm64-di -pusb-serial-modules-6.6.15-arm64-di -pusb-storage-modules-6.6.15-arm64-di -pxfs-modules-6.6.15-arm64-di' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6' + $(MAKE) -f debian/rules.real binary_installer-test ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.7.7-arm64-di -pbtrfs-modules-6.7.7-arm64-di -pcdrom-core-modules-6.7.7-arm64-di -pcrc-modules-6.7.7-arm64-di -pcrypto-dm-modules-6.7.7-arm64-di -pcrypto-modules-6.7.7-arm64-di -pefi-modules-6.7.7-arm64-di -pevent-modules-6.7.7-arm64-di -pext4-modules-6.7.7-arm64-di -pf2fs-modules-6.7.7-arm64-di -pfat-modules-6.7.7-arm64-di -pfb-modules-6.7.7-arm64-di -pi2c-modules-6.7.7-arm64-di -pinput-modules-6.7.7-arm64-di -pisofs-modules-6.7.7-arm64-di -pjfs-modules-6.7.7-arm64-di -pkernel-image-6.7.7-arm64-di -pleds-modules-6.7.7-arm64-di -ploop-modules-6.7.7-arm64-di -pmd-modules-6.7.7-arm64-di -pmmc-modules-6.7.7-arm64-di -pmtd-core-modules-6.7.7-arm64-di -pmultipath-modules-6.7.7-arm64-di -pnbd-modules-6.7.7-arm64-di -pnic-modules-6.7.7-arm64-di -pnic-shared-modules-6.7.7-arm64-di -pnic-usb-modules-6.7.7-arm64-di -pnic-wireless-modules-6.7.7-arm64-di -pppp-modules-6.7.7-arm64-di -psata-modules-6.7.7-arm64-di -pscsi-core-modules-6.7.7-arm64-di -pscsi-modules-6.7.7-arm64-di -pscsi-nic-modules-6.7.7-arm64-di -psound-modules-6.7.7-arm64-di -pspeakup-modules-6.7.7-arm64-di -psquashfs-modules-6.7.7-arm64-di -pudf-modules-6.7.7-arm64-di -puinput-modules-6.7.7-arm64-di -pusb-modules-6.7.7-arm64-di -pusb-serial-modules-6.7.7-arm64-di -pusb-storage-modules-6.7.7-arm64-di -pxfs-modules-6.7.7-arm64-di' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7' binary-arch_arm64_none_arm64_meta: - $(call if_package, linux-image-arm64-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-arm64-dbg' DH_OPTIONS='-plinux-image-arm64-dbg' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-arm64-dbg' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-image-arm64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-arm64-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-arm64-dbg' DH_OPTIONS='-plinux-image-arm64-dbg' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-arm64-dbg' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-image-arm64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_arm64_none_cloud-arm64:binary-arch_arm64_none_cloud-arm64_headers binary-arch_arm64_none_cloud-arm64_image binary-arch_arm64_none_cloud-arm64_image-dbg binary-arch_arm64_none_cloud-arm64_meta binary-arch_arm64_none_cloud-arm64_headers: - $(call if_package, linux-headers-6.6.15-cloud-arm64, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-cloud-arm64' DH_OPTIONS='-plinux-headers-6.6.15-cloud-arm64' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/arm64/config.cloud-arm64 debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-headers-6.6.15-cloud-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-cloud-arm64, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-cloud-arm64' DH_OPTIONS='-plinux-headers-6.7.7-cloud-arm64' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-headers-6.7.7-cloud-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_arm64_none_cloud-arm64_image: - $(call if_package, linux-image-6.6.15-cloud-arm64-unsigned, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-cloud-arm64-unsigned' DH_OPTIONS='-plinux-image-6.6.15-cloud-arm64-unsigned' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/arm64/config.cloud-arm64 debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-image-6.6.15-cloud-arm64-unsigned' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-cloud-arm64-unsigned, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-cloud-arm64-unsigned' DH_OPTIONS='-plinux-image-6.7.7-cloud-arm64-unsigned' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-image-6.7.7-cloud-arm64-unsigned' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_arm64_none_cloud-arm64_image-dbg: - $(call if_package, linux-image-6.6.15-cloud-arm64-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-cloud-arm64-dbg' DH_OPTIONS='-plinux-image-6.6.15-cloud-arm64-dbg' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/arm64/config.cloud-arm64 debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-image-6.6.15-cloud-arm64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-cloud-arm64-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-cloud-arm64-dbg' DH_OPTIONS='-plinux-image-6.7.7-cloud-arm64-dbg' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-image-6.7.7-cloud-arm64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_arm64_none_cloud-arm64_meta: - $(call if_package, linux-image-cloud-arm64-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-cloud-arm64-dbg' DH_OPTIONS='-plinux-image-cloud-arm64-dbg' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-cloud-arm64-dbg' KCONFIG='debian/config/config debian/config/arm64/config debian/config/arm64/config.cloud-arm64 debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-image-cloud-arm64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-cloud-arm64-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-cloud-arm64-dbg' DH_OPTIONS='-plinux-image-cloud-arm64-dbg' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-cloud-arm64-dbg' KCONFIG='debian/config/config debian/config/arm64/config debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-image-cloud-arm64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_arm64_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.6.15' ARCH='arm64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='arm64' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.7.7' ARCH='arm64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='arm64' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_arm64_rt:binary-arch_arm64_rt_arm64 binary-arch_arm64_rt_arm64:binary-arch_arm64_rt_arm64_headers binary-arch_arm64_rt_arm64_image binary-arch_arm64_rt_arm64_image-dbg binary-arch_arm64_rt_arm64_meta binary-arch_arm64_rt_arm64_headers: - $(call if_package, linux-headers-6.6.15-rt-arm64, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-rt-arm64' DH_OPTIONS='-plinux-headers-6.6.15-rt-arm64' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-headers-6.6.15-rt-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-rt-arm64, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-rt-arm64' DH_OPTIONS='-plinux-headers-6.7.7-rt-arm64' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-headers-6.7.7-rt-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_arm64_rt_arm64_image: - $(call if_package, linux-image-6.6.15-rt-arm64-unsigned, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-rt-arm64-unsigned' DH_OPTIONS='-plinux-image-6.6.15-rt-arm64-unsigned' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-image-6.6.15-rt-arm64-unsigned' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-rt-arm64-unsigned, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-rt-arm64-unsigned' DH_OPTIONS='-plinux-image-6.7.7-rt-arm64-unsigned' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-image-6.7.7-rt-arm64-unsigned' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_arm64_rt_arm64_image-dbg: - $(call if_package, linux-image-6.6.15-rt-arm64-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-rt-arm64-dbg' DH_OPTIONS='-plinux-image-6.6.15-rt-arm64-dbg' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-image-6.6.15-rt-arm64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-rt-arm64-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-rt-arm64-dbg' DH_OPTIONS='-plinux-image-6.7.7-rt-arm64-dbg' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-image-6.7.7-rt-arm64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_arm64_rt_arm64_meta: - $(call if_package, linux-image-rt-arm64-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-arm64-dbg' DH_OPTIONS='-plinux-image-rt-arm64-dbg' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-rt-arm64-dbg' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-image-rt-arm64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-rt-arm64-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-arm64-dbg' DH_OPTIONS='-plinux-image-rt-arm64-dbg' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-rt-arm64-dbg' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-image-rt-arm64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_arm64_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.6.15' ARCH='arm64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='arm64' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.7.7' ARCH='arm64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='arm64' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_arm64_signed-template: - $(call if_package, linux-image-arm64-signed-template, $(MAKE) -f debian/rules.real binary_signed-template ABINAME='6.6.15' ARCH='arm64' DESTDIR='$(CURDIR)/debian/linux-image-arm64-signed-template' DH_OPTIONS='-plinux-image-arm64-signed-template' KERNEL_ARCH='arm64' PACKAGE_NAME='linux-image-arm64-signed-template' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-arm64-signed-template, $(MAKE) -f debian/rules.real binary_signed-template ABINAME='6.7.7' ARCH='arm64' DESTDIR='$(CURDIR)/debian/linux-image-arm64-signed-template' DH_OPTIONS='-plinux-image-arm64-signed-template' KERNEL_ARCH='arm64' PACKAGE_NAME='linux-image-arm64-signed-template' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_arm64_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.6.15' ARCH='arm64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='arm64' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.7.7' ARCH='arm64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='arm64' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_armel:binary-arch_armel_bpftool binary-arch_armel_config binary-arch_armel_cpupower binary-arch_armel_hyperv-daemons binary-arch_armel_kbuild binary-arch_armel_none binary-arch_armel_perf binary-arch_armel_rtla binary-arch_armel_usbip binary-arch_armel_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.6.15' ARCH='armel' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='arm' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.7.7' ARCH='armel' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='arm' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_armel_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real binary_config ABINAME='6.6.15' ARCH='armel' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='arm' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real binary_config ABINAME='6.7.7' ARCH='armel' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='arm' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_armel_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.6.15' ARCH='armel' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='arm' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.7.7' ARCH='armel' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='arm' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_armel_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.6.15' ARCH='armel' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='arm' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.7.7' ARCH='armel' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='arm' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_armel_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.6.15' ARCH='armel' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='arm' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.7.7' ARCH='armel' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='arm' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_armel_none:binary-arch_armel_none_rpi binary-arch_armel_none_rpi:binary-arch_armel_none_rpi_headers binary-arch_armel_none_rpi_image binary-arch_armel_none_rpi_image-dbg binary-arch_armel_none_rpi_meta binary-arch_armel_none_rpi_headers: - $(call if_package, linux-headers-6.6.15-rpi, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='armel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-rpi' DH_OPTIONS='-plinux-headers-6.6.15-rpi' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' PACKAGE_NAME='linux-headers-6.6.15-rpi' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-rpi, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='armel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-rpi' DH_OPTIONS='-plinux-headers-6.7.7-rpi' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' PACKAGE_NAME='linux-headers-6.7.7-rpi' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_armel_none_rpi_image: - $(call if_package, linux-image-6.6.15-rpi, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='armel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-rpi' DH_OPTIONS='-plinux-image-6.6.15-rpi' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' PACKAGE_NAME='linux-image-6.6.15-rpi' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-rpi, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='armel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-rpi' DH_OPTIONS='-plinux-image-6.7.7-rpi' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' PACKAGE_NAME='linux-image-6.7.7-rpi' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_armel_none_rpi_image-dbg: - $(call if_package, linux-image-6.6.15-rpi-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='armel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-rpi-dbg' DH_OPTIONS='-plinux-image-6.6.15-rpi-dbg' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' PACKAGE_NAME='linux-image-6.6.15-rpi-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-rpi-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='armel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-rpi-dbg' DH_OPTIONS='-plinux-image-6.7.7-rpi-dbg' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' PACKAGE_NAME='linux-image-6.7.7-rpi-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_armel_none_rpi_meta: - $(call if_package, linux-image-rpi, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='armel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rpi' DH_OPTIONS='-plinux-image-rpi' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-rpi' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' PACKAGE_NAME='linux-image-rpi' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-rpi, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='armel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-rpi' DH_OPTIONS='-plinux-headers-rpi' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-rpi' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' PACKAGE_NAME='linux-headers-rpi' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-rpi-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='armel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rpi-dbg' DH_OPTIONS='-plinux-image-rpi-dbg' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-rpi-dbg' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' PACKAGE_NAME='linux-image-rpi-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-rpi, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='armel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rpi' DH_OPTIONS='-plinux-image-rpi' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-rpi' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' PACKAGE_NAME='linux-image-rpi' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-rpi, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='armel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-rpi' DH_OPTIONS='-plinux-headers-rpi' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-rpi' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' PACKAGE_NAME='linux-headers-rpi' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-rpi-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='armel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rpi-dbg' DH_OPTIONS='-plinux-image-rpi-dbg' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-rpi-dbg' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' PACKAGE_NAME='linux-image-rpi-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_armel_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.6.15' ARCH='armel' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='arm' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.7.7' ARCH='armel' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='arm' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_armel_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.6.15' ARCH='armel' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='arm' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.7.7' ARCH='armel' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='arm' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_armel_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.6.15' ARCH='armel' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='arm' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.7.7' ARCH='armel' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='arm' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_armhf:binary-arch_armhf_bpftool binary-arch_armhf_config binary-arch_armhf_cpupower binary-arch_armhf_hyperv-daemons binary-arch_armhf_kbuild binary-arch_armhf_none binary-arch_armhf_perf binary-arch_armhf_rt binary-arch_armhf_rtla binary-arch_armhf_usbip binary-arch_armhf_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.6.15' ARCH='armhf' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='arm' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.7.7' ARCH='armhf' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='arm' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_armhf_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real binary_config ABINAME='6.6.15' ARCH='armhf' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='arm' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real binary_config ABINAME='6.7.7' ARCH='armhf' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='arm' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_armhf_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.6.15' ARCH='armhf' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='arm' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.7.7' ARCH='armhf' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='arm' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_armhf_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.6.15' ARCH='armhf' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='arm' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.7.7' ARCH='armhf' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='arm' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_armhf_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.6.15' ARCH='armhf' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='arm' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.7.7' ARCH='armhf' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='arm' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_armhf_none:binary-arch_armhf_none_armmp binary-arch_armhf_none_armmp-lpae binary-arch_armhf_none_armmp:binary-arch_armhf_none_armmp_headers binary-arch_armhf_none_armmp_image binary-arch_armhf_none_armmp_image-dbg binary-arch_armhf_none_armmp_installer binary-arch_armhf_none_armmp_meta binary-arch_armhf_none_armmp-lpae:binary-arch_armhf_none_armmp-lpae_headers binary-arch_armhf_none_armmp-lpae_image binary-arch_armhf_none_armmp-lpae_image-dbg binary-arch_armhf_none_armmp-lpae_meta binary-arch_armhf_none_armmp-lpae_headers: - $(call if_package, linux-headers-6.6.15-armmp-lpae, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-armmp-lpae' DH_OPTIONS='-plinux-headers-6.6.15-armmp-lpae' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' PACKAGE_NAME='linux-headers-6.6.15-armmp-lpae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-armmp-lpae, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-armmp-lpae' DH_OPTIONS='-plinux-headers-6.7.7-armmp-lpae' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' PACKAGE_NAME='linux-headers-6.7.7-armmp-lpae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_armhf_none_armmp-lpae_image: - $(call if_package, linux-image-6.6.15-armmp-lpae, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-armmp-lpae' DH_OPTIONS='-plinux-image-6.6.15-armmp-lpae' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' PACKAGE_NAME='linux-image-6.6.15-armmp-lpae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-armmp-lpae, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-armmp-lpae' DH_OPTIONS='-plinux-image-6.7.7-armmp-lpae' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' PACKAGE_NAME='linux-image-6.7.7-armmp-lpae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_armhf_none_armmp-lpae_image-dbg: - $(call if_package, linux-image-6.6.15-armmp-lpae-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-armmp-lpae-dbg' DH_OPTIONS='-plinux-image-6.6.15-armmp-lpae-dbg' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' PACKAGE_NAME='linux-image-6.6.15-armmp-lpae-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-armmp-lpae-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-armmp-lpae-dbg' DH_OPTIONS='-plinux-image-6.7.7-armmp-lpae-dbg' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' PACKAGE_NAME='linux-image-6.7.7-armmp-lpae-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_armhf_none_armmp-lpae_meta: - $(call if_package, linux-image-armmp-lpae, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-armmp-lpae' DH_OPTIONS='-plinux-image-armmp-lpae' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-armmp-lpae' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' PACKAGE_NAME='linux-image-armmp-lpae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-armmp-lpae, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-armmp-lpae' DH_OPTIONS='-plinux-headers-armmp-lpae' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-armmp-lpae' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' PACKAGE_NAME='linux-headers-armmp-lpae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-image-armmp-lpae-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-armmp-lpae-dbg' DH_OPTIONS='-plinux-image-armmp-lpae-dbg' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-armmp-lpae-dbg' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' PACKAGE_NAME='linux-image-armmp-lpae-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-armmp-lpae, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-armmp-lpae' DH_OPTIONS='-plinux-image-armmp-lpae' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-armmp-lpae' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' PACKAGE_NAME='linux-image-armmp-lpae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-armmp-lpae, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-armmp-lpae' DH_OPTIONS='-plinux-headers-armmp-lpae' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-armmp-lpae' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' PACKAGE_NAME='linux-headers-armmp-lpae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-image-armmp-lpae-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-armmp-lpae-dbg' DH_OPTIONS='-plinux-image-armmp-lpae-dbg' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-armmp-lpae-dbg' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' PACKAGE_NAME='linux-image-armmp-lpae-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_armhf_none_armmp_headers: - $(call if_package, linux-headers-6.6.15-armmp, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-armmp' DH_OPTIONS='-plinux-headers-6.6.15-armmp' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' PACKAGE_NAME='linux-headers-6.6.15-armmp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-armmp, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-armmp' DH_OPTIONS='-plinux-headers-6.7.7-armmp' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' PACKAGE_NAME='linux-headers-6.7.7-armmp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_armhf_none_armmp_image: - $(call if_package, linux-image-6.6.15-armmp, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-armmp' DH_OPTIONS='-plinux-image-6.6.15-armmp' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' PACKAGE_NAME='linux-image-6.6.15-armmp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-armmp, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-armmp' DH_OPTIONS='-plinux-image-6.7.7-armmp' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' PACKAGE_NAME='linux-image-6.7.7-armmp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_armhf_none_armmp_image-dbg: - $(call if_package, linux-image-6.6.15-armmp-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-armmp-dbg' DH_OPTIONS='-plinux-image-6.6.15-armmp-dbg' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' PACKAGE_NAME='linux-image-6.6.15-armmp-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-armmp-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-armmp-dbg' DH_OPTIONS='-plinux-image-6.7.7-armmp-dbg' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' PACKAGE_NAME='linux-image-6.7.7-armmp-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_armhf_none_armmp_installer: - $(call if_package, ata-modules-6.6.15-armmp-di btrfs-modules-6.6.15-armmp-di cdrom-core-modules-6.6.15-armmp-di crc-modules-6.6.15-armmp-di crypto-dm-modules-6.6.15-armmp-di crypto-modules-6.6.15-armmp-di efi-modules-6.6.15-armmp-di event-modules-6.6.15-armmp-di ext4-modules-6.6.15-armmp-di f2fs-modules-6.6.15-armmp-di fat-modules-6.6.15-armmp-di fb-modules-6.6.15-armmp-di i2c-modules-6.6.15-armmp-di input-modules-6.6.15-armmp-di isofs-modules-6.6.15-armmp-di jfs-modules-6.6.15-armmp-di kernel-image-6.6.15-armmp-di leds-modules-6.6.15-armmp-di loop-modules-6.6.15-armmp-di md-modules-6.6.15-armmp-di mmc-modules-6.6.15-armmp-di mtd-modules-6.6.15-armmp-di multipath-modules-6.6.15-armmp-di nbd-modules-6.6.15-armmp-di nic-modules-6.6.15-armmp-di nic-shared-modules-6.6.15-armmp-di nic-usb-modules-6.6.15-armmp-di nic-wireless-modules-6.6.15-armmp-di pata-modules-6.6.15-armmp-di ppp-modules-6.6.15-armmp-di sata-modules-6.6.15-armmp-di scsi-core-modules-6.6.15-armmp-di scsi-modules-6.6.15-armmp-di scsi-nic-modules-6.6.15-armmp-di sound-modules-6.6.15-armmp-di speakup-modules-6.6.15-armmp-di squashfs-modules-6.6.15-armmp-di udf-modules-6.6.15-armmp-di uinput-modules-6.6.15-armmp-di usb-modules-6.6.15-armmp-di usb-serial-modules-6.6.15-armmp-di usb-storage-modules-6.6.15-armmp-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.6.15-armmp-di -pbtrfs-modules-6.6.15-armmp-di -pcdrom-core-modules-6.6.15-armmp-di -pcrc-modules-6.6.15-armmp-di -pcrypto-dm-modules-6.6.15-armmp-di -pcrypto-modules-6.6.15-armmp-di -pefi-modules-6.6.15-armmp-di -pevent-modules-6.6.15-armmp-di -pext4-modules-6.6.15-armmp-di -pf2fs-modules-6.6.15-armmp-di -pfat-modules-6.6.15-armmp-di -pfb-modules-6.6.15-armmp-di -pi2c-modules-6.6.15-armmp-di -pinput-modules-6.6.15-armmp-di -pisofs-modules-6.6.15-armmp-di -pjfs-modules-6.6.15-armmp-di -pkernel-image-6.6.15-armmp-di -pleds-modules-6.6.15-armmp-di -ploop-modules-6.6.15-armmp-di -pmd-modules-6.6.15-armmp-di -pmmc-modules-6.6.15-armmp-di -pmtd-modules-6.6.15-armmp-di -pmultipath-modules-6.6.15-armmp-di -pnbd-modules-6.6.15-armmp-di -pnic-modules-6.6.15-armmp-di -pnic-shared-modules-6.6.15-armmp-di -pnic-usb-modules-6.6.15-armmp-di -pnic-wireless-modules-6.6.15-armmp-di -ppata-modules-6.6.15-armmp-di -pppp-modules-6.6.15-armmp-di -psata-modules-6.6.15-armmp-di -pscsi-core-modules-6.6.15-armmp-di -pscsi-modules-6.6.15-armmp-di -pscsi-nic-modules-6.6.15-armmp-di -psound-modules-6.6.15-armmp-di -pspeakup-modules-6.6.15-armmp-di -psquashfs-modules-6.6.15-armmp-di -pudf-modules-6.6.15-armmp-di -puinput-modules-6.6.15-armmp-di -pusb-modules-6.6.15-armmp-di -pusb-serial-modules-6.6.15-armmp-di -pusb-storage-modules-6.6.15-armmp-di' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-armmp-di' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, ata-modules-6.7.7-armmp-di btrfs-modules-6.7.7-armmp-di cdrom-core-modules-6.7.7-armmp-di crc-modules-6.7.7-armmp-di crypto-dm-modules-6.7.7-armmp-di crypto-modules-6.7.7-armmp-di efi-modules-6.7.7-armmp-di event-modules-6.7.7-armmp-di ext4-modules-6.7.7-armmp-di f2fs-modules-6.7.7-armmp-di fat-modules-6.7.7-armmp-di fb-modules-6.7.7-armmp-di i2c-modules-6.7.7-armmp-di input-modules-6.7.7-armmp-di isofs-modules-6.7.7-armmp-di jfs-modules-6.7.7-armmp-di kernel-image-6.7.7-armmp-di leds-modules-6.7.7-armmp-di loop-modules-6.7.7-armmp-di md-modules-6.7.7-armmp-di mmc-modules-6.7.7-armmp-di mtd-modules-6.7.7-armmp-di multipath-modules-6.7.7-armmp-di nbd-modules-6.7.7-armmp-di nic-modules-6.7.7-armmp-di nic-shared-modules-6.7.7-armmp-di nic-usb-modules-6.7.7-armmp-di nic-wireless-modules-6.7.7-armmp-di pata-modules-6.7.7-armmp-di ppp-modules-6.7.7-armmp-di sata-modules-6.7.7-armmp-di scsi-core-modules-6.7.7-armmp-di scsi-modules-6.7.7-armmp-di scsi-nic-modules-6.7.7-armmp-di sound-modules-6.7.7-armmp-di speakup-modules-6.7.7-armmp-di squashfs-modules-6.7.7-armmp-di udf-modules-6.7.7-armmp-di uinput-modules-6.7.7-armmp-di usb-modules-6.7.7-armmp-di usb-serial-modules-6.7.7-armmp-di usb-storage-modules-6.7.7-armmp-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.7.7-armmp-di -pbtrfs-modules-6.7.7-armmp-di -pcdrom-core-modules-6.7.7-armmp-di -pcrc-modules-6.7.7-armmp-di -pcrypto-dm-modules-6.7.7-armmp-di -pcrypto-modules-6.7.7-armmp-di -pefi-modules-6.7.7-armmp-di -pevent-modules-6.7.7-armmp-di -pext4-modules-6.7.7-armmp-di -pf2fs-modules-6.7.7-armmp-di -pfat-modules-6.7.7-armmp-di -pfb-modules-6.7.7-armmp-di -pi2c-modules-6.7.7-armmp-di -pinput-modules-6.7.7-armmp-di -pisofs-modules-6.7.7-armmp-di -pjfs-modules-6.7.7-armmp-di -pkernel-image-6.7.7-armmp-di -pleds-modules-6.7.7-armmp-di -ploop-modules-6.7.7-armmp-di -pmd-modules-6.7.7-armmp-di -pmmc-modules-6.7.7-armmp-di -pmtd-modules-6.7.7-armmp-di -pmultipath-modules-6.7.7-armmp-di -pnbd-modules-6.7.7-armmp-di -pnic-modules-6.7.7-armmp-di -pnic-shared-modules-6.7.7-armmp-di -pnic-usb-modules-6.7.7-armmp-di -pnic-wireless-modules-6.7.7-armmp-di -ppata-modules-6.7.7-armmp-di -pppp-modules-6.7.7-armmp-di -psata-modules-6.7.7-armmp-di -pscsi-core-modules-6.7.7-armmp-di -pscsi-modules-6.7.7-armmp-di -pscsi-nic-modules-6.7.7-armmp-di -psound-modules-6.7.7-armmp-di -pspeakup-modules-6.7.7-armmp-di -psquashfs-modules-6.7.7-armmp-di -pudf-modules-6.7.7-armmp-di -puinput-modules-6.7.7-armmp-di -pusb-modules-6.7.7-armmp-di -pusb-serial-modules-6.7.7-armmp-di -pusb-storage-modules-6.7.7-armmp-di' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-armmp-di' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_armhf_none_armmp_meta: - $(call if_package, linux-image-armmp, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-armmp' DH_OPTIONS='-plinux-image-armmp' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-armmp' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' PACKAGE_NAME='linux-image-armmp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-armmp, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-armmp' DH_OPTIONS='-plinux-headers-armmp' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-armmp' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' PACKAGE_NAME='linux-headers-armmp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-image-armmp-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-armmp-dbg' DH_OPTIONS='-plinux-image-armmp-dbg' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-armmp-dbg' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' PACKAGE_NAME='linux-image-armmp-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-armmp, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-armmp' DH_OPTIONS='-plinux-image-armmp' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-armmp' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' PACKAGE_NAME='linux-image-armmp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-armmp, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-armmp' DH_OPTIONS='-plinux-headers-armmp' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-armmp' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' PACKAGE_NAME='linux-headers-armmp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-image-armmp-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-armmp-dbg' DH_OPTIONS='-plinux-image-armmp-dbg' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-armmp-dbg' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' PACKAGE_NAME='linux-image-armmp-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_armhf_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.6.15' ARCH='armhf' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='arm' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.7.7' ARCH='armhf' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='arm' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_armhf_rt:binary-arch_armhf_rt_armmp binary-arch_armhf_rt_armmp:binary-arch_armhf_rt_armmp_headers binary-arch_armhf_rt_armmp_image binary-arch_armhf_rt_armmp_image-dbg binary-arch_armhf_rt_armmp_meta binary-arch_armhf_rt_armmp_headers: - $(call if_package, linux-headers-6.6.15-rt-armmp, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-rt-armmp' DH_OPTIONS='-plinux-headers-6.6.15-rt-armmp' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' PACKAGE_NAME='linux-headers-6.6.15-rt-armmp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-rt-armmp, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-rt-armmp' DH_OPTIONS='-plinux-headers-6.7.7-rt-armmp' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' PACKAGE_NAME='linux-headers-6.7.7-rt-armmp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_armhf_rt_armmp_image: - $(call if_package, linux-image-6.6.15-rt-armmp, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-rt-armmp' DH_OPTIONS='-plinux-image-6.6.15-rt-armmp' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' PACKAGE_NAME='linux-image-6.6.15-rt-armmp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-rt-armmp, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-rt-armmp' DH_OPTIONS='-plinux-image-6.7.7-rt-armmp' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' PACKAGE_NAME='linux-image-6.7.7-rt-armmp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_armhf_rt_armmp_image-dbg: - $(call if_package, linux-image-6.6.15-rt-armmp-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-rt-armmp-dbg' DH_OPTIONS='-plinux-image-6.6.15-rt-armmp-dbg' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' PACKAGE_NAME='linux-image-6.6.15-rt-armmp-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-rt-armmp-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-rt-armmp-dbg' DH_OPTIONS='-plinux-image-6.7.7-rt-armmp-dbg' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' PACKAGE_NAME='linux-image-6.7.7-rt-armmp-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_armhf_rt_armmp_meta: - $(call if_package, linux-image-rt-armmp, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-armmp' DH_OPTIONS='-plinux-image-rt-armmp' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-rt-armmp' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' PACKAGE_NAME='linux-image-rt-armmp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-rt-armmp, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-rt-armmp' DH_OPTIONS='-plinux-headers-rt-armmp' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-rt-armmp' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' PACKAGE_NAME='linux-headers-rt-armmp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-image-rt-armmp-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-armmp-dbg' DH_OPTIONS='-plinux-image-rt-armmp-dbg' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-rt-armmp-dbg' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' PACKAGE_NAME='linux-image-rt-armmp-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-rt-armmp, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-armmp' DH_OPTIONS='-plinux-image-rt-armmp' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-rt-armmp' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' PACKAGE_NAME='linux-image-rt-armmp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-rt-armmp, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-rt-armmp' DH_OPTIONS='-plinux-headers-rt-armmp' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-rt-armmp' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' PACKAGE_NAME='linux-headers-rt-armmp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-image-rt-armmp-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-armmp-dbg' DH_OPTIONS='-plinux-image-rt-armmp-dbg' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-rt-armmp-dbg' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' PACKAGE_NAME='linux-image-rt-armmp-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_armhf_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.6.15' ARCH='armhf' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='arm' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.7.7' ARCH='armhf' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='arm' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_armhf_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.6.15' ARCH='armhf' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='arm' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.7.7' ARCH='armhf' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='arm' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_hppa:binary-arch_hppa_bpftool binary-arch_hppa_config binary-arch_hppa_cpupower binary-arch_hppa_hyperv-daemons binary-arch_hppa_kbuild binary-arch_hppa_none binary-arch_hppa_perf binary-arch_hppa_rtla binary-arch_hppa_usbip binary-arch_hppa_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.6.15' ARCH='hppa' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='parisc' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.7.7' ARCH='hppa' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='parisc' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_hppa_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real binary_config ABINAME='6.6.15' ARCH='hppa' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='parisc' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real binary_config ABINAME='6.7.7' ARCH='hppa' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='parisc' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_hppa_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.6.15' ARCH='hppa' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='parisc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.7.7' ARCH='hppa' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='parisc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_hppa_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.6.15' ARCH='hppa' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='parisc' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.7.7' ARCH='hppa' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='parisc' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_hppa_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.6.15' ARCH='hppa' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='parisc' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.7.7' ARCH='hppa' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='parisc' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_hppa_none:binary-arch_hppa_none_parisc binary-arch_hppa_none_parisc64 binary-arch_hppa_none_parisc:binary-arch_hppa_none_parisc_headers binary-arch_hppa_none_parisc_image binary-arch_hppa_none_parisc_image-dbg binary-arch_hppa_none_parisc_installer binary-arch_hppa_none_parisc_meta binary-arch_hppa_none_parisc64:binary-arch_hppa_none_parisc64_headers binary-arch_hppa_none_parisc64_image binary-arch_hppa_none_parisc64_image-dbg binary-arch_hppa_none_parisc64_installer binary-arch_hppa_none_parisc64_meta binary-arch_hppa_none_parisc64_headers: - $(call if_package, linux-headers-6.6.15-parisc64, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='hppa' COMPAT_DEB_ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-parisc64' DH_OPTIONS='-plinux-headers-6.6.15-parisc64' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCFLAGS='-fno-cse-follow-jumps' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc64\""' KERNEL_ARCH='parisc' KERNEL_DEB_ARCH='undefined' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' PACKAGE_NAME='linux-headers-6.6.15-parisc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-parisc64, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-parisc64' DH_OPTIONS='-plinux-headers-6.7.7-parisc64' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc64\""' KERNEL_ARCH='parisc' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' PACKAGE_NAME='linux-headers-6.7.7-parisc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_hppa_none_parisc64_image: - $(call if_package, linux-image-6.6.15-parisc64, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='hppa' COMPAT_DEB_ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-parisc64' DH_OPTIONS='-plinux-image-6.6.15-parisc64' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCFLAGS='-fno-cse-follow-jumps' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc64\""' KERNEL_ARCH='parisc' KERNEL_DEB_ARCH='undefined' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' PACKAGE_NAME='linux-image-6.6.15-parisc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-parisc64, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-parisc64' DH_OPTIONS='-plinux-image-6.7.7-parisc64' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc64\""' KERNEL_ARCH='parisc' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' PACKAGE_NAME='linux-image-6.7.7-parisc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_hppa_none_parisc64_image-dbg: - $(call if_package, linux-image-6.6.15-parisc64-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='hppa' COMPAT_DEB_ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-parisc64-dbg' DH_OPTIONS='-plinux-image-6.6.15-parisc64-dbg' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCFLAGS='-fno-cse-follow-jumps' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc64\""' KERNEL_ARCH='parisc' KERNEL_DEB_ARCH='undefined' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' PACKAGE_NAME='linux-image-6.6.15-parisc64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-parisc64-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-parisc64-dbg' DH_OPTIONS='-plinux-image-6.7.7-parisc64-dbg' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc64\""' KERNEL_ARCH='parisc' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' PACKAGE_NAME='linux-image-6.7.7-parisc64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_hppa_none_parisc64_installer: - $(call if_package, ata-modules-6.6.15-parisc64-di btrfs-modules-6.6.15-parisc64-di cdrom-core-modules-6.6.15-parisc64-di crc-modules-6.6.15-parisc64-di crypto-dm-modules-6.6.15-parisc64-di crypto-modules-6.6.15-parisc64-di event-modules-6.6.15-parisc64-di ext4-modules-6.6.15-parisc64-di f2fs-modules-6.6.15-parisc64-di fat-modules-6.6.15-parisc64-di fb-modules-6.6.15-parisc64-di input-modules-6.6.15-parisc64-di isofs-modules-6.6.15-parisc64-di jfs-modules-6.6.15-parisc64-di kernel-image-6.6.15-parisc64-di loop-modules-6.6.15-parisc64-di md-modules-6.6.15-parisc64-di mouse-modules-6.6.15-parisc64-di multipath-modules-6.6.15-parisc64-di nbd-modules-6.6.15-parisc64-di nic-modules-6.6.15-parisc64-di nic-shared-modules-6.6.15-parisc64-di nic-usb-modules-6.6.15-parisc64-di pata-modules-6.6.15-parisc64-di ppp-modules-6.6.15-parisc64-di sata-modules-6.6.15-parisc64-di scsi-core-modules-6.6.15-parisc64-di scsi-modules-6.6.15-parisc64-di serial-modules-6.6.15-parisc64-di squashfs-modules-6.6.15-parisc64-di usb-modules-6.6.15-parisc64-di usb-serial-modules-6.6.15-parisc64-di usb-storage-modules-6.6.15-parisc64-di xfs-modules-6.6.15-parisc64-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.6.15' ARCH='hppa' COMPAT_DEB_ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.6.15-parisc64-di -pbtrfs-modules-6.6.15-parisc64-di -pcdrom-core-modules-6.6.15-parisc64-di -pcrc-modules-6.6.15-parisc64-di -pcrypto-dm-modules-6.6.15-parisc64-di -pcrypto-modules-6.6.15-parisc64-di -pevent-modules-6.6.15-parisc64-di -pext4-modules-6.6.15-parisc64-di -pf2fs-modules-6.6.15-parisc64-di -pfat-modules-6.6.15-parisc64-di -pfb-modules-6.6.15-parisc64-di -pinput-modules-6.6.15-parisc64-di -pisofs-modules-6.6.15-parisc64-di -pjfs-modules-6.6.15-parisc64-di -pkernel-image-6.6.15-parisc64-di -ploop-modules-6.6.15-parisc64-di -pmd-modules-6.6.15-parisc64-di -pmouse-modules-6.6.15-parisc64-di -pmultipath-modules-6.6.15-parisc64-di -pnbd-modules-6.6.15-parisc64-di -pnic-modules-6.6.15-parisc64-di -pnic-shared-modules-6.6.15-parisc64-di -pnic-usb-modules-6.6.15-parisc64-di -ppata-modules-6.6.15-parisc64-di -pppp-modules-6.6.15-parisc64-di -psata-modules-6.6.15-parisc64-di -pscsi-core-modules-6.6.15-parisc64-di -pscsi-modules-6.6.15-parisc64-di -pserial-modules-6.6.15-parisc64-di -psquashfs-modules-6.6.15-parisc64-di -pusb-modules-6.6.15-parisc64-di -pusb-serial-modules-6.6.15-parisc64-di -pusb-storage-modules-6.6.15-parisc64-di -pxfs-modules-6.6.15-parisc64-di' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-parisc64-di' KCFLAGS='-fno-cse-follow-jumps' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc64\""' KERNEL_ARCH='parisc' KERNEL_DEB_ARCH='undefined' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, ata-modules-6.7.7-parisc64-di btrfs-modules-6.7.7-parisc64-di cdrom-core-modules-6.7.7-parisc64-di crc-modules-6.7.7-parisc64-di crypto-dm-modules-6.7.7-parisc64-di crypto-modules-6.7.7-parisc64-di event-modules-6.7.7-parisc64-di ext4-modules-6.7.7-parisc64-di f2fs-modules-6.7.7-parisc64-di fat-modules-6.7.7-parisc64-di fb-modules-6.7.7-parisc64-di input-modules-6.7.7-parisc64-di isofs-modules-6.7.7-parisc64-di jfs-modules-6.7.7-parisc64-di kernel-image-6.7.7-parisc64-di loop-modules-6.7.7-parisc64-di md-modules-6.7.7-parisc64-di mouse-modules-6.7.7-parisc64-di multipath-modules-6.7.7-parisc64-di nbd-modules-6.7.7-parisc64-di nic-modules-6.7.7-parisc64-di nic-shared-modules-6.7.7-parisc64-di nic-usb-modules-6.7.7-parisc64-di pata-modules-6.7.7-parisc64-di ppp-modules-6.7.7-parisc64-di sata-modules-6.7.7-parisc64-di scsi-core-modules-6.7.7-parisc64-di scsi-modules-6.7.7-parisc64-di serial-modules-6.7.7-parisc64-di squashfs-modules-6.7.7-parisc64-di usb-modules-6.7.7-parisc64-di usb-serial-modules-6.7.7-parisc64-di usb-storage-modules-6.7.7-parisc64-di xfs-modules-6.7.7-parisc64-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.7.7' ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.7.7-parisc64-di -pbtrfs-modules-6.7.7-parisc64-di -pcdrom-core-modules-6.7.7-parisc64-di -pcrc-modules-6.7.7-parisc64-di -pcrypto-dm-modules-6.7.7-parisc64-di -pcrypto-modules-6.7.7-parisc64-di -pevent-modules-6.7.7-parisc64-di -pext4-modules-6.7.7-parisc64-di -pf2fs-modules-6.7.7-parisc64-di -pfat-modules-6.7.7-parisc64-di -pfb-modules-6.7.7-parisc64-di -pinput-modules-6.7.7-parisc64-di -pisofs-modules-6.7.7-parisc64-di -pjfs-modules-6.7.7-parisc64-di -pkernel-image-6.7.7-parisc64-di -ploop-modules-6.7.7-parisc64-di -pmd-modules-6.7.7-parisc64-di -pmouse-modules-6.7.7-parisc64-di -pmultipath-modules-6.7.7-parisc64-di -pnbd-modules-6.7.7-parisc64-di -pnic-modules-6.7.7-parisc64-di -pnic-shared-modules-6.7.7-parisc64-di -pnic-usb-modules-6.7.7-parisc64-di -ppata-modules-6.7.7-parisc64-di -pppp-modules-6.7.7-parisc64-di -psata-modules-6.7.7-parisc64-di -pscsi-core-modules-6.7.7-parisc64-di -pscsi-modules-6.7.7-parisc64-di -pserial-modules-6.7.7-parisc64-di -psquashfs-modules-6.7.7-parisc64-di -pusb-modules-6.7.7-parisc64-di -pusb-serial-modules-6.7.7-parisc64-di -pusb-storage-modules-6.7.7-parisc64-di -pxfs-modules-6.7.7-parisc64-di' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-parisc64-di' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc64\""' KERNEL_ARCH='parisc' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_hppa_none_parisc64_meta: - $(call if_package, linux-image-parisc64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='hppa' COMPAT_DEB_ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-parisc64' DH_OPTIONS='-plinux-image-parisc64' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-parisc64' KCFLAGS='-fno-cse-follow-jumps' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc64\""' KERNEL_ARCH='parisc' KERNEL_DEB_ARCH='undefined' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' PACKAGE_NAME='linux-image-parisc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-parisc64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='hppa' COMPAT_DEB_ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-parisc64' DH_OPTIONS='-plinux-headers-parisc64' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-parisc64' KCFLAGS='-fno-cse-follow-jumps' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc64\""' KERNEL_ARCH='parisc' KERNEL_DEB_ARCH='undefined' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' PACKAGE_NAME='linux-headers-parisc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-parisc64-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='hppa' COMPAT_DEB_ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-parisc64-dbg' DH_OPTIONS='-plinux-image-parisc64-dbg' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-parisc64-dbg' KCFLAGS='-fno-cse-follow-jumps' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc64\""' KERNEL_ARCH='parisc' KERNEL_DEB_ARCH='undefined' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' PACKAGE_NAME='linux-image-parisc64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-parisc64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-parisc64' DH_OPTIONS='-plinux-image-parisc64' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-parisc64' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc64\""' KERNEL_ARCH='parisc' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' PACKAGE_NAME='linux-image-parisc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-parisc64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-parisc64' DH_OPTIONS='-plinux-headers-parisc64' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-parisc64' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc64\""' KERNEL_ARCH='parisc' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' PACKAGE_NAME='linux-headers-parisc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-parisc64-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-parisc64-dbg' DH_OPTIONS='-plinux-image-parisc64-dbg' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-parisc64-dbg' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc64\""' KERNEL_ARCH='parisc' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' PACKAGE_NAME='linux-image-parisc64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_hppa_none_parisc_headers: - $(call if_package, linux-headers-6.6.15-parisc, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-parisc' DH_OPTIONS='-plinux-headers-6.6.15-parisc' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' PACKAGE_NAME='linux-headers-6.6.15-parisc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-parisc, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-parisc' DH_OPTIONS='-plinux-headers-6.7.7-parisc' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' PACKAGE_NAME='linux-headers-6.7.7-parisc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_hppa_none_parisc_image: - $(call if_package, linux-image-6.6.15-parisc, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-parisc' DH_OPTIONS='-plinux-image-6.6.15-parisc' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' PACKAGE_NAME='linux-image-6.6.15-parisc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-parisc, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-parisc' DH_OPTIONS='-plinux-image-6.7.7-parisc' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' PACKAGE_NAME='linux-image-6.7.7-parisc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_hppa_none_parisc_image-dbg: - $(call if_package, linux-image-6.6.15-parisc-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-parisc-dbg' DH_OPTIONS='-plinux-image-6.6.15-parisc-dbg' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' PACKAGE_NAME='linux-image-6.6.15-parisc-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-parisc-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-parisc-dbg' DH_OPTIONS='-plinux-image-6.7.7-parisc-dbg' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' PACKAGE_NAME='linux-image-6.7.7-parisc-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_hppa_none_parisc_installer: - $(call if_package, ata-modules-6.6.15-parisc-di btrfs-modules-6.6.15-parisc-di cdrom-core-modules-6.6.15-parisc-di crc-modules-6.6.15-parisc-di crypto-dm-modules-6.6.15-parisc-di crypto-modules-6.6.15-parisc-di event-modules-6.6.15-parisc-di ext4-modules-6.6.15-parisc-di f2fs-modules-6.6.15-parisc-di fat-modules-6.6.15-parisc-di i2c-modules-6.6.15-parisc-di input-modules-6.6.15-parisc-di isofs-modules-6.6.15-parisc-di jfs-modules-6.6.15-parisc-di kernel-image-6.6.15-parisc-di loop-modules-6.6.15-parisc-di md-modules-6.6.15-parisc-di mouse-modules-6.6.15-parisc-di multipath-modules-6.6.15-parisc-di nbd-modules-6.6.15-parisc-di nic-modules-6.6.15-parisc-di nic-shared-modules-6.6.15-parisc-di nic-usb-modules-6.6.15-parisc-di pata-modules-6.6.15-parisc-di ppp-modules-6.6.15-parisc-di sata-modules-6.6.15-parisc-di scsi-core-modules-6.6.15-parisc-di scsi-modules-6.6.15-parisc-di serial-modules-6.6.15-parisc-di squashfs-modules-6.6.15-parisc-di usb-modules-6.6.15-parisc-di usb-serial-modules-6.6.15-parisc-di usb-storage-modules-6.6.15-parisc-di xfs-modules-6.6.15-parisc-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.6.15' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.6.15-parisc-di -pbtrfs-modules-6.6.15-parisc-di -pcdrom-core-modules-6.6.15-parisc-di -pcrc-modules-6.6.15-parisc-di -pcrypto-dm-modules-6.6.15-parisc-di -pcrypto-modules-6.6.15-parisc-di -pevent-modules-6.6.15-parisc-di -pext4-modules-6.6.15-parisc-di -pf2fs-modules-6.6.15-parisc-di -pfat-modules-6.6.15-parisc-di -pi2c-modules-6.6.15-parisc-di -pinput-modules-6.6.15-parisc-di -pisofs-modules-6.6.15-parisc-di -pjfs-modules-6.6.15-parisc-di -pkernel-image-6.6.15-parisc-di -ploop-modules-6.6.15-parisc-di -pmd-modules-6.6.15-parisc-di -pmouse-modules-6.6.15-parisc-di -pmultipath-modules-6.6.15-parisc-di -pnbd-modules-6.6.15-parisc-di -pnic-modules-6.6.15-parisc-di -pnic-shared-modules-6.6.15-parisc-di -pnic-usb-modules-6.6.15-parisc-di -ppata-modules-6.6.15-parisc-di -pppp-modules-6.6.15-parisc-di -psata-modules-6.6.15-parisc-di -pscsi-core-modules-6.6.15-parisc-di -pscsi-modules-6.6.15-parisc-di -pserial-modules-6.6.15-parisc-di -psquashfs-modules-6.6.15-parisc-di -pusb-modules-6.6.15-parisc-di -pusb-serial-modules-6.6.15-parisc-di -pusb-storage-modules-6.6.15-parisc-di -pxfs-modules-6.6.15-parisc-di' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-parisc-di' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, ata-modules-6.7.7-parisc-di btrfs-modules-6.7.7-parisc-di cdrom-core-modules-6.7.7-parisc-di crc-modules-6.7.7-parisc-di crypto-dm-modules-6.7.7-parisc-di crypto-modules-6.7.7-parisc-di event-modules-6.7.7-parisc-di ext4-modules-6.7.7-parisc-di f2fs-modules-6.7.7-parisc-di fat-modules-6.7.7-parisc-di i2c-modules-6.7.7-parisc-di input-modules-6.7.7-parisc-di isofs-modules-6.7.7-parisc-di jfs-modules-6.7.7-parisc-di kernel-image-6.7.7-parisc-di loop-modules-6.7.7-parisc-di md-modules-6.7.7-parisc-di mouse-modules-6.7.7-parisc-di multipath-modules-6.7.7-parisc-di nbd-modules-6.7.7-parisc-di nic-modules-6.7.7-parisc-di nic-shared-modules-6.7.7-parisc-di nic-usb-modules-6.7.7-parisc-di pata-modules-6.7.7-parisc-di ppp-modules-6.7.7-parisc-di sata-modules-6.7.7-parisc-di scsi-core-modules-6.7.7-parisc-di scsi-modules-6.7.7-parisc-di serial-modules-6.7.7-parisc-di squashfs-modules-6.7.7-parisc-di usb-modules-6.7.7-parisc-di usb-serial-modules-6.7.7-parisc-di usb-storage-modules-6.7.7-parisc-di xfs-modules-6.7.7-parisc-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.7.7' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.7.7-parisc-di -pbtrfs-modules-6.7.7-parisc-di -pcdrom-core-modules-6.7.7-parisc-di -pcrc-modules-6.7.7-parisc-di -pcrypto-dm-modules-6.7.7-parisc-di -pcrypto-modules-6.7.7-parisc-di -pevent-modules-6.7.7-parisc-di -pext4-modules-6.7.7-parisc-di -pf2fs-modules-6.7.7-parisc-di -pfat-modules-6.7.7-parisc-di -pi2c-modules-6.7.7-parisc-di -pinput-modules-6.7.7-parisc-di -pisofs-modules-6.7.7-parisc-di -pjfs-modules-6.7.7-parisc-di -pkernel-image-6.7.7-parisc-di -ploop-modules-6.7.7-parisc-di -pmd-modules-6.7.7-parisc-di -pmouse-modules-6.7.7-parisc-di -pmultipath-modules-6.7.7-parisc-di -pnbd-modules-6.7.7-parisc-di -pnic-modules-6.7.7-parisc-di -pnic-shared-modules-6.7.7-parisc-di -pnic-usb-modules-6.7.7-parisc-di -ppata-modules-6.7.7-parisc-di -pppp-modules-6.7.7-parisc-di -psata-modules-6.7.7-parisc-di -pscsi-core-modules-6.7.7-parisc-di -pscsi-modules-6.7.7-parisc-di -pserial-modules-6.7.7-parisc-di -psquashfs-modules-6.7.7-parisc-di -pusb-modules-6.7.7-parisc-di -pusb-serial-modules-6.7.7-parisc-di -pusb-storage-modules-6.7.7-parisc-di -pxfs-modules-6.7.7-parisc-di' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-parisc-di' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_hppa_none_parisc_meta: - $(call if_package, linux-image-parisc, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-parisc' DH_OPTIONS='-plinux-image-parisc' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-parisc' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' PACKAGE_NAME='linux-image-parisc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-parisc, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-parisc' DH_OPTIONS='-plinux-headers-parisc' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-parisc' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' PACKAGE_NAME='linux-headers-parisc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-parisc-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-parisc-dbg' DH_OPTIONS='-plinux-image-parisc-dbg' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-parisc-dbg' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' PACKAGE_NAME='linux-image-parisc-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-parisc, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-parisc' DH_OPTIONS='-plinux-image-parisc' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-parisc' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' PACKAGE_NAME='linux-image-parisc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-parisc, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-parisc' DH_OPTIONS='-plinux-headers-parisc' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-parisc' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' PACKAGE_NAME='linux-headers-parisc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-parisc-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-parisc-dbg' DH_OPTIONS='-plinux-image-parisc-dbg' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-parisc-dbg' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' PACKAGE_NAME='linux-image-parisc-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_hppa_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.6.15' ARCH='hppa' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='parisc' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.7.7' ARCH='hppa' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='parisc' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_hppa_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.6.15' ARCH='hppa' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='parisc' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.7.7' ARCH='hppa' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='parisc' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_hppa_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.6.15' ARCH='hppa' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='parisc' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.7.7' ARCH='hppa' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='parisc' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_i386:binary-arch_i386_bpftool binary-arch_i386_config binary-arch_i386_cpupower binary-arch_i386_hyperv-daemons binary-arch_i386_kbuild binary-arch_i386_none binary-arch_i386_perf binary-arch_i386_rt binary-arch_i386_rtla binary-arch_i386_usbip binary-arch_i386_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.6.15' ARCH='i386' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='x86' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.7.7' ARCH='i386' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='x86' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_i386_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real binary_config ABINAME='6.6.15' ARCH='i386' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='x86' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real binary_config ABINAME='6.7.7' ARCH='i386' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='x86' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_i386_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.6.15' ARCH='i386' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='x86' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.7.7' ARCH='i386' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='x86' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_i386_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.6.15' ARCH='i386' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='x86' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.7.7' ARCH='i386' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='x86' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_i386_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.6.15' ARCH='i386' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='x86' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.7.7' ARCH='i386' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='x86' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_i386_none:binary-arch_i386_none_686 binary-arch_i386_none_686-pae binary-arch_i386_none_686:binary-arch_i386_none_686_headers binary-arch_i386_none_686_image binary-arch_i386_none_686_image-dbg binary-arch_i386_none_686_installer binary-arch_i386_none_686_meta binary-arch_i386_none_686-pae:binary-arch_i386_none_686-pae_headers binary-arch_i386_none_686-pae_image binary-arch_i386_none_686-pae_image-dbg binary-arch_i386_none_686-pae_installer binary-arch_i386_none_686-pae_meta binary-arch_i386_none_686-pae_headers: - $(call if_package, linux-headers-6.6.15-686-pae, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-686-pae' DH_OPTIONS='-plinux-headers-6.6.15-686-pae' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' PACKAGE_NAME='linux-headers-6.6.15-686-pae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-686-pae, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-686-pae' DH_OPTIONS='-plinux-headers-6.7.7-686-pae' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' PACKAGE_NAME='linux-headers-6.7.7-686-pae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_i386_none_686-pae_image: - $(call if_package, linux-image-6.6.15-686-pae, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-686-pae' DH_OPTIONS='-plinux-image-6.6.15-686-pae' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' PACKAGE_NAME='linux-image-6.6.15-686-pae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-686-pae, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-686-pae' DH_OPTIONS='-plinux-image-6.7.7-686-pae' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' PACKAGE_NAME='linux-image-6.7.7-686-pae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_i386_none_686-pae_image-dbg: - $(call if_package, linux-image-6.6.15-686-pae-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-686-pae-dbg' DH_OPTIONS='-plinux-image-6.6.15-686-pae-dbg' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' PACKAGE_NAME='linux-image-6.6.15-686-pae-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-686-pae-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-686-pae-dbg' DH_OPTIONS='-plinux-image-6.7.7-686-pae-dbg' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' PACKAGE_NAME='linux-image-6.7.7-686-pae-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_i386_none_686-pae_installer: - $(call if_package, acpi-modules-6.6.15-686-pae-di ata-modules-6.6.15-686-pae-di btrfs-modules-6.6.15-686-pae-di cdrom-core-modules-6.6.15-686-pae-di crc-modules-6.6.15-686-pae-di crypto-dm-modules-6.6.15-686-pae-di crypto-modules-6.6.15-686-pae-di efi-modules-6.6.15-686-pae-di event-modules-6.6.15-686-pae-di ext4-modules-6.6.15-686-pae-di f2fs-modules-6.6.15-686-pae-di fat-modules-6.6.15-686-pae-di fb-modules-6.6.15-686-pae-di firewire-core-modules-6.6.15-686-pae-di i2c-modules-6.6.15-686-pae-di input-modules-6.6.15-686-pae-di isofs-modules-6.6.15-686-pae-di jfs-modules-6.6.15-686-pae-di kernel-image-6.6.15-686-pae-di loop-modules-6.6.15-686-pae-di md-modules-6.6.15-686-pae-di mmc-core-modules-6.6.15-686-pae-di mmc-modules-6.6.15-686-pae-di mouse-modules-6.6.15-686-pae-di mtd-core-modules-6.6.15-686-pae-di multipath-modules-6.6.15-686-pae-di nbd-modules-6.6.15-686-pae-di nic-modules-6.6.15-686-pae-di nic-pcmcia-modules-6.6.15-686-pae-di nic-shared-modules-6.6.15-686-pae-di nic-usb-modules-6.6.15-686-pae-di nic-wireless-modules-6.6.15-686-pae-di pata-modules-6.6.15-686-pae-di pcmcia-modules-6.6.15-686-pae-di pcmcia-storage-modules-6.6.15-686-pae-di ppp-modules-6.6.15-686-pae-di rfkill-modules-6.6.15-686-pae-di sata-modules-6.6.15-686-pae-di scsi-core-modules-6.6.15-686-pae-di scsi-modules-6.6.15-686-pae-di scsi-nic-modules-6.6.15-686-pae-di serial-modules-6.6.15-686-pae-di sound-modules-6.6.15-686-pae-di speakup-modules-6.6.15-686-pae-di squashfs-modules-6.6.15-686-pae-di udf-modules-6.6.15-686-pae-di uinput-modules-6.6.15-686-pae-di usb-modules-6.6.15-686-pae-di usb-serial-modules-6.6.15-686-pae-di usb-storage-modules-6.6.15-686-pae-di xfs-modules-6.6.15-686-pae-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pacpi-modules-6.6.15-686-pae-di -pata-modules-6.6.15-686-pae-di -pbtrfs-modules-6.6.15-686-pae-di -pcdrom-core-modules-6.6.15-686-pae-di -pcrc-modules-6.6.15-686-pae-di -pcrypto-dm-modules-6.6.15-686-pae-di -pcrypto-modules-6.6.15-686-pae-di -pefi-modules-6.6.15-686-pae-di -pevent-modules-6.6.15-686-pae-di -pext4-modules-6.6.15-686-pae-di -pf2fs-modules-6.6.15-686-pae-di -pfat-modules-6.6.15-686-pae-di -pfb-modules-6.6.15-686-pae-di -pfirewire-core-modules-6.6.15-686-pae-di -pi2c-modules-6.6.15-686-pae-di -pinput-modules-6.6.15-686-pae-di -pisofs-modules-6.6.15-686-pae-di -pjfs-modules-6.6.15-686-pae-di -pkernel-image-6.6.15-686-pae-di -ploop-modules-6.6.15-686-pae-di -pmd-modules-6.6.15-686-pae-di -pmmc-core-modules-6.6.15-686-pae-di -pmmc-modules-6.6.15-686-pae-di -pmouse-modules-6.6.15-686-pae-di -pmtd-core-modules-6.6.15-686-pae-di -pmultipath-modules-6.6.15-686-pae-di -pnbd-modules-6.6.15-686-pae-di -pnic-modules-6.6.15-686-pae-di -pnic-pcmcia-modules-6.6.15-686-pae-di -pnic-shared-modules-6.6.15-686-pae-di -pnic-usb-modules-6.6.15-686-pae-di -pnic-wireless-modules-6.6.15-686-pae-di -ppata-modules-6.6.15-686-pae-di -ppcmcia-modules-6.6.15-686-pae-di -ppcmcia-storage-modules-6.6.15-686-pae-di -pppp-modules-6.6.15-686-pae-di -prfkill-modules-6.6.15-686-pae-di -psata-modules-6.6.15-686-pae-di -pscsi-core-modules-6.6.15-686-pae-di -pscsi-modules-6.6.15-686-pae-di -pscsi-nic-modules-6.6.15-686-pae-di -pserial-modules-6.6.15-686-pae-di -psound-modules-6.6.15-686-pae-di -pspeakup-modules-6.6.15-686-pae-di -psquashfs-modules-6.6.15-686-pae-di -pudf-modules-6.6.15-686-pae-di -puinput-modules-6.6.15-686-pae-di -pusb-modules-6.6.15-686-pae-di -pusb-serial-modules-6.6.15-686-pae-di -pusb-storage-modules-6.6.15-686-pae-di -pxfs-modules-6.6.15-686-pae-di' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-686-pae-di' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, acpi-modules-6.7.7-686-pae-di ata-modules-6.7.7-686-pae-di btrfs-modules-6.7.7-686-pae-di cdrom-core-modules-6.7.7-686-pae-di crc-modules-6.7.7-686-pae-di crypto-dm-modules-6.7.7-686-pae-di crypto-modules-6.7.7-686-pae-di efi-modules-6.7.7-686-pae-di event-modules-6.7.7-686-pae-di ext4-modules-6.7.7-686-pae-di f2fs-modules-6.7.7-686-pae-di fat-modules-6.7.7-686-pae-di fb-modules-6.7.7-686-pae-di firewire-core-modules-6.7.7-686-pae-di i2c-modules-6.7.7-686-pae-di input-modules-6.7.7-686-pae-di isofs-modules-6.7.7-686-pae-di jfs-modules-6.7.7-686-pae-di kernel-image-6.7.7-686-pae-di loop-modules-6.7.7-686-pae-di md-modules-6.7.7-686-pae-di mmc-core-modules-6.7.7-686-pae-di mmc-modules-6.7.7-686-pae-di mouse-modules-6.7.7-686-pae-di mtd-core-modules-6.7.7-686-pae-di multipath-modules-6.7.7-686-pae-di nbd-modules-6.7.7-686-pae-di nic-modules-6.7.7-686-pae-di nic-pcmcia-modules-6.7.7-686-pae-di nic-shared-modules-6.7.7-686-pae-di nic-usb-modules-6.7.7-686-pae-di nic-wireless-modules-6.7.7-686-pae-di pata-modules-6.7.7-686-pae-di pcmcia-modules-6.7.7-686-pae-di pcmcia-storage-modules-6.7.7-686-pae-di ppp-modules-6.7.7-686-pae-di rfkill-modules-6.7.7-686-pae-di sata-modules-6.7.7-686-pae-di scsi-core-modules-6.7.7-686-pae-di scsi-modules-6.7.7-686-pae-di scsi-nic-modules-6.7.7-686-pae-di serial-modules-6.7.7-686-pae-di sound-modules-6.7.7-686-pae-di speakup-modules-6.7.7-686-pae-di squashfs-modules-6.7.7-686-pae-di udf-modules-6.7.7-686-pae-di uinput-modules-6.7.7-686-pae-di usb-modules-6.7.7-686-pae-di usb-serial-modules-6.7.7-686-pae-di usb-storage-modules-6.7.7-686-pae-di xfs-modules-6.7.7-686-pae-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pacpi-modules-6.7.7-686-pae-di -pata-modules-6.7.7-686-pae-di -pbtrfs-modules-6.7.7-686-pae-di -pcdrom-core-modules-6.7.7-686-pae-di -pcrc-modules-6.7.7-686-pae-di -pcrypto-dm-modules-6.7.7-686-pae-di -pcrypto-modules-6.7.7-686-pae-di -pefi-modules-6.7.7-686-pae-di -pevent-modules-6.7.7-686-pae-di -pext4-modules-6.7.7-686-pae-di -pf2fs-modules-6.7.7-686-pae-di -pfat-modules-6.7.7-686-pae-di -pfb-modules-6.7.7-686-pae-di -pfirewire-core-modules-6.7.7-686-pae-di -pi2c-modules-6.7.7-686-pae-di -pinput-modules-6.7.7-686-pae-di -pisofs-modules-6.7.7-686-pae-di -pjfs-modules-6.7.7-686-pae-di -pkernel-image-6.7.7-686-pae-di -ploop-modules-6.7.7-686-pae-di -pmd-modules-6.7.7-686-pae-di -pmmc-core-modules-6.7.7-686-pae-di -pmmc-modules-6.7.7-686-pae-di -pmouse-modules-6.7.7-686-pae-di -pmtd-core-modules-6.7.7-686-pae-di -pmultipath-modules-6.7.7-686-pae-di -pnbd-modules-6.7.7-686-pae-di -pnic-modules-6.7.7-686-pae-di -pnic-pcmcia-modules-6.7.7-686-pae-di -pnic-shared-modules-6.7.7-686-pae-di -pnic-usb-modules-6.7.7-686-pae-di -pnic-wireless-modules-6.7.7-686-pae-di -ppata-modules-6.7.7-686-pae-di -ppcmcia-modules-6.7.7-686-pae-di -ppcmcia-storage-modules-6.7.7-686-pae-di -pppp-modules-6.7.7-686-pae-di -prfkill-modules-6.7.7-686-pae-di -psata-modules-6.7.7-686-pae-di -pscsi-core-modules-6.7.7-686-pae-di -pscsi-modules-6.7.7-686-pae-di -pscsi-nic-modules-6.7.7-686-pae-di -pserial-modules-6.7.7-686-pae-di -psound-modules-6.7.7-686-pae-di -pspeakup-modules-6.7.7-686-pae-di -psquashfs-modules-6.7.7-686-pae-di -pudf-modules-6.7.7-686-pae-di -puinput-modules-6.7.7-686-pae-di -pusb-modules-6.7.7-686-pae-di -pusb-serial-modules-6.7.7-686-pae-di -pusb-storage-modules-6.7.7-686-pae-di -pxfs-modules-6.7.7-686-pae-di' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-686-pae-di' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_i386_none_686-pae_meta: - $(call if_package, linux-image-686-pae, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-686-pae' DH_OPTIONS='-plinux-image-686-pae' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-686-pae' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' PACKAGE_NAME='linux-image-686-pae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-686-pae, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-686-pae' DH_OPTIONS='-plinux-headers-686-pae' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-686-pae' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' PACKAGE_NAME='linux-headers-686-pae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-image-686-pae-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-686-pae-dbg' DH_OPTIONS='-plinux-image-686-pae-dbg' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-686-pae-dbg' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' PACKAGE_NAME='linux-image-686-pae-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-686-pae, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-686-pae' DH_OPTIONS='-plinux-image-686-pae' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-686-pae' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' PACKAGE_NAME='linux-image-686-pae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-686-pae, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-686-pae' DH_OPTIONS='-plinux-headers-686-pae' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-686-pae' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' PACKAGE_NAME='linux-headers-686-pae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-image-686-pae-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-686-pae-dbg' DH_OPTIONS='-plinux-image-686-pae-dbg' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-686-pae-dbg' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' PACKAGE_NAME='linux-image-686-pae-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_i386_none_686_headers: - $(call if_package, linux-headers-6.6.15-686, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-686' DH_OPTIONS='-plinux-headers-6.6.15-686' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' PACKAGE_NAME='linux-headers-6.6.15-686' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-686, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-686' DH_OPTIONS='-plinux-headers-6.7.7-686' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' PACKAGE_NAME='linux-headers-6.7.7-686' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_i386_none_686_image: - $(call if_package, linux-image-6.6.15-686, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-686' DH_OPTIONS='-plinux-image-6.6.15-686' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' PACKAGE_NAME='linux-image-6.6.15-686' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-686, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-686' DH_OPTIONS='-plinux-image-6.7.7-686' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' PACKAGE_NAME='linux-image-6.7.7-686' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_i386_none_686_image-dbg: - $(call if_package, linux-image-6.6.15-686-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-686-dbg' DH_OPTIONS='-plinux-image-6.6.15-686-dbg' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' PACKAGE_NAME='linux-image-6.6.15-686-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-686-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-686-dbg' DH_OPTIONS='-plinux-image-6.7.7-686-dbg' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' PACKAGE_NAME='linux-image-6.7.7-686-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_i386_none_686_installer: - $(call if_package, acpi-modules-6.6.15-686-di ata-modules-6.6.15-686-di btrfs-modules-6.6.15-686-di cdrom-core-modules-6.6.15-686-di crc-modules-6.6.15-686-di crypto-dm-modules-6.6.15-686-di crypto-modules-6.6.15-686-di efi-modules-6.6.15-686-di event-modules-6.6.15-686-di ext4-modules-6.6.15-686-di f2fs-modules-6.6.15-686-di fat-modules-6.6.15-686-di fb-modules-6.6.15-686-di firewire-core-modules-6.6.15-686-di i2c-modules-6.6.15-686-di input-modules-6.6.15-686-di isofs-modules-6.6.15-686-di jfs-modules-6.6.15-686-di kernel-image-6.6.15-686-di loop-modules-6.6.15-686-di md-modules-6.6.15-686-di mmc-core-modules-6.6.15-686-di mmc-modules-6.6.15-686-di mouse-modules-6.6.15-686-di mtd-core-modules-6.6.15-686-di multipath-modules-6.6.15-686-di nbd-modules-6.6.15-686-di nic-modules-6.6.15-686-di nic-pcmcia-modules-6.6.15-686-di nic-shared-modules-6.6.15-686-di nic-usb-modules-6.6.15-686-di nic-wireless-modules-6.6.15-686-di pata-modules-6.6.15-686-di pcmcia-modules-6.6.15-686-di pcmcia-storage-modules-6.6.15-686-di ppp-modules-6.6.15-686-di rfkill-modules-6.6.15-686-di sata-modules-6.6.15-686-di scsi-core-modules-6.6.15-686-di scsi-modules-6.6.15-686-di scsi-nic-modules-6.6.15-686-di serial-modules-6.6.15-686-di sound-modules-6.6.15-686-di speakup-modules-6.6.15-686-di squashfs-modules-6.6.15-686-di udf-modules-6.6.15-686-di uinput-modules-6.6.15-686-di usb-modules-6.6.15-686-di usb-serial-modules-6.6.15-686-di usb-storage-modules-6.6.15-686-di xfs-modules-6.6.15-686-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pacpi-modules-6.6.15-686-di -pata-modules-6.6.15-686-di -pbtrfs-modules-6.6.15-686-di -pcdrom-core-modules-6.6.15-686-di -pcrc-modules-6.6.15-686-di -pcrypto-dm-modules-6.6.15-686-di -pcrypto-modules-6.6.15-686-di -pefi-modules-6.6.15-686-di -pevent-modules-6.6.15-686-di -pext4-modules-6.6.15-686-di -pf2fs-modules-6.6.15-686-di -pfat-modules-6.6.15-686-di -pfb-modules-6.6.15-686-di -pfirewire-core-modules-6.6.15-686-di -pi2c-modules-6.6.15-686-di -pinput-modules-6.6.15-686-di -pisofs-modules-6.6.15-686-di -pjfs-modules-6.6.15-686-di -pkernel-image-6.6.15-686-di -ploop-modules-6.6.15-686-di -pmd-modules-6.6.15-686-di -pmmc-core-modules-6.6.15-686-di -pmmc-modules-6.6.15-686-di -pmouse-modules-6.6.15-686-di -pmtd-core-modules-6.6.15-686-di -pmultipath-modules-6.6.15-686-di -pnbd-modules-6.6.15-686-di -pnic-modules-6.6.15-686-di -pnic-pcmcia-modules-6.6.15-686-di -pnic-shared-modules-6.6.15-686-di -pnic-usb-modules-6.6.15-686-di -pnic-wireless-modules-6.6.15-686-di -ppata-modules-6.6.15-686-di -ppcmcia-modules-6.6.15-686-di -ppcmcia-storage-modules-6.6.15-686-di -pppp-modules-6.6.15-686-di -prfkill-modules-6.6.15-686-di -psata-modules-6.6.15-686-di -pscsi-core-modules-6.6.15-686-di -pscsi-modules-6.6.15-686-di -pscsi-nic-modules-6.6.15-686-di -pserial-modules-6.6.15-686-di -psound-modules-6.6.15-686-di -pspeakup-modules-6.6.15-686-di -psquashfs-modules-6.6.15-686-di -pudf-modules-6.6.15-686-di -puinput-modules-6.6.15-686-di -pusb-modules-6.6.15-686-di -pusb-serial-modules-6.6.15-686-di -pusb-storage-modules-6.6.15-686-di -pxfs-modules-6.6.15-686-di' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-686-di' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, acpi-modules-6.7.7-686-di ata-modules-6.7.7-686-di btrfs-modules-6.7.7-686-di cdrom-core-modules-6.7.7-686-di crc-modules-6.7.7-686-di crypto-dm-modules-6.7.7-686-di crypto-modules-6.7.7-686-di efi-modules-6.7.7-686-di event-modules-6.7.7-686-di ext4-modules-6.7.7-686-di f2fs-modules-6.7.7-686-di fat-modules-6.7.7-686-di fb-modules-6.7.7-686-di firewire-core-modules-6.7.7-686-di i2c-modules-6.7.7-686-di input-modules-6.7.7-686-di isofs-modules-6.7.7-686-di jfs-modules-6.7.7-686-di kernel-image-6.7.7-686-di loop-modules-6.7.7-686-di md-modules-6.7.7-686-di mmc-core-modules-6.7.7-686-di mmc-modules-6.7.7-686-di mouse-modules-6.7.7-686-di mtd-core-modules-6.7.7-686-di multipath-modules-6.7.7-686-di nbd-modules-6.7.7-686-di nic-modules-6.7.7-686-di nic-pcmcia-modules-6.7.7-686-di nic-shared-modules-6.7.7-686-di nic-usb-modules-6.7.7-686-di nic-wireless-modules-6.7.7-686-di pata-modules-6.7.7-686-di pcmcia-modules-6.7.7-686-di pcmcia-storage-modules-6.7.7-686-di ppp-modules-6.7.7-686-di rfkill-modules-6.7.7-686-di sata-modules-6.7.7-686-di scsi-core-modules-6.7.7-686-di scsi-modules-6.7.7-686-di scsi-nic-modules-6.7.7-686-di serial-modules-6.7.7-686-di sound-modules-6.7.7-686-di speakup-modules-6.7.7-686-di squashfs-modules-6.7.7-686-di udf-modules-6.7.7-686-di uinput-modules-6.7.7-686-di usb-modules-6.7.7-686-di usb-serial-modules-6.7.7-686-di usb-storage-modules-6.7.7-686-di xfs-modules-6.7.7-686-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pacpi-modules-6.7.7-686-di -pata-modules-6.7.7-686-di -pbtrfs-modules-6.7.7-686-di -pcdrom-core-modules-6.7.7-686-di -pcrc-modules-6.7.7-686-di -pcrypto-dm-modules-6.7.7-686-di -pcrypto-modules-6.7.7-686-di -pefi-modules-6.7.7-686-di -pevent-modules-6.7.7-686-di -pext4-modules-6.7.7-686-di -pf2fs-modules-6.7.7-686-di -pfat-modules-6.7.7-686-di -pfb-modules-6.7.7-686-di -pfirewire-core-modules-6.7.7-686-di -pi2c-modules-6.7.7-686-di -pinput-modules-6.7.7-686-di -pisofs-modules-6.7.7-686-di -pjfs-modules-6.7.7-686-di -pkernel-image-6.7.7-686-di -ploop-modules-6.7.7-686-di -pmd-modules-6.7.7-686-di -pmmc-core-modules-6.7.7-686-di -pmmc-modules-6.7.7-686-di -pmouse-modules-6.7.7-686-di -pmtd-core-modules-6.7.7-686-di -pmultipath-modules-6.7.7-686-di -pnbd-modules-6.7.7-686-di -pnic-modules-6.7.7-686-di -pnic-pcmcia-modules-6.7.7-686-di -pnic-shared-modules-6.7.7-686-di -pnic-usb-modules-6.7.7-686-di -pnic-wireless-modules-6.7.7-686-di -ppata-modules-6.7.7-686-di -ppcmcia-modules-6.7.7-686-di -ppcmcia-storage-modules-6.7.7-686-di -pppp-modules-6.7.7-686-di -prfkill-modules-6.7.7-686-di -psata-modules-6.7.7-686-di -pscsi-core-modules-6.7.7-686-di -pscsi-modules-6.7.7-686-di -pscsi-nic-modules-6.7.7-686-di -pserial-modules-6.7.7-686-di -psound-modules-6.7.7-686-di -pspeakup-modules-6.7.7-686-di -psquashfs-modules-6.7.7-686-di -pudf-modules-6.7.7-686-di -puinput-modules-6.7.7-686-di -pusb-modules-6.7.7-686-di -pusb-serial-modules-6.7.7-686-di -pusb-storage-modules-6.7.7-686-di -pxfs-modules-6.7.7-686-di' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-686-di' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_i386_none_686_meta: - $(call if_package, linux-image-686, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-686' DH_OPTIONS='-plinux-image-686' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-686' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' PACKAGE_NAME='linux-image-686' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-686, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-686' DH_OPTIONS='-plinux-headers-686' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-686' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' PACKAGE_NAME='linux-headers-686' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-image-686-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-686-dbg' DH_OPTIONS='-plinux-image-686-dbg' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-686-dbg' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' PACKAGE_NAME='linux-image-686-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-686, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-686' DH_OPTIONS='-plinux-image-686' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-686' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' PACKAGE_NAME='linux-image-686' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-686, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-686' DH_OPTIONS='-plinux-headers-686' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-686' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' PACKAGE_NAME='linux-headers-686' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-image-686-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-686-dbg' DH_OPTIONS='-plinux-image-686-dbg' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-686-dbg' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' PACKAGE_NAME='linux-image-686-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_i386_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.6.15' ARCH='i386' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='x86' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.7.7' ARCH='i386' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='x86' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_i386_rt:binary-arch_i386_rt_686-pae binary-arch_i386_rt_686-pae:binary-arch_i386_rt_686-pae_headers binary-arch_i386_rt_686-pae_image binary-arch_i386_rt_686-pae_image-dbg binary-arch_i386_rt_686-pae_meta binary-arch_i386_rt_686-pae_headers: - $(call if_package, linux-headers-6.6.15-rt-686-pae, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-rt-686-pae' DH_OPTIONS='-plinux-headers-6.6.15-rt-686-pae' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' PACKAGE_NAME='linux-headers-6.6.15-rt-686-pae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-rt-686-pae, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-rt-686-pae' DH_OPTIONS='-plinux-headers-6.7.7-rt-686-pae' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' PACKAGE_NAME='linux-headers-6.7.7-rt-686-pae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_i386_rt_686-pae_image: - $(call if_package, linux-image-6.6.15-rt-686-pae, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-rt-686-pae' DH_OPTIONS='-plinux-image-6.6.15-rt-686-pae' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' PACKAGE_NAME='linux-image-6.6.15-rt-686-pae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-rt-686-pae, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-rt-686-pae' DH_OPTIONS='-plinux-image-6.7.7-rt-686-pae' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' PACKAGE_NAME='linux-image-6.7.7-rt-686-pae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_i386_rt_686-pae_image-dbg: - $(call if_package, linux-image-6.6.15-rt-686-pae-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-rt-686-pae-dbg' DH_OPTIONS='-plinux-image-6.6.15-rt-686-pae-dbg' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' PACKAGE_NAME='linux-image-6.6.15-rt-686-pae-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-rt-686-pae-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-rt-686-pae-dbg' DH_OPTIONS='-plinux-image-6.7.7-rt-686-pae-dbg' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' PACKAGE_NAME='linux-image-6.7.7-rt-686-pae-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_i386_rt_686-pae_meta: - $(call if_package, linux-image-rt-686-pae, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-686-pae' DH_OPTIONS='-plinux-image-rt-686-pae' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-rt-686-pae' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' PACKAGE_NAME='linux-image-rt-686-pae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-rt-686-pae, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-rt-686-pae' DH_OPTIONS='-plinux-headers-rt-686-pae' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-rt-686-pae' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' PACKAGE_NAME='linux-headers-rt-686-pae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-image-rt-686-pae-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-686-pae-dbg' DH_OPTIONS='-plinux-image-rt-686-pae-dbg' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-rt-686-pae-dbg' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' PACKAGE_NAME='linux-image-rt-686-pae-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-rt-686-pae, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-686-pae' DH_OPTIONS='-plinux-image-rt-686-pae' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-rt-686-pae' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' PACKAGE_NAME='linux-image-rt-686-pae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-rt-686-pae, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-rt-686-pae' DH_OPTIONS='-plinux-headers-rt-686-pae' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-rt-686-pae' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' PACKAGE_NAME='linux-headers-rt-686-pae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-image-rt-686-pae-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-686-pae-dbg' DH_OPTIONS='-plinux-image-rt-686-pae-dbg' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-rt-686-pae-dbg' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' PACKAGE_NAME='linux-image-rt-686-pae-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_i386_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.6.15' ARCH='i386' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='x86' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.7.7' ARCH='i386' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='x86' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_i386_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.6.15' ARCH='i386' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='x86' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -binary-arch_ia64:binary-arch_ia64_bpftool binary-arch_ia64_config binary-arch_ia64_cpupower binary-arch_ia64_hyperv-daemons binary-arch_ia64_kbuild binary-arch_ia64_none binary-arch_ia64_perf binary-arch_ia64_rtla binary-arch_ia64_usbip -binary-arch_ia64_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.6.15' ARCH='ia64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='ia64' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -binary-arch_ia64_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real binary_config ABINAME='6.6.15' ARCH='ia64' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='ia64' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -binary-arch_ia64_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.6.15' ARCH='ia64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='ia64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -binary-arch_ia64_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.6.15' ARCH='ia64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='ia64' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -binary-arch_ia64_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.6.15' ARCH='ia64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='ia64' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -binary-arch_ia64_none:binary-arch_ia64_none_itanium binary-arch_ia64_none_mckinley -binary-arch_ia64_none_itanium:binary-arch_ia64_none_itanium_headers binary-arch_ia64_none_itanium_image binary-arch_ia64_none_itanium_image-dbg binary-arch_ia64_none_itanium_installer binary-arch_ia64_none_itanium_meta -binary-arch_ia64_none_itanium_headers: - $(call if_package, linux-headers-6.6.15-itanium, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-itanium' DH_OPTIONS='-plinux-headers-6.6.15-itanium' FEATURESET='none' FLAVOUR='itanium' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.itanium' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-itanium\""' KERNEL_ARCH='ia64' LOCALVERSION='-itanium' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-itanium' PACKAGE_NAME='linux-headers-6.6.15-itanium' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -binary-arch_ia64_none_itanium_image: - $(call if_package, linux-image-6.6.15-itanium, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-itanium' DH_OPTIONS='-plinux-image-6.6.15-itanium' FEATURESET='none' FLAVOUR='itanium' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.itanium' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-itanium\""' KERNEL_ARCH='ia64' LOCALVERSION='-itanium' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-itanium' PACKAGE_NAME='linux-image-6.6.15-itanium' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -binary-arch_ia64_none_itanium_image-dbg: - $(call if_package, linux-image-6.6.15-itanium-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-itanium-dbg' DH_OPTIONS='-plinux-image-6.6.15-itanium-dbg' FEATURESET='none' FLAVOUR='itanium' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.itanium' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-itanium\""' KERNEL_ARCH='ia64' LOCALVERSION='-itanium' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-itanium' PACKAGE_NAME='linux-image-6.6.15-itanium-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -binary-arch_ia64_none_itanium_installer: - $(call if_package, ata-modules-6.6.15-itanium-di btrfs-modules-6.6.15-itanium-di cdrom-core-modules-6.6.15-itanium-di crc-modules-6.6.15-itanium-di crypto-dm-modules-6.6.15-itanium-di crypto-modules-6.6.15-itanium-di event-modules-6.6.15-itanium-di ext4-modules-6.6.15-itanium-di f2fs-modules-6.6.15-itanium-di fat-modules-6.6.15-itanium-di fb-modules-6.6.15-itanium-di firewire-core-modules-6.6.15-itanium-di i2c-modules-6.6.15-itanium-di input-modules-6.6.15-itanium-di isofs-modules-6.6.15-itanium-di jfs-modules-6.6.15-itanium-di kernel-image-6.6.15-itanium-di loop-modules-6.6.15-itanium-di md-modules-6.6.15-itanium-di mouse-modules-6.6.15-itanium-di mtd-core-modules-6.6.15-itanium-di multipath-modules-6.6.15-itanium-di nbd-modules-6.6.15-itanium-di nic-modules-6.6.15-itanium-di nic-shared-modules-6.6.15-itanium-di nic-usb-modules-6.6.15-itanium-di pata-modules-6.6.15-itanium-di pcmcia-modules-6.6.15-itanium-di ppp-modules-6.6.15-itanium-di sata-modules-6.6.15-itanium-di scsi-core-modules-6.6.15-itanium-di scsi-modules-6.6.15-itanium-di scsi-nic-modules-6.6.15-itanium-di serial-modules-6.6.15-itanium-di squashfs-modules-6.6.15-itanium-di udf-modules-6.6.15-itanium-di uinput-modules-6.6.15-itanium-di usb-modules-6.6.15-itanium-di usb-serial-modules-6.6.15-itanium-di usb-storage-modules-6.6.15-itanium-di xfs-modules-6.6.15-itanium-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.6.15-itanium-di -pbtrfs-modules-6.6.15-itanium-di -pcdrom-core-modules-6.6.15-itanium-di -pcrc-modules-6.6.15-itanium-di -pcrypto-dm-modules-6.6.15-itanium-di -pcrypto-modules-6.6.15-itanium-di -pevent-modules-6.6.15-itanium-di -pext4-modules-6.6.15-itanium-di -pf2fs-modules-6.6.15-itanium-di -pfat-modules-6.6.15-itanium-di -pfb-modules-6.6.15-itanium-di -pfirewire-core-modules-6.6.15-itanium-di -pi2c-modules-6.6.15-itanium-di -pinput-modules-6.6.15-itanium-di -pisofs-modules-6.6.15-itanium-di -pjfs-modules-6.6.15-itanium-di -pkernel-image-6.6.15-itanium-di -ploop-modules-6.6.15-itanium-di -pmd-modules-6.6.15-itanium-di -pmouse-modules-6.6.15-itanium-di -pmtd-core-modules-6.6.15-itanium-di -pmultipath-modules-6.6.15-itanium-di -pnbd-modules-6.6.15-itanium-di -pnic-modules-6.6.15-itanium-di -pnic-shared-modules-6.6.15-itanium-di -pnic-usb-modules-6.6.15-itanium-di -ppata-modules-6.6.15-itanium-di -ppcmcia-modules-6.6.15-itanium-di -pppp-modules-6.6.15-itanium-di -psata-modules-6.6.15-itanium-di -pscsi-core-modules-6.6.15-itanium-di -pscsi-modules-6.6.15-itanium-di -pscsi-nic-modules-6.6.15-itanium-di -pserial-modules-6.6.15-itanium-di -psquashfs-modules-6.6.15-itanium-di -pudf-modules-6.6.15-itanium-di -puinput-modules-6.6.15-itanium-di -pusb-modules-6.6.15-itanium-di -pusb-serial-modules-6.6.15-itanium-di -pusb-storage-modules-6.6.15-itanium-di -pxfs-modules-6.6.15-itanium-di' FEATURESET='none' FLAVOUR='itanium' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-itanium-di' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.itanium' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-itanium\""' KERNEL_ARCH='ia64' LOCALVERSION='-itanium' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-itanium' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -binary-arch_ia64_none_itanium_meta: - $(call if_package, linux-image-itanium, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' DESTDIR='$(CURDIR)/debian/linux-image-itanium' DH_OPTIONS='-plinux-image-itanium' FEATURESET='none' FLAVOUR='itanium' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-itanium' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.itanium' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-itanium\""' KERNEL_ARCH='ia64' LOCALVERSION='-itanium' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-itanium' PACKAGE_NAME='linux-image-itanium' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-itanium, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' DESTDIR='$(CURDIR)/debian/linux-headers-itanium' DH_OPTIONS='-plinux-headers-itanium' FEATURESET='none' FLAVOUR='itanium' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-itanium' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.itanium' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-itanium\""' KERNEL_ARCH='ia64' LOCALVERSION='-itanium' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-itanium' PACKAGE_NAME='linux-headers-itanium' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-itanium-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' DESTDIR='$(CURDIR)/debian/linux-image-itanium-dbg' DH_OPTIONS='-plinux-image-itanium-dbg' FEATURESET='none' FLAVOUR='itanium' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-itanium-dbg' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.itanium' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-itanium\""' KERNEL_ARCH='ia64' LOCALVERSION='-itanium' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-itanium' PACKAGE_NAME='linux-image-itanium-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -binary-arch_ia64_none_mckinley:binary-arch_ia64_none_mckinley_headers binary-arch_ia64_none_mckinley_image binary-arch_ia64_none_mckinley_image-dbg binary-arch_ia64_none_mckinley_meta -binary-arch_ia64_none_mckinley_headers: - $(call if_package, linux-headers-6.6.15-mckinley, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-mckinley' DH_OPTIONS='-plinux-headers-6.6.15-mckinley' FEATURESET='none' FLAVOUR='mckinley' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.mckinley' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mckinley\""' KERNEL_ARCH='ia64' LOCALVERSION='-mckinley' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mckinley' PACKAGE_NAME='linux-headers-6.6.15-mckinley' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -binary-arch_ia64_none_mckinley_image: - $(call if_package, linux-image-6.6.15-mckinley, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-mckinley' DH_OPTIONS='-plinux-image-6.6.15-mckinley' FEATURESET='none' FLAVOUR='mckinley' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.mckinley' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mckinley\""' KERNEL_ARCH='ia64' LOCALVERSION='-mckinley' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mckinley' PACKAGE_NAME='linux-image-6.6.15-mckinley' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -binary-arch_ia64_none_mckinley_image-dbg: - $(call if_package, linux-image-6.6.15-mckinley-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-mckinley-dbg' DH_OPTIONS='-plinux-image-6.6.15-mckinley-dbg' FEATURESET='none' FLAVOUR='mckinley' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.mckinley' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mckinley\""' KERNEL_ARCH='ia64' LOCALVERSION='-mckinley' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mckinley' PACKAGE_NAME='linux-image-6.6.15-mckinley-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -binary-arch_ia64_none_mckinley_meta: - $(call if_package, linux-image-mckinley, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' DESTDIR='$(CURDIR)/debian/linux-image-mckinley' DH_OPTIONS='-plinux-image-mckinley' FEATURESET='none' FLAVOUR='mckinley' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-mckinley' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.mckinley' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mckinley\""' KERNEL_ARCH='ia64' LOCALVERSION='-mckinley' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mckinley' PACKAGE_NAME='linux-image-mckinley' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-mckinley, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' DESTDIR='$(CURDIR)/debian/linux-headers-mckinley' DH_OPTIONS='-plinux-headers-mckinley' FEATURESET='none' FLAVOUR='mckinley' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-mckinley' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.mckinley' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mckinley\""' KERNEL_ARCH='ia64' LOCALVERSION='-mckinley' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mckinley' PACKAGE_NAME='linux-headers-mckinley' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-mckinley-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' DESTDIR='$(CURDIR)/debian/linux-image-mckinley-dbg' DH_OPTIONS='-plinux-image-mckinley-dbg' FEATURESET='none' FLAVOUR='mckinley' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-mckinley-dbg' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.mckinley' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mckinley\""' KERNEL_ARCH='ia64' LOCALVERSION='-mckinley' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mckinley' PACKAGE_NAME='linux-image-mckinley-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -binary-arch_ia64_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.6.15' ARCH='ia64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='ia64' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -binary-arch_ia64_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.6.15' ARCH='ia64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='ia64' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -binary-arch_ia64_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.6.15' ARCH='ia64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='ia64' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.7.7' ARCH='i386' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='x86' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') +binary-arch_loong64:binary-arch_loong64_bpftool binary-arch_loong64_config binary-arch_loong64_cpupower binary-arch_loong64_hyperv-daemons binary-arch_loong64_kbuild binary-arch_loong64_none binary-arch_loong64_perf binary-arch_loong64_rtla binary-arch_loong64_usbip +binary-arch_loong64_bpftool: + $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.7.7' ARCH='loong64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='loongarch' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') +binary-arch_loong64_config: + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real binary_config ABINAME='6.7.7' ARCH='loong64' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='loongarch' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') +binary-arch_loong64_cpupower: + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.7.7' ARCH='loong64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='loongarch' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') +binary-arch_loong64_hyperv-daemons: + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.7.7' ARCH='loong64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='loongarch' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') +binary-arch_loong64_kbuild: + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.7.7' ARCH='loong64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='loongarch' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') +binary-arch_loong64_none:binary-arch_loong64_none_loong64 +binary-arch_loong64_none_loong64:binary-arch_loong64_none_loong64_headers binary-arch_loong64_none_loong64_image binary-arch_loong64_none_loong64_image-dbg binary-arch_loong64_none_loong64_installer binary-arch_loong64_none_loong64_meta +binary-arch_loong64_none_loong64_headers: + $(call if_package, linux-headers-6.7.7-loong64, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='loong64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-loong64' DH_OPTIONS='-plinux-headers-6.7.7-loong64' FEATURESET='none' FLAVOUR='loong64' IMAGE_FILE='arch/loongarch/boot/vmlinuz.efi' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/loong64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loong64\""' KERNEL_ARCH='loongarch' LOCALVERSION='-loong64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loong64' PACKAGE_NAME='linux-headers-6.7.7-loong64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') +binary-arch_loong64_none_loong64_image: + $(call if_package, linux-image-6.7.7-loong64, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='loong64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-loong64' DH_OPTIONS='-plinux-image-6.7.7-loong64' FEATURESET='none' FLAVOUR='loong64' IMAGE_FILE='arch/loongarch/boot/vmlinuz.efi' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/loong64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loong64\""' KERNEL_ARCH='loongarch' LOCALVERSION='-loong64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loong64' PACKAGE_NAME='linux-image-6.7.7-loong64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') +binary-arch_loong64_none_loong64_image-dbg: + $(call if_package, linux-image-6.7.7-loong64-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='loong64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-loong64-dbg' DH_OPTIONS='-plinux-image-6.7.7-loong64-dbg' FEATURESET='none' FLAVOUR='loong64' IMAGE_FILE='arch/loongarch/boot/vmlinuz.efi' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/loong64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loong64\""' KERNEL_ARCH='loongarch' LOCALVERSION='-loong64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loong64' PACKAGE_NAME='linux-image-6.7.7-loong64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') +binary-arch_loong64_none_loong64_installer: + $(call if_package, ata-modules-6.7.7-loong64-di btrfs-modules-6.7.7-loong64-di cdrom-core-modules-6.7.7-loong64-di crc-modules-6.7.7-loong64-di crypto-dm-modules-6.7.7-loong64-di crypto-modules-6.7.7-loong64-di efi-modules-6.7.7-loong64-di event-modules-6.7.7-loong64-di ext4-modules-6.7.7-loong64-di f2fs-modules-6.7.7-loong64-di fat-modules-6.7.7-loong64-di fb-modules-6.7.7-loong64-di firewire-core-modules-6.7.7-loong64-di i2c-modules-6.7.7-loong64-di input-modules-6.7.7-loong64-di isofs-modules-6.7.7-loong64-di jfs-modules-6.7.7-loong64-di kernel-image-6.7.7-loong64-di loop-modules-6.7.7-loong64-di md-modules-6.7.7-loong64-di mouse-modules-6.7.7-loong64-di mtd-core-modules-6.7.7-loong64-di mtd-modules-6.7.7-loong64-di multipath-modules-6.7.7-loong64-di nbd-modules-6.7.7-loong64-di nic-modules-6.7.7-loong64-di nic-shared-modules-6.7.7-loong64-di nic-usb-modules-6.7.7-loong64-di nic-wireless-modules-6.7.7-loong64-di pata-modules-6.7.7-loong64-di ppp-modules-6.7.7-loong64-di rfkill-modules-6.7.7-loong64-di sata-modules-6.7.7-loong64-di scsi-core-modules-6.7.7-loong64-di scsi-modules-6.7.7-loong64-di scsi-nic-modules-6.7.7-loong64-di serial-modules-6.7.7-loong64-di sound-modules-6.7.7-loong64-di speakup-modules-6.7.7-loong64-di squashfs-modules-6.7.7-loong64-di udf-modules-6.7.7-loong64-di uinput-modules-6.7.7-loong64-di usb-modules-6.7.7-loong64-di usb-serial-modules-6.7.7-loong64-di usb-storage-modules-6.7.7-loong64-di xfs-modules-6.7.7-loong64-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.7.7' ARCH='loong64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.7.7-loong64-di -pbtrfs-modules-6.7.7-loong64-di -pcdrom-core-modules-6.7.7-loong64-di -pcrc-modules-6.7.7-loong64-di -pcrypto-dm-modules-6.7.7-loong64-di -pcrypto-modules-6.7.7-loong64-di -pefi-modules-6.7.7-loong64-di -pevent-modules-6.7.7-loong64-di -pext4-modules-6.7.7-loong64-di -pf2fs-modules-6.7.7-loong64-di -pfat-modules-6.7.7-loong64-di -pfb-modules-6.7.7-loong64-di -pfirewire-core-modules-6.7.7-loong64-di -pi2c-modules-6.7.7-loong64-di -pinput-modules-6.7.7-loong64-di -pisofs-modules-6.7.7-loong64-di -pjfs-modules-6.7.7-loong64-di -pkernel-image-6.7.7-loong64-di -ploop-modules-6.7.7-loong64-di -pmd-modules-6.7.7-loong64-di -pmouse-modules-6.7.7-loong64-di -pmtd-core-modules-6.7.7-loong64-di -pmtd-modules-6.7.7-loong64-di -pmultipath-modules-6.7.7-loong64-di -pnbd-modules-6.7.7-loong64-di -pnic-modules-6.7.7-loong64-di -pnic-shared-modules-6.7.7-loong64-di -pnic-usb-modules-6.7.7-loong64-di -pnic-wireless-modules-6.7.7-loong64-di -ppata-modules-6.7.7-loong64-di -pppp-modules-6.7.7-loong64-di -prfkill-modules-6.7.7-loong64-di -psata-modules-6.7.7-loong64-di -pscsi-core-modules-6.7.7-loong64-di -pscsi-modules-6.7.7-loong64-di -pscsi-nic-modules-6.7.7-loong64-di -pserial-modules-6.7.7-loong64-di -psound-modules-6.7.7-loong64-di -pspeakup-modules-6.7.7-loong64-di -psquashfs-modules-6.7.7-loong64-di -pudf-modules-6.7.7-loong64-di -puinput-modules-6.7.7-loong64-di -pusb-modules-6.7.7-loong64-di -pusb-serial-modules-6.7.7-loong64-di -pusb-storage-modules-6.7.7-loong64-di -pxfs-modules-6.7.7-loong64-di' FEATURESET='none' FLAVOUR='loong64' IMAGE_FILE='arch/loongarch/boot/vmlinuz.efi' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-loong64-di' KCONFIG='debian/config/config debian/config/loong64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loong64\""' KERNEL_ARCH='loongarch' LOCALVERSION='-loong64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loong64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') +binary-arch_loong64_none_loong64_meta: + $(call if_package, linux-image-loong64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='loong64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-loong64' DH_OPTIONS='-plinux-image-loong64' FEATURESET='none' FLAVOUR='loong64' IMAGE_FILE='arch/loongarch/boot/vmlinuz.efi' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-loong64' KCONFIG='debian/config/config debian/config/loong64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loong64\""' KERNEL_ARCH='loongarch' LOCALVERSION='-loong64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loong64' PACKAGE_NAME='linux-image-loong64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-loong64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='loong64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-loong64' DH_OPTIONS='-plinux-headers-loong64' FEATURESET='none' FLAVOUR='loong64' IMAGE_FILE='arch/loongarch/boot/vmlinuz.efi' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-loong64' KCONFIG='debian/config/config debian/config/loong64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loong64\""' KERNEL_ARCH='loongarch' LOCALVERSION='-loong64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loong64' PACKAGE_NAME='linux-headers-loong64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-image-loong64-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='loong64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-loong64-dbg' DH_OPTIONS='-plinux-image-loong64-dbg' FEATURESET='none' FLAVOUR='loong64' IMAGE_FILE='arch/loongarch/boot/vmlinuz.efi' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-loong64-dbg' KCONFIG='debian/config/config debian/config/loong64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loong64\""' KERNEL_ARCH='loongarch' LOCALVERSION='-loong64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loong64' PACKAGE_NAME='linux-image-loong64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') +binary-arch_loong64_perf: + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.7.7' ARCH='loong64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='loongarch' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') +binary-arch_loong64_rtla: + $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.7.7' ARCH='loong64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='loongarch' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') +binary-arch_loong64_usbip: + $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.7.7' ARCH='loong64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='loongarch' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_m68k:binary-arch_m68k_bpftool binary-arch_m68k_config binary-arch_m68k_cpupower binary-arch_m68k_hyperv-daemons binary-arch_m68k_kbuild binary-arch_m68k_none binary-arch_m68k_perf binary-arch_m68k_rtla binary-arch_m68k_usbip binary-arch_m68k_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.6.15' ARCH='m68k' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='m68k' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.7.7' ARCH='m68k' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='m68k' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_m68k_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real binary_config ABINAME='6.6.15' ARCH='m68k' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='m68k' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real binary_config ABINAME='6.7.7' ARCH='m68k' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='m68k' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_m68k_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.6.15' ARCH='m68k' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='m68k' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.7.7' ARCH='m68k' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='m68k' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_m68k_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.6.15' ARCH='m68k' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='m68k' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.7.7' ARCH='m68k' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='m68k' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_m68k_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.6.15' ARCH='m68k' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='m68k' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.7.7' ARCH='m68k' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='m68k' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_m68k_none:binary-arch_m68k_none_m68k binary-arch_m68k_none_m68k:binary-arch_m68k_none_m68k_headers binary-arch_m68k_none_m68k_image binary-arch_m68k_none_m68k_image-dbg binary-arch_m68k_none_m68k_installer binary-arch_m68k_none_m68k_meta binary-arch_m68k_none_m68k_headers: - $(call if_package, linux-headers-6.6.15-m68k, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-m68k' DH_OPTIONS='-plinux-headers-6.6.15-m68k' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCFLAGS='-ffreestanding' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' PACKAGE_NAME='linux-headers-6.6.15-m68k' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-m68k, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-m68k' DH_OPTIONS='-plinux-headers-6.7.7-m68k' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' PACKAGE_NAME='linux-headers-6.7.7-m68k' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_m68k_none_m68k_image: - $(call if_package, linux-image-6.6.15-m68k, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-m68k' DH_OPTIONS='-plinux-image-6.6.15-m68k' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCFLAGS='-ffreestanding' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' PACKAGE_NAME='linux-image-6.6.15-m68k' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-m68k, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-m68k' DH_OPTIONS='-plinux-image-6.7.7-m68k' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' PACKAGE_NAME='linux-image-6.7.7-m68k' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_m68k_none_m68k_image-dbg: - $(call if_package, linux-image-6.6.15-m68k-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-m68k-dbg' DH_OPTIONS='-plinux-image-6.6.15-m68k-dbg' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCFLAGS='-ffreestanding' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' PACKAGE_NAME='linux-image-6.6.15-m68k-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-m68k-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-m68k-dbg' DH_OPTIONS='-plinux-image-6.7.7-m68k-dbg' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' PACKAGE_NAME='linux-image-6.7.7-m68k-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_m68k_none_m68k_installer: - $(call if_package, affs-modules-6.6.15-m68k-di ata-modules-6.6.15-m68k-di btrfs-modules-6.6.15-m68k-di cdrom-core-modules-6.6.15-m68k-di crc-modules-6.6.15-m68k-di crypto-modules-6.6.15-m68k-di ext4-modules-6.6.15-m68k-di fat-modules-6.6.15-m68k-di hfs-modules-6.6.15-m68k-di isofs-modules-6.6.15-m68k-di kernel-image-6.6.15-m68k-di loop-modules-6.6.15-m68k-di md-modules-6.6.15-m68k-di nbd-modules-6.6.15-m68k-di nic-modules-6.6.15-m68k-di nic-shared-modules-6.6.15-m68k-di pata-modules-6.6.15-m68k-di ppp-modules-6.6.15-m68k-di scsi-core-modules-6.6.15-m68k-di scsi-modules-6.6.15-m68k-di squashfs-modules-6.6.15-m68k-di udf-modules-6.6.15-m68k-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.6.15' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-m68k-di -pata-modules-6.6.15-m68k-di -pbtrfs-modules-6.6.15-m68k-di -pcdrom-core-modules-6.6.15-m68k-di -pcrc-modules-6.6.15-m68k-di -pcrypto-modules-6.6.15-m68k-di -pext4-modules-6.6.15-m68k-di -pfat-modules-6.6.15-m68k-di -phfs-modules-6.6.15-m68k-di -pisofs-modules-6.6.15-m68k-di -pkernel-image-6.6.15-m68k-di -ploop-modules-6.6.15-m68k-di -pmd-modules-6.6.15-m68k-di -pnbd-modules-6.6.15-m68k-di -pnic-modules-6.6.15-m68k-di -pnic-shared-modules-6.6.15-m68k-di -ppata-modules-6.6.15-m68k-di -pppp-modules-6.6.15-m68k-di -pscsi-core-modules-6.6.15-m68k-di -pscsi-modules-6.6.15-m68k-di -psquashfs-modules-6.6.15-m68k-di -pudf-modules-6.6.15-m68k-di' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-m68k-di' KCFLAGS='-ffreestanding' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-m68k-di ata-modules-6.7.7-m68k-di btrfs-modules-6.7.7-m68k-di cdrom-core-modules-6.7.7-m68k-di crc-modules-6.7.7-m68k-di crypto-modules-6.7.7-m68k-di ext4-modules-6.7.7-m68k-di fat-modules-6.7.7-m68k-di hfs-modules-6.7.7-m68k-di isofs-modules-6.7.7-m68k-di kernel-image-6.7.7-m68k-di loop-modules-6.7.7-m68k-di md-modules-6.7.7-m68k-di nbd-modules-6.7.7-m68k-di nic-modules-6.7.7-m68k-di nic-shared-modules-6.7.7-m68k-di pata-modules-6.7.7-m68k-di ppp-modules-6.7.7-m68k-di scsi-core-modules-6.7.7-m68k-di scsi-modules-6.7.7-m68k-di squashfs-modules-6.7.7-m68k-di udf-modules-6.7.7-m68k-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.7.7' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-m68k-di -pata-modules-6.7.7-m68k-di -pbtrfs-modules-6.7.7-m68k-di -pcdrom-core-modules-6.7.7-m68k-di -pcrc-modules-6.7.7-m68k-di -pcrypto-modules-6.7.7-m68k-di -pext4-modules-6.7.7-m68k-di -pfat-modules-6.7.7-m68k-di -phfs-modules-6.7.7-m68k-di -pisofs-modules-6.7.7-m68k-di -pkernel-image-6.7.7-m68k-di -ploop-modules-6.7.7-m68k-di -pmd-modules-6.7.7-m68k-di -pnbd-modules-6.7.7-m68k-di -pnic-modules-6.7.7-m68k-di -pnic-shared-modules-6.7.7-m68k-di -ppata-modules-6.7.7-m68k-di -pppp-modules-6.7.7-m68k-di -pscsi-core-modules-6.7.7-m68k-di -pscsi-modules-6.7.7-m68k-di -psquashfs-modules-6.7.7-m68k-di -pudf-modules-6.7.7-m68k-di' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-m68k-di' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_m68k_none_m68k_meta: - $(call if_package, linux-image-m68k, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-m68k' DH_OPTIONS='-plinux-image-m68k' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-m68k' KCFLAGS='-ffreestanding' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' PACKAGE_NAME='linux-image-m68k' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-m68k, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-m68k' DH_OPTIONS='-plinux-headers-m68k' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-m68k' KCFLAGS='-ffreestanding' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' PACKAGE_NAME='linux-headers-m68k' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-m68k-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-m68k-dbg' DH_OPTIONS='-plinux-image-m68k-dbg' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-m68k-dbg' KCFLAGS='-ffreestanding' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' PACKAGE_NAME='linux-image-m68k-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-m68k, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-m68k' DH_OPTIONS='-plinux-image-m68k' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-m68k' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' PACKAGE_NAME='linux-image-m68k' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-m68k, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-m68k' DH_OPTIONS='-plinux-headers-m68k' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-m68k' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' PACKAGE_NAME='linux-headers-m68k' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-m68k-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-m68k-dbg' DH_OPTIONS='-plinux-image-m68k-dbg' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-m68k-dbg' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' PACKAGE_NAME='linux-image-m68k-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_m68k_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.6.15' ARCH='m68k' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='m68k' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.7.7' ARCH='m68k' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='m68k' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_m68k_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.6.15' ARCH='m68k' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='m68k' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.7.7' ARCH='m68k' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='m68k' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_m68k_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.6.15' ARCH='m68k' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='m68k' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.7.7' ARCH='m68k' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='m68k' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips:binary-arch_mips_bpftool binary-arch_mips_config binary-arch_mips_cpupower binary-arch_mips_hyperv-daemons binary-arch_mips_kbuild binary-arch_mips_none binary-arch_mips_perf binary-arch_mips_rtla binary-arch_mips_usbip binary-arch_mips64:binary-arch_mips64_bpftool binary-arch_mips64_config binary-arch_mips64_cpupower binary-arch_mips64_hyperv-daemons binary-arch_mips64_kbuild binary-arch_mips64_none binary-arch_mips64_perf binary-arch_mips64_rtla binary-arch_mips64_usbip binary-arch_mips64_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.6.15' ARCH='mips64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='mips' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.7.7' ARCH='mips64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='mips' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real binary_config ABINAME='6.6.15' ARCH='mips64' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='mips' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real binary_config ABINAME='6.7.7' ARCH='mips64' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='mips' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.6.15' ARCH='mips64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='mips' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.7.7' ARCH='mips64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='mips' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.6.15' ARCH='mips64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='mips' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.7.7' ARCH='mips64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='mips' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.6.15' ARCH='mips64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='mips' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.7.7' ARCH='mips64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='mips' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64_none:binary-arch_mips64_none_5kc-malta binary-arch_mips64_none_mips64r2eb binary-arch_mips64_none_octeon binary-arch_mips64_none_5kc-malta:binary-arch_mips64_none_5kc-malta_headers binary-arch_mips64_none_5kc-malta_image binary-arch_mips64_none_5kc-malta_image-dbg binary-arch_mips64_none_5kc-malta_installer binary-arch_mips64_none_5kc-malta_meta binary-arch_mips64_none_5kc-malta_headers: - $(call if_package, linux-headers-6.6.15-5kc-malta, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-5kc-malta' DH_OPTIONS='-plinux-headers-6.6.15-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-headers-6.6.15-5kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-5kc-malta, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-5kc-malta' DH_OPTIONS='-plinux-headers-6.7.7-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-headers-6.7.7-5kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64_none_5kc-malta_image: - $(call if_package, linux-image-6.6.15-5kc-malta, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-5kc-malta' DH_OPTIONS='-plinux-image-6.6.15-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-6.6.15-5kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-5kc-malta, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-5kc-malta' DH_OPTIONS='-plinux-image-6.7.7-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-6.7.7-5kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64_none_5kc-malta_image-dbg: - $(call if_package, linux-image-6.6.15-5kc-malta-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-5kc-malta-dbg' DH_OPTIONS='-plinux-image-6.6.15-5kc-malta-dbg' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-6.6.15-5kc-malta-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-5kc-malta-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-5kc-malta-dbg' DH_OPTIONS='-plinux-image-6.7.7-5kc-malta-dbg' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-6.7.7-5kc-malta-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64_none_5kc-malta_installer: - $(call if_package, affs-modules-6.6.15-5kc-malta-di ata-modules-6.6.15-5kc-malta-di btrfs-modules-6.6.15-5kc-malta-di cdrom-core-modules-6.6.15-5kc-malta-di crc-modules-6.6.15-5kc-malta-di crypto-dm-modules-6.6.15-5kc-malta-di crypto-modules-6.6.15-5kc-malta-di event-modules-6.6.15-5kc-malta-di ext4-modules-6.6.15-5kc-malta-di f2fs-modules-6.6.15-5kc-malta-di fat-modules-6.6.15-5kc-malta-di fb-modules-6.6.15-5kc-malta-di firewire-core-modules-6.6.15-5kc-malta-di input-modules-6.6.15-5kc-malta-di isofs-modules-6.6.15-5kc-malta-di jfs-modules-6.6.15-5kc-malta-di kernel-image-6.6.15-5kc-malta-di loop-modules-6.6.15-5kc-malta-di md-modules-6.6.15-5kc-malta-di minix-modules-6.6.15-5kc-malta-di mmc-core-modules-6.6.15-5kc-malta-di mmc-modules-6.6.15-5kc-malta-di mouse-modules-6.6.15-5kc-malta-di multipath-modules-6.6.15-5kc-malta-di nbd-modules-6.6.15-5kc-malta-di nfs-modules-6.6.15-5kc-malta-di nic-modules-6.6.15-5kc-malta-di nic-shared-modules-6.6.15-5kc-malta-di nic-usb-modules-6.6.15-5kc-malta-di nic-wireless-modules-6.6.15-5kc-malta-di pata-modules-6.6.15-5kc-malta-di ppp-modules-6.6.15-5kc-malta-di sata-modules-6.6.15-5kc-malta-di scsi-core-modules-6.6.15-5kc-malta-di scsi-modules-6.6.15-5kc-malta-di scsi-nic-modules-6.6.15-5kc-malta-di sound-modules-6.6.15-5kc-malta-di speakup-modules-6.6.15-5kc-malta-di squashfs-modules-6.6.15-5kc-malta-di udf-modules-6.6.15-5kc-malta-di usb-modules-6.6.15-5kc-malta-di usb-serial-modules-6.6.15-5kc-malta-di usb-storage-modules-6.6.15-5kc-malta-di xfs-modules-6.6.15-5kc-malta-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-5kc-malta-di -pata-modules-6.6.15-5kc-malta-di -pbtrfs-modules-6.6.15-5kc-malta-di -pcdrom-core-modules-6.6.15-5kc-malta-di -pcrc-modules-6.6.15-5kc-malta-di -pcrypto-dm-modules-6.6.15-5kc-malta-di -pcrypto-modules-6.6.15-5kc-malta-di -pevent-modules-6.6.15-5kc-malta-di -pext4-modules-6.6.15-5kc-malta-di -pf2fs-modules-6.6.15-5kc-malta-di -pfat-modules-6.6.15-5kc-malta-di -pfb-modules-6.6.15-5kc-malta-di -pfirewire-core-modules-6.6.15-5kc-malta-di -pinput-modules-6.6.15-5kc-malta-di -pisofs-modules-6.6.15-5kc-malta-di -pjfs-modules-6.6.15-5kc-malta-di -pkernel-image-6.6.15-5kc-malta-di -ploop-modules-6.6.15-5kc-malta-di -pmd-modules-6.6.15-5kc-malta-di -pminix-modules-6.6.15-5kc-malta-di -pmmc-core-modules-6.6.15-5kc-malta-di -pmmc-modules-6.6.15-5kc-malta-di -pmouse-modules-6.6.15-5kc-malta-di -pmultipath-modules-6.6.15-5kc-malta-di -pnbd-modules-6.6.15-5kc-malta-di -pnfs-modules-6.6.15-5kc-malta-di -pnic-modules-6.6.15-5kc-malta-di -pnic-shared-modules-6.6.15-5kc-malta-di -pnic-usb-modules-6.6.15-5kc-malta-di -pnic-wireless-modules-6.6.15-5kc-malta-di -ppata-modules-6.6.15-5kc-malta-di -pppp-modules-6.6.15-5kc-malta-di -psata-modules-6.6.15-5kc-malta-di -pscsi-core-modules-6.6.15-5kc-malta-di -pscsi-modules-6.6.15-5kc-malta-di -pscsi-nic-modules-6.6.15-5kc-malta-di -psound-modules-6.6.15-5kc-malta-di -pspeakup-modules-6.6.15-5kc-malta-di -psquashfs-modules-6.6.15-5kc-malta-di -pudf-modules-6.6.15-5kc-malta-di -pusb-modules-6.6.15-5kc-malta-di -pusb-serial-modules-6.6.15-5kc-malta-di -pusb-storage-modules-6.6.15-5kc-malta-di -pxfs-modules-6.6.15-5kc-malta-di' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-5kc-malta-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-5kc-malta-di ata-modules-6.7.7-5kc-malta-di btrfs-modules-6.7.7-5kc-malta-di cdrom-core-modules-6.7.7-5kc-malta-di crc-modules-6.7.7-5kc-malta-di crypto-dm-modules-6.7.7-5kc-malta-di crypto-modules-6.7.7-5kc-malta-di event-modules-6.7.7-5kc-malta-di ext4-modules-6.7.7-5kc-malta-di f2fs-modules-6.7.7-5kc-malta-di fat-modules-6.7.7-5kc-malta-di fb-modules-6.7.7-5kc-malta-di firewire-core-modules-6.7.7-5kc-malta-di input-modules-6.7.7-5kc-malta-di isofs-modules-6.7.7-5kc-malta-di jfs-modules-6.7.7-5kc-malta-di kernel-image-6.7.7-5kc-malta-di loop-modules-6.7.7-5kc-malta-di md-modules-6.7.7-5kc-malta-di minix-modules-6.7.7-5kc-malta-di mmc-core-modules-6.7.7-5kc-malta-di mmc-modules-6.7.7-5kc-malta-di mouse-modules-6.7.7-5kc-malta-di multipath-modules-6.7.7-5kc-malta-di nbd-modules-6.7.7-5kc-malta-di nfs-modules-6.7.7-5kc-malta-di nic-modules-6.7.7-5kc-malta-di nic-shared-modules-6.7.7-5kc-malta-di nic-usb-modules-6.7.7-5kc-malta-di nic-wireless-modules-6.7.7-5kc-malta-di pata-modules-6.7.7-5kc-malta-di ppp-modules-6.7.7-5kc-malta-di sata-modules-6.7.7-5kc-malta-di scsi-core-modules-6.7.7-5kc-malta-di scsi-modules-6.7.7-5kc-malta-di scsi-nic-modules-6.7.7-5kc-malta-di sound-modules-6.7.7-5kc-malta-di speakup-modules-6.7.7-5kc-malta-di squashfs-modules-6.7.7-5kc-malta-di udf-modules-6.7.7-5kc-malta-di usb-modules-6.7.7-5kc-malta-di usb-serial-modules-6.7.7-5kc-malta-di usb-storage-modules-6.7.7-5kc-malta-di xfs-modules-6.7.7-5kc-malta-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-5kc-malta-di -pata-modules-6.7.7-5kc-malta-di -pbtrfs-modules-6.7.7-5kc-malta-di -pcdrom-core-modules-6.7.7-5kc-malta-di -pcrc-modules-6.7.7-5kc-malta-di -pcrypto-dm-modules-6.7.7-5kc-malta-di -pcrypto-modules-6.7.7-5kc-malta-di -pevent-modules-6.7.7-5kc-malta-di -pext4-modules-6.7.7-5kc-malta-di -pf2fs-modules-6.7.7-5kc-malta-di -pfat-modules-6.7.7-5kc-malta-di -pfb-modules-6.7.7-5kc-malta-di -pfirewire-core-modules-6.7.7-5kc-malta-di -pinput-modules-6.7.7-5kc-malta-di -pisofs-modules-6.7.7-5kc-malta-di -pjfs-modules-6.7.7-5kc-malta-di -pkernel-image-6.7.7-5kc-malta-di -ploop-modules-6.7.7-5kc-malta-di -pmd-modules-6.7.7-5kc-malta-di -pminix-modules-6.7.7-5kc-malta-di -pmmc-core-modules-6.7.7-5kc-malta-di -pmmc-modules-6.7.7-5kc-malta-di -pmouse-modules-6.7.7-5kc-malta-di -pmultipath-modules-6.7.7-5kc-malta-di -pnbd-modules-6.7.7-5kc-malta-di -pnfs-modules-6.7.7-5kc-malta-di -pnic-modules-6.7.7-5kc-malta-di -pnic-shared-modules-6.7.7-5kc-malta-di -pnic-usb-modules-6.7.7-5kc-malta-di -pnic-wireless-modules-6.7.7-5kc-malta-di -ppata-modules-6.7.7-5kc-malta-di -pppp-modules-6.7.7-5kc-malta-di -psata-modules-6.7.7-5kc-malta-di -pscsi-core-modules-6.7.7-5kc-malta-di -pscsi-modules-6.7.7-5kc-malta-di -pscsi-nic-modules-6.7.7-5kc-malta-di -psound-modules-6.7.7-5kc-malta-di -pspeakup-modules-6.7.7-5kc-malta-di -psquashfs-modules-6.7.7-5kc-malta-di -pudf-modules-6.7.7-5kc-malta-di -pusb-modules-6.7.7-5kc-malta-di -pusb-serial-modules-6.7.7-5kc-malta-di -pusb-storage-modules-6.7.7-5kc-malta-di -pxfs-modules-6.7.7-5kc-malta-di' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-5kc-malta-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64_none_5kc-malta_meta: - $(call if_package, linux-image-5kc-malta, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-5kc-malta' DH_OPTIONS='-plinux-image-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-5kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-5kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-5kc-malta, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-5kc-malta' DH_OPTIONS='-plinux-headers-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-5kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-headers-5kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-5kc-malta-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-5kc-malta-dbg' DH_OPTIONS='-plinux-image-5kc-malta-dbg' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-5kc-malta-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-5kc-malta-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-5kc-malta, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-5kc-malta' DH_OPTIONS='-plinux-image-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-5kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-5kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-5kc-malta, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-5kc-malta' DH_OPTIONS='-plinux-headers-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-5kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-headers-5kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-5kc-malta-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-5kc-malta-dbg' DH_OPTIONS='-plinux-image-5kc-malta-dbg' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-5kc-malta-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-5kc-malta-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64_none_mips64r2eb:binary-arch_mips64_none_mips64r2eb_headers binary-arch_mips64_none_mips64r2eb_image binary-arch_mips64_none_mips64r2eb_image-dbg binary-arch_mips64_none_mips64r2eb_installer binary-arch_mips64_none_mips64r2eb_meta binary-arch_mips64_none_mips64r2eb_headers: - $(call if_package, linux-headers-6.6.15-mips64r2eb, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-mips64r2eb' DH_OPTIONS='-plinux-headers-6.6.15-mips64r2eb' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' PACKAGE_NAME='linux-headers-6.6.15-mips64r2eb' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-mips64r2eb, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-mips64r2eb' DH_OPTIONS='-plinux-headers-6.7.7-mips64r2eb' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' PACKAGE_NAME='linux-headers-6.7.7-mips64r2eb' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64_none_mips64r2eb_image: - $(call if_package, linux-image-6.6.15-mips64r2eb, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-mips64r2eb' DH_OPTIONS='-plinux-image-6.6.15-mips64r2eb' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' PACKAGE_NAME='linux-image-6.6.15-mips64r2eb' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-mips64r2eb, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-mips64r2eb' DH_OPTIONS='-plinux-image-6.7.7-mips64r2eb' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' PACKAGE_NAME='linux-image-6.7.7-mips64r2eb' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64_none_mips64r2eb_image-dbg: - $(call if_package, linux-image-6.6.15-mips64r2eb-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-mips64r2eb-dbg' DH_OPTIONS='-plinux-image-6.6.15-mips64r2eb-dbg' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' PACKAGE_NAME='linux-image-6.6.15-mips64r2eb-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-mips64r2eb-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-mips64r2eb-dbg' DH_OPTIONS='-plinux-image-6.7.7-mips64r2eb-dbg' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' PACKAGE_NAME='linux-image-6.7.7-mips64r2eb-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64_none_mips64r2eb_installer: - $(call if_package, affs-modules-6.6.15-mips64r2eb-di ata-modules-6.6.15-mips64r2eb-di btrfs-modules-6.6.15-mips64r2eb-di cdrom-core-modules-6.6.15-mips64r2eb-di crc-modules-6.6.15-mips64r2eb-di crypto-dm-modules-6.6.15-mips64r2eb-di crypto-modules-6.6.15-mips64r2eb-di event-modules-6.6.15-mips64r2eb-di ext4-modules-6.6.15-mips64r2eb-di f2fs-modules-6.6.15-mips64r2eb-di fat-modules-6.6.15-mips64r2eb-di fb-modules-6.6.15-mips64r2eb-di firewire-core-modules-6.6.15-mips64r2eb-di input-modules-6.6.15-mips64r2eb-di isofs-modules-6.6.15-mips64r2eb-di jfs-modules-6.6.15-mips64r2eb-di kernel-image-6.6.15-mips64r2eb-di loop-modules-6.6.15-mips64r2eb-di md-modules-6.6.15-mips64r2eb-di minix-modules-6.6.15-mips64r2eb-di mmc-core-modules-6.6.15-mips64r2eb-di mmc-modules-6.6.15-mips64r2eb-di mouse-modules-6.6.15-mips64r2eb-di multipath-modules-6.6.15-mips64r2eb-di nbd-modules-6.6.15-mips64r2eb-di nfs-modules-6.6.15-mips64r2eb-di nic-modules-6.6.15-mips64r2eb-di nic-shared-modules-6.6.15-mips64r2eb-di nic-usb-modules-6.6.15-mips64r2eb-di nic-wireless-modules-6.6.15-mips64r2eb-di pata-modules-6.6.15-mips64r2eb-di ppp-modules-6.6.15-mips64r2eb-di sata-modules-6.6.15-mips64r2eb-di scsi-core-modules-6.6.15-mips64r2eb-di scsi-modules-6.6.15-mips64r2eb-di scsi-nic-modules-6.6.15-mips64r2eb-di sound-modules-6.6.15-mips64r2eb-di speakup-modules-6.6.15-mips64r2eb-di squashfs-modules-6.6.15-mips64r2eb-di udf-modules-6.6.15-mips64r2eb-di usb-modules-6.6.15-mips64r2eb-di usb-serial-modules-6.6.15-mips64r2eb-di usb-storage-modules-6.6.15-mips64r2eb-di xfs-modules-6.6.15-mips64r2eb-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-mips64r2eb-di -pata-modules-6.6.15-mips64r2eb-di -pbtrfs-modules-6.6.15-mips64r2eb-di -pcdrom-core-modules-6.6.15-mips64r2eb-di -pcrc-modules-6.6.15-mips64r2eb-di -pcrypto-dm-modules-6.6.15-mips64r2eb-di -pcrypto-modules-6.6.15-mips64r2eb-di -pevent-modules-6.6.15-mips64r2eb-di -pext4-modules-6.6.15-mips64r2eb-di -pf2fs-modules-6.6.15-mips64r2eb-di -pfat-modules-6.6.15-mips64r2eb-di -pfb-modules-6.6.15-mips64r2eb-di -pfirewire-core-modules-6.6.15-mips64r2eb-di -pinput-modules-6.6.15-mips64r2eb-di -pisofs-modules-6.6.15-mips64r2eb-di -pjfs-modules-6.6.15-mips64r2eb-di -pkernel-image-6.6.15-mips64r2eb-di -ploop-modules-6.6.15-mips64r2eb-di -pmd-modules-6.6.15-mips64r2eb-di -pminix-modules-6.6.15-mips64r2eb-di -pmmc-core-modules-6.6.15-mips64r2eb-di -pmmc-modules-6.6.15-mips64r2eb-di -pmouse-modules-6.6.15-mips64r2eb-di -pmultipath-modules-6.6.15-mips64r2eb-di -pnbd-modules-6.6.15-mips64r2eb-di -pnfs-modules-6.6.15-mips64r2eb-di -pnic-modules-6.6.15-mips64r2eb-di -pnic-shared-modules-6.6.15-mips64r2eb-di -pnic-usb-modules-6.6.15-mips64r2eb-di -pnic-wireless-modules-6.6.15-mips64r2eb-di -ppata-modules-6.6.15-mips64r2eb-di -pppp-modules-6.6.15-mips64r2eb-di -psata-modules-6.6.15-mips64r2eb-di -pscsi-core-modules-6.6.15-mips64r2eb-di -pscsi-modules-6.6.15-mips64r2eb-di -pscsi-nic-modules-6.6.15-mips64r2eb-di -psound-modules-6.6.15-mips64r2eb-di -pspeakup-modules-6.6.15-mips64r2eb-di -psquashfs-modules-6.6.15-mips64r2eb-di -pudf-modules-6.6.15-mips64r2eb-di -pusb-modules-6.6.15-mips64r2eb-di -pusb-serial-modules-6.6.15-mips64r2eb-di -pusb-storage-modules-6.6.15-mips64r2eb-di -pxfs-modules-6.6.15-mips64r2eb-di' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-mips64r2eb-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-mips64r2eb-di ata-modules-6.7.7-mips64r2eb-di btrfs-modules-6.7.7-mips64r2eb-di cdrom-core-modules-6.7.7-mips64r2eb-di crc-modules-6.7.7-mips64r2eb-di crypto-dm-modules-6.7.7-mips64r2eb-di crypto-modules-6.7.7-mips64r2eb-di event-modules-6.7.7-mips64r2eb-di ext4-modules-6.7.7-mips64r2eb-di f2fs-modules-6.7.7-mips64r2eb-di fat-modules-6.7.7-mips64r2eb-di fb-modules-6.7.7-mips64r2eb-di firewire-core-modules-6.7.7-mips64r2eb-di input-modules-6.7.7-mips64r2eb-di isofs-modules-6.7.7-mips64r2eb-di jfs-modules-6.7.7-mips64r2eb-di kernel-image-6.7.7-mips64r2eb-di loop-modules-6.7.7-mips64r2eb-di md-modules-6.7.7-mips64r2eb-di minix-modules-6.7.7-mips64r2eb-di mmc-core-modules-6.7.7-mips64r2eb-di mmc-modules-6.7.7-mips64r2eb-di mouse-modules-6.7.7-mips64r2eb-di multipath-modules-6.7.7-mips64r2eb-di nbd-modules-6.7.7-mips64r2eb-di nfs-modules-6.7.7-mips64r2eb-di nic-modules-6.7.7-mips64r2eb-di nic-shared-modules-6.7.7-mips64r2eb-di nic-usb-modules-6.7.7-mips64r2eb-di nic-wireless-modules-6.7.7-mips64r2eb-di pata-modules-6.7.7-mips64r2eb-di ppp-modules-6.7.7-mips64r2eb-di sata-modules-6.7.7-mips64r2eb-di scsi-core-modules-6.7.7-mips64r2eb-di scsi-modules-6.7.7-mips64r2eb-di scsi-nic-modules-6.7.7-mips64r2eb-di sound-modules-6.7.7-mips64r2eb-di speakup-modules-6.7.7-mips64r2eb-di squashfs-modules-6.7.7-mips64r2eb-di udf-modules-6.7.7-mips64r2eb-di usb-modules-6.7.7-mips64r2eb-di usb-serial-modules-6.7.7-mips64r2eb-di usb-storage-modules-6.7.7-mips64r2eb-di xfs-modules-6.7.7-mips64r2eb-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-mips64r2eb-di -pata-modules-6.7.7-mips64r2eb-di -pbtrfs-modules-6.7.7-mips64r2eb-di -pcdrom-core-modules-6.7.7-mips64r2eb-di -pcrc-modules-6.7.7-mips64r2eb-di -pcrypto-dm-modules-6.7.7-mips64r2eb-di -pcrypto-modules-6.7.7-mips64r2eb-di -pevent-modules-6.7.7-mips64r2eb-di -pext4-modules-6.7.7-mips64r2eb-di -pf2fs-modules-6.7.7-mips64r2eb-di -pfat-modules-6.7.7-mips64r2eb-di -pfb-modules-6.7.7-mips64r2eb-di -pfirewire-core-modules-6.7.7-mips64r2eb-di -pinput-modules-6.7.7-mips64r2eb-di -pisofs-modules-6.7.7-mips64r2eb-di -pjfs-modules-6.7.7-mips64r2eb-di -pkernel-image-6.7.7-mips64r2eb-di -ploop-modules-6.7.7-mips64r2eb-di -pmd-modules-6.7.7-mips64r2eb-di -pminix-modules-6.7.7-mips64r2eb-di -pmmc-core-modules-6.7.7-mips64r2eb-di -pmmc-modules-6.7.7-mips64r2eb-di -pmouse-modules-6.7.7-mips64r2eb-di -pmultipath-modules-6.7.7-mips64r2eb-di -pnbd-modules-6.7.7-mips64r2eb-di -pnfs-modules-6.7.7-mips64r2eb-di -pnic-modules-6.7.7-mips64r2eb-di -pnic-shared-modules-6.7.7-mips64r2eb-di -pnic-usb-modules-6.7.7-mips64r2eb-di -pnic-wireless-modules-6.7.7-mips64r2eb-di -ppata-modules-6.7.7-mips64r2eb-di -pppp-modules-6.7.7-mips64r2eb-di -psata-modules-6.7.7-mips64r2eb-di -pscsi-core-modules-6.7.7-mips64r2eb-di -pscsi-modules-6.7.7-mips64r2eb-di -pscsi-nic-modules-6.7.7-mips64r2eb-di -psound-modules-6.7.7-mips64r2eb-di -pspeakup-modules-6.7.7-mips64r2eb-di -psquashfs-modules-6.7.7-mips64r2eb-di -pudf-modules-6.7.7-mips64r2eb-di -pusb-modules-6.7.7-mips64r2eb-di -pusb-serial-modules-6.7.7-mips64r2eb-di -pusb-storage-modules-6.7.7-mips64r2eb-di -pxfs-modules-6.7.7-mips64r2eb-di' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-mips64r2eb-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64_none_mips64r2eb_meta: - $(call if_package, linux-image-mips64r2eb, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips64r2eb' DH_OPTIONS='-plinux-image-mips64r2eb' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-mips64r2eb' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' PACKAGE_NAME='linux-image-mips64r2eb' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-mips64r2eb, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-mips64r2eb' DH_OPTIONS='-plinux-headers-mips64r2eb' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-mips64r2eb' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' PACKAGE_NAME='linux-headers-mips64r2eb' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-mips64r2eb-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips64r2eb-dbg' DH_OPTIONS='-plinux-image-mips64r2eb-dbg' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-mips64r2eb-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' PACKAGE_NAME='linux-image-mips64r2eb-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-mips64r2eb, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips64r2eb' DH_OPTIONS='-plinux-image-mips64r2eb' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-mips64r2eb' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' PACKAGE_NAME='linux-image-mips64r2eb' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-mips64r2eb, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-mips64r2eb' DH_OPTIONS='-plinux-headers-mips64r2eb' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-mips64r2eb' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' PACKAGE_NAME='linux-headers-mips64r2eb' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-mips64r2eb-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips64r2eb-dbg' DH_OPTIONS='-plinux-image-mips64r2eb-dbg' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-mips64r2eb-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' PACKAGE_NAME='linux-image-mips64r2eb-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64_none_octeon:binary-arch_mips64_none_octeon_headers binary-arch_mips64_none_octeon_image binary-arch_mips64_none_octeon_image-dbg binary-arch_mips64_none_octeon_installer binary-arch_mips64_none_octeon_meta binary-arch_mips64_none_octeon_headers: - $(call if_package, linux-headers-6.6.15-octeon, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-octeon' DH_OPTIONS='-plinux-headers-6.6.15-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-6.6.15-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-octeon, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-octeon' DH_OPTIONS='-plinux-headers-6.7.7-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-6.7.7-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64_none_octeon_image: - $(call if_package, linux-image-6.6.15-octeon, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-octeon' DH_OPTIONS='-plinux-image-6.6.15-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.6.15-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-octeon, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-octeon' DH_OPTIONS='-plinux-image-6.7.7-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.7.7-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64_none_octeon_image-dbg: - $(call if_package, linux-image-6.6.15-octeon-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-octeon-dbg' DH_OPTIONS='-plinux-image-6.6.15-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.6.15-octeon-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-octeon-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-octeon-dbg' DH_OPTIONS='-plinux-image-6.7.7-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.7.7-octeon-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64_none_octeon_installer: - $(call if_package, affs-modules-6.6.15-octeon-di ata-modules-6.6.15-octeon-di btrfs-modules-6.6.15-octeon-di cdrom-core-modules-6.6.15-octeon-di crc-modules-6.6.15-octeon-di crypto-dm-modules-6.6.15-octeon-di crypto-modules-6.6.15-octeon-di event-modules-6.6.15-octeon-di ext4-modules-6.6.15-octeon-di f2fs-modules-6.6.15-octeon-di fat-modules-6.6.15-octeon-di fb-modules-6.6.15-octeon-di firewire-core-modules-6.6.15-octeon-di input-modules-6.6.15-octeon-di isofs-modules-6.6.15-octeon-di jfs-modules-6.6.15-octeon-di kernel-image-6.6.15-octeon-di loop-modules-6.6.15-octeon-di md-modules-6.6.15-octeon-di minix-modules-6.6.15-octeon-di mmc-core-modules-6.6.15-octeon-di mmc-modules-6.6.15-octeon-di mouse-modules-6.6.15-octeon-di multipath-modules-6.6.15-octeon-di nbd-modules-6.6.15-octeon-di nfs-modules-6.6.15-octeon-di nic-modules-6.6.15-octeon-di nic-shared-modules-6.6.15-octeon-di nic-usb-modules-6.6.15-octeon-di nic-wireless-modules-6.6.15-octeon-di pata-modules-6.6.15-octeon-di ppp-modules-6.6.15-octeon-di sata-modules-6.6.15-octeon-di scsi-core-modules-6.6.15-octeon-di scsi-modules-6.6.15-octeon-di scsi-nic-modules-6.6.15-octeon-di sound-modules-6.6.15-octeon-di speakup-modules-6.6.15-octeon-di squashfs-modules-6.6.15-octeon-di udf-modules-6.6.15-octeon-di usb-modules-6.6.15-octeon-di usb-serial-modules-6.6.15-octeon-di usb-storage-modules-6.6.15-octeon-di xfs-modules-6.6.15-octeon-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-octeon-di -pata-modules-6.6.15-octeon-di -pbtrfs-modules-6.6.15-octeon-di -pcdrom-core-modules-6.6.15-octeon-di -pcrc-modules-6.6.15-octeon-di -pcrypto-dm-modules-6.6.15-octeon-di -pcrypto-modules-6.6.15-octeon-di -pevent-modules-6.6.15-octeon-di -pext4-modules-6.6.15-octeon-di -pf2fs-modules-6.6.15-octeon-di -pfat-modules-6.6.15-octeon-di -pfb-modules-6.6.15-octeon-di -pfirewire-core-modules-6.6.15-octeon-di -pinput-modules-6.6.15-octeon-di -pisofs-modules-6.6.15-octeon-di -pjfs-modules-6.6.15-octeon-di -pkernel-image-6.6.15-octeon-di -ploop-modules-6.6.15-octeon-di -pmd-modules-6.6.15-octeon-di -pminix-modules-6.6.15-octeon-di -pmmc-core-modules-6.6.15-octeon-di -pmmc-modules-6.6.15-octeon-di -pmouse-modules-6.6.15-octeon-di -pmultipath-modules-6.6.15-octeon-di -pnbd-modules-6.6.15-octeon-di -pnfs-modules-6.6.15-octeon-di -pnic-modules-6.6.15-octeon-di -pnic-shared-modules-6.6.15-octeon-di -pnic-usb-modules-6.6.15-octeon-di -pnic-wireless-modules-6.6.15-octeon-di -ppata-modules-6.6.15-octeon-di -pppp-modules-6.6.15-octeon-di -psata-modules-6.6.15-octeon-di -pscsi-core-modules-6.6.15-octeon-di -pscsi-modules-6.6.15-octeon-di -pscsi-nic-modules-6.6.15-octeon-di -psound-modules-6.6.15-octeon-di -pspeakup-modules-6.6.15-octeon-di -psquashfs-modules-6.6.15-octeon-di -pudf-modules-6.6.15-octeon-di -pusb-modules-6.6.15-octeon-di -pusb-serial-modules-6.6.15-octeon-di -pusb-storage-modules-6.6.15-octeon-di -pxfs-modules-6.6.15-octeon-di' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-octeon-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-octeon-di ata-modules-6.7.7-octeon-di btrfs-modules-6.7.7-octeon-di cdrom-core-modules-6.7.7-octeon-di crc-modules-6.7.7-octeon-di crypto-dm-modules-6.7.7-octeon-di crypto-modules-6.7.7-octeon-di event-modules-6.7.7-octeon-di ext4-modules-6.7.7-octeon-di f2fs-modules-6.7.7-octeon-di fat-modules-6.7.7-octeon-di fb-modules-6.7.7-octeon-di firewire-core-modules-6.7.7-octeon-di input-modules-6.7.7-octeon-di isofs-modules-6.7.7-octeon-di jfs-modules-6.7.7-octeon-di kernel-image-6.7.7-octeon-di loop-modules-6.7.7-octeon-di md-modules-6.7.7-octeon-di minix-modules-6.7.7-octeon-di mmc-core-modules-6.7.7-octeon-di mmc-modules-6.7.7-octeon-di mouse-modules-6.7.7-octeon-di multipath-modules-6.7.7-octeon-di nbd-modules-6.7.7-octeon-di nfs-modules-6.7.7-octeon-di nic-modules-6.7.7-octeon-di nic-shared-modules-6.7.7-octeon-di nic-usb-modules-6.7.7-octeon-di nic-wireless-modules-6.7.7-octeon-di pata-modules-6.7.7-octeon-di ppp-modules-6.7.7-octeon-di sata-modules-6.7.7-octeon-di scsi-core-modules-6.7.7-octeon-di scsi-modules-6.7.7-octeon-di scsi-nic-modules-6.7.7-octeon-di sound-modules-6.7.7-octeon-di speakup-modules-6.7.7-octeon-di squashfs-modules-6.7.7-octeon-di udf-modules-6.7.7-octeon-di usb-modules-6.7.7-octeon-di usb-serial-modules-6.7.7-octeon-di usb-storage-modules-6.7.7-octeon-di xfs-modules-6.7.7-octeon-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-octeon-di -pata-modules-6.7.7-octeon-di -pbtrfs-modules-6.7.7-octeon-di -pcdrom-core-modules-6.7.7-octeon-di -pcrc-modules-6.7.7-octeon-di -pcrypto-dm-modules-6.7.7-octeon-di -pcrypto-modules-6.7.7-octeon-di -pevent-modules-6.7.7-octeon-di -pext4-modules-6.7.7-octeon-di -pf2fs-modules-6.7.7-octeon-di -pfat-modules-6.7.7-octeon-di -pfb-modules-6.7.7-octeon-di -pfirewire-core-modules-6.7.7-octeon-di -pinput-modules-6.7.7-octeon-di -pisofs-modules-6.7.7-octeon-di -pjfs-modules-6.7.7-octeon-di -pkernel-image-6.7.7-octeon-di -ploop-modules-6.7.7-octeon-di -pmd-modules-6.7.7-octeon-di -pminix-modules-6.7.7-octeon-di -pmmc-core-modules-6.7.7-octeon-di -pmmc-modules-6.7.7-octeon-di -pmouse-modules-6.7.7-octeon-di -pmultipath-modules-6.7.7-octeon-di -pnbd-modules-6.7.7-octeon-di -pnfs-modules-6.7.7-octeon-di -pnic-modules-6.7.7-octeon-di -pnic-shared-modules-6.7.7-octeon-di -pnic-usb-modules-6.7.7-octeon-di -pnic-wireless-modules-6.7.7-octeon-di -ppata-modules-6.7.7-octeon-di -pppp-modules-6.7.7-octeon-di -psata-modules-6.7.7-octeon-di -pscsi-core-modules-6.7.7-octeon-di -pscsi-modules-6.7.7-octeon-di -pscsi-nic-modules-6.7.7-octeon-di -psound-modules-6.7.7-octeon-di -pspeakup-modules-6.7.7-octeon-di -psquashfs-modules-6.7.7-octeon-di -pudf-modules-6.7.7-octeon-di -pusb-modules-6.7.7-octeon-di -pusb-serial-modules-6.7.7-octeon-di -pusb-storage-modules-6.7.7-octeon-di -pxfs-modules-6.7.7-octeon-di' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-octeon-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64_none_octeon_meta: - $(call if_package, linux-image-octeon, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon' DH_OPTIONS='-plinux-image-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-octeon, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-octeon' DH_OPTIONS='-plinux-headers-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-octeon-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon-dbg' DH_OPTIONS='-plinux-image-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-octeon-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-octeon, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon' DH_OPTIONS='-plinux-image-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-octeon, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-octeon' DH_OPTIONS='-plinux-headers-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-octeon-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon-dbg' DH_OPTIONS='-plinux-image-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-octeon-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.6.15' ARCH='mips64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='mips' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.7.7' ARCH='mips64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='mips' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.6.15' ARCH='mips64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='mips' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.7.7' ARCH='mips64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='mips' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.6.15' ARCH='mips64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='mips' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.7.7' ARCH='mips64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='mips' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64el:binary-arch_mips64el_bpftool binary-arch_mips64el_config binary-arch_mips64el_cpupower binary-arch_mips64el_hyperv-daemons binary-arch_mips64el_kbuild binary-arch_mips64el_none binary-arch_mips64el_perf binary-arch_mips64el_rtla binary-arch_mips64el_usbip binary-arch_mips64el_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.6.15' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='mips' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.7.7' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='mips' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64el_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real binary_config ABINAME='6.6.15' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='mips' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real binary_config ABINAME='6.7.7' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='mips' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64el_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.6.15' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='mips' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.7.7' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='mips' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64el_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.6.15' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='mips' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.7.7' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='mips' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64el_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.6.15' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='mips' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.7.7' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='mips' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64el_none:binary-arch_mips64el_none_5kc-malta binary-arch_mips64el_none_loongson-3 binary-arch_mips64el_none_mips64r2el binary-arch_mips64el_none_octeon binary-arch_mips64el_none_5kc-malta:binary-arch_mips64el_none_5kc-malta_headers binary-arch_mips64el_none_5kc-malta_image binary-arch_mips64el_none_5kc-malta_image-dbg binary-arch_mips64el_none_5kc-malta_installer binary-arch_mips64el_none_5kc-malta_meta binary-arch_mips64el_none_5kc-malta_headers: - $(call if_package, linux-headers-6.6.15-5kc-malta, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-5kc-malta' DH_OPTIONS='-plinux-headers-6.6.15-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-headers-6.6.15-5kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-5kc-malta, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-5kc-malta' DH_OPTIONS='-plinux-headers-6.7.7-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-headers-6.7.7-5kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64el_none_5kc-malta_image: - $(call if_package, linux-image-6.6.15-5kc-malta, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-5kc-malta' DH_OPTIONS='-plinux-image-6.6.15-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-6.6.15-5kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-5kc-malta, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-5kc-malta' DH_OPTIONS='-plinux-image-6.7.7-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-6.7.7-5kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64el_none_5kc-malta_image-dbg: - $(call if_package, linux-image-6.6.15-5kc-malta-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-5kc-malta-dbg' DH_OPTIONS='-plinux-image-6.6.15-5kc-malta-dbg' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-6.6.15-5kc-malta-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-5kc-malta-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-5kc-malta-dbg' DH_OPTIONS='-plinux-image-6.7.7-5kc-malta-dbg' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-6.7.7-5kc-malta-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64el_none_5kc-malta_installer: - $(call if_package, affs-modules-6.6.15-5kc-malta-di ata-modules-6.6.15-5kc-malta-di btrfs-modules-6.6.15-5kc-malta-di cdrom-core-modules-6.6.15-5kc-malta-di crc-modules-6.6.15-5kc-malta-di crypto-dm-modules-6.6.15-5kc-malta-di crypto-modules-6.6.15-5kc-malta-di event-modules-6.6.15-5kc-malta-di ext4-modules-6.6.15-5kc-malta-di f2fs-modules-6.6.15-5kc-malta-di fat-modules-6.6.15-5kc-malta-di fb-modules-6.6.15-5kc-malta-di firewire-core-modules-6.6.15-5kc-malta-di input-modules-6.6.15-5kc-malta-di isofs-modules-6.6.15-5kc-malta-di jfs-modules-6.6.15-5kc-malta-di kernel-image-6.6.15-5kc-malta-di loop-modules-6.6.15-5kc-malta-di md-modules-6.6.15-5kc-malta-di minix-modules-6.6.15-5kc-malta-di mmc-core-modules-6.6.15-5kc-malta-di mmc-modules-6.6.15-5kc-malta-di mouse-modules-6.6.15-5kc-malta-di multipath-modules-6.6.15-5kc-malta-di nbd-modules-6.6.15-5kc-malta-di nfs-modules-6.6.15-5kc-malta-di nic-modules-6.6.15-5kc-malta-di nic-shared-modules-6.6.15-5kc-malta-di nic-usb-modules-6.6.15-5kc-malta-di nic-wireless-modules-6.6.15-5kc-malta-di pata-modules-6.6.15-5kc-malta-di ppp-modules-6.6.15-5kc-malta-di sata-modules-6.6.15-5kc-malta-di scsi-core-modules-6.6.15-5kc-malta-di scsi-modules-6.6.15-5kc-malta-di scsi-nic-modules-6.6.15-5kc-malta-di sound-modules-6.6.15-5kc-malta-di speakup-modules-6.6.15-5kc-malta-di squashfs-modules-6.6.15-5kc-malta-di udf-modules-6.6.15-5kc-malta-di usb-modules-6.6.15-5kc-malta-di usb-serial-modules-6.6.15-5kc-malta-di usb-storage-modules-6.6.15-5kc-malta-di xfs-modules-6.6.15-5kc-malta-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-5kc-malta-di -pata-modules-6.6.15-5kc-malta-di -pbtrfs-modules-6.6.15-5kc-malta-di -pcdrom-core-modules-6.6.15-5kc-malta-di -pcrc-modules-6.6.15-5kc-malta-di -pcrypto-dm-modules-6.6.15-5kc-malta-di -pcrypto-modules-6.6.15-5kc-malta-di -pevent-modules-6.6.15-5kc-malta-di -pext4-modules-6.6.15-5kc-malta-di -pf2fs-modules-6.6.15-5kc-malta-di -pfat-modules-6.6.15-5kc-malta-di -pfb-modules-6.6.15-5kc-malta-di -pfirewire-core-modules-6.6.15-5kc-malta-di -pinput-modules-6.6.15-5kc-malta-di -pisofs-modules-6.6.15-5kc-malta-di -pjfs-modules-6.6.15-5kc-malta-di -pkernel-image-6.6.15-5kc-malta-di -ploop-modules-6.6.15-5kc-malta-di -pmd-modules-6.6.15-5kc-malta-di -pminix-modules-6.6.15-5kc-malta-di -pmmc-core-modules-6.6.15-5kc-malta-di -pmmc-modules-6.6.15-5kc-malta-di -pmouse-modules-6.6.15-5kc-malta-di -pmultipath-modules-6.6.15-5kc-malta-di -pnbd-modules-6.6.15-5kc-malta-di -pnfs-modules-6.6.15-5kc-malta-di -pnic-modules-6.6.15-5kc-malta-di -pnic-shared-modules-6.6.15-5kc-malta-di -pnic-usb-modules-6.6.15-5kc-malta-di -pnic-wireless-modules-6.6.15-5kc-malta-di -ppata-modules-6.6.15-5kc-malta-di -pppp-modules-6.6.15-5kc-malta-di -psata-modules-6.6.15-5kc-malta-di -pscsi-core-modules-6.6.15-5kc-malta-di -pscsi-modules-6.6.15-5kc-malta-di -pscsi-nic-modules-6.6.15-5kc-malta-di -psound-modules-6.6.15-5kc-malta-di -pspeakup-modules-6.6.15-5kc-malta-di -psquashfs-modules-6.6.15-5kc-malta-di -pudf-modules-6.6.15-5kc-malta-di -pusb-modules-6.6.15-5kc-malta-di -pusb-serial-modules-6.6.15-5kc-malta-di -pusb-storage-modules-6.6.15-5kc-malta-di -pxfs-modules-6.6.15-5kc-malta-di' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-5kc-malta-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-5kc-malta-di ata-modules-6.7.7-5kc-malta-di btrfs-modules-6.7.7-5kc-malta-di cdrom-core-modules-6.7.7-5kc-malta-di crc-modules-6.7.7-5kc-malta-di crypto-dm-modules-6.7.7-5kc-malta-di crypto-modules-6.7.7-5kc-malta-di event-modules-6.7.7-5kc-malta-di ext4-modules-6.7.7-5kc-malta-di f2fs-modules-6.7.7-5kc-malta-di fat-modules-6.7.7-5kc-malta-di fb-modules-6.7.7-5kc-malta-di firewire-core-modules-6.7.7-5kc-malta-di input-modules-6.7.7-5kc-malta-di isofs-modules-6.7.7-5kc-malta-di jfs-modules-6.7.7-5kc-malta-di kernel-image-6.7.7-5kc-malta-di loop-modules-6.7.7-5kc-malta-di md-modules-6.7.7-5kc-malta-di minix-modules-6.7.7-5kc-malta-di mmc-core-modules-6.7.7-5kc-malta-di mmc-modules-6.7.7-5kc-malta-di mouse-modules-6.7.7-5kc-malta-di multipath-modules-6.7.7-5kc-malta-di nbd-modules-6.7.7-5kc-malta-di nfs-modules-6.7.7-5kc-malta-di nic-modules-6.7.7-5kc-malta-di nic-shared-modules-6.7.7-5kc-malta-di nic-usb-modules-6.7.7-5kc-malta-di nic-wireless-modules-6.7.7-5kc-malta-di pata-modules-6.7.7-5kc-malta-di ppp-modules-6.7.7-5kc-malta-di sata-modules-6.7.7-5kc-malta-di scsi-core-modules-6.7.7-5kc-malta-di scsi-modules-6.7.7-5kc-malta-di scsi-nic-modules-6.7.7-5kc-malta-di sound-modules-6.7.7-5kc-malta-di speakup-modules-6.7.7-5kc-malta-di squashfs-modules-6.7.7-5kc-malta-di udf-modules-6.7.7-5kc-malta-di usb-modules-6.7.7-5kc-malta-di usb-serial-modules-6.7.7-5kc-malta-di usb-storage-modules-6.7.7-5kc-malta-di xfs-modules-6.7.7-5kc-malta-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-5kc-malta-di -pata-modules-6.7.7-5kc-malta-di -pbtrfs-modules-6.7.7-5kc-malta-di -pcdrom-core-modules-6.7.7-5kc-malta-di -pcrc-modules-6.7.7-5kc-malta-di -pcrypto-dm-modules-6.7.7-5kc-malta-di -pcrypto-modules-6.7.7-5kc-malta-di -pevent-modules-6.7.7-5kc-malta-di -pext4-modules-6.7.7-5kc-malta-di -pf2fs-modules-6.7.7-5kc-malta-di -pfat-modules-6.7.7-5kc-malta-di -pfb-modules-6.7.7-5kc-malta-di -pfirewire-core-modules-6.7.7-5kc-malta-di -pinput-modules-6.7.7-5kc-malta-di -pisofs-modules-6.7.7-5kc-malta-di -pjfs-modules-6.7.7-5kc-malta-di -pkernel-image-6.7.7-5kc-malta-di -ploop-modules-6.7.7-5kc-malta-di -pmd-modules-6.7.7-5kc-malta-di -pminix-modules-6.7.7-5kc-malta-di -pmmc-core-modules-6.7.7-5kc-malta-di -pmmc-modules-6.7.7-5kc-malta-di -pmouse-modules-6.7.7-5kc-malta-di -pmultipath-modules-6.7.7-5kc-malta-di -pnbd-modules-6.7.7-5kc-malta-di -pnfs-modules-6.7.7-5kc-malta-di -pnic-modules-6.7.7-5kc-malta-di -pnic-shared-modules-6.7.7-5kc-malta-di -pnic-usb-modules-6.7.7-5kc-malta-di -pnic-wireless-modules-6.7.7-5kc-malta-di -ppata-modules-6.7.7-5kc-malta-di -pppp-modules-6.7.7-5kc-malta-di -psata-modules-6.7.7-5kc-malta-di -pscsi-core-modules-6.7.7-5kc-malta-di -pscsi-modules-6.7.7-5kc-malta-di -pscsi-nic-modules-6.7.7-5kc-malta-di -psound-modules-6.7.7-5kc-malta-di -pspeakup-modules-6.7.7-5kc-malta-di -psquashfs-modules-6.7.7-5kc-malta-di -pudf-modules-6.7.7-5kc-malta-di -pusb-modules-6.7.7-5kc-malta-di -pusb-serial-modules-6.7.7-5kc-malta-di -pusb-storage-modules-6.7.7-5kc-malta-di -pxfs-modules-6.7.7-5kc-malta-di' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-5kc-malta-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64el_none_5kc-malta_meta: - $(call if_package, linux-image-5kc-malta, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-5kc-malta' DH_OPTIONS='-plinux-image-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-5kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-5kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-5kc-malta, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-5kc-malta' DH_OPTIONS='-plinux-headers-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-5kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-headers-5kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-5kc-malta-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-5kc-malta-dbg' DH_OPTIONS='-plinux-image-5kc-malta-dbg' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-5kc-malta-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-5kc-malta-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-5kc-malta, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-5kc-malta' DH_OPTIONS='-plinux-image-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-5kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-5kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-5kc-malta, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-5kc-malta' DH_OPTIONS='-plinux-headers-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-5kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-headers-5kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-5kc-malta-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-5kc-malta-dbg' DH_OPTIONS='-plinux-image-5kc-malta-dbg' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-5kc-malta-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-5kc-malta-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64el_none_loongson-3:binary-arch_mips64el_none_loongson-3_headers binary-arch_mips64el_none_loongson-3_image binary-arch_mips64el_none_loongson-3_image-dbg binary-arch_mips64el_none_loongson-3_installer binary-arch_mips64el_none_loongson-3_meta binary-arch_mips64el_none_loongson-3_headers: - $(call if_package, linux-headers-6.6.15-loongson-3, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-loongson-3' DH_OPTIONS='-plinux-headers-6.6.15-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-headers-6.6.15-loongson-3' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-loongson-3, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-loongson-3' DH_OPTIONS='-plinux-headers-6.7.7-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-headers-6.7.7-loongson-3' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64el_none_loongson-3_image: - $(call if_package, linux-image-6.6.15-loongson-3, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-loongson-3' DH_OPTIONS='-plinux-image-6.6.15-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-6.6.15-loongson-3' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-loongson-3, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-loongson-3' DH_OPTIONS='-plinux-image-6.7.7-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-6.7.7-loongson-3' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64el_none_loongson-3_image-dbg: - $(call if_package, linux-image-6.6.15-loongson-3-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-loongson-3-dbg' DH_OPTIONS='-plinux-image-6.6.15-loongson-3-dbg' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-6.6.15-loongson-3-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-loongson-3-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-loongson-3-dbg' DH_OPTIONS='-plinux-image-6.7.7-loongson-3-dbg' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-6.7.7-loongson-3-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64el_none_loongson-3_installer: - $(call if_package, affs-modules-6.6.15-loongson-3-di ata-modules-6.6.15-loongson-3-di btrfs-modules-6.6.15-loongson-3-di cdrom-core-modules-6.6.15-loongson-3-di crc-modules-6.6.15-loongson-3-di crypto-dm-modules-6.6.15-loongson-3-di crypto-modules-6.6.15-loongson-3-di event-modules-6.6.15-loongson-3-di ext4-modules-6.6.15-loongson-3-di f2fs-modules-6.6.15-loongson-3-di fat-modules-6.6.15-loongson-3-di fb-modules-6.6.15-loongson-3-di firewire-core-modules-6.6.15-loongson-3-di input-modules-6.6.15-loongson-3-di isofs-modules-6.6.15-loongson-3-di jfs-modules-6.6.15-loongson-3-di kernel-image-6.6.15-loongson-3-di loop-modules-6.6.15-loongson-3-di md-modules-6.6.15-loongson-3-di minix-modules-6.6.15-loongson-3-di mmc-core-modules-6.6.15-loongson-3-di mmc-modules-6.6.15-loongson-3-di mouse-modules-6.6.15-loongson-3-di multipath-modules-6.6.15-loongson-3-di nbd-modules-6.6.15-loongson-3-di nfs-modules-6.6.15-loongson-3-di nic-modules-6.6.15-loongson-3-di nic-shared-modules-6.6.15-loongson-3-di nic-usb-modules-6.6.15-loongson-3-di nic-wireless-modules-6.6.15-loongson-3-di pata-modules-6.6.15-loongson-3-di ppp-modules-6.6.15-loongson-3-di sata-modules-6.6.15-loongson-3-di scsi-core-modules-6.6.15-loongson-3-di scsi-modules-6.6.15-loongson-3-di scsi-nic-modules-6.6.15-loongson-3-di sound-modules-6.6.15-loongson-3-di speakup-modules-6.6.15-loongson-3-di squashfs-modules-6.6.15-loongson-3-di udf-modules-6.6.15-loongson-3-di usb-modules-6.6.15-loongson-3-di usb-serial-modules-6.6.15-loongson-3-di usb-storage-modules-6.6.15-loongson-3-di xfs-modules-6.6.15-loongson-3-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-loongson-3-di -pata-modules-6.6.15-loongson-3-di -pbtrfs-modules-6.6.15-loongson-3-di -pcdrom-core-modules-6.6.15-loongson-3-di -pcrc-modules-6.6.15-loongson-3-di -pcrypto-dm-modules-6.6.15-loongson-3-di -pcrypto-modules-6.6.15-loongson-3-di -pevent-modules-6.6.15-loongson-3-di -pext4-modules-6.6.15-loongson-3-di -pf2fs-modules-6.6.15-loongson-3-di -pfat-modules-6.6.15-loongson-3-di -pfb-modules-6.6.15-loongson-3-di -pfirewire-core-modules-6.6.15-loongson-3-di -pinput-modules-6.6.15-loongson-3-di -pisofs-modules-6.6.15-loongson-3-di -pjfs-modules-6.6.15-loongson-3-di -pkernel-image-6.6.15-loongson-3-di -ploop-modules-6.6.15-loongson-3-di -pmd-modules-6.6.15-loongson-3-di -pminix-modules-6.6.15-loongson-3-di -pmmc-core-modules-6.6.15-loongson-3-di -pmmc-modules-6.6.15-loongson-3-di -pmouse-modules-6.6.15-loongson-3-di -pmultipath-modules-6.6.15-loongson-3-di -pnbd-modules-6.6.15-loongson-3-di -pnfs-modules-6.6.15-loongson-3-di -pnic-modules-6.6.15-loongson-3-di -pnic-shared-modules-6.6.15-loongson-3-di -pnic-usb-modules-6.6.15-loongson-3-di -pnic-wireless-modules-6.6.15-loongson-3-di -ppata-modules-6.6.15-loongson-3-di -pppp-modules-6.6.15-loongson-3-di -psata-modules-6.6.15-loongson-3-di -pscsi-core-modules-6.6.15-loongson-3-di -pscsi-modules-6.6.15-loongson-3-di -pscsi-nic-modules-6.6.15-loongson-3-di -psound-modules-6.6.15-loongson-3-di -pspeakup-modules-6.6.15-loongson-3-di -psquashfs-modules-6.6.15-loongson-3-di -pudf-modules-6.6.15-loongson-3-di -pusb-modules-6.6.15-loongson-3-di -pusb-serial-modules-6.6.15-loongson-3-di -pusb-storage-modules-6.6.15-loongson-3-di -pxfs-modules-6.6.15-loongson-3-di' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-loongson-3-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-loongson-3-di ata-modules-6.7.7-loongson-3-di btrfs-modules-6.7.7-loongson-3-di cdrom-core-modules-6.7.7-loongson-3-di crc-modules-6.7.7-loongson-3-di crypto-dm-modules-6.7.7-loongson-3-di crypto-modules-6.7.7-loongson-3-di event-modules-6.7.7-loongson-3-di ext4-modules-6.7.7-loongson-3-di f2fs-modules-6.7.7-loongson-3-di fat-modules-6.7.7-loongson-3-di fb-modules-6.7.7-loongson-3-di firewire-core-modules-6.7.7-loongson-3-di input-modules-6.7.7-loongson-3-di isofs-modules-6.7.7-loongson-3-di jfs-modules-6.7.7-loongson-3-di kernel-image-6.7.7-loongson-3-di loop-modules-6.7.7-loongson-3-di md-modules-6.7.7-loongson-3-di minix-modules-6.7.7-loongson-3-di mmc-core-modules-6.7.7-loongson-3-di mmc-modules-6.7.7-loongson-3-di mouse-modules-6.7.7-loongson-3-di multipath-modules-6.7.7-loongson-3-di nbd-modules-6.7.7-loongson-3-di nfs-modules-6.7.7-loongson-3-di nic-modules-6.7.7-loongson-3-di nic-shared-modules-6.7.7-loongson-3-di nic-usb-modules-6.7.7-loongson-3-di nic-wireless-modules-6.7.7-loongson-3-di pata-modules-6.7.7-loongson-3-di ppp-modules-6.7.7-loongson-3-di sata-modules-6.7.7-loongson-3-di scsi-core-modules-6.7.7-loongson-3-di scsi-modules-6.7.7-loongson-3-di scsi-nic-modules-6.7.7-loongson-3-di sound-modules-6.7.7-loongson-3-di speakup-modules-6.7.7-loongson-3-di squashfs-modules-6.7.7-loongson-3-di udf-modules-6.7.7-loongson-3-di usb-modules-6.7.7-loongson-3-di usb-serial-modules-6.7.7-loongson-3-di usb-storage-modules-6.7.7-loongson-3-di xfs-modules-6.7.7-loongson-3-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-loongson-3-di -pata-modules-6.7.7-loongson-3-di -pbtrfs-modules-6.7.7-loongson-3-di -pcdrom-core-modules-6.7.7-loongson-3-di -pcrc-modules-6.7.7-loongson-3-di -pcrypto-dm-modules-6.7.7-loongson-3-di -pcrypto-modules-6.7.7-loongson-3-di -pevent-modules-6.7.7-loongson-3-di -pext4-modules-6.7.7-loongson-3-di -pf2fs-modules-6.7.7-loongson-3-di -pfat-modules-6.7.7-loongson-3-di -pfb-modules-6.7.7-loongson-3-di -pfirewire-core-modules-6.7.7-loongson-3-di -pinput-modules-6.7.7-loongson-3-di -pisofs-modules-6.7.7-loongson-3-di -pjfs-modules-6.7.7-loongson-3-di -pkernel-image-6.7.7-loongson-3-di -ploop-modules-6.7.7-loongson-3-di -pmd-modules-6.7.7-loongson-3-di -pminix-modules-6.7.7-loongson-3-di -pmmc-core-modules-6.7.7-loongson-3-di -pmmc-modules-6.7.7-loongson-3-di -pmouse-modules-6.7.7-loongson-3-di -pmultipath-modules-6.7.7-loongson-3-di -pnbd-modules-6.7.7-loongson-3-di -pnfs-modules-6.7.7-loongson-3-di -pnic-modules-6.7.7-loongson-3-di -pnic-shared-modules-6.7.7-loongson-3-di -pnic-usb-modules-6.7.7-loongson-3-di -pnic-wireless-modules-6.7.7-loongson-3-di -ppata-modules-6.7.7-loongson-3-di -pppp-modules-6.7.7-loongson-3-di -psata-modules-6.7.7-loongson-3-di -pscsi-core-modules-6.7.7-loongson-3-di -pscsi-modules-6.7.7-loongson-3-di -pscsi-nic-modules-6.7.7-loongson-3-di -psound-modules-6.7.7-loongson-3-di -pspeakup-modules-6.7.7-loongson-3-di -psquashfs-modules-6.7.7-loongson-3-di -pudf-modules-6.7.7-loongson-3-di -pusb-modules-6.7.7-loongson-3-di -pusb-serial-modules-6.7.7-loongson-3-di -pusb-storage-modules-6.7.7-loongson-3-di -pxfs-modules-6.7.7-loongson-3-di' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-loongson-3-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64el_none_loongson-3_meta: - $(call if_package, linux-image-loongson-3, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-loongson-3' DH_OPTIONS='-plinux-image-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-loongson-3' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-loongson-3' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-loongson-3, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-loongson-3' DH_OPTIONS='-plinux-headers-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-loongson-3' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-headers-loongson-3' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-loongson-3-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-loongson-3-dbg' DH_OPTIONS='-plinux-image-loongson-3-dbg' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-loongson-3-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-loongson-3-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-loongson-3, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-loongson-3' DH_OPTIONS='-plinux-image-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-loongson-3' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-loongson-3' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-loongson-3, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-loongson-3' DH_OPTIONS='-plinux-headers-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-loongson-3' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-headers-loongson-3' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-loongson-3-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-loongson-3-dbg' DH_OPTIONS='-plinux-image-loongson-3-dbg' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-loongson-3-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-loongson-3-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64el_none_mips64r2el:binary-arch_mips64el_none_mips64r2el_headers binary-arch_mips64el_none_mips64r2el_image binary-arch_mips64el_none_mips64r2el_image-dbg binary-arch_mips64el_none_mips64r2el_installer binary-arch_mips64el_none_mips64r2el_meta binary-arch_mips64el_none_mips64r2el_headers: - $(call if_package, linux-headers-6.6.15-mips64r2el, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-mips64r2el' DH_OPTIONS='-plinux-headers-6.6.15-mips64r2el' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' PACKAGE_NAME='linux-headers-6.6.15-mips64r2el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-mips64r2el, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-mips64r2el' DH_OPTIONS='-plinux-headers-6.7.7-mips64r2el' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' PACKAGE_NAME='linux-headers-6.7.7-mips64r2el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64el_none_mips64r2el_image: - $(call if_package, linux-image-6.6.15-mips64r2el, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-mips64r2el' DH_OPTIONS='-plinux-image-6.6.15-mips64r2el' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' PACKAGE_NAME='linux-image-6.6.15-mips64r2el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-mips64r2el, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-mips64r2el' DH_OPTIONS='-plinux-image-6.7.7-mips64r2el' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' PACKAGE_NAME='linux-image-6.7.7-mips64r2el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64el_none_mips64r2el_image-dbg: - $(call if_package, linux-image-6.6.15-mips64r2el-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-mips64r2el-dbg' DH_OPTIONS='-plinux-image-6.6.15-mips64r2el-dbg' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' PACKAGE_NAME='linux-image-6.6.15-mips64r2el-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-mips64r2el-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-mips64r2el-dbg' DH_OPTIONS='-plinux-image-6.7.7-mips64r2el-dbg' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' PACKAGE_NAME='linux-image-6.7.7-mips64r2el-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64el_none_mips64r2el_installer: - $(call if_package, affs-modules-6.6.15-mips64r2el-di ata-modules-6.6.15-mips64r2el-di btrfs-modules-6.6.15-mips64r2el-di cdrom-core-modules-6.6.15-mips64r2el-di crc-modules-6.6.15-mips64r2el-di crypto-dm-modules-6.6.15-mips64r2el-di crypto-modules-6.6.15-mips64r2el-di event-modules-6.6.15-mips64r2el-di ext4-modules-6.6.15-mips64r2el-di f2fs-modules-6.6.15-mips64r2el-di fat-modules-6.6.15-mips64r2el-di fb-modules-6.6.15-mips64r2el-di firewire-core-modules-6.6.15-mips64r2el-di input-modules-6.6.15-mips64r2el-di isofs-modules-6.6.15-mips64r2el-di jfs-modules-6.6.15-mips64r2el-di kernel-image-6.6.15-mips64r2el-di loop-modules-6.6.15-mips64r2el-di md-modules-6.6.15-mips64r2el-di minix-modules-6.6.15-mips64r2el-di mmc-core-modules-6.6.15-mips64r2el-di mmc-modules-6.6.15-mips64r2el-di mouse-modules-6.6.15-mips64r2el-di multipath-modules-6.6.15-mips64r2el-di nbd-modules-6.6.15-mips64r2el-di nfs-modules-6.6.15-mips64r2el-di nic-modules-6.6.15-mips64r2el-di nic-shared-modules-6.6.15-mips64r2el-di nic-usb-modules-6.6.15-mips64r2el-di nic-wireless-modules-6.6.15-mips64r2el-di pata-modules-6.6.15-mips64r2el-di ppp-modules-6.6.15-mips64r2el-di sata-modules-6.6.15-mips64r2el-di scsi-core-modules-6.6.15-mips64r2el-di scsi-modules-6.6.15-mips64r2el-di scsi-nic-modules-6.6.15-mips64r2el-di sound-modules-6.6.15-mips64r2el-di speakup-modules-6.6.15-mips64r2el-di squashfs-modules-6.6.15-mips64r2el-di udf-modules-6.6.15-mips64r2el-di usb-modules-6.6.15-mips64r2el-di usb-serial-modules-6.6.15-mips64r2el-di usb-storage-modules-6.6.15-mips64r2el-di xfs-modules-6.6.15-mips64r2el-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-mips64r2el-di -pata-modules-6.6.15-mips64r2el-di -pbtrfs-modules-6.6.15-mips64r2el-di -pcdrom-core-modules-6.6.15-mips64r2el-di -pcrc-modules-6.6.15-mips64r2el-di -pcrypto-dm-modules-6.6.15-mips64r2el-di -pcrypto-modules-6.6.15-mips64r2el-di -pevent-modules-6.6.15-mips64r2el-di -pext4-modules-6.6.15-mips64r2el-di -pf2fs-modules-6.6.15-mips64r2el-di -pfat-modules-6.6.15-mips64r2el-di -pfb-modules-6.6.15-mips64r2el-di -pfirewire-core-modules-6.6.15-mips64r2el-di -pinput-modules-6.6.15-mips64r2el-di -pisofs-modules-6.6.15-mips64r2el-di -pjfs-modules-6.6.15-mips64r2el-di -pkernel-image-6.6.15-mips64r2el-di -ploop-modules-6.6.15-mips64r2el-di -pmd-modules-6.6.15-mips64r2el-di -pminix-modules-6.6.15-mips64r2el-di -pmmc-core-modules-6.6.15-mips64r2el-di -pmmc-modules-6.6.15-mips64r2el-di -pmouse-modules-6.6.15-mips64r2el-di -pmultipath-modules-6.6.15-mips64r2el-di -pnbd-modules-6.6.15-mips64r2el-di -pnfs-modules-6.6.15-mips64r2el-di -pnic-modules-6.6.15-mips64r2el-di -pnic-shared-modules-6.6.15-mips64r2el-di -pnic-usb-modules-6.6.15-mips64r2el-di -pnic-wireless-modules-6.6.15-mips64r2el-di -ppata-modules-6.6.15-mips64r2el-di -pppp-modules-6.6.15-mips64r2el-di -psata-modules-6.6.15-mips64r2el-di -pscsi-core-modules-6.6.15-mips64r2el-di -pscsi-modules-6.6.15-mips64r2el-di -pscsi-nic-modules-6.6.15-mips64r2el-di -psound-modules-6.6.15-mips64r2el-di -pspeakup-modules-6.6.15-mips64r2el-di -psquashfs-modules-6.6.15-mips64r2el-di -pudf-modules-6.6.15-mips64r2el-di -pusb-modules-6.6.15-mips64r2el-di -pusb-serial-modules-6.6.15-mips64r2el-di -pusb-storage-modules-6.6.15-mips64r2el-di -pxfs-modules-6.6.15-mips64r2el-di' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-mips64r2el-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-mips64r2el-di ata-modules-6.7.7-mips64r2el-di btrfs-modules-6.7.7-mips64r2el-di cdrom-core-modules-6.7.7-mips64r2el-di crc-modules-6.7.7-mips64r2el-di crypto-dm-modules-6.7.7-mips64r2el-di crypto-modules-6.7.7-mips64r2el-di event-modules-6.7.7-mips64r2el-di ext4-modules-6.7.7-mips64r2el-di f2fs-modules-6.7.7-mips64r2el-di fat-modules-6.7.7-mips64r2el-di fb-modules-6.7.7-mips64r2el-di firewire-core-modules-6.7.7-mips64r2el-di input-modules-6.7.7-mips64r2el-di isofs-modules-6.7.7-mips64r2el-di jfs-modules-6.7.7-mips64r2el-di kernel-image-6.7.7-mips64r2el-di loop-modules-6.7.7-mips64r2el-di md-modules-6.7.7-mips64r2el-di minix-modules-6.7.7-mips64r2el-di mmc-core-modules-6.7.7-mips64r2el-di mmc-modules-6.7.7-mips64r2el-di mouse-modules-6.7.7-mips64r2el-di multipath-modules-6.7.7-mips64r2el-di nbd-modules-6.7.7-mips64r2el-di nfs-modules-6.7.7-mips64r2el-di nic-modules-6.7.7-mips64r2el-di nic-shared-modules-6.7.7-mips64r2el-di nic-usb-modules-6.7.7-mips64r2el-di nic-wireless-modules-6.7.7-mips64r2el-di pata-modules-6.7.7-mips64r2el-di ppp-modules-6.7.7-mips64r2el-di sata-modules-6.7.7-mips64r2el-di scsi-core-modules-6.7.7-mips64r2el-di scsi-modules-6.7.7-mips64r2el-di scsi-nic-modules-6.7.7-mips64r2el-di sound-modules-6.7.7-mips64r2el-di speakup-modules-6.7.7-mips64r2el-di squashfs-modules-6.7.7-mips64r2el-di udf-modules-6.7.7-mips64r2el-di usb-modules-6.7.7-mips64r2el-di usb-serial-modules-6.7.7-mips64r2el-di usb-storage-modules-6.7.7-mips64r2el-di xfs-modules-6.7.7-mips64r2el-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-mips64r2el-di -pata-modules-6.7.7-mips64r2el-di -pbtrfs-modules-6.7.7-mips64r2el-di -pcdrom-core-modules-6.7.7-mips64r2el-di -pcrc-modules-6.7.7-mips64r2el-di -pcrypto-dm-modules-6.7.7-mips64r2el-di -pcrypto-modules-6.7.7-mips64r2el-di -pevent-modules-6.7.7-mips64r2el-di -pext4-modules-6.7.7-mips64r2el-di -pf2fs-modules-6.7.7-mips64r2el-di -pfat-modules-6.7.7-mips64r2el-di -pfb-modules-6.7.7-mips64r2el-di -pfirewire-core-modules-6.7.7-mips64r2el-di -pinput-modules-6.7.7-mips64r2el-di -pisofs-modules-6.7.7-mips64r2el-di -pjfs-modules-6.7.7-mips64r2el-di -pkernel-image-6.7.7-mips64r2el-di -ploop-modules-6.7.7-mips64r2el-di -pmd-modules-6.7.7-mips64r2el-di -pminix-modules-6.7.7-mips64r2el-di -pmmc-core-modules-6.7.7-mips64r2el-di -pmmc-modules-6.7.7-mips64r2el-di -pmouse-modules-6.7.7-mips64r2el-di -pmultipath-modules-6.7.7-mips64r2el-di -pnbd-modules-6.7.7-mips64r2el-di -pnfs-modules-6.7.7-mips64r2el-di -pnic-modules-6.7.7-mips64r2el-di -pnic-shared-modules-6.7.7-mips64r2el-di -pnic-usb-modules-6.7.7-mips64r2el-di -pnic-wireless-modules-6.7.7-mips64r2el-di -ppata-modules-6.7.7-mips64r2el-di -pppp-modules-6.7.7-mips64r2el-di -psata-modules-6.7.7-mips64r2el-di -pscsi-core-modules-6.7.7-mips64r2el-di -pscsi-modules-6.7.7-mips64r2el-di -pscsi-nic-modules-6.7.7-mips64r2el-di -psound-modules-6.7.7-mips64r2el-di -pspeakup-modules-6.7.7-mips64r2el-di -psquashfs-modules-6.7.7-mips64r2el-di -pudf-modules-6.7.7-mips64r2el-di -pusb-modules-6.7.7-mips64r2el-di -pusb-serial-modules-6.7.7-mips64r2el-di -pusb-storage-modules-6.7.7-mips64r2el-di -pxfs-modules-6.7.7-mips64r2el-di' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-mips64r2el-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64el_none_mips64r2el_meta: - $(call if_package, linux-image-mips64r2el, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips64r2el' DH_OPTIONS='-plinux-image-mips64r2el' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-mips64r2el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' PACKAGE_NAME='linux-image-mips64r2el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-mips64r2el, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-mips64r2el' DH_OPTIONS='-plinux-headers-mips64r2el' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-mips64r2el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' PACKAGE_NAME='linux-headers-mips64r2el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-mips64r2el-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips64r2el-dbg' DH_OPTIONS='-plinux-image-mips64r2el-dbg' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-mips64r2el-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' PACKAGE_NAME='linux-image-mips64r2el-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-mips64r2el, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips64r2el' DH_OPTIONS='-plinux-image-mips64r2el' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-mips64r2el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' PACKAGE_NAME='linux-image-mips64r2el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-mips64r2el, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-mips64r2el' DH_OPTIONS='-plinux-headers-mips64r2el' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-mips64r2el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' PACKAGE_NAME='linux-headers-mips64r2el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-mips64r2el-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips64r2el-dbg' DH_OPTIONS='-plinux-image-mips64r2el-dbg' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-mips64r2el-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' PACKAGE_NAME='linux-image-mips64r2el-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64el_none_octeon:binary-arch_mips64el_none_octeon_headers binary-arch_mips64el_none_octeon_image binary-arch_mips64el_none_octeon_image-dbg binary-arch_mips64el_none_octeon_installer binary-arch_mips64el_none_octeon_meta binary-arch_mips64el_none_octeon_headers: - $(call if_package, linux-headers-6.6.15-octeon, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-octeon' DH_OPTIONS='-plinux-headers-6.6.15-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-6.6.15-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-octeon, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-octeon' DH_OPTIONS='-plinux-headers-6.7.7-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-6.7.7-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64el_none_octeon_image: - $(call if_package, linux-image-6.6.15-octeon, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-octeon' DH_OPTIONS='-plinux-image-6.6.15-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.6.15-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-octeon, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-octeon' DH_OPTIONS='-plinux-image-6.7.7-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.7.7-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64el_none_octeon_image-dbg: - $(call if_package, linux-image-6.6.15-octeon-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-octeon-dbg' DH_OPTIONS='-plinux-image-6.6.15-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.6.15-octeon-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-octeon-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-octeon-dbg' DH_OPTIONS='-plinux-image-6.7.7-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.7.7-octeon-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64el_none_octeon_installer: - $(call if_package, affs-modules-6.6.15-octeon-di ata-modules-6.6.15-octeon-di btrfs-modules-6.6.15-octeon-di cdrom-core-modules-6.6.15-octeon-di crc-modules-6.6.15-octeon-di crypto-dm-modules-6.6.15-octeon-di crypto-modules-6.6.15-octeon-di event-modules-6.6.15-octeon-di ext4-modules-6.6.15-octeon-di f2fs-modules-6.6.15-octeon-di fat-modules-6.6.15-octeon-di fb-modules-6.6.15-octeon-di firewire-core-modules-6.6.15-octeon-di input-modules-6.6.15-octeon-di isofs-modules-6.6.15-octeon-di jfs-modules-6.6.15-octeon-di kernel-image-6.6.15-octeon-di loop-modules-6.6.15-octeon-di md-modules-6.6.15-octeon-di minix-modules-6.6.15-octeon-di mmc-core-modules-6.6.15-octeon-di mmc-modules-6.6.15-octeon-di mouse-modules-6.6.15-octeon-di multipath-modules-6.6.15-octeon-di nbd-modules-6.6.15-octeon-di nfs-modules-6.6.15-octeon-di nic-modules-6.6.15-octeon-di nic-shared-modules-6.6.15-octeon-di nic-usb-modules-6.6.15-octeon-di nic-wireless-modules-6.6.15-octeon-di pata-modules-6.6.15-octeon-di ppp-modules-6.6.15-octeon-di sata-modules-6.6.15-octeon-di scsi-core-modules-6.6.15-octeon-di scsi-modules-6.6.15-octeon-di scsi-nic-modules-6.6.15-octeon-di sound-modules-6.6.15-octeon-di speakup-modules-6.6.15-octeon-di squashfs-modules-6.6.15-octeon-di udf-modules-6.6.15-octeon-di usb-modules-6.6.15-octeon-di usb-serial-modules-6.6.15-octeon-di usb-storage-modules-6.6.15-octeon-di xfs-modules-6.6.15-octeon-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-octeon-di -pata-modules-6.6.15-octeon-di -pbtrfs-modules-6.6.15-octeon-di -pcdrom-core-modules-6.6.15-octeon-di -pcrc-modules-6.6.15-octeon-di -pcrypto-dm-modules-6.6.15-octeon-di -pcrypto-modules-6.6.15-octeon-di -pevent-modules-6.6.15-octeon-di -pext4-modules-6.6.15-octeon-di -pf2fs-modules-6.6.15-octeon-di -pfat-modules-6.6.15-octeon-di -pfb-modules-6.6.15-octeon-di -pfirewire-core-modules-6.6.15-octeon-di -pinput-modules-6.6.15-octeon-di -pisofs-modules-6.6.15-octeon-di -pjfs-modules-6.6.15-octeon-di -pkernel-image-6.6.15-octeon-di -ploop-modules-6.6.15-octeon-di -pmd-modules-6.6.15-octeon-di -pminix-modules-6.6.15-octeon-di -pmmc-core-modules-6.6.15-octeon-di -pmmc-modules-6.6.15-octeon-di -pmouse-modules-6.6.15-octeon-di -pmultipath-modules-6.6.15-octeon-di -pnbd-modules-6.6.15-octeon-di -pnfs-modules-6.6.15-octeon-di -pnic-modules-6.6.15-octeon-di -pnic-shared-modules-6.6.15-octeon-di -pnic-usb-modules-6.6.15-octeon-di -pnic-wireless-modules-6.6.15-octeon-di -ppata-modules-6.6.15-octeon-di -pppp-modules-6.6.15-octeon-di -psata-modules-6.6.15-octeon-di -pscsi-core-modules-6.6.15-octeon-di -pscsi-modules-6.6.15-octeon-di -pscsi-nic-modules-6.6.15-octeon-di -psound-modules-6.6.15-octeon-di -pspeakup-modules-6.6.15-octeon-di -psquashfs-modules-6.6.15-octeon-di -pudf-modules-6.6.15-octeon-di -pusb-modules-6.6.15-octeon-di -pusb-serial-modules-6.6.15-octeon-di -pusb-storage-modules-6.6.15-octeon-di -pxfs-modules-6.6.15-octeon-di' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-octeon-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-octeon-di ata-modules-6.7.7-octeon-di btrfs-modules-6.7.7-octeon-di cdrom-core-modules-6.7.7-octeon-di crc-modules-6.7.7-octeon-di crypto-dm-modules-6.7.7-octeon-di crypto-modules-6.7.7-octeon-di event-modules-6.7.7-octeon-di ext4-modules-6.7.7-octeon-di f2fs-modules-6.7.7-octeon-di fat-modules-6.7.7-octeon-di fb-modules-6.7.7-octeon-di firewire-core-modules-6.7.7-octeon-di input-modules-6.7.7-octeon-di isofs-modules-6.7.7-octeon-di jfs-modules-6.7.7-octeon-di kernel-image-6.7.7-octeon-di loop-modules-6.7.7-octeon-di md-modules-6.7.7-octeon-di minix-modules-6.7.7-octeon-di mmc-core-modules-6.7.7-octeon-di mmc-modules-6.7.7-octeon-di mouse-modules-6.7.7-octeon-di multipath-modules-6.7.7-octeon-di nbd-modules-6.7.7-octeon-di nfs-modules-6.7.7-octeon-di nic-modules-6.7.7-octeon-di nic-shared-modules-6.7.7-octeon-di nic-usb-modules-6.7.7-octeon-di nic-wireless-modules-6.7.7-octeon-di pata-modules-6.7.7-octeon-di ppp-modules-6.7.7-octeon-di sata-modules-6.7.7-octeon-di scsi-core-modules-6.7.7-octeon-di scsi-modules-6.7.7-octeon-di scsi-nic-modules-6.7.7-octeon-di sound-modules-6.7.7-octeon-di speakup-modules-6.7.7-octeon-di squashfs-modules-6.7.7-octeon-di udf-modules-6.7.7-octeon-di usb-modules-6.7.7-octeon-di usb-serial-modules-6.7.7-octeon-di usb-storage-modules-6.7.7-octeon-di xfs-modules-6.7.7-octeon-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-octeon-di -pata-modules-6.7.7-octeon-di -pbtrfs-modules-6.7.7-octeon-di -pcdrom-core-modules-6.7.7-octeon-di -pcrc-modules-6.7.7-octeon-di -pcrypto-dm-modules-6.7.7-octeon-di -pcrypto-modules-6.7.7-octeon-di -pevent-modules-6.7.7-octeon-di -pext4-modules-6.7.7-octeon-di -pf2fs-modules-6.7.7-octeon-di -pfat-modules-6.7.7-octeon-di -pfb-modules-6.7.7-octeon-di -pfirewire-core-modules-6.7.7-octeon-di -pinput-modules-6.7.7-octeon-di -pisofs-modules-6.7.7-octeon-di -pjfs-modules-6.7.7-octeon-di -pkernel-image-6.7.7-octeon-di -ploop-modules-6.7.7-octeon-di -pmd-modules-6.7.7-octeon-di -pminix-modules-6.7.7-octeon-di -pmmc-core-modules-6.7.7-octeon-di -pmmc-modules-6.7.7-octeon-di -pmouse-modules-6.7.7-octeon-di -pmultipath-modules-6.7.7-octeon-di -pnbd-modules-6.7.7-octeon-di -pnfs-modules-6.7.7-octeon-di -pnic-modules-6.7.7-octeon-di -pnic-shared-modules-6.7.7-octeon-di -pnic-usb-modules-6.7.7-octeon-di -pnic-wireless-modules-6.7.7-octeon-di -ppata-modules-6.7.7-octeon-di -pppp-modules-6.7.7-octeon-di -psata-modules-6.7.7-octeon-di -pscsi-core-modules-6.7.7-octeon-di -pscsi-modules-6.7.7-octeon-di -pscsi-nic-modules-6.7.7-octeon-di -psound-modules-6.7.7-octeon-di -pspeakup-modules-6.7.7-octeon-di -psquashfs-modules-6.7.7-octeon-di -pudf-modules-6.7.7-octeon-di -pusb-modules-6.7.7-octeon-di -pusb-serial-modules-6.7.7-octeon-di -pusb-storage-modules-6.7.7-octeon-di -pxfs-modules-6.7.7-octeon-di' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-octeon-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64el_none_octeon_meta: - $(call if_package, linux-image-octeon, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon' DH_OPTIONS='-plinux-image-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-octeon, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-octeon' DH_OPTIONS='-plinux-headers-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-octeon-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon-dbg' DH_OPTIONS='-plinux-image-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-octeon-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-octeon, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon' DH_OPTIONS='-plinux-image-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-octeon, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-octeon' DH_OPTIONS='-plinux-headers-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-octeon-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon-dbg' DH_OPTIONS='-plinux-image-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-octeon-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64el_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.6.15' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='mips' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.7.7' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='mips' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64el_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.6.15' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='mips' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.7.7' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='mips' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64el_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.6.15' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='mips' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.7.7' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='mips' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64r6el:binary-arch_mips64r6el_bpftool binary-arch_mips64r6el_config binary-arch_mips64r6el_cpupower binary-arch_mips64r6el_hyperv-daemons binary-arch_mips64r6el_kbuild binary-arch_mips64r6el_none binary-arch_mips64r6el_perf binary-arch_mips64r6el_rtla binary-arch_mips64r6el_usbip binary-arch_mips64r6el_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.6.15' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='mips' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.7.7' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='mips' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64r6el_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real binary_config ABINAME='6.6.15' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='mips' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real binary_config ABINAME='6.7.7' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='mips' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64r6el_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.6.15' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='mips' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.7.7' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='mips' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64r6el_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.6.15' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='mips' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.7.7' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='mips' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64r6el_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.6.15' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='mips' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.7.7' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='mips' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64r6el_none:binary-arch_mips64r6el_none_mips64r6el binary-arch_mips64r6el_none_mips64r6el:binary-arch_mips64r6el_none_mips64r6el_headers binary-arch_mips64r6el_none_mips64r6el_image binary-arch_mips64r6el_none_mips64r6el_image-dbg binary-arch_mips64r6el_none_mips64r6el_installer binary-arch_mips64r6el_none_mips64r6el_meta binary-arch_mips64r6el_none_mips64r6el_headers: - $(call if_package, linux-headers-6.6.15-mips64r6el, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-mips64r6el' DH_OPTIONS='-plinux-headers-6.6.15-mips64r6el' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' PACKAGE_NAME='linux-headers-6.6.15-mips64r6el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-mips64r6el, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-mips64r6el' DH_OPTIONS='-plinux-headers-6.7.7-mips64r6el' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' PACKAGE_NAME='linux-headers-6.7.7-mips64r6el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64r6el_none_mips64r6el_image: - $(call if_package, linux-image-6.6.15-mips64r6el, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-mips64r6el' DH_OPTIONS='-plinux-image-6.6.15-mips64r6el' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' PACKAGE_NAME='linux-image-6.6.15-mips64r6el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-mips64r6el, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-mips64r6el' DH_OPTIONS='-plinux-image-6.7.7-mips64r6el' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' PACKAGE_NAME='linux-image-6.7.7-mips64r6el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64r6el_none_mips64r6el_image-dbg: - $(call if_package, linux-image-6.6.15-mips64r6el-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-mips64r6el-dbg' DH_OPTIONS='-plinux-image-6.6.15-mips64r6el-dbg' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' PACKAGE_NAME='linux-image-6.6.15-mips64r6el-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-mips64r6el-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-mips64r6el-dbg' DH_OPTIONS='-plinux-image-6.7.7-mips64r6el-dbg' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' PACKAGE_NAME='linux-image-6.7.7-mips64r6el-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64r6el_none_mips64r6el_installer: - $(call if_package, affs-modules-6.6.15-mips64r6el-di ata-modules-6.6.15-mips64r6el-di btrfs-modules-6.6.15-mips64r6el-di cdrom-core-modules-6.6.15-mips64r6el-di crc-modules-6.6.15-mips64r6el-di crypto-dm-modules-6.6.15-mips64r6el-di crypto-modules-6.6.15-mips64r6el-di event-modules-6.6.15-mips64r6el-di ext4-modules-6.6.15-mips64r6el-di f2fs-modules-6.6.15-mips64r6el-di fat-modules-6.6.15-mips64r6el-di fb-modules-6.6.15-mips64r6el-di firewire-core-modules-6.6.15-mips64r6el-di input-modules-6.6.15-mips64r6el-di isofs-modules-6.6.15-mips64r6el-di jfs-modules-6.6.15-mips64r6el-di kernel-image-6.6.15-mips64r6el-di loop-modules-6.6.15-mips64r6el-di md-modules-6.6.15-mips64r6el-di minix-modules-6.6.15-mips64r6el-di mmc-core-modules-6.6.15-mips64r6el-di mmc-modules-6.6.15-mips64r6el-di mouse-modules-6.6.15-mips64r6el-di multipath-modules-6.6.15-mips64r6el-di nbd-modules-6.6.15-mips64r6el-di nfs-modules-6.6.15-mips64r6el-di nic-modules-6.6.15-mips64r6el-di nic-shared-modules-6.6.15-mips64r6el-di nic-usb-modules-6.6.15-mips64r6el-di nic-wireless-modules-6.6.15-mips64r6el-di pata-modules-6.6.15-mips64r6el-di ppp-modules-6.6.15-mips64r6el-di sata-modules-6.6.15-mips64r6el-di scsi-core-modules-6.6.15-mips64r6el-di scsi-modules-6.6.15-mips64r6el-di scsi-nic-modules-6.6.15-mips64r6el-di sound-modules-6.6.15-mips64r6el-di speakup-modules-6.6.15-mips64r6el-di squashfs-modules-6.6.15-mips64r6el-di udf-modules-6.6.15-mips64r6el-di usb-modules-6.6.15-mips64r6el-di usb-serial-modules-6.6.15-mips64r6el-di usb-storage-modules-6.6.15-mips64r6el-di xfs-modules-6.6.15-mips64r6el-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.6.15' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-mips64r6el-di -pata-modules-6.6.15-mips64r6el-di -pbtrfs-modules-6.6.15-mips64r6el-di -pcdrom-core-modules-6.6.15-mips64r6el-di -pcrc-modules-6.6.15-mips64r6el-di -pcrypto-dm-modules-6.6.15-mips64r6el-di -pcrypto-modules-6.6.15-mips64r6el-di -pevent-modules-6.6.15-mips64r6el-di -pext4-modules-6.6.15-mips64r6el-di -pf2fs-modules-6.6.15-mips64r6el-di -pfat-modules-6.6.15-mips64r6el-di -pfb-modules-6.6.15-mips64r6el-di -pfirewire-core-modules-6.6.15-mips64r6el-di -pinput-modules-6.6.15-mips64r6el-di -pisofs-modules-6.6.15-mips64r6el-di -pjfs-modules-6.6.15-mips64r6el-di -pkernel-image-6.6.15-mips64r6el-di -ploop-modules-6.6.15-mips64r6el-di -pmd-modules-6.6.15-mips64r6el-di -pminix-modules-6.6.15-mips64r6el-di -pmmc-core-modules-6.6.15-mips64r6el-di -pmmc-modules-6.6.15-mips64r6el-di -pmouse-modules-6.6.15-mips64r6el-di -pmultipath-modules-6.6.15-mips64r6el-di -pnbd-modules-6.6.15-mips64r6el-di -pnfs-modules-6.6.15-mips64r6el-di -pnic-modules-6.6.15-mips64r6el-di -pnic-shared-modules-6.6.15-mips64r6el-di -pnic-usb-modules-6.6.15-mips64r6el-di -pnic-wireless-modules-6.6.15-mips64r6el-di -ppata-modules-6.6.15-mips64r6el-di -pppp-modules-6.6.15-mips64r6el-di -psata-modules-6.6.15-mips64r6el-di -pscsi-core-modules-6.6.15-mips64r6el-di -pscsi-modules-6.6.15-mips64r6el-di -pscsi-nic-modules-6.6.15-mips64r6el-di -psound-modules-6.6.15-mips64r6el-di -pspeakup-modules-6.6.15-mips64r6el-di -psquashfs-modules-6.6.15-mips64r6el-di -pudf-modules-6.6.15-mips64r6el-di -pusb-modules-6.6.15-mips64r6el-di -pusb-serial-modules-6.6.15-mips64r6el-di -pusb-storage-modules-6.6.15-mips64r6el-di -pxfs-modules-6.6.15-mips64r6el-di' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-mips64r6el-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-mips64r6el-di ata-modules-6.7.7-mips64r6el-di btrfs-modules-6.7.7-mips64r6el-di cdrom-core-modules-6.7.7-mips64r6el-di crc-modules-6.7.7-mips64r6el-di crypto-dm-modules-6.7.7-mips64r6el-di crypto-modules-6.7.7-mips64r6el-di event-modules-6.7.7-mips64r6el-di ext4-modules-6.7.7-mips64r6el-di f2fs-modules-6.7.7-mips64r6el-di fat-modules-6.7.7-mips64r6el-di fb-modules-6.7.7-mips64r6el-di firewire-core-modules-6.7.7-mips64r6el-di input-modules-6.7.7-mips64r6el-di isofs-modules-6.7.7-mips64r6el-di jfs-modules-6.7.7-mips64r6el-di kernel-image-6.7.7-mips64r6el-di loop-modules-6.7.7-mips64r6el-di md-modules-6.7.7-mips64r6el-di minix-modules-6.7.7-mips64r6el-di mmc-core-modules-6.7.7-mips64r6el-di mmc-modules-6.7.7-mips64r6el-di mouse-modules-6.7.7-mips64r6el-di multipath-modules-6.7.7-mips64r6el-di nbd-modules-6.7.7-mips64r6el-di nfs-modules-6.7.7-mips64r6el-di nic-modules-6.7.7-mips64r6el-di nic-shared-modules-6.7.7-mips64r6el-di nic-usb-modules-6.7.7-mips64r6el-di nic-wireless-modules-6.7.7-mips64r6el-di pata-modules-6.7.7-mips64r6el-di ppp-modules-6.7.7-mips64r6el-di sata-modules-6.7.7-mips64r6el-di scsi-core-modules-6.7.7-mips64r6el-di scsi-modules-6.7.7-mips64r6el-di scsi-nic-modules-6.7.7-mips64r6el-di sound-modules-6.7.7-mips64r6el-di speakup-modules-6.7.7-mips64r6el-di squashfs-modules-6.7.7-mips64r6el-di udf-modules-6.7.7-mips64r6el-di usb-modules-6.7.7-mips64r6el-di usb-serial-modules-6.7.7-mips64r6el-di usb-storage-modules-6.7.7-mips64r6el-di xfs-modules-6.7.7-mips64r6el-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.7.7' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-mips64r6el-di -pata-modules-6.7.7-mips64r6el-di -pbtrfs-modules-6.7.7-mips64r6el-di -pcdrom-core-modules-6.7.7-mips64r6el-di -pcrc-modules-6.7.7-mips64r6el-di -pcrypto-dm-modules-6.7.7-mips64r6el-di -pcrypto-modules-6.7.7-mips64r6el-di -pevent-modules-6.7.7-mips64r6el-di -pext4-modules-6.7.7-mips64r6el-di -pf2fs-modules-6.7.7-mips64r6el-di -pfat-modules-6.7.7-mips64r6el-di -pfb-modules-6.7.7-mips64r6el-di -pfirewire-core-modules-6.7.7-mips64r6el-di -pinput-modules-6.7.7-mips64r6el-di -pisofs-modules-6.7.7-mips64r6el-di -pjfs-modules-6.7.7-mips64r6el-di -pkernel-image-6.7.7-mips64r6el-di -ploop-modules-6.7.7-mips64r6el-di -pmd-modules-6.7.7-mips64r6el-di -pminix-modules-6.7.7-mips64r6el-di -pmmc-core-modules-6.7.7-mips64r6el-di -pmmc-modules-6.7.7-mips64r6el-di -pmouse-modules-6.7.7-mips64r6el-di -pmultipath-modules-6.7.7-mips64r6el-di -pnbd-modules-6.7.7-mips64r6el-di -pnfs-modules-6.7.7-mips64r6el-di -pnic-modules-6.7.7-mips64r6el-di -pnic-shared-modules-6.7.7-mips64r6el-di -pnic-usb-modules-6.7.7-mips64r6el-di -pnic-wireless-modules-6.7.7-mips64r6el-di -ppata-modules-6.7.7-mips64r6el-di -pppp-modules-6.7.7-mips64r6el-di -psata-modules-6.7.7-mips64r6el-di -pscsi-core-modules-6.7.7-mips64r6el-di -pscsi-modules-6.7.7-mips64r6el-di -pscsi-nic-modules-6.7.7-mips64r6el-di -psound-modules-6.7.7-mips64r6el-di -pspeakup-modules-6.7.7-mips64r6el-di -psquashfs-modules-6.7.7-mips64r6el-di -pudf-modules-6.7.7-mips64r6el-di -pusb-modules-6.7.7-mips64r6el-di -pusb-serial-modules-6.7.7-mips64r6el-di -pusb-storage-modules-6.7.7-mips64r6el-di -pxfs-modules-6.7.7-mips64r6el-di' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-mips64r6el-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64r6el_none_mips64r6el_meta: - $(call if_package, linux-image-mips64r6el, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips64r6el' DH_OPTIONS='-plinux-image-mips64r6el' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-mips64r6el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' PACKAGE_NAME='linux-image-mips64r6el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-mips64r6el, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-mips64r6el' DH_OPTIONS='-plinux-headers-mips64r6el' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-mips64r6el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' PACKAGE_NAME='linux-headers-mips64r6el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-mips64r6el-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips64r6el-dbg' DH_OPTIONS='-plinux-image-mips64r6el-dbg' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-mips64r6el-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' PACKAGE_NAME='linux-image-mips64r6el-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-mips64r6el, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips64r6el' DH_OPTIONS='-plinux-image-mips64r6el' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-mips64r6el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' PACKAGE_NAME='linux-image-mips64r6el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-mips64r6el, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-mips64r6el' DH_OPTIONS='-plinux-headers-mips64r6el' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-mips64r6el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' PACKAGE_NAME='linux-headers-mips64r6el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-mips64r6el-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips64r6el-dbg' DH_OPTIONS='-plinux-image-mips64r6el-dbg' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-mips64r6el-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' PACKAGE_NAME='linux-image-mips64r6el-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64r6el_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.6.15' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='mips' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.7.7' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='mips' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64r6el_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.6.15' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='mips' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.7.7' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='mips' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips64r6el_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.6.15' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='mips' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.7.7' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='mips' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.6.15' ARCH='mips' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='mips' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.7.7' ARCH='mips' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='mips' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real binary_config ABINAME='6.6.15' ARCH='mips' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='mips' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real binary_config ABINAME='6.7.7' ARCH='mips' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='mips' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.6.15' ARCH='mips' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='mips' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.7.7' ARCH='mips' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='mips' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.6.15' ARCH='mips' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='mips' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.7.7' ARCH='mips' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='mips' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.6.15' ARCH='mips' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='mips' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.7.7' ARCH='mips' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='mips' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips_none:binary-arch_mips_none_4kc-malta binary-arch_mips_none_mips32r2eb binary-arch_mips_none_octeon binary-arch_mips_none_4kc-malta:binary-arch_mips_none_4kc-malta_headers binary-arch_mips_none_4kc-malta_image binary-arch_mips_none_4kc-malta_image-dbg binary-arch_mips_none_4kc-malta_installer binary-arch_mips_none_4kc-malta_meta binary-arch_mips_none_4kc-malta_headers: - $(call if_package, linux-headers-6.6.15-4kc-malta, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-4kc-malta' DH_OPTIONS='-plinux-headers-6.6.15-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-headers-6.6.15-4kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-4kc-malta, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-4kc-malta' DH_OPTIONS='-plinux-headers-6.7.7-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-headers-6.7.7-4kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips_none_4kc-malta_image: - $(call if_package, linux-image-6.6.15-4kc-malta, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-4kc-malta' DH_OPTIONS='-plinux-image-6.6.15-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-6.6.15-4kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-4kc-malta, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-4kc-malta' DH_OPTIONS='-plinux-image-6.7.7-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-6.7.7-4kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips_none_4kc-malta_image-dbg: - $(call if_package, linux-image-6.6.15-4kc-malta-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-4kc-malta-dbg' DH_OPTIONS='-plinux-image-6.6.15-4kc-malta-dbg' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-6.6.15-4kc-malta-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-4kc-malta-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-4kc-malta-dbg' DH_OPTIONS='-plinux-image-6.7.7-4kc-malta-dbg' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-6.7.7-4kc-malta-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips_none_4kc-malta_installer: - $(call if_package, affs-modules-6.6.15-4kc-malta-di ata-modules-6.6.15-4kc-malta-di btrfs-modules-6.6.15-4kc-malta-di cdrom-core-modules-6.6.15-4kc-malta-di crc-modules-6.6.15-4kc-malta-di crypto-dm-modules-6.6.15-4kc-malta-di crypto-modules-6.6.15-4kc-malta-di event-modules-6.6.15-4kc-malta-di ext4-modules-6.6.15-4kc-malta-di f2fs-modules-6.6.15-4kc-malta-di fat-modules-6.6.15-4kc-malta-di fb-modules-6.6.15-4kc-malta-di firewire-core-modules-6.6.15-4kc-malta-di input-modules-6.6.15-4kc-malta-di isofs-modules-6.6.15-4kc-malta-di jfs-modules-6.6.15-4kc-malta-di kernel-image-6.6.15-4kc-malta-di loop-modules-6.6.15-4kc-malta-di md-modules-6.6.15-4kc-malta-di minix-modules-6.6.15-4kc-malta-di mmc-core-modules-6.6.15-4kc-malta-di mmc-modules-6.6.15-4kc-malta-di mouse-modules-6.6.15-4kc-malta-di multipath-modules-6.6.15-4kc-malta-di nbd-modules-6.6.15-4kc-malta-di nfs-modules-6.6.15-4kc-malta-di nic-modules-6.6.15-4kc-malta-di nic-shared-modules-6.6.15-4kc-malta-di nic-usb-modules-6.6.15-4kc-malta-di nic-wireless-modules-6.6.15-4kc-malta-di pata-modules-6.6.15-4kc-malta-di ppp-modules-6.6.15-4kc-malta-di sata-modules-6.6.15-4kc-malta-di scsi-core-modules-6.6.15-4kc-malta-di scsi-modules-6.6.15-4kc-malta-di scsi-nic-modules-6.6.15-4kc-malta-di sound-modules-6.6.15-4kc-malta-di speakup-modules-6.6.15-4kc-malta-di squashfs-modules-6.6.15-4kc-malta-di udf-modules-6.6.15-4kc-malta-di usb-modules-6.6.15-4kc-malta-di usb-serial-modules-6.6.15-4kc-malta-di usb-storage-modules-6.6.15-4kc-malta-di xfs-modules-6.6.15-4kc-malta-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-4kc-malta-di -pata-modules-6.6.15-4kc-malta-di -pbtrfs-modules-6.6.15-4kc-malta-di -pcdrom-core-modules-6.6.15-4kc-malta-di -pcrc-modules-6.6.15-4kc-malta-di -pcrypto-dm-modules-6.6.15-4kc-malta-di -pcrypto-modules-6.6.15-4kc-malta-di -pevent-modules-6.6.15-4kc-malta-di -pext4-modules-6.6.15-4kc-malta-di -pf2fs-modules-6.6.15-4kc-malta-di -pfat-modules-6.6.15-4kc-malta-di -pfb-modules-6.6.15-4kc-malta-di -pfirewire-core-modules-6.6.15-4kc-malta-di -pinput-modules-6.6.15-4kc-malta-di -pisofs-modules-6.6.15-4kc-malta-di -pjfs-modules-6.6.15-4kc-malta-di -pkernel-image-6.6.15-4kc-malta-di -ploop-modules-6.6.15-4kc-malta-di -pmd-modules-6.6.15-4kc-malta-di -pminix-modules-6.6.15-4kc-malta-di -pmmc-core-modules-6.6.15-4kc-malta-di -pmmc-modules-6.6.15-4kc-malta-di -pmouse-modules-6.6.15-4kc-malta-di -pmultipath-modules-6.6.15-4kc-malta-di -pnbd-modules-6.6.15-4kc-malta-di -pnfs-modules-6.6.15-4kc-malta-di -pnic-modules-6.6.15-4kc-malta-di -pnic-shared-modules-6.6.15-4kc-malta-di -pnic-usb-modules-6.6.15-4kc-malta-di -pnic-wireless-modules-6.6.15-4kc-malta-di -ppata-modules-6.6.15-4kc-malta-di -pppp-modules-6.6.15-4kc-malta-di -psata-modules-6.6.15-4kc-malta-di -pscsi-core-modules-6.6.15-4kc-malta-di -pscsi-modules-6.6.15-4kc-malta-di -pscsi-nic-modules-6.6.15-4kc-malta-di -psound-modules-6.6.15-4kc-malta-di -pspeakup-modules-6.6.15-4kc-malta-di -psquashfs-modules-6.6.15-4kc-malta-di -pudf-modules-6.6.15-4kc-malta-di -pusb-modules-6.6.15-4kc-malta-di -pusb-serial-modules-6.6.15-4kc-malta-di -pusb-storage-modules-6.6.15-4kc-malta-di -pxfs-modules-6.6.15-4kc-malta-di' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-4kc-malta-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-4kc-malta-di ata-modules-6.7.7-4kc-malta-di btrfs-modules-6.7.7-4kc-malta-di cdrom-core-modules-6.7.7-4kc-malta-di crc-modules-6.7.7-4kc-malta-di crypto-dm-modules-6.7.7-4kc-malta-di crypto-modules-6.7.7-4kc-malta-di event-modules-6.7.7-4kc-malta-di ext4-modules-6.7.7-4kc-malta-di f2fs-modules-6.7.7-4kc-malta-di fat-modules-6.7.7-4kc-malta-di fb-modules-6.7.7-4kc-malta-di firewire-core-modules-6.7.7-4kc-malta-di input-modules-6.7.7-4kc-malta-di isofs-modules-6.7.7-4kc-malta-di jfs-modules-6.7.7-4kc-malta-di kernel-image-6.7.7-4kc-malta-di loop-modules-6.7.7-4kc-malta-di md-modules-6.7.7-4kc-malta-di minix-modules-6.7.7-4kc-malta-di mmc-core-modules-6.7.7-4kc-malta-di mmc-modules-6.7.7-4kc-malta-di mouse-modules-6.7.7-4kc-malta-di multipath-modules-6.7.7-4kc-malta-di nbd-modules-6.7.7-4kc-malta-di nfs-modules-6.7.7-4kc-malta-di nic-modules-6.7.7-4kc-malta-di nic-shared-modules-6.7.7-4kc-malta-di nic-usb-modules-6.7.7-4kc-malta-di nic-wireless-modules-6.7.7-4kc-malta-di pata-modules-6.7.7-4kc-malta-di ppp-modules-6.7.7-4kc-malta-di sata-modules-6.7.7-4kc-malta-di scsi-core-modules-6.7.7-4kc-malta-di scsi-modules-6.7.7-4kc-malta-di scsi-nic-modules-6.7.7-4kc-malta-di sound-modules-6.7.7-4kc-malta-di speakup-modules-6.7.7-4kc-malta-di squashfs-modules-6.7.7-4kc-malta-di udf-modules-6.7.7-4kc-malta-di usb-modules-6.7.7-4kc-malta-di usb-serial-modules-6.7.7-4kc-malta-di usb-storage-modules-6.7.7-4kc-malta-di xfs-modules-6.7.7-4kc-malta-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-4kc-malta-di -pata-modules-6.7.7-4kc-malta-di -pbtrfs-modules-6.7.7-4kc-malta-di -pcdrom-core-modules-6.7.7-4kc-malta-di -pcrc-modules-6.7.7-4kc-malta-di -pcrypto-dm-modules-6.7.7-4kc-malta-di -pcrypto-modules-6.7.7-4kc-malta-di -pevent-modules-6.7.7-4kc-malta-di -pext4-modules-6.7.7-4kc-malta-di -pf2fs-modules-6.7.7-4kc-malta-di -pfat-modules-6.7.7-4kc-malta-di -pfb-modules-6.7.7-4kc-malta-di -pfirewire-core-modules-6.7.7-4kc-malta-di -pinput-modules-6.7.7-4kc-malta-di -pisofs-modules-6.7.7-4kc-malta-di -pjfs-modules-6.7.7-4kc-malta-di -pkernel-image-6.7.7-4kc-malta-di -ploop-modules-6.7.7-4kc-malta-di -pmd-modules-6.7.7-4kc-malta-di -pminix-modules-6.7.7-4kc-malta-di -pmmc-core-modules-6.7.7-4kc-malta-di -pmmc-modules-6.7.7-4kc-malta-di -pmouse-modules-6.7.7-4kc-malta-di -pmultipath-modules-6.7.7-4kc-malta-di -pnbd-modules-6.7.7-4kc-malta-di -pnfs-modules-6.7.7-4kc-malta-di -pnic-modules-6.7.7-4kc-malta-di -pnic-shared-modules-6.7.7-4kc-malta-di -pnic-usb-modules-6.7.7-4kc-malta-di -pnic-wireless-modules-6.7.7-4kc-malta-di -ppata-modules-6.7.7-4kc-malta-di -pppp-modules-6.7.7-4kc-malta-di -psata-modules-6.7.7-4kc-malta-di -pscsi-core-modules-6.7.7-4kc-malta-di -pscsi-modules-6.7.7-4kc-malta-di -pscsi-nic-modules-6.7.7-4kc-malta-di -psound-modules-6.7.7-4kc-malta-di -pspeakup-modules-6.7.7-4kc-malta-di -psquashfs-modules-6.7.7-4kc-malta-di -pudf-modules-6.7.7-4kc-malta-di -pusb-modules-6.7.7-4kc-malta-di -pusb-serial-modules-6.7.7-4kc-malta-di -pusb-storage-modules-6.7.7-4kc-malta-di -pxfs-modules-6.7.7-4kc-malta-di' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-4kc-malta-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips_none_4kc-malta_meta: - $(call if_package, linux-image-4kc-malta, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-4kc-malta' DH_OPTIONS='-plinux-image-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-4kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-4kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-4kc-malta, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-4kc-malta' DH_OPTIONS='-plinux-headers-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-4kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-headers-4kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-4kc-malta-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-4kc-malta-dbg' DH_OPTIONS='-plinux-image-4kc-malta-dbg' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-4kc-malta-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-4kc-malta-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-4kc-malta, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-4kc-malta' DH_OPTIONS='-plinux-image-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-4kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-4kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-4kc-malta, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-4kc-malta' DH_OPTIONS='-plinux-headers-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-4kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-headers-4kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-4kc-malta-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-4kc-malta-dbg' DH_OPTIONS='-plinux-image-4kc-malta-dbg' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-4kc-malta-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-4kc-malta-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips_none_mips32r2eb:binary-arch_mips_none_mips32r2eb_headers binary-arch_mips_none_mips32r2eb_image binary-arch_mips_none_mips32r2eb_image-dbg binary-arch_mips_none_mips32r2eb_installer binary-arch_mips_none_mips32r2eb_meta binary-arch_mips_none_mips32r2eb_headers: - $(call if_package, linux-headers-6.6.15-mips32r2eb, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-mips32r2eb' DH_OPTIONS='-plinux-headers-6.6.15-mips32r2eb' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' PACKAGE_NAME='linux-headers-6.6.15-mips32r2eb' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-mips32r2eb, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-mips32r2eb' DH_OPTIONS='-plinux-headers-6.7.7-mips32r2eb' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' PACKAGE_NAME='linux-headers-6.7.7-mips32r2eb' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips_none_mips32r2eb_image: - $(call if_package, linux-image-6.6.15-mips32r2eb, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-mips32r2eb' DH_OPTIONS='-plinux-image-6.6.15-mips32r2eb' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' PACKAGE_NAME='linux-image-6.6.15-mips32r2eb' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-mips32r2eb, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-mips32r2eb' DH_OPTIONS='-plinux-image-6.7.7-mips32r2eb' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' PACKAGE_NAME='linux-image-6.7.7-mips32r2eb' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips_none_mips32r2eb_image-dbg: - $(call if_package, linux-image-6.6.15-mips32r2eb-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-mips32r2eb-dbg' DH_OPTIONS='-plinux-image-6.6.15-mips32r2eb-dbg' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' PACKAGE_NAME='linux-image-6.6.15-mips32r2eb-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-mips32r2eb-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-mips32r2eb-dbg' DH_OPTIONS='-plinux-image-6.7.7-mips32r2eb-dbg' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' PACKAGE_NAME='linux-image-6.7.7-mips32r2eb-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips_none_mips32r2eb_installer: - $(call if_package, affs-modules-6.6.15-mips32r2eb-di ata-modules-6.6.15-mips32r2eb-di btrfs-modules-6.6.15-mips32r2eb-di cdrom-core-modules-6.6.15-mips32r2eb-di crc-modules-6.6.15-mips32r2eb-di crypto-dm-modules-6.6.15-mips32r2eb-di crypto-modules-6.6.15-mips32r2eb-di event-modules-6.6.15-mips32r2eb-di ext4-modules-6.6.15-mips32r2eb-di f2fs-modules-6.6.15-mips32r2eb-di fat-modules-6.6.15-mips32r2eb-di fb-modules-6.6.15-mips32r2eb-di firewire-core-modules-6.6.15-mips32r2eb-di input-modules-6.6.15-mips32r2eb-di isofs-modules-6.6.15-mips32r2eb-di jfs-modules-6.6.15-mips32r2eb-di kernel-image-6.6.15-mips32r2eb-di loop-modules-6.6.15-mips32r2eb-di md-modules-6.6.15-mips32r2eb-di minix-modules-6.6.15-mips32r2eb-di mmc-core-modules-6.6.15-mips32r2eb-di mmc-modules-6.6.15-mips32r2eb-di mouse-modules-6.6.15-mips32r2eb-di multipath-modules-6.6.15-mips32r2eb-di nbd-modules-6.6.15-mips32r2eb-di nfs-modules-6.6.15-mips32r2eb-di nic-modules-6.6.15-mips32r2eb-di nic-shared-modules-6.6.15-mips32r2eb-di nic-usb-modules-6.6.15-mips32r2eb-di nic-wireless-modules-6.6.15-mips32r2eb-di pata-modules-6.6.15-mips32r2eb-di ppp-modules-6.6.15-mips32r2eb-di sata-modules-6.6.15-mips32r2eb-di scsi-core-modules-6.6.15-mips32r2eb-di scsi-modules-6.6.15-mips32r2eb-di scsi-nic-modules-6.6.15-mips32r2eb-di sound-modules-6.6.15-mips32r2eb-di speakup-modules-6.6.15-mips32r2eb-di squashfs-modules-6.6.15-mips32r2eb-di udf-modules-6.6.15-mips32r2eb-di usb-modules-6.6.15-mips32r2eb-di usb-serial-modules-6.6.15-mips32r2eb-di usb-storage-modules-6.6.15-mips32r2eb-di xfs-modules-6.6.15-mips32r2eb-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-mips32r2eb-di -pata-modules-6.6.15-mips32r2eb-di -pbtrfs-modules-6.6.15-mips32r2eb-di -pcdrom-core-modules-6.6.15-mips32r2eb-di -pcrc-modules-6.6.15-mips32r2eb-di -pcrypto-dm-modules-6.6.15-mips32r2eb-di -pcrypto-modules-6.6.15-mips32r2eb-di -pevent-modules-6.6.15-mips32r2eb-di -pext4-modules-6.6.15-mips32r2eb-di -pf2fs-modules-6.6.15-mips32r2eb-di -pfat-modules-6.6.15-mips32r2eb-di -pfb-modules-6.6.15-mips32r2eb-di -pfirewire-core-modules-6.6.15-mips32r2eb-di -pinput-modules-6.6.15-mips32r2eb-di -pisofs-modules-6.6.15-mips32r2eb-di -pjfs-modules-6.6.15-mips32r2eb-di -pkernel-image-6.6.15-mips32r2eb-di -ploop-modules-6.6.15-mips32r2eb-di -pmd-modules-6.6.15-mips32r2eb-di -pminix-modules-6.6.15-mips32r2eb-di -pmmc-core-modules-6.6.15-mips32r2eb-di -pmmc-modules-6.6.15-mips32r2eb-di -pmouse-modules-6.6.15-mips32r2eb-di -pmultipath-modules-6.6.15-mips32r2eb-di -pnbd-modules-6.6.15-mips32r2eb-di -pnfs-modules-6.6.15-mips32r2eb-di -pnic-modules-6.6.15-mips32r2eb-di -pnic-shared-modules-6.6.15-mips32r2eb-di -pnic-usb-modules-6.6.15-mips32r2eb-di -pnic-wireless-modules-6.6.15-mips32r2eb-di -ppata-modules-6.6.15-mips32r2eb-di -pppp-modules-6.6.15-mips32r2eb-di -psata-modules-6.6.15-mips32r2eb-di -pscsi-core-modules-6.6.15-mips32r2eb-di -pscsi-modules-6.6.15-mips32r2eb-di -pscsi-nic-modules-6.6.15-mips32r2eb-di -psound-modules-6.6.15-mips32r2eb-di -pspeakup-modules-6.6.15-mips32r2eb-di -psquashfs-modules-6.6.15-mips32r2eb-di -pudf-modules-6.6.15-mips32r2eb-di -pusb-modules-6.6.15-mips32r2eb-di -pusb-serial-modules-6.6.15-mips32r2eb-di -pusb-storage-modules-6.6.15-mips32r2eb-di -pxfs-modules-6.6.15-mips32r2eb-di' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-mips32r2eb-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-mips32r2eb-di ata-modules-6.7.7-mips32r2eb-di btrfs-modules-6.7.7-mips32r2eb-di cdrom-core-modules-6.7.7-mips32r2eb-di crc-modules-6.7.7-mips32r2eb-di crypto-dm-modules-6.7.7-mips32r2eb-di crypto-modules-6.7.7-mips32r2eb-di event-modules-6.7.7-mips32r2eb-di ext4-modules-6.7.7-mips32r2eb-di f2fs-modules-6.7.7-mips32r2eb-di fat-modules-6.7.7-mips32r2eb-di fb-modules-6.7.7-mips32r2eb-di firewire-core-modules-6.7.7-mips32r2eb-di input-modules-6.7.7-mips32r2eb-di isofs-modules-6.7.7-mips32r2eb-di jfs-modules-6.7.7-mips32r2eb-di kernel-image-6.7.7-mips32r2eb-di loop-modules-6.7.7-mips32r2eb-di md-modules-6.7.7-mips32r2eb-di minix-modules-6.7.7-mips32r2eb-di mmc-core-modules-6.7.7-mips32r2eb-di mmc-modules-6.7.7-mips32r2eb-di mouse-modules-6.7.7-mips32r2eb-di multipath-modules-6.7.7-mips32r2eb-di nbd-modules-6.7.7-mips32r2eb-di nfs-modules-6.7.7-mips32r2eb-di nic-modules-6.7.7-mips32r2eb-di nic-shared-modules-6.7.7-mips32r2eb-di nic-usb-modules-6.7.7-mips32r2eb-di nic-wireless-modules-6.7.7-mips32r2eb-di pata-modules-6.7.7-mips32r2eb-di ppp-modules-6.7.7-mips32r2eb-di sata-modules-6.7.7-mips32r2eb-di scsi-core-modules-6.7.7-mips32r2eb-di scsi-modules-6.7.7-mips32r2eb-di scsi-nic-modules-6.7.7-mips32r2eb-di sound-modules-6.7.7-mips32r2eb-di speakup-modules-6.7.7-mips32r2eb-di squashfs-modules-6.7.7-mips32r2eb-di udf-modules-6.7.7-mips32r2eb-di usb-modules-6.7.7-mips32r2eb-di usb-serial-modules-6.7.7-mips32r2eb-di usb-storage-modules-6.7.7-mips32r2eb-di xfs-modules-6.7.7-mips32r2eb-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-mips32r2eb-di -pata-modules-6.7.7-mips32r2eb-di -pbtrfs-modules-6.7.7-mips32r2eb-di -pcdrom-core-modules-6.7.7-mips32r2eb-di -pcrc-modules-6.7.7-mips32r2eb-di -pcrypto-dm-modules-6.7.7-mips32r2eb-di -pcrypto-modules-6.7.7-mips32r2eb-di -pevent-modules-6.7.7-mips32r2eb-di -pext4-modules-6.7.7-mips32r2eb-di -pf2fs-modules-6.7.7-mips32r2eb-di -pfat-modules-6.7.7-mips32r2eb-di -pfb-modules-6.7.7-mips32r2eb-di -pfirewire-core-modules-6.7.7-mips32r2eb-di -pinput-modules-6.7.7-mips32r2eb-di -pisofs-modules-6.7.7-mips32r2eb-di -pjfs-modules-6.7.7-mips32r2eb-di -pkernel-image-6.7.7-mips32r2eb-di -ploop-modules-6.7.7-mips32r2eb-di -pmd-modules-6.7.7-mips32r2eb-di -pminix-modules-6.7.7-mips32r2eb-di -pmmc-core-modules-6.7.7-mips32r2eb-di -pmmc-modules-6.7.7-mips32r2eb-di -pmouse-modules-6.7.7-mips32r2eb-di -pmultipath-modules-6.7.7-mips32r2eb-di -pnbd-modules-6.7.7-mips32r2eb-di -pnfs-modules-6.7.7-mips32r2eb-di -pnic-modules-6.7.7-mips32r2eb-di -pnic-shared-modules-6.7.7-mips32r2eb-di -pnic-usb-modules-6.7.7-mips32r2eb-di -pnic-wireless-modules-6.7.7-mips32r2eb-di -ppata-modules-6.7.7-mips32r2eb-di -pppp-modules-6.7.7-mips32r2eb-di -psata-modules-6.7.7-mips32r2eb-di -pscsi-core-modules-6.7.7-mips32r2eb-di -pscsi-modules-6.7.7-mips32r2eb-di -pscsi-nic-modules-6.7.7-mips32r2eb-di -psound-modules-6.7.7-mips32r2eb-di -pspeakup-modules-6.7.7-mips32r2eb-di -psquashfs-modules-6.7.7-mips32r2eb-di -pudf-modules-6.7.7-mips32r2eb-di -pusb-modules-6.7.7-mips32r2eb-di -pusb-serial-modules-6.7.7-mips32r2eb-di -pusb-storage-modules-6.7.7-mips32r2eb-di -pxfs-modules-6.7.7-mips32r2eb-di' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-mips32r2eb-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips_none_mips32r2eb_meta: - $(call if_package, linux-image-mips32r2eb, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips32r2eb' DH_OPTIONS='-plinux-image-mips32r2eb' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-mips32r2eb' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' PACKAGE_NAME='linux-image-mips32r2eb' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-mips32r2eb, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-mips32r2eb' DH_OPTIONS='-plinux-headers-mips32r2eb' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-mips32r2eb' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' PACKAGE_NAME='linux-headers-mips32r2eb' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-mips32r2eb-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips32r2eb-dbg' DH_OPTIONS='-plinux-image-mips32r2eb-dbg' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-mips32r2eb-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' PACKAGE_NAME='linux-image-mips32r2eb-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-mips32r2eb, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips32r2eb' DH_OPTIONS='-plinux-image-mips32r2eb' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-mips32r2eb' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' PACKAGE_NAME='linux-image-mips32r2eb' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-mips32r2eb, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-mips32r2eb' DH_OPTIONS='-plinux-headers-mips32r2eb' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-mips32r2eb' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' PACKAGE_NAME='linux-headers-mips32r2eb' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-mips32r2eb-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips32r2eb-dbg' DH_OPTIONS='-plinux-image-mips32r2eb-dbg' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-mips32r2eb-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' PACKAGE_NAME='linux-image-mips32r2eb-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips_none_octeon:binary-arch_mips_none_octeon_headers binary-arch_mips_none_octeon_image binary-arch_mips_none_octeon_image-dbg binary-arch_mips_none_octeon_installer binary-arch_mips_none_octeon_meta binary-arch_mips_none_octeon_headers: - $(call if_package, linux-headers-6.6.15-octeon, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-octeon' DH_OPTIONS='-plinux-headers-6.6.15-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-6.6.15-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-octeon, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-octeon' DH_OPTIONS='-plinux-headers-6.7.7-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-6.7.7-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips_none_octeon_image: - $(call if_package, linux-image-6.6.15-octeon, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-octeon' DH_OPTIONS='-plinux-image-6.6.15-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.6.15-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-octeon, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-octeon' DH_OPTIONS='-plinux-image-6.7.7-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.7.7-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips_none_octeon_image-dbg: - $(call if_package, linux-image-6.6.15-octeon-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-octeon-dbg' DH_OPTIONS='-plinux-image-6.6.15-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.6.15-octeon-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-octeon-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-octeon-dbg' DH_OPTIONS='-plinux-image-6.7.7-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.7.7-octeon-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips_none_octeon_installer: - $(call if_package, affs-modules-6.6.15-octeon-di ata-modules-6.6.15-octeon-di btrfs-modules-6.6.15-octeon-di cdrom-core-modules-6.6.15-octeon-di crc-modules-6.6.15-octeon-di crypto-dm-modules-6.6.15-octeon-di crypto-modules-6.6.15-octeon-di event-modules-6.6.15-octeon-di ext4-modules-6.6.15-octeon-di f2fs-modules-6.6.15-octeon-di fat-modules-6.6.15-octeon-di fb-modules-6.6.15-octeon-di firewire-core-modules-6.6.15-octeon-di input-modules-6.6.15-octeon-di isofs-modules-6.6.15-octeon-di jfs-modules-6.6.15-octeon-di kernel-image-6.6.15-octeon-di loop-modules-6.6.15-octeon-di md-modules-6.6.15-octeon-di minix-modules-6.6.15-octeon-di mmc-core-modules-6.6.15-octeon-di mmc-modules-6.6.15-octeon-di mouse-modules-6.6.15-octeon-di multipath-modules-6.6.15-octeon-di nbd-modules-6.6.15-octeon-di nfs-modules-6.6.15-octeon-di nic-modules-6.6.15-octeon-di nic-shared-modules-6.6.15-octeon-di nic-usb-modules-6.6.15-octeon-di nic-wireless-modules-6.6.15-octeon-di pata-modules-6.6.15-octeon-di ppp-modules-6.6.15-octeon-di sata-modules-6.6.15-octeon-di scsi-core-modules-6.6.15-octeon-di scsi-modules-6.6.15-octeon-di scsi-nic-modules-6.6.15-octeon-di sound-modules-6.6.15-octeon-di speakup-modules-6.6.15-octeon-di squashfs-modules-6.6.15-octeon-di udf-modules-6.6.15-octeon-di usb-modules-6.6.15-octeon-di usb-serial-modules-6.6.15-octeon-di usb-storage-modules-6.6.15-octeon-di xfs-modules-6.6.15-octeon-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-octeon-di -pata-modules-6.6.15-octeon-di -pbtrfs-modules-6.6.15-octeon-di -pcdrom-core-modules-6.6.15-octeon-di -pcrc-modules-6.6.15-octeon-di -pcrypto-dm-modules-6.6.15-octeon-di -pcrypto-modules-6.6.15-octeon-di -pevent-modules-6.6.15-octeon-di -pext4-modules-6.6.15-octeon-di -pf2fs-modules-6.6.15-octeon-di -pfat-modules-6.6.15-octeon-di -pfb-modules-6.6.15-octeon-di -pfirewire-core-modules-6.6.15-octeon-di -pinput-modules-6.6.15-octeon-di -pisofs-modules-6.6.15-octeon-di -pjfs-modules-6.6.15-octeon-di -pkernel-image-6.6.15-octeon-di -ploop-modules-6.6.15-octeon-di -pmd-modules-6.6.15-octeon-di -pminix-modules-6.6.15-octeon-di -pmmc-core-modules-6.6.15-octeon-di -pmmc-modules-6.6.15-octeon-di -pmouse-modules-6.6.15-octeon-di -pmultipath-modules-6.6.15-octeon-di -pnbd-modules-6.6.15-octeon-di -pnfs-modules-6.6.15-octeon-di -pnic-modules-6.6.15-octeon-di -pnic-shared-modules-6.6.15-octeon-di -pnic-usb-modules-6.6.15-octeon-di -pnic-wireless-modules-6.6.15-octeon-di -ppata-modules-6.6.15-octeon-di -pppp-modules-6.6.15-octeon-di -psata-modules-6.6.15-octeon-di -pscsi-core-modules-6.6.15-octeon-di -pscsi-modules-6.6.15-octeon-di -pscsi-nic-modules-6.6.15-octeon-di -psound-modules-6.6.15-octeon-di -pspeakup-modules-6.6.15-octeon-di -psquashfs-modules-6.6.15-octeon-di -pudf-modules-6.6.15-octeon-di -pusb-modules-6.6.15-octeon-di -pusb-serial-modules-6.6.15-octeon-di -pusb-storage-modules-6.6.15-octeon-di -pxfs-modules-6.6.15-octeon-di' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-octeon-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-octeon-di ata-modules-6.7.7-octeon-di btrfs-modules-6.7.7-octeon-di cdrom-core-modules-6.7.7-octeon-di crc-modules-6.7.7-octeon-di crypto-dm-modules-6.7.7-octeon-di crypto-modules-6.7.7-octeon-di event-modules-6.7.7-octeon-di ext4-modules-6.7.7-octeon-di f2fs-modules-6.7.7-octeon-di fat-modules-6.7.7-octeon-di fb-modules-6.7.7-octeon-di firewire-core-modules-6.7.7-octeon-di input-modules-6.7.7-octeon-di isofs-modules-6.7.7-octeon-di jfs-modules-6.7.7-octeon-di kernel-image-6.7.7-octeon-di loop-modules-6.7.7-octeon-di md-modules-6.7.7-octeon-di minix-modules-6.7.7-octeon-di mmc-core-modules-6.7.7-octeon-di mmc-modules-6.7.7-octeon-di mouse-modules-6.7.7-octeon-di multipath-modules-6.7.7-octeon-di nbd-modules-6.7.7-octeon-di nfs-modules-6.7.7-octeon-di nic-modules-6.7.7-octeon-di nic-shared-modules-6.7.7-octeon-di nic-usb-modules-6.7.7-octeon-di nic-wireless-modules-6.7.7-octeon-di pata-modules-6.7.7-octeon-di ppp-modules-6.7.7-octeon-di sata-modules-6.7.7-octeon-di scsi-core-modules-6.7.7-octeon-di scsi-modules-6.7.7-octeon-di scsi-nic-modules-6.7.7-octeon-di sound-modules-6.7.7-octeon-di speakup-modules-6.7.7-octeon-di squashfs-modules-6.7.7-octeon-di udf-modules-6.7.7-octeon-di usb-modules-6.7.7-octeon-di usb-serial-modules-6.7.7-octeon-di usb-storage-modules-6.7.7-octeon-di xfs-modules-6.7.7-octeon-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-octeon-di -pata-modules-6.7.7-octeon-di -pbtrfs-modules-6.7.7-octeon-di -pcdrom-core-modules-6.7.7-octeon-di -pcrc-modules-6.7.7-octeon-di -pcrypto-dm-modules-6.7.7-octeon-di -pcrypto-modules-6.7.7-octeon-di -pevent-modules-6.7.7-octeon-di -pext4-modules-6.7.7-octeon-di -pf2fs-modules-6.7.7-octeon-di -pfat-modules-6.7.7-octeon-di -pfb-modules-6.7.7-octeon-di -pfirewire-core-modules-6.7.7-octeon-di -pinput-modules-6.7.7-octeon-di -pisofs-modules-6.7.7-octeon-di -pjfs-modules-6.7.7-octeon-di -pkernel-image-6.7.7-octeon-di -ploop-modules-6.7.7-octeon-di -pmd-modules-6.7.7-octeon-di -pminix-modules-6.7.7-octeon-di -pmmc-core-modules-6.7.7-octeon-di -pmmc-modules-6.7.7-octeon-di -pmouse-modules-6.7.7-octeon-di -pmultipath-modules-6.7.7-octeon-di -pnbd-modules-6.7.7-octeon-di -pnfs-modules-6.7.7-octeon-di -pnic-modules-6.7.7-octeon-di -pnic-shared-modules-6.7.7-octeon-di -pnic-usb-modules-6.7.7-octeon-di -pnic-wireless-modules-6.7.7-octeon-di -ppata-modules-6.7.7-octeon-di -pppp-modules-6.7.7-octeon-di -psata-modules-6.7.7-octeon-di -pscsi-core-modules-6.7.7-octeon-di -pscsi-modules-6.7.7-octeon-di -pscsi-nic-modules-6.7.7-octeon-di -psound-modules-6.7.7-octeon-di -pspeakup-modules-6.7.7-octeon-di -psquashfs-modules-6.7.7-octeon-di -pudf-modules-6.7.7-octeon-di -pusb-modules-6.7.7-octeon-di -pusb-serial-modules-6.7.7-octeon-di -pusb-storage-modules-6.7.7-octeon-di -pxfs-modules-6.7.7-octeon-di' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-octeon-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips_none_octeon_meta: - $(call if_package, linux-image-octeon, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon' DH_OPTIONS='-plinux-image-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-octeon, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-octeon' DH_OPTIONS='-plinux-headers-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-octeon-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon-dbg' DH_OPTIONS='-plinux-image-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-octeon-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-octeon, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon' DH_OPTIONS='-plinux-image-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-octeon, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-octeon' DH_OPTIONS='-plinux-headers-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-octeon-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon-dbg' DH_OPTIONS='-plinux-image-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-octeon-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.6.15' ARCH='mips' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='mips' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.7.7' ARCH='mips' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='mips' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.6.15' ARCH='mips' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='mips' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.7.7' ARCH='mips' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='mips' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mips_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.6.15' ARCH='mips' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='mips' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.7.7' ARCH='mips' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='mips' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mipsel:binary-arch_mipsel_bpftool binary-arch_mipsel_config binary-arch_mipsel_cpupower binary-arch_mipsel_hyperv-daemons binary-arch_mipsel_kbuild binary-arch_mipsel_none binary-arch_mipsel_perf binary-arch_mipsel_rtla binary-arch_mipsel_usbip binary-arch_mipsel_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.6.15' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='mips' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.7.7' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='mips' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mipsel_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real binary_config ABINAME='6.6.15' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='mips' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real binary_config ABINAME='6.7.7' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='mips' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mipsel_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.6.15' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='mips' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.7.7' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='mips' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mipsel_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.6.15' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='mips' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.7.7' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='mips' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mipsel_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.6.15' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='mips' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.7.7' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='mips' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mipsel_none:binary-arch_mipsel_none_4kc-malta binary-arch_mipsel_none_loongson-3 binary-arch_mipsel_none_mips32r2el binary-arch_mipsel_none_octeon binary-arch_mipsel_none_4kc-malta:binary-arch_mipsel_none_4kc-malta_headers binary-arch_mipsel_none_4kc-malta_image binary-arch_mipsel_none_4kc-malta_image-dbg binary-arch_mipsel_none_4kc-malta_installer binary-arch_mipsel_none_4kc-malta_meta binary-arch_mipsel_none_4kc-malta_headers: - $(call if_package, linux-headers-6.6.15-4kc-malta, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-4kc-malta' DH_OPTIONS='-plinux-headers-6.6.15-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-headers-6.6.15-4kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-4kc-malta, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-4kc-malta' DH_OPTIONS='-plinux-headers-6.7.7-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-headers-6.7.7-4kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mipsel_none_4kc-malta_image: - $(call if_package, linux-image-6.6.15-4kc-malta, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-4kc-malta' DH_OPTIONS='-plinux-image-6.6.15-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-6.6.15-4kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-4kc-malta, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-4kc-malta' DH_OPTIONS='-plinux-image-6.7.7-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-6.7.7-4kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mipsel_none_4kc-malta_image-dbg: - $(call if_package, linux-image-6.6.15-4kc-malta-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-4kc-malta-dbg' DH_OPTIONS='-plinux-image-6.6.15-4kc-malta-dbg' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-6.6.15-4kc-malta-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-4kc-malta-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-4kc-malta-dbg' DH_OPTIONS='-plinux-image-6.7.7-4kc-malta-dbg' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-6.7.7-4kc-malta-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mipsel_none_4kc-malta_installer: - $(call if_package, affs-modules-6.6.15-4kc-malta-di ata-modules-6.6.15-4kc-malta-di btrfs-modules-6.6.15-4kc-malta-di cdrom-core-modules-6.6.15-4kc-malta-di crc-modules-6.6.15-4kc-malta-di crypto-dm-modules-6.6.15-4kc-malta-di crypto-modules-6.6.15-4kc-malta-di event-modules-6.6.15-4kc-malta-di ext4-modules-6.6.15-4kc-malta-di f2fs-modules-6.6.15-4kc-malta-di fat-modules-6.6.15-4kc-malta-di fb-modules-6.6.15-4kc-malta-di firewire-core-modules-6.6.15-4kc-malta-di input-modules-6.6.15-4kc-malta-di isofs-modules-6.6.15-4kc-malta-di jfs-modules-6.6.15-4kc-malta-di kernel-image-6.6.15-4kc-malta-di loop-modules-6.6.15-4kc-malta-di md-modules-6.6.15-4kc-malta-di minix-modules-6.6.15-4kc-malta-di mmc-core-modules-6.6.15-4kc-malta-di mmc-modules-6.6.15-4kc-malta-di mouse-modules-6.6.15-4kc-malta-di multipath-modules-6.6.15-4kc-malta-di nbd-modules-6.6.15-4kc-malta-di nfs-modules-6.6.15-4kc-malta-di nic-modules-6.6.15-4kc-malta-di nic-shared-modules-6.6.15-4kc-malta-di nic-usb-modules-6.6.15-4kc-malta-di nic-wireless-modules-6.6.15-4kc-malta-di pata-modules-6.6.15-4kc-malta-di ppp-modules-6.6.15-4kc-malta-di sata-modules-6.6.15-4kc-malta-di scsi-core-modules-6.6.15-4kc-malta-di scsi-modules-6.6.15-4kc-malta-di scsi-nic-modules-6.6.15-4kc-malta-di sound-modules-6.6.15-4kc-malta-di speakup-modules-6.6.15-4kc-malta-di squashfs-modules-6.6.15-4kc-malta-di udf-modules-6.6.15-4kc-malta-di usb-modules-6.6.15-4kc-malta-di usb-serial-modules-6.6.15-4kc-malta-di usb-storage-modules-6.6.15-4kc-malta-di xfs-modules-6.6.15-4kc-malta-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-4kc-malta-di -pata-modules-6.6.15-4kc-malta-di -pbtrfs-modules-6.6.15-4kc-malta-di -pcdrom-core-modules-6.6.15-4kc-malta-di -pcrc-modules-6.6.15-4kc-malta-di -pcrypto-dm-modules-6.6.15-4kc-malta-di -pcrypto-modules-6.6.15-4kc-malta-di -pevent-modules-6.6.15-4kc-malta-di -pext4-modules-6.6.15-4kc-malta-di -pf2fs-modules-6.6.15-4kc-malta-di -pfat-modules-6.6.15-4kc-malta-di -pfb-modules-6.6.15-4kc-malta-di -pfirewire-core-modules-6.6.15-4kc-malta-di -pinput-modules-6.6.15-4kc-malta-di -pisofs-modules-6.6.15-4kc-malta-di -pjfs-modules-6.6.15-4kc-malta-di -pkernel-image-6.6.15-4kc-malta-di -ploop-modules-6.6.15-4kc-malta-di -pmd-modules-6.6.15-4kc-malta-di -pminix-modules-6.6.15-4kc-malta-di -pmmc-core-modules-6.6.15-4kc-malta-di -pmmc-modules-6.6.15-4kc-malta-di -pmouse-modules-6.6.15-4kc-malta-di -pmultipath-modules-6.6.15-4kc-malta-di -pnbd-modules-6.6.15-4kc-malta-di -pnfs-modules-6.6.15-4kc-malta-di -pnic-modules-6.6.15-4kc-malta-di -pnic-shared-modules-6.6.15-4kc-malta-di -pnic-usb-modules-6.6.15-4kc-malta-di -pnic-wireless-modules-6.6.15-4kc-malta-di -ppata-modules-6.6.15-4kc-malta-di -pppp-modules-6.6.15-4kc-malta-di -psata-modules-6.6.15-4kc-malta-di -pscsi-core-modules-6.6.15-4kc-malta-di -pscsi-modules-6.6.15-4kc-malta-di -pscsi-nic-modules-6.6.15-4kc-malta-di -psound-modules-6.6.15-4kc-malta-di -pspeakup-modules-6.6.15-4kc-malta-di -psquashfs-modules-6.6.15-4kc-malta-di -pudf-modules-6.6.15-4kc-malta-di -pusb-modules-6.6.15-4kc-malta-di -pusb-serial-modules-6.6.15-4kc-malta-di -pusb-storage-modules-6.6.15-4kc-malta-di -pxfs-modules-6.6.15-4kc-malta-di' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-4kc-malta-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-4kc-malta-di ata-modules-6.7.7-4kc-malta-di btrfs-modules-6.7.7-4kc-malta-di cdrom-core-modules-6.7.7-4kc-malta-di crc-modules-6.7.7-4kc-malta-di crypto-dm-modules-6.7.7-4kc-malta-di crypto-modules-6.7.7-4kc-malta-di event-modules-6.7.7-4kc-malta-di ext4-modules-6.7.7-4kc-malta-di f2fs-modules-6.7.7-4kc-malta-di fat-modules-6.7.7-4kc-malta-di fb-modules-6.7.7-4kc-malta-di firewire-core-modules-6.7.7-4kc-malta-di input-modules-6.7.7-4kc-malta-di isofs-modules-6.7.7-4kc-malta-di jfs-modules-6.7.7-4kc-malta-di kernel-image-6.7.7-4kc-malta-di loop-modules-6.7.7-4kc-malta-di md-modules-6.7.7-4kc-malta-di minix-modules-6.7.7-4kc-malta-di mmc-core-modules-6.7.7-4kc-malta-di mmc-modules-6.7.7-4kc-malta-di mouse-modules-6.7.7-4kc-malta-di multipath-modules-6.7.7-4kc-malta-di nbd-modules-6.7.7-4kc-malta-di nfs-modules-6.7.7-4kc-malta-di nic-modules-6.7.7-4kc-malta-di nic-shared-modules-6.7.7-4kc-malta-di nic-usb-modules-6.7.7-4kc-malta-di nic-wireless-modules-6.7.7-4kc-malta-di pata-modules-6.7.7-4kc-malta-di ppp-modules-6.7.7-4kc-malta-di sata-modules-6.7.7-4kc-malta-di scsi-core-modules-6.7.7-4kc-malta-di scsi-modules-6.7.7-4kc-malta-di scsi-nic-modules-6.7.7-4kc-malta-di sound-modules-6.7.7-4kc-malta-di speakup-modules-6.7.7-4kc-malta-di squashfs-modules-6.7.7-4kc-malta-di udf-modules-6.7.7-4kc-malta-di usb-modules-6.7.7-4kc-malta-di usb-serial-modules-6.7.7-4kc-malta-di usb-storage-modules-6.7.7-4kc-malta-di xfs-modules-6.7.7-4kc-malta-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-4kc-malta-di -pata-modules-6.7.7-4kc-malta-di -pbtrfs-modules-6.7.7-4kc-malta-di -pcdrom-core-modules-6.7.7-4kc-malta-di -pcrc-modules-6.7.7-4kc-malta-di -pcrypto-dm-modules-6.7.7-4kc-malta-di -pcrypto-modules-6.7.7-4kc-malta-di -pevent-modules-6.7.7-4kc-malta-di -pext4-modules-6.7.7-4kc-malta-di -pf2fs-modules-6.7.7-4kc-malta-di -pfat-modules-6.7.7-4kc-malta-di -pfb-modules-6.7.7-4kc-malta-di -pfirewire-core-modules-6.7.7-4kc-malta-di -pinput-modules-6.7.7-4kc-malta-di -pisofs-modules-6.7.7-4kc-malta-di -pjfs-modules-6.7.7-4kc-malta-di -pkernel-image-6.7.7-4kc-malta-di -ploop-modules-6.7.7-4kc-malta-di -pmd-modules-6.7.7-4kc-malta-di -pminix-modules-6.7.7-4kc-malta-di -pmmc-core-modules-6.7.7-4kc-malta-di -pmmc-modules-6.7.7-4kc-malta-di -pmouse-modules-6.7.7-4kc-malta-di -pmultipath-modules-6.7.7-4kc-malta-di -pnbd-modules-6.7.7-4kc-malta-di -pnfs-modules-6.7.7-4kc-malta-di -pnic-modules-6.7.7-4kc-malta-di -pnic-shared-modules-6.7.7-4kc-malta-di -pnic-usb-modules-6.7.7-4kc-malta-di -pnic-wireless-modules-6.7.7-4kc-malta-di -ppata-modules-6.7.7-4kc-malta-di -pppp-modules-6.7.7-4kc-malta-di -psata-modules-6.7.7-4kc-malta-di -pscsi-core-modules-6.7.7-4kc-malta-di -pscsi-modules-6.7.7-4kc-malta-di -pscsi-nic-modules-6.7.7-4kc-malta-di -psound-modules-6.7.7-4kc-malta-di -pspeakup-modules-6.7.7-4kc-malta-di -psquashfs-modules-6.7.7-4kc-malta-di -pudf-modules-6.7.7-4kc-malta-di -pusb-modules-6.7.7-4kc-malta-di -pusb-serial-modules-6.7.7-4kc-malta-di -pusb-storage-modules-6.7.7-4kc-malta-di -pxfs-modules-6.7.7-4kc-malta-di' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-4kc-malta-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mipsel_none_4kc-malta_meta: - $(call if_package, linux-image-4kc-malta, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-4kc-malta' DH_OPTIONS='-plinux-image-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-4kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-4kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-4kc-malta, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-4kc-malta' DH_OPTIONS='-plinux-headers-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-4kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-headers-4kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-4kc-malta-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-4kc-malta-dbg' DH_OPTIONS='-plinux-image-4kc-malta-dbg' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-4kc-malta-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-4kc-malta-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-4kc-malta, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-4kc-malta' DH_OPTIONS='-plinux-image-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-4kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-4kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-4kc-malta, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-4kc-malta' DH_OPTIONS='-plinux-headers-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-4kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-headers-4kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-4kc-malta-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-4kc-malta-dbg' DH_OPTIONS='-plinux-image-4kc-malta-dbg' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-4kc-malta-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-4kc-malta-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mipsel_none_loongson-3:binary-arch_mipsel_none_loongson-3_headers binary-arch_mipsel_none_loongson-3_image binary-arch_mipsel_none_loongson-3_image-dbg binary-arch_mipsel_none_loongson-3_installer binary-arch_mipsel_none_loongson-3_meta binary-arch_mipsel_none_loongson-3_headers: - $(call if_package, linux-headers-6.6.15-loongson-3, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-loongson-3' DH_OPTIONS='-plinux-headers-6.6.15-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-headers-6.6.15-loongson-3' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-loongson-3, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-loongson-3' DH_OPTIONS='-plinux-headers-6.7.7-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-headers-6.7.7-loongson-3' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mipsel_none_loongson-3_image: - $(call if_package, linux-image-6.6.15-loongson-3, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-loongson-3' DH_OPTIONS='-plinux-image-6.6.15-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-6.6.15-loongson-3' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-loongson-3, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-loongson-3' DH_OPTIONS='-plinux-image-6.7.7-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-6.7.7-loongson-3' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mipsel_none_loongson-3_image-dbg: - $(call if_package, linux-image-6.6.15-loongson-3-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-loongson-3-dbg' DH_OPTIONS='-plinux-image-6.6.15-loongson-3-dbg' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-6.6.15-loongson-3-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-loongson-3-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-loongson-3-dbg' DH_OPTIONS='-plinux-image-6.7.7-loongson-3-dbg' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-6.7.7-loongson-3-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mipsel_none_loongson-3_installer: - $(call if_package, affs-modules-6.6.15-loongson-3-di ata-modules-6.6.15-loongson-3-di btrfs-modules-6.6.15-loongson-3-di cdrom-core-modules-6.6.15-loongson-3-di crc-modules-6.6.15-loongson-3-di crypto-dm-modules-6.6.15-loongson-3-di crypto-modules-6.6.15-loongson-3-di event-modules-6.6.15-loongson-3-di ext4-modules-6.6.15-loongson-3-di f2fs-modules-6.6.15-loongson-3-di fat-modules-6.6.15-loongson-3-di fb-modules-6.6.15-loongson-3-di firewire-core-modules-6.6.15-loongson-3-di input-modules-6.6.15-loongson-3-di isofs-modules-6.6.15-loongson-3-di jfs-modules-6.6.15-loongson-3-di kernel-image-6.6.15-loongson-3-di loop-modules-6.6.15-loongson-3-di md-modules-6.6.15-loongson-3-di minix-modules-6.6.15-loongson-3-di mmc-core-modules-6.6.15-loongson-3-di mmc-modules-6.6.15-loongson-3-di mouse-modules-6.6.15-loongson-3-di multipath-modules-6.6.15-loongson-3-di nbd-modules-6.6.15-loongson-3-di nfs-modules-6.6.15-loongson-3-di nic-modules-6.6.15-loongson-3-di nic-shared-modules-6.6.15-loongson-3-di nic-usb-modules-6.6.15-loongson-3-di nic-wireless-modules-6.6.15-loongson-3-di pata-modules-6.6.15-loongson-3-di ppp-modules-6.6.15-loongson-3-di sata-modules-6.6.15-loongson-3-di scsi-core-modules-6.6.15-loongson-3-di scsi-modules-6.6.15-loongson-3-di scsi-nic-modules-6.6.15-loongson-3-di sound-modules-6.6.15-loongson-3-di speakup-modules-6.6.15-loongson-3-di squashfs-modules-6.6.15-loongson-3-di udf-modules-6.6.15-loongson-3-di usb-modules-6.6.15-loongson-3-di usb-serial-modules-6.6.15-loongson-3-di usb-storage-modules-6.6.15-loongson-3-di xfs-modules-6.6.15-loongson-3-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-loongson-3-di -pata-modules-6.6.15-loongson-3-di -pbtrfs-modules-6.6.15-loongson-3-di -pcdrom-core-modules-6.6.15-loongson-3-di -pcrc-modules-6.6.15-loongson-3-di -pcrypto-dm-modules-6.6.15-loongson-3-di -pcrypto-modules-6.6.15-loongson-3-di -pevent-modules-6.6.15-loongson-3-di -pext4-modules-6.6.15-loongson-3-di -pf2fs-modules-6.6.15-loongson-3-di -pfat-modules-6.6.15-loongson-3-di -pfb-modules-6.6.15-loongson-3-di -pfirewire-core-modules-6.6.15-loongson-3-di -pinput-modules-6.6.15-loongson-3-di -pisofs-modules-6.6.15-loongson-3-di -pjfs-modules-6.6.15-loongson-3-di -pkernel-image-6.6.15-loongson-3-di -ploop-modules-6.6.15-loongson-3-di -pmd-modules-6.6.15-loongson-3-di -pminix-modules-6.6.15-loongson-3-di -pmmc-core-modules-6.6.15-loongson-3-di -pmmc-modules-6.6.15-loongson-3-di -pmouse-modules-6.6.15-loongson-3-di -pmultipath-modules-6.6.15-loongson-3-di -pnbd-modules-6.6.15-loongson-3-di -pnfs-modules-6.6.15-loongson-3-di -pnic-modules-6.6.15-loongson-3-di -pnic-shared-modules-6.6.15-loongson-3-di -pnic-usb-modules-6.6.15-loongson-3-di -pnic-wireless-modules-6.6.15-loongson-3-di -ppata-modules-6.6.15-loongson-3-di -pppp-modules-6.6.15-loongson-3-di -psata-modules-6.6.15-loongson-3-di -pscsi-core-modules-6.6.15-loongson-3-di -pscsi-modules-6.6.15-loongson-3-di -pscsi-nic-modules-6.6.15-loongson-3-di -psound-modules-6.6.15-loongson-3-di -pspeakup-modules-6.6.15-loongson-3-di -psquashfs-modules-6.6.15-loongson-3-di -pudf-modules-6.6.15-loongson-3-di -pusb-modules-6.6.15-loongson-3-di -pusb-serial-modules-6.6.15-loongson-3-di -pusb-storage-modules-6.6.15-loongson-3-di -pxfs-modules-6.6.15-loongson-3-di' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-loongson-3-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-loongson-3-di ata-modules-6.7.7-loongson-3-di btrfs-modules-6.7.7-loongson-3-di cdrom-core-modules-6.7.7-loongson-3-di crc-modules-6.7.7-loongson-3-di crypto-dm-modules-6.7.7-loongson-3-di crypto-modules-6.7.7-loongson-3-di event-modules-6.7.7-loongson-3-di ext4-modules-6.7.7-loongson-3-di f2fs-modules-6.7.7-loongson-3-di fat-modules-6.7.7-loongson-3-di fb-modules-6.7.7-loongson-3-di firewire-core-modules-6.7.7-loongson-3-di input-modules-6.7.7-loongson-3-di isofs-modules-6.7.7-loongson-3-di jfs-modules-6.7.7-loongson-3-di kernel-image-6.7.7-loongson-3-di loop-modules-6.7.7-loongson-3-di md-modules-6.7.7-loongson-3-di minix-modules-6.7.7-loongson-3-di mmc-core-modules-6.7.7-loongson-3-di mmc-modules-6.7.7-loongson-3-di mouse-modules-6.7.7-loongson-3-di multipath-modules-6.7.7-loongson-3-di nbd-modules-6.7.7-loongson-3-di nfs-modules-6.7.7-loongson-3-di nic-modules-6.7.7-loongson-3-di nic-shared-modules-6.7.7-loongson-3-di nic-usb-modules-6.7.7-loongson-3-di nic-wireless-modules-6.7.7-loongson-3-di pata-modules-6.7.7-loongson-3-di ppp-modules-6.7.7-loongson-3-di sata-modules-6.7.7-loongson-3-di scsi-core-modules-6.7.7-loongson-3-di scsi-modules-6.7.7-loongson-3-di scsi-nic-modules-6.7.7-loongson-3-di sound-modules-6.7.7-loongson-3-di speakup-modules-6.7.7-loongson-3-di squashfs-modules-6.7.7-loongson-3-di udf-modules-6.7.7-loongson-3-di usb-modules-6.7.7-loongson-3-di usb-serial-modules-6.7.7-loongson-3-di usb-storage-modules-6.7.7-loongson-3-di xfs-modules-6.7.7-loongson-3-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-loongson-3-di -pata-modules-6.7.7-loongson-3-di -pbtrfs-modules-6.7.7-loongson-3-di -pcdrom-core-modules-6.7.7-loongson-3-di -pcrc-modules-6.7.7-loongson-3-di -pcrypto-dm-modules-6.7.7-loongson-3-di -pcrypto-modules-6.7.7-loongson-3-di -pevent-modules-6.7.7-loongson-3-di -pext4-modules-6.7.7-loongson-3-di -pf2fs-modules-6.7.7-loongson-3-di -pfat-modules-6.7.7-loongson-3-di -pfb-modules-6.7.7-loongson-3-di -pfirewire-core-modules-6.7.7-loongson-3-di -pinput-modules-6.7.7-loongson-3-di -pisofs-modules-6.7.7-loongson-3-di -pjfs-modules-6.7.7-loongson-3-di -pkernel-image-6.7.7-loongson-3-di -ploop-modules-6.7.7-loongson-3-di -pmd-modules-6.7.7-loongson-3-di -pminix-modules-6.7.7-loongson-3-di -pmmc-core-modules-6.7.7-loongson-3-di -pmmc-modules-6.7.7-loongson-3-di -pmouse-modules-6.7.7-loongson-3-di -pmultipath-modules-6.7.7-loongson-3-di -pnbd-modules-6.7.7-loongson-3-di -pnfs-modules-6.7.7-loongson-3-di -pnic-modules-6.7.7-loongson-3-di -pnic-shared-modules-6.7.7-loongson-3-di -pnic-usb-modules-6.7.7-loongson-3-di -pnic-wireless-modules-6.7.7-loongson-3-di -ppata-modules-6.7.7-loongson-3-di -pppp-modules-6.7.7-loongson-3-di -psata-modules-6.7.7-loongson-3-di -pscsi-core-modules-6.7.7-loongson-3-di -pscsi-modules-6.7.7-loongson-3-di -pscsi-nic-modules-6.7.7-loongson-3-di -psound-modules-6.7.7-loongson-3-di -pspeakup-modules-6.7.7-loongson-3-di -psquashfs-modules-6.7.7-loongson-3-di -pudf-modules-6.7.7-loongson-3-di -pusb-modules-6.7.7-loongson-3-di -pusb-serial-modules-6.7.7-loongson-3-di -pusb-storage-modules-6.7.7-loongson-3-di -pxfs-modules-6.7.7-loongson-3-di' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-loongson-3-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mipsel_none_loongson-3_meta: - $(call if_package, linux-image-loongson-3, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-loongson-3' DH_OPTIONS='-plinux-image-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-loongson-3' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-loongson-3' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-loongson-3, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-loongson-3' DH_OPTIONS='-plinux-headers-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-loongson-3' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-headers-loongson-3' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-loongson-3-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-loongson-3-dbg' DH_OPTIONS='-plinux-image-loongson-3-dbg' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-loongson-3-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-loongson-3-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-loongson-3, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-loongson-3' DH_OPTIONS='-plinux-image-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-loongson-3' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-loongson-3' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-loongson-3, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-loongson-3' DH_OPTIONS='-plinux-headers-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-loongson-3' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-headers-loongson-3' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-loongson-3-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-loongson-3-dbg' DH_OPTIONS='-plinux-image-loongson-3-dbg' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-loongson-3-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-loongson-3-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mipsel_none_mips32r2el:binary-arch_mipsel_none_mips32r2el_headers binary-arch_mipsel_none_mips32r2el_image binary-arch_mipsel_none_mips32r2el_image-dbg binary-arch_mipsel_none_mips32r2el_installer binary-arch_mipsel_none_mips32r2el_meta binary-arch_mipsel_none_mips32r2el_headers: - $(call if_package, linux-headers-6.6.15-mips32r2el, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-mips32r2el' DH_OPTIONS='-plinux-headers-6.6.15-mips32r2el' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' PACKAGE_NAME='linux-headers-6.6.15-mips32r2el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-mips32r2el, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-mips32r2el' DH_OPTIONS='-plinux-headers-6.7.7-mips32r2el' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' PACKAGE_NAME='linux-headers-6.7.7-mips32r2el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mipsel_none_mips32r2el_image: - $(call if_package, linux-image-6.6.15-mips32r2el, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-mips32r2el' DH_OPTIONS='-plinux-image-6.6.15-mips32r2el' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' PACKAGE_NAME='linux-image-6.6.15-mips32r2el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-mips32r2el, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-mips32r2el' DH_OPTIONS='-plinux-image-6.7.7-mips32r2el' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' PACKAGE_NAME='linux-image-6.7.7-mips32r2el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mipsel_none_mips32r2el_image-dbg: - $(call if_package, linux-image-6.6.15-mips32r2el-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-mips32r2el-dbg' DH_OPTIONS='-plinux-image-6.6.15-mips32r2el-dbg' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' PACKAGE_NAME='linux-image-6.6.15-mips32r2el-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-mips32r2el-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-mips32r2el-dbg' DH_OPTIONS='-plinux-image-6.7.7-mips32r2el-dbg' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' PACKAGE_NAME='linux-image-6.7.7-mips32r2el-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mipsel_none_mips32r2el_installer: - $(call if_package, affs-modules-6.6.15-mips32r2el-di ata-modules-6.6.15-mips32r2el-di btrfs-modules-6.6.15-mips32r2el-di cdrom-core-modules-6.6.15-mips32r2el-di crc-modules-6.6.15-mips32r2el-di crypto-dm-modules-6.6.15-mips32r2el-di crypto-modules-6.6.15-mips32r2el-di event-modules-6.6.15-mips32r2el-di ext4-modules-6.6.15-mips32r2el-di f2fs-modules-6.6.15-mips32r2el-di fat-modules-6.6.15-mips32r2el-di fb-modules-6.6.15-mips32r2el-di firewire-core-modules-6.6.15-mips32r2el-di input-modules-6.6.15-mips32r2el-di isofs-modules-6.6.15-mips32r2el-di jfs-modules-6.6.15-mips32r2el-di kernel-image-6.6.15-mips32r2el-di loop-modules-6.6.15-mips32r2el-di md-modules-6.6.15-mips32r2el-di minix-modules-6.6.15-mips32r2el-di mmc-core-modules-6.6.15-mips32r2el-di mmc-modules-6.6.15-mips32r2el-di mouse-modules-6.6.15-mips32r2el-di multipath-modules-6.6.15-mips32r2el-di nbd-modules-6.6.15-mips32r2el-di nfs-modules-6.6.15-mips32r2el-di nic-modules-6.6.15-mips32r2el-di nic-shared-modules-6.6.15-mips32r2el-di nic-usb-modules-6.6.15-mips32r2el-di nic-wireless-modules-6.6.15-mips32r2el-di pata-modules-6.6.15-mips32r2el-di ppp-modules-6.6.15-mips32r2el-di sata-modules-6.6.15-mips32r2el-di scsi-core-modules-6.6.15-mips32r2el-di scsi-modules-6.6.15-mips32r2el-di scsi-nic-modules-6.6.15-mips32r2el-di sound-modules-6.6.15-mips32r2el-di speakup-modules-6.6.15-mips32r2el-di squashfs-modules-6.6.15-mips32r2el-di udf-modules-6.6.15-mips32r2el-di usb-modules-6.6.15-mips32r2el-di usb-serial-modules-6.6.15-mips32r2el-di usb-storage-modules-6.6.15-mips32r2el-di xfs-modules-6.6.15-mips32r2el-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-mips32r2el-di -pata-modules-6.6.15-mips32r2el-di -pbtrfs-modules-6.6.15-mips32r2el-di -pcdrom-core-modules-6.6.15-mips32r2el-di -pcrc-modules-6.6.15-mips32r2el-di -pcrypto-dm-modules-6.6.15-mips32r2el-di -pcrypto-modules-6.6.15-mips32r2el-di -pevent-modules-6.6.15-mips32r2el-di -pext4-modules-6.6.15-mips32r2el-di -pf2fs-modules-6.6.15-mips32r2el-di -pfat-modules-6.6.15-mips32r2el-di -pfb-modules-6.6.15-mips32r2el-di -pfirewire-core-modules-6.6.15-mips32r2el-di -pinput-modules-6.6.15-mips32r2el-di -pisofs-modules-6.6.15-mips32r2el-di -pjfs-modules-6.6.15-mips32r2el-di -pkernel-image-6.6.15-mips32r2el-di -ploop-modules-6.6.15-mips32r2el-di -pmd-modules-6.6.15-mips32r2el-di -pminix-modules-6.6.15-mips32r2el-di -pmmc-core-modules-6.6.15-mips32r2el-di -pmmc-modules-6.6.15-mips32r2el-di -pmouse-modules-6.6.15-mips32r2el-di -pmultipath-modules-6.6.15-mips32r2el-di -pnbd-modules-6.6.15-mips32r2el-di -pnfs-modules-6.6.15-mips32r2el-di -pnic-modules-6.6.15-mips32r2el-di -pnic-shared-modules-6.6.15-mips32r2el-di -pnic-usb-modules-6.6.15-mips32r2el-di -pnic-wireless-modules-6.6.15-mips32r2el-di -ppata-modules-6.6.15-mips32r2el-di -pppp-modules-6.6.15-mips32r2el-di -psata-modules-6.6.15-mips32r2el-di -pscsi-core-modules-6.6.15-mips32r2el-di -pscsi-modules-6.6.15-mips32r2el-di -pscsi-nic-modules-6.6.15-mips32r2el-di -psound-modules-6.6.15-mips32r2el-di -pspeakup-modules-6.6.15-mips32r2el-di -psquashfs-modules-6.6.15-mips32r2el-di -pudf-modules-6.6.15-mips32r2el-di -pusb-modules-6.6.15-mips32r2el-di -pusb-serial-modules-6.6.15-mips32r2el-di -pusb-storage-modules-6.6.15-mips32r2el-di -pxfs-modules-6.6.15-mips32r2el-di' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-mips32r2el-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-mips32r2el-di ata-modules-6.7.7-mips32r2el-di btrfs-modules-6.7.7-mips32r2el-di cdrom-core-modules-6.7.7-mips32r2el-di crc-modules-6.7.7-mips32r2el-di crypto-dm-modules-6.7.7-mips32r2el-di crypto-modules-6.7.7-mips32r2el-di event-modules-6.7.7-mips32r2el-di ext4-modules-6.7.7-mips32r2el-di f2fs-modules-6.7.7-mips32r2el-di fat-modules-6.7.7-mips32r2el-di fb-modules-6.7.7-mips32r2el-di firewire-core-modules-6.7.7-mips32r2el-di input-modules-6.7.7-mips32r2el-di isofs-modules-6.7.7-mips32r2el-di jfs-modules-6.7.7-mips32r2el-di kernel-image-6.7.7-mips32r2el-di loop-modules-6.7.7-mips32r2el-di md-modules-6.7.7-mips32r2el-di minix-modules-6.7.7-mips32r2el-di mmc-core-modules-6.7.7-mips32r2el-di mmc-modules-6.7.7-mips32r2el-di mouse-modules-6.7.7-mips32r2el-di multipath-modules-6.7.7-mips32r2el-di nbd-modules-6.7.7-mips32r2el-di nfs-modules-6.7.7-mips32r2el-di nic-modules-6.7.7-mips32r2el-di nic-shared-modules-6.7.7-mips32r2el-di nic-usb-modules-6.7.7-mips32r2el-di nic-wireless-modules-6.7.7-mips32r2el-di pata-modules-6.7.7-mips32r2el-di ppp-modules-6.7.7-mips32r2el-di sata-modules-6.7.7-mips32r2el-di scsi-core-modules-6.7.7-mips32r2el-di scsi-modules-6.7.7-mips32r2el-di scsi-nic-modules-6.7.7-mips32r2el-di sound-modules-6.7.7-mips32r2el-di speakup-modules-6.7.7-mips32r2el-di squashfs-modules-6.7.7-mips32r2el-di udf-modules-6.7.7-mips32r2el-di usb-modules-6.7.7-mips32r2el-di usb-serial-modules-6.7.7-mips32r2el-di usb-storage-modules-6.7.7-mips32r2el-di xfs-modules-6.7.7-mips32r2el-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-mips32r2el-di -pata-modules-6.7.7-mips32r2el-di -pbtrfs-modules-6.7.7-mips32r2el-di -pcdrom-core-modules-6.7.7-mips32r2el-di -pcrc-modules-6.7.7-mips32r2el-di -pcrypto-dm-modules-6.7.7-mips32r2el-di -pcrypto-modules-6.7.7-mips32r2el-di -pevent-modules-6.7.7-mips32r2el-di -pext4-modules-6.7.7-mips32r2el-di -pf2fs-modules-6.7.7-mips32r2el-di -pfat-modules-6.7.7-mips32r2el-di -pfb-modules-6.7.7-mips32r2el-di -pfirewire-core-modules-6.7.7-mips32r2el-di -pinput-modules-6.7.7-mips32r2el-di -pisofs-modules-6.7.7-mips32r2el-di -pjfs-modules-6.7.7-mips32r2el-di -pkernel-image-6.7.7-mips32r2el-di -ploop-modules-6.7.7-mips32r2el-di -pmd-modules-6.7.7-mips32r2el-di -pminix-modules-6.7.7-mips32r2el-di -pmmc-core-modules-6.7.7-mips32r2el-di -pmmc-modules-6.7.7-mips32r2el-di -pmouse-modules-6.7.7-mips32r2el-di -pmultipath-modules-6.7.7-mips32r2el-di -pnbd-modules-6.7.7-mips32r2el-di -pnfs-modules-6.7.7-mips32r2el-di -pnic-modules-6.7.7-mips32r2el-di -pnic-shared-modules-6.7.7-mips32r2el-di -pnic-usb-modules-6.7.7-mips32r2el-di -pnic-wireless-modules-6.7.7-mips32r2el-di -ppata-modules-6.7.7-mips32r2el-di -pppp-modules-6.7.7-mips32r2el-di -psata-modules-6.7.7-mips32r2el-di -pscsi-core-modules-6.7.7-mips32r2el-di -pscsi-modules-6.7.7-mips32r2el-di -pscsi-nic-modules-6.7.7-mips32r2el-di -psound-modules-6.7.7-mips32r2el-di -pspeakup-modules-6.7.7-mips32r2el-di -psquashfs-modules-6.7.7-mips32r2el-di -pudf-modules-6.7.7-mips32r2el-di -pusb-modules-6.7.7-mips32r2el-di -pusb-serial-modules-6.7.7-mips32r2el-di -pusb-storage-modules-6.7.7-mips32r2el-di -pxfs-modules-6.7.7-mips32r2el-di' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-mips32r2el-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mipsel_none_mips32r2el_meta: - $(call if_package, linux-image-mips32r2el, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips32r2el' DH_OPTIONS='-plinux-image-mips32r2el' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-mips32r2el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' PACKAGE_NAME='linux-image-mips32r2el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-mips32r2el, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-mips32r2el' DH_OPTIONS='-plinux-headers-mips32r2el' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-mips32r2el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' PACKAGE_NAME='linux-headers-mips32r2el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-mips32r2el-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips32r2el-dbg' DH_OPTIONS='-plinux-image-mips32r2el-dbg' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-mips32r2el-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' PACKAGE_NAME='linux-image-mips32r2el-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-mips32r2el, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips32r2el' DH_OPTIONS='-plinux-image-mips32r2el' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-mips32r2el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' PACKAGE_NAME='linux-image-mips32r2el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-mips32r2el, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-mips32r2el' DH_OPTIONS='-plinux-headers-mips32r2el' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-mips32r2el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' PACKAGE_NAME='linux-headers-mips32r2el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-mips32r2el-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips32r2el-dbg' DH_OPTIONS='-plinux-image-mips32r2el-dbg' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-mips32r2el-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' PACKAGE_NAME='linux-image-mips32r2el-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mipsel_none_octeon:binary-arch_mipsel_none_octeon_headers binary-arch_mipsel_none_octeon_image binary-arch_mipsel_none_octeon_image-dbg binary-arch_mipsel_none_octeon_installer binary-arch_mipsel_none_octeon_meta binary-arch_mipsel_none_octeon_headers: - $(call if_package, linux-headers-6.6.15-octeon, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-octeon' DH_OPTIONS='-plinux-headers-6.6.15-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-6.6.15-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-octeon, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-octeon' DH_OPTIONS='-plinux-headers-6.7.7-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-6.7.7-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mipsel_none_octeon_image: - $(call if_package, linux-image-6.6.15-octeon, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-octeon' DH_OPTIONS='-plinux-image-6.6.15-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.6.15-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-octeon, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-octeon' DH_OPTIONS='-plinux-image-6.7.7-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.7.7-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mipsel_none_octeon_image-dbg: - $(call if_package, linux-image-6.6.15-octeon-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-octeon-dbg' DH_OPTIONS='-plinux-image-6.6.15-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.6.15-octeon-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-octeon-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-octeon-dbg' DH_OPTIONS='-plinux-image-6.7.7-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.7.7-octeon-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mipsel_none_octeon_installer: - $(call if_package, affs-modules-6.6.15-octeon-di ata-modules-6.6.15-octeon-di btrfs-modules-6.6.15-octeon-di cdrom-core-modules-6.6.15-octeon-di crc-modules-6.6.15-octeon-di crypto-dm-modules-6.6.15-octeon-di crypto-modules-6.6.15-octeon-di event-modules-6.6.15-octeon-di ext4-modules-6.6.15-octeon-di f2fs-modules-6.6.15-octeon-di fat-modules-6.6.15-octeon-di fb-modules-6.6.15-octeon-di firewire-core-modules-6.6.15-octeon-di input-modules-6.6.15-octeon-di isofs-modules-6.6.15-octeon-di jfs-modules-6.6.15-octeon-di kernel-image-6.6.15-octeon-di loop-modules-6.6.15-octeon-di md-modules-6.6.15-octeon-di minix-modules-6.6.15-octeon-di mmc-core-modules-6.6.15-octeon-di mmc-modules-6.6.15-octeon-di mouse-modules-6.6.15-octeon-di multipath-modules-6.6.15-octeon-di nbd-modules-6.6.15-octeon-di nfs-modules-6.6.15-octeon-di nic-modules-6.6.15-octeon-di nic-shared-modules-6.6.15-octeon-di nic-usb-modules-6.6.15-octeon-di nic-wireless-modules-6.6.15-octeon-di pata-modules-6.6.15-octeon-di ppp-modules-6.6.15-octeon-di sata-modules-6.6.15-octeon-di scsi-core-modules-6.6.15-octeon-di scsi-modules-6.6.15-octeon-di scsi-nic-modules-6.6.15-octeon-di sound-modules-6.6.15-octeon-di speakup-modules-6.6.15-octeon-di squashfs-modules-6.6.15-octeon-di udf-modules-6.6.15-octeon-di usb-modules-6.6.15-octeon-di usb-serial-modules-6.6.15-octeon-di usb-storage-modules-6.6.15-octeon-di xfs-modules-6.6.15-octeon-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-octeon-di -pata-modules-6.6.15-octeon-di -pbtrfs-modules-6.6.15-octeon-di -pcdrom-core-modules-6.6.15-octeon-di -pcrc-modules-6.6.15-octeon-di -pcrypto-dm-modules-6.6.15-octeon-di -pcrypto-modules-6.6.15-octeon-di -pevent-modules-6.6.15-octeon-di -pext4-modules-6.6.15-octeon-di -pf2fs-modules-6.6.15-octeon-di -pfat-modules-6.6.15-octeon-di -pfb-modules-6.6.15-octeon-di -pfirewire-core-modules-6.6.15-octeon-di -pinput-modules-6.6.15-octeon-di -pisofs-modules-6.6.15-octeon-di -pjfs-modules-6.6.15-octeon-di -pkernel-image-6.6.15-octeon-di -ploop-modules-6.6.15-octeon-di -pmd-modules-6.6.15-octeon-di -pminix-modules-6.6.15-octeon-di -pmmc-core-modules-6.6.15-octeon-di -pmmc-modules-6.6.15-octeon-di -pmouse-modules-6.6.15-octeon-di -pmultipath-modules-6.6.15-octeon-di -pnbd-modules-6.6.15-octeon-di -pnfs-modules-6.6.15-octeon-di -pnic-modules-6.6.15-octeon-di -pnic-shared-modules-6.6.15-octeon-di -pnic-usb-modules-6.6.15-octeon-di -pnic-wireless-modules-6.6.15-octeon-di -ppata-modules-6.6.15-octeon-di -pppp-modules-6.6.15-octeon-di -psata-modules-6.6.15-octeon-di -pscsi-core-modules-6.6.15-octeon-di -pscsi-modules-6.6.15-octeon-di -pscsi-nic-modules-6.6.15-octeon-di -psound-modules-6.6.15-octeon-di -pspeakup-modules-6.6.15-octeon-di -psquashfs-modules-6.6.15-octeon-di -pudf-modules-6.6.15-octeon-di -pusb-modules-6.6.15-octeon-di -pusb-serial-modules-6.6.15-octeon-di -pusb-storage-modules-6.6.15-octeon-di -pxfs-modules-6.6.15-octeon-di' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-octeon-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-octeon-di ata-modules-6.7.7-octeon-di btrfs-modules-6.7.7-octeon-di cdrom-core-modules-6.7.7-octeon-di crc-modules-6.7.7-octeon-di crypto-dm-modules-6.7.7-octeon-di crypto-modules-6.7.7-octeon-di event-modules-6.7.7-octeon-di ext4-modules-6.7.7-octeon-di f2fs-modules-6.7.7-octeon-di fat-modules-6.7.7-octeon-di fb-modules-6.7.7-octeon-di firewire-core-modules-6.7.7-octeon-di input-modules-6.7.7-octeon-di isofs-modules-6.7.7-octeon-di jfs-modules-6.7.7-octeon-di kernel-image-6.7.7-octeon-di loop-modules-6.7.7-octeon-di md-modules-6.7.7-octeon-di minix-modules-6.7.7-octeon-di mmc-core-modules-6.7.7-octeon-di mmc-modules-6.7.7-octeon-di mouse-modules-6.7.7-octeon-di multipath-modules-6.7.7-octeon-di nbd-modules-6.7.7-octeon-di nfs-modules-6.7.7-octeon-di nic-modules-6.7.7-octeon-di nic-shared-modules-6.7.7-octeon-di nic-usb-modules-6.7.7-octeon-di nic-wireless-modules-6.7.7-octeon-di pata-modules-6.7.7-octeon-di ppp-modules-6.7.7-octeon-di sata-modules-6.7.7-octeon-di scsi-core-modules-6.7.7-octeon-di scsi-modules-6.7.7-octeon-di scsi-nic-modules-6.7.7-octeon-di sound-modules-6.7.7-octeon-di speakup-modules-6.7.7-octeon-di squashfs-modules-6.7.7-octeon-di udf-modules-6.7.7-octeon-di usb-modules-6.7.7-octeon-di usb-serial-modules-6.7.7-octeon-di usb-storage-modules-6.7.7-octeon-di xfs-modules-6.7.7-octeon-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-octeon-di -pata-modules-6.7.7-octeon-di -pbtrfs-modules-6.7.7-octeon-di -pcdrom-core-modules-6.7.7-octeon-di -pcrc-modules-6.7.7-octeon-di -pcrypto-dm-modules-6.7.7-octeon-di -pcrypto-modules-6.7.7-octeon-di -pevent-modules-6.7.7-octeon-di -pext4-modules-6.7.7-octeon-di -pf2fs-modules-6.7.7-octeon-di -pfat-modules-6.7.7-octeon-di -pfb-modules-6.7.7-octeon-di -pfirewire-core-modules-6.7.7-octeon-di -pinput-modules-6.7.7-octeon-di -pisofs-modules-6.7.7-octeon-di -pjfs-modules-6.7.7-octeon-di -pkernel-image-6.7.7-octeon-di -ploop-modules-6.7.7-octeon-di -pmd-modules-6.7.7-octeon-di -pminix-modules-6.7.7-octeon-di -pmmc-core-modules-6.7.7-octeon-di -pmmc-modules-6.7.7-octeon-di -pmouse-modules-6.7.7-octeon-di -pmultipath-modules-6.7.7-octeon-di -pnbd-modules-6.7.7-octeon-di -pnfs-modules-6.7.7-octeon-di -pnic-modules-6.7.7-octeon-di -pnic-shared-modules-6.7.7-octeon-di -pnic-usb-modules-6.7.7-octeon-di -pnic-wireless-modules-6.7.7-octeon-di -ppata-modules-6.7.7-octeon-di -pppp-modules-6.7.7-octeon-di -psata-modules-6.7.7-octeon-di -pscsi-core-modules-6.7.7-octeon-di -pscsi-modules-6.7.7-octeon-di -pscsi-nic-modules-6.7.7-octeon-di -psound-modules-6.7.7-octeon-di -pspeakup-modules-6.7.7-octeon-di -psquashfs-modules-6.7.7-octeon-di -pudf-modules-6.7.7-octeon-di -pusb-modules-6.7.7-octeon-di -pusb-serial-modules-6.7.7-octeon-di -pusb-storage-modules-6.7.7-octeon-di -pxfs-modules-6.7.7-octeon-di' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-octeon-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mipsel_none_octeon_meta: - $(call if_package, linux-image-octeon, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon' DH_OPTIONS='-plinux-image-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-octeon, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-octeon' DH_OPTIONS='-plinux-headers-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-octeon-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon-dbg' DH_OPTIONS='-plinux-image-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-octeon-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-octeon, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon' DH_OPTIONS='-plinux-image-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-octeon, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-octeon' DH_OPTIONS='-plinux-headers-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-octeon-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon-dbg' DH_OPTIONS='-plinux-image-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-octeon-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mipsel_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.6.15' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='mips' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.7.7' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='mips' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mipsel_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.6.15' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='mips' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.7.7' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='mips' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_mipsel_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.6.15' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='mips' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.7.7' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='mips' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_powerpc:binary-arch_powerpc_bpftool binary-arch_powerpc_config binary-arch_powerpc_cpupower binary-arch_powerpc_hyperv-daemons binary-arch_powerpc_kbuild binary-arch_powerpc_none binary-arch_powerpc_perf binary-arch_powerpc_rtla binary-arch_powerpc_usbip binary-arch_powerpc_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.6.15' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='powerpc' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.7.7' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='powerpc' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_powerpc_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real binary_config ABINAME='6.6.15' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real binary_config ABINAME='6.7.7' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_powerpc_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.6.15' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='powerpc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.7.7' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='powerpc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_powerpc_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.6.15' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='powerpc' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.7.7' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='powerpc' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_powerpc_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.6.15' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.7.7' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_powerpc_none:binary-arch_powerpc_none_powerpc binary-arch_powerpc_none_powerpc-smp binary-arch_powerpc_none_powerpc64 binary-arch_powerpc_none_powerpc:binary-arch_powerpc_none_powerpc_headers binary-arch_powerpc_none_powerpc_image binary-arch_powerpc_none_powerpc_image-dbg binary-arch_powerpc_none_powerpc_installer binary-arch_powerpc_none_powerpc_meta binary-arch_powerpc_none_powerpc-smp:binary-arch_powerpc_none_powerpc-smp_headers binary-arch_powerpc_none_powerpc-smp_image binary-arch_powerpc_none_powerpc-smp_image-dbg binary-arch_powerpc_none_powerpc-smp_meta binary-arch_powerpc_none_powerpc-smp_headers: - $(call if_package, linux-headers-6.6.15-powerpc-smp, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-powerpc-smp' DH_OPTIONS='-plinux-headers-6.6.15-powerpc-smp' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc debian/config/powerpc/config.powerpc-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' PACKAGE_NAME='linux-headers-6.6.15-powerpc-smp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-powerpc-smp, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-powerpc-smp' DH_OPTIONS='-plinux-headers-6.7.7-powerpc-smp' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc debian/config/powerpc/config.powerpc-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' PACKAGE_NAME='linux-headers-6.7.7-powerpc-smp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_powerpc_none_powerpc-smp_image: - $(call if_package, linux-image-6.6.15-powerpc-smp, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-powerpc-smp' DH_OPTIONS='-plinux-image-6.6.15-powerpc-smp' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc debian/config/powerpc/config.powerpc-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' PACKAGE_NAME='linux-image-6.6.15-powerpc-smp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-powerpc-smp, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-powerpc-smp' DH_OPTIONS='-plinux-image-6.7.7-powerpc-smp' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc debian/config/powerpc/config.powerpc-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' PACKAGE_NAME='linux-image-6.7.7-powerpc-smp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_powerpc_none_powerpc-smp_image-dbg: - $(call if_package, linux-image-6.6.15-powerpc-smp-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-powerpc-smp-dbg' DH_OPTIONS='-plinux-image-6.6.15-powerpc-smp-dbg' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc debian/config/powerpc/config.powerpc-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' PACKAGE_NAME='linux-image-6.6.15-powerpc-smp-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-powerpc-smp-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-powerpc-smp-dbg' DH_OPTIONS='-plinux-image-6.7.7-powerpc-smp-dbg' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc debian/config/powerpc/config.powerpc-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' PACKAGE_NAME='linux-image-6.7.7-powerpc-smp-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_powerpc_none_powerpc-smp_meta: - $(call if_package, linux-image-powerpc-smp, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc-smp' DH_OPTIONS='-plinux-image-powerpc-smp' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-powerpc-smp' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc debian/config/powerpc/config.powerpc-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' PACKAGE_NAME='linux-image-powerpc-smp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-powerpc-smp, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-powerpc-smp' DH_OPTIONS='-plinux-headers-powerpc-smp' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-powerpc-smp' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc debian/config/powerpc/config.powerpc-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' PACKAGE_NAME='linux-headers-powerpc-smp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-powerpc-smp-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc-smp-dbg' DH_OPTIONS='-plinux-image-powerpc-smp-dbg' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-powerpc-smp-dbg' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc debian/config/powerpc/config.powerpc-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' PACKAGE_NAME='linux-image-powerpc-smp-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-powerpc-smp, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc-smp' DH_OPTIONS='-plinux-image-powerpc-smp' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-powerpc-smp' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc debian/config/powerpc/config.powerpc-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' PACKAGE_NAME='linux-image-powerpc-smp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-powerpc-smp, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-powerpc-smp' DH_OPTIONS='-plinux-headers-powerpc-smp' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-powerpc-smp' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc debian/config/powerpc/config.powerpc-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' PACKAGE_NAME='linux-headers-powerpc-smp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-powerpc-smp-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc-smp-dbg' DH_OPTIONS='-plinux-image-powerpc-smp-dbg' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-powerpc-smp-dbg' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc debian/config/powerpc/config.powerpc-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' PACKAGE_NAME='linux-image-powerpc-smp-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_powerpc_none_powerpc64:binary-arch_powerpc_none_powerpc64_headers binary-arch_powerpc_none_powerpc64_image binary-arch_powerpc_none_powerpc64_image-dbg binary-arch_powerpc_none_powerpc64_installer binary-arch_powerpc_none_powerpc64_meta binary-arch_powerpc_none_powerpc64_headers: - $(call if_package, linux-headers-6.6.15-powerpc64, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-powerpc64' DH_OPTIONS='-plinux-headers-6.6.15-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-headers-6.6.15-powerpc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-powerpc64, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-powerpc64' DH_OPTIONS='-plinux-headers-6.7.7-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-headers-6.7.7-powerpc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_powerpc_none_powerpc64_image: - $(call if_package, linux-image-6.6.15-powerpc64, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-powerpc64' DH_OPTIONS='-plinux-image-6.6.15-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-6.6.15-powerpc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-powerpc64, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-powerpc64' DH_OPTIONS='-plinux-image-6.7.7-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-6.7.7-powerpc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_powerpc_none_powerpc64_image-dbg: - $(call if_package, linux-image-6.6.15-powerpc64-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-powerpc64-dbg' DH_OPTIONS='-plinux-image-6.6.15-powerpc64-dbg' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-6.6.15-powerpc64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-powerpc64-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-powerpc64-dbg' DH_OPTIONS='-plinux-image-6.7.7-powerpc64-dbg' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-6.7.7-powerpc64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_powerpc_none_powerpc64_installer: - $(call if_package, affs-modules-6.6.15-powerpc64-di ata-modules-6.6.15-powerpc64-di btrfs-modules-6.6.15-powerpc64-di cdrom-core-modules-6.6.15-powerpc64-di crc-modules-6.6.15-powerpc64-di crypto-dm-modules-6.6.15-powerpc64-di crypto-modules-6.6.15-powerpc64-di event-modules-6.6.15-powerpc64-di ext4-modules-6.6.15-powerpc64-di f2fs-modules-6.6.15-powerpc64-di fancontrol-modules-6.6.15-powerpc64-di fat-modules-6.6.15-powerpc64-di fb-modules-6.6.15-powerpc64-di firewire-core-modules-6.6.15-powerpc64-di hfs-modules-6.6.15-powerpc64-di hypervisor-modules-6.6.15-powerpc64-di i2c-modules-6.6.15-powerpc64-di input-modules-6.6.15-powerpc64-di isofs-modules-6.6.15-powerpc64-di jfs-modules-6.6.15-powerpc64-di kernel-image-6.6.15-powerpc64-di loop-modules-6.6.15-powerpc64-di md-modules-6.6.15-powerpc64-di mmc-core-modules-6.6.15-powerpc64-di mouse-modules-6.6.15-powerpc64-di mtd-core-modules-6.6.15-powerpc64-di multipath-modules-6.6.15-powerpc64-di nbd-modules-6.6.15-powerpc64-di nic-modules-6.6.15-powerpc64-di nic-pcmcia-modules-6.6.15-powerpc64-di nic-shared-modules-6.6.15-powerpc64-di nic-usb-modules-6.6.15-powerpc64-di nic-wireless-modules-6.6.15-powerpc64-di pata-modules-6.6.15-powerpc64-di pcmcia-modules-6.6.15-powerpc64-di pcmcia-storage-modules-6.6.15-powerpc64-di ppp-modules-6.6.15-powerpc64-di sata-modules-6.6.15-powerpc64-di scsi-core-modules-6.6.15-powerpc64-di scsi-modules-6.6.15-powerpc64-di scsi-nic-modules-6.6.15-powerpc64-di serial-modules-6.6.15-powerpc64-di squashfs-modules-6.6.15-powerpc64-di udf-modules-6.6.15-powerpc64-di uinput-modules-6.6.15-powerpc64-di usb-modules-6.6.15-powerpc64-di usb-serial-modules-6.6.15-powerpc64-di usb-storage-modules-6.6.15-powerpc64-di xfs-modules-6.6.15-powerpc64-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-powerpc64-di -pata-modules-6.6.15-powerpc64-di -pbtrfs-modules-6.6.15-powerpc64-di -pcdrom-core-modules-6.6.15-powerpc64-di -pcrc-modules-6.6.15-powerpc64-di -pcrypto-dm-modules-6.6.15-powerpc64-di -pcrypto-modules-6.6.15-powerpc64-di -pevent-modules-6.6.15-powerpc64-di -pext4-modules-6.6.15-powerpc64-di -pf2fs-modules-6.6.15-powerpc64-di -pfancontrol-modules-6.6.15-powerpc64-di -pfat-modules-6.6.15-powerpc64-di -pfb-modules-6.6.15-powerpc64-di -pfirewire-core-modules-6.6.15-powerpc64-di -phfs-modules-6.6.15-powerpc64-di -phypervisor-modules-6.6.15-powerpc64-di -pi2c-modules-6.6.15-powerpc64-di -pinput-modules-6.6.15-powerpc64-di -pisofs-modules-6.6.15-powerpc64-di -pjfs-modules-6.6.15-powerpc64-di -pkernel-image-6.6.15-powerpc64-di -ploop-modules-6.6.15-powerpc64-di -pmd-modules-6.6.15-powerpc64-di -pmmc-core-modules-6.6.15-powerpc64-di -pmouse-modules-6.6.15-powerpc64-di -pmtd-core-modules-6.6.15-powerpc64-di -pmultipath-modules-6.6.15-powerpc64-di -pnbd-modules-6.6.15-powerpc64-di -pnic-modules-6.6.15-powerpc64-di -pnic-pcmcia-modules-6.6.15-powerpc64-di -pnic-shared-modules-6.6.15-powerpc64-di -pnic-usb-modules-6.6.15-powerpc64-di -pnic-wireless-modules-6.6.15-powerpc64-di -ppata-modules-6.6.15-powerpc64-di -ppcmcia-modules-6.6.15-powerpc64-di -ppcmcia-storage-modules-6.6.15-powerpc64-di -pppp-modules-6.6.15-powerpc64-di -psata-modules-6.6.15-powerpc64-di -pscsi-core-modules-6.6.15-powerpc64-di -pscsi-modules-6.6.15-powerpc64-di -pscsi-nic-modules-6.6.15-powerpc64-di -pserial-modules-6.6.15-powerpc64-di -psquashfs-modules-6.6.15-powerpc64-di -pudf-modules-6.6.15-powerpc64-di -puinput-modules-6.6.15-powerpc64-di -pusb-modules-6.6.15-powerpc64-di -pusb-serial-modules-6.6.15-powerpc64-di -pusb-storage-modules-6.6.15-powerpc64-di -pxfs-modules-6.6.15-powerpc64-di' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-powerpc64-di' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-powerpc64-di ata-modules-6.7.7-powerpc64-di btrfs-modules-6.7.7-powerpc64-di cdrom-core-modules-6.7.7-powerpc64-di crc-modules-6.7.7-powerpc64-di crypto-dm-modules-6.7.7-powerpc64-di crypto-modules-6.7.7-powerpc64-di event-modules-6.7.7-powerpc64-di ext4-modules-6.7.7-powerpc64-di f2fs-modules-6.7.7-powerpc64-di fancontrol-modules-6.7.7-powerpc64-di fat-modules-6.7.7-powerpc64-di fb-modules-6.7.7-powerpc64-di firewire-core-modules-6.7.7-powerpc64-di hfs-modules-6.7.7-powerpc64-di hypervisor-modules-6.7.7-powerpc64-di i2c-modules-6.7.7-powerpc64-di input-modules-6.7.7-powerpc64-di isofs-modules-6.7.7-powerpc64-di jfs-modules-6.7.7-powerpc64-di kernel-image-6.7.7-powerpc64-di loop-modules-6.7.7-powerpc64-di md-modules-6.7.7-powerpc64-di mmc-core-modules-6.7.7-powerpc64-di mouse-modules-6.7.7-powerpc64-di mtd-core-modules-6.7.7-powerpc64-di multipath-modules-6.7.7-powerpc64-di nbd-modules-6.7.7-powerpc64-di nic-modules-6.7.7-powerpc64-di nic-pcmcia-modules-6.7.7-powerpc64-di nic-shared-modules-6.7.7-powerpc64-di nic-usb-modules-6.7.7-powerpc64-di nic-wireless-modules-6.7.7-powerpc64-di pata-modules-6.7.7-powerpc64-di pcmcia-modules-6.7.7-powerpc64-di pcmcia-storage-modules-6.7.7-powerpc64-di ppp-modules-6.7.7-powerpc64-di sata-modules-6.7.7-powerpc64-di scsi-core-modules-6.7.7-powerpc64-di scsi-modules-6.7.7-powerpc64-di scsi-nic-modules-6.7.7-powerpc64-di serial-modules-6.7.7-powerpc64-di squashfs-modules-6.7.7-powerpc64-di udf-modules-6.7.7-powerpc64-di uinput-modules-6.7.7-powerpc64-di usb-modules-6.7.7-powerpc64-di usb-serial-modules-6.7.7-powerpc64-di usb-storage-modules-6.7.7-powerpc64-di xfs-modules-6.7.7-powerpc64-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-powerpc64-di -pata-modules-6.7.7-powerpc64-di -pbtrfs-modules-6.7.7-powerpc64-di -pcdrom-core-modules-6.7.7-powerpc64-di -pcrc-modules-6.7.7-powerpc64-di -pcrypto-dm-modules-6.7.7-powerpc64-di -pcrypto-modules-6.7.7-powerpc64-di -pevent-modules-6.7.7-powerpc64-di -pext4-modules-6.7.7-powerpc64-di -pf2fs-modules-6.7.7-powerpc64-di -pfancontrol-modules-6.7.7-powerpc64-di -pfat-modules-6.7.7-powerpc64-di -pfb-modules-6.7.7-powerpc64-di -pfirewire-core-modules-6.7.7-powerpc64-di -phfs-modules-6.7.7-powerpc64-di -phypervisor-modules-6.7.7-powerpc64-di -pi2c-modules-6.7.7-powerpc64-di -pinput-modules-6.7.7-powerpc64-di -pisofs-modules-6.7.7-powerpc64-di -pjfs-modules-6.7.7-powerpc64-di -pkernel-image-6.7.7-powerpc64-di -ploop-modules-6.7.7-powerpc64-di -pmd-modules-6.7.7-powerpc64-di -pmmc-core-modules-6.7.7-powerpc64-di -pmouse-modules-6.7.7-powerpc64-di -pmtd-core-modules-6.7.7-powerpc64-di -pmultipath-modules-6.7.7-powerpc64-di -pnbd-modules-6.7.7-powerpc64-di -pnic-modules-6.7.7-powerpc64-di -pnic-pcmcia-modules-6.7.7-powerpc64-di -pnic-shared-modules-6.7.7-powerpc64-di -pnic-usb-modules-6.7.7-powerpc64-di -pnic-wireless-modules-6.7.7-powerpc64-di -ppata-modules-6.7.7-powerpc64-di -ppcmcia-modules-6.7.7-powerpc64-di -ppcmcia-storage-modules-6.7.7-powerpc64-di -pppp-modules-6.7.7-powerpc64-di -psata-modules-6.7.7-powerpc64-di -pscsi-core-modules-6.7.7-powerpc64-di -pscsi-modules-6.7.7-powerpc64-di -pscsi-nic-modules-6.7.7-powerpc64-di -pserial-modules-6.7.7-powerpc64-di -psquashfs-modules-6.7.7-powerpc64-di -pudf-modules-6.7.7-powerpc64-di -puinput-modules-6.7.7-powerpc64-di -pusb-modules-6.7.7-powerpc64-di -pusb-serial-modules-6.7.7-powerpc64-di -pusb-storage-modules-6.7.7-powerpc64-di -pxfs-modules-6.7.7-powerpc64-di' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-powerpc64-di' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_powerpc_none_powerpc64_meta: - $(call if_package, linux-image-powerpc64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc64' DH_OPTIONS='-plinux-image-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-powerpc64' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-powerpc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-powerpc64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-powerpc64' DH_OPTIONS='-plinux-headers-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-powerpc64' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-headers-powerpc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-powerpc64-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc64-dbg' DH_OPTIONS='-plinux-image-powerpc64-dbg' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-powerpc64-dbg' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-powerpc64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-powerpc64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc64' DH_OPTIONS='-plinux-image-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-powerpc64' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-powerpc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-powerpc64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-powerpc64' DH_OPTIONS='-plinux-headers-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-powerpc64' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-headers-powerpc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-powerpc64-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc64-dbg' DH_OPTIONS='-plinux-image-powerpc64-dbg' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-powerpc64-dbg' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-powerpc64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_powerpc_none_powerpc_headers: - $(call if_package, linux-headers-6.6.15-powerpc, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-powerpc' DH_OPTIONS='-plinux-headers-6.6.15-powerpc' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' PACKAGE_NAME='linux-headers-6.6.15-powerpc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-powerpc, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-powerpc' DH_OPTIONS='-plinux-headers-6.7.7-powerpc' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' PACKAGE_NAME='linux-headers-6.7.7-powerpc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_powerpc_none_powerpc_image: - $(call if_package, linux-image-6.6.15-powerpc, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-powerpc' DH_OPTIONS='-plinux-image-6.6.15-powerpc' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' PACKAGE_NAME='linux-image-6.6.15-powerpc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-powerpc, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-powerpc' DH_OPTIONS='-plinux-image-6.7.7-powerpc' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' PACKAGE_NAME='linux-image-6.7.7-powerpc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_powerpc_none_powerpc_image-dbg: - $(call if_package, linux-image-6.6.15-powerpc-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-powerpc-dbg' DH_OPTIONS='-plinux-image-6.6.15-powerpc-dbg' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' PACKAGE_NAME='linux-image-6.6.15-powerpc-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-powerpc-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-powerpc-dbg' DH_OPTIONS='-plinux-image-6.7.7-powerpc-dbg' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' PACKAGE_NAME='linux-image-6.7.7-powerpc-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_powerpc_none_powerpc_installer: - $(call if_package, affs-modules-6.6.15-powerpc-di ata-modules-6.6.15-powerpc-di btrfs-modules-6.6.15-powerpc-di cdrom-core-modules-6.6.15-powerpc-di crc-modules-6.6.15-powerpc-di crypto-dm-modules-6.6.15-powerpc-di crypto-modules-6.6.15-powerpc-di event-modules-6.6.15-powerpc-di ext4-modules-6.6.15-powerpc-di f2fs-modules-6.6.15-powerpc-di fat-modules-6.6.15-powerpc-di fb-modules-6.6.15-powerpc-di firewire-core-modules-6.6.15-powerpc-di hfs-modules-6.6.15-powerpc-di input-modules-6.6.15-powerpc-di isofs-modules-6.6.15-powerpc-di jfs-modules-6.6.15-powerpc-di kernel-image-6.6.15-powerpc-di loop-modules-6.6.15-powerpc-di md-modules-6.6.15-powerpc-di mmc-core-modules-6.6.15-powerpc-di mouse-modules-6.6.15-powerpc-di multipath-modules-6.6.15-powerpc-di nbd-modules-6.6.15-powerpc-di nic-modules-6.6.15-powerpc-di nic-pcmcia-modules-6.6.15-powerpc-di nic-shared-modules-6.6.15-powerpc-di nic-usb-modules-6.6.15-powerpc-di nic-wireless-modules-6.6.15-powerpc-di pata-modules-6.6.15-powerpc-di pcmcia-modules-6.6.15-powerpc-di pcmcia-storage-modules-6.6.15-powerpc-di ppp-modules-6.6.15-powerpc-di sata-modules-6.6.15-powerpc-di scsi-core-modules-6.6.15-powerpc-di scsi-modules-6.6.15-powerpc-di scsi-nic-modules-6.6.15-powerpc-di serial-modules-6.6.15-powerpc-di squashfs-modules-6.6.15-powerpc-di udf-modules-6.6.15-powerpc-di uinput-modules-6.6.15-powerpc-di usb-modules-6.6.15-powerpc-di usb-serial-modules-6.6.15-powerpc-di usb-storage-modules-6.6.15-powerpc-di xfs-modules-6.6.15-powerpc-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-powerpc-di -pata-modules-6.6.15-powerpc-di -pbtrfs-modules-6.6.15-powerpc-di -pcdrom-core-modules-6.6.15-powerpc-di -pcrc-modules-6.6.15-powerpc-di -pcrypto-dm-modules-6.6.15-powerpc-di -pcrypto-modules-6.6.15-powerpc-di -pevent-modules-6.6.15-powerpc-di -pext4-modules-6.6.15-powerpc-di -pf2fs-modules-6.6.15-powerpc-di -pfat-modules-6.6.15-powerpc-di -pfb-modules-6.6.15-powerpc-di -pfirewire-core-modules-6.6.15-powerpc-di -phfs-modules-6.6.15-powerpc-di -pinput-modules-6.6.15-powerpc-di -pisofs-modules-6.6.15-powerpc-di -pjfs-modules-6.6.15-powerpc-di -pkernel-image-6.6.15-powerpc-di -ploop-modules-6.6.15-powerpc-di -pmd-modules-6.6.15-powerpc-di -pmmc-core-modules-6.6.15-powerpc-di -pmouse-modules-6.6.15-powerpc-di -pmultipath-modules-6.6.15-powerpc-di -pnbd-modules-6.6.15-powerpc-di -pnic-modules-6.6.15-powerpc-di -pnic-pcmcia-modules-6.6.15-powerpc-di -pnic-shared-modules-6.6.15-powerpc-di -pnic-usb-modules-6.6.15-powerpc-di -pnic-wireless-modules-6.6.15-powerpc-di -ppata-modules-6.6.15-powerpc-di -ppcmcia-modules-6.6.15-powerpc-di -ppcmcia-storage-modules-6.6.15-powerpc-di -pppp-modules-6.6.15-powerpc-di -psata-modules-6.6.15-powerpc-di -pscsi-core-modules-6.6.15-powerpc-di -pscsi-modules-6.6.15-powerpc-di -pscsi-nic-modules-6.6.15-powerpc-di -pserial-modules-6.6.15-powerpc-di -psquashfs-modules-6.6.15-powerpc-di -pudf-modules-6.6.15-powerpc-di -puinput-modules-6.6.15-powerpc-di -pusb-modules-6.6.15-powerpc-di -pusb-serial-modules-6.6.15-powerpc-di -pusb-storage-modules-6.6.15-powerpc-di -pxfs-modules-6.6.15-powerpc-di' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-powerpc-di' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-powerpc-di ata-modules-6.7.7-powerpc-di btrfs-modules-6.7.7-powerpc-di cdrom-core-modules-6.7.7-powerpc-di crc-modules-6.7.7-powerpc-di crypto-dm-modules-6.7.7-powerpc-di crypto-modules-6.7.7-powerpc-di event-modules-6.7.7-powerpc-di ext4-modules-6.7.7-powerpc-di f2fs-modules-6.7.7-powerpc-di fat-modules-6.7.7-powerpc-di fb-modules-6.7.7-powerpc-di firewire-core-modules-6.7.7-powerpc-di hfs-modules-6.7.7-powerpc-di input-modules-6.7.7-powerpc-di isofs-modules-6.7.7-powerpc-di jfs-modules-6.7.7-powerpc-di kernel-image-6.7.7-powerpc-di loop-modules-6.7.7-powerpc-di md-modules-6.7.7-powerpc-di mmc-core-modules-6.7.7-powerpc-di mouse-modules-6.7.7-powerpc-di multipath-modules-6.7.7-powerpc-di nbd-modules-6.7.7-powerpc-di nic-modules-6.7.7-powerpc-di nic-pcmcia-modules-6.7.7-powerpc-di nic-shared-modules-6.7.7-powerpc-di nic-usb-modules-6.7.7-powerpc-di nic-wireless-modules-6.7.7-powerpc-di pata-modules-6.7.7-powerpc-di pcmcia-modules-6.7.7-powerpc-di pcmcia-storage-modules-6.7.7-powerpc-di ppp-modules-6.7.7-powerpc-di sata-modules-6.7.7-powerpc-di scsi-core-modules-6.7.7-powerpc-di scsi-modules-6.7.7-powerpc-di scsi-nic-modules-6.7.7-powerpc-di serial-modules-6.7.7-powerpc-di squashfs-modules-6.7.7-powerpc-di udf-modules-6.7.7-powerpc-di uinput-modules-6.7.7-powerpc-di usb-modules-6.7.7-powerpc-di usb-serial-modules-6.7.7-powerpc-di usb-storage-modules-6.7.7-powerpc-di xfs-modules-6.7.7-powerpc-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-powerpc-di -pata-modules-6.7.7-powerpc-di -pbtrfs-modules-6.7.7-powerpc-di -pcdrom-core-modules-6.7.7-powerpc-di -pcrc-modules-6.7.7-powerpc-di -pcrypto-dm-modules-6.7.7-powerpc-di -pcrypto-modules-6.7.7-powerpc-di -pevent-modules-6.7.7-powerpc-di -pext4-modules-6.7.7-powerpc-di -pf2fs-modules-6.7.7-powerpc-di -pfat-modules-6.7.7-powerpc-di -pfb-modules-6.7.7-powerpc-di -pfirewire-core-modules-6.7.7-powerpc-di -phfs-modules-6.7.7-powerpc-di -pinput-modules-6.7.7-powerpc-di -pisofs-modules-6.7.7-powerpc-di -pjfs-modules-6.7.7-powerpc-di -pkernel-image-6.7.7-powerpc-di -ploop-modules-6.7.7-powerpc-di -pmd-modules-6.7.7-powerpc-di -pmmc-core-modules-6.7.7-powerpc-di -pmouse-modules-6.7.7-powerpc-di -pmultipath-modules-6.7.7-powerpc-di -pnbd-modules-6.7.7-powerpc-di -pnic-modules-6.7.7-powerpc-di -pnic-pcmcia-modules-6.7.7-powerpc-di -pnic-shared-modules-6.7.7-powerpc-di -pnic-usb-modules-6.7.7-powerpc-di -pnic-wireless-modules-6.7.7-powerpc-di -ppata-modules-6.7.7-powerpc-di -ppcmcia-modules-6.7.7-powerpc-di -ppcmcia-storage-modules-6.7.7-powerpc-di -pppp-modules-6.7.7-powerpc-di -psata-modules-6.7.7-powerpc-di -pscsi-core-modules-6.7.7-powerpc-di -pscsi-modules-6.7.7-powerpc-di -pscsi-nic-modules-6.7.7-powerpc-di -pserial-modules-6.7.7-powerpc-di -psquashfs-modules-6.7.7-powerpc-di -pudf-modules-6.7.7-powerpc-di -puinput-modules-6.7.7-powerpc-di -pusb-modules-6.7.7-powerpc-di -pusb-serial-modules-6.7.7-powerpc-di -pusb-storage-modules-6.7.7-powerpc-di -pxfs-modules-6.7.7-powerpc-di' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-powerpc-di' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_powerpc_none_powerpc_meta: - $(call if_package, linux-image-powerpc, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc' DH_OPTIONS='-plinux-image-powerpc' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-powerpc' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' PACKAGE_NAME='linux-image-powerpc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-powerpc, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-powerpc' DH_OPTIONS='-plinux-headers-powerpc' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-powerpc' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' PACKAGE_NAME='linux-headers-powerpc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-powerpc-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc-dbg' DH_OPTIONS='-plinux-image-powerpc-dbg' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-powerpc-dbg' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' PACKAGE_NAME='linux-image-powerpc-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-powerpc, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc' DH_OPTIONS='-plinux-image-powerpc' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-powerpc' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' PACKAGE_NAME='linux-image-powerpc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-powerpc, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-powerpc' DH_OPTIONS='-plinux-headers-powerpc' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-powerpc' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' PACKAGE_NAME='linux-headers-powerpc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-powerpc-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc-dbg' DH_OPTIONS='-plinux-image-powerpc-dbg' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-powerpc-dbg' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' PACKAGE_NAME='linux-image-powerpc-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_powerpc_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.6.15' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.7.7' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_powerpc_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.6.15' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='powerpc' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.7.7' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='powerpc' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_powerpc_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.6.15' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='powerpc' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.7.7' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='powerpc' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_ppc64:binary-arch_ppc64_bpftool binary-arch_ppc64_config binary-arch_ppc64_cpupower binary-arch_ppc64_hyperv-daemons binary-arch_ppc64_kbuild binary-arch_ppc64_none binary-arch_ppc64_perf binary-arch_ppc64_rtla binary-arch_ppc64_usbip binary-arch_ppc64_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.6.15' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='powerpc' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.7.7' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='powerpc' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_ppc64_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real binary_config ABINAME='6.6.15' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real binary_config ABINAME='6.7.7' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_ppc64_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.6.15' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='powerpc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.7.7' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='powerpc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_ppc64_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.6.15' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='powerpc' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.7.7' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='powerpc' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_ppc64_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.6.15' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.7.7' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_ppc64_none:binary-arch_ppc64_none_powerpc64 binary-arch_ppc64_none_powerpc64:binary-arch_ppc64_none_powerpc64_headers binary-arch_ppc64_none_powerpc64_image binary-arch_ppc64_none_powerpc64_image-dbg binary-arch_ppc64_none_powerpc64_installer binary-arch_ppc64_none_powerpc64_meta binary-arch_ppc64_none_powerpc64_headers: - $(call if_package, linux-headers-6.6.15-powerpc64, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-powerpc64' DH_OPTIONS='-plinux-headers-6.6.15-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-headers-6.6.15-powerpc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-powerpc64, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-powerpc64' DH_OPTIONS='-plinux-headers-6.7.7-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-headers-6.7.7-powerpc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_ppc64_none_powerpc64_image: - $(call if_package, linux-image-6.6.15-powerpc64, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-powerpc64' DH_OPTIONS='-plinux-image-6.6.15-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-6.6.15-powerpc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-powerpc64, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-powerpc64' DH_OPTIONS='-plinux-image-6.7.7-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-6.7.7-powerpc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_ppc64_none_powerpc64_image-dbg: - $(call if_package, linux-image-6.6.15-powerpc64-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-powerpc64-dbg' DH_OPTIONS='-plinux-image-6.6.15-powerpc64-dbg' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-6.6.15-powerpc64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-powerpc64-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-powerpc64-dbg' DH_OPTIONS='-plinux-image-6.7.7-powerpc64-dbg' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-6.7.7-powerpc64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_ppc64_none_powerpc64_installer: - $(call if_package, affs-modules-6.6.15-powerpc64-di ata-modules-6.6.15-powerpc64-di btrfs-modules-6.6.15-powerpc64-di cdrom-core-modules-6.6.15-powerpc64-di crc-modules-6.6.15-powerpc64-di crypto-dm-modules-6.6.15-powerpc64-di crypto-modules-6.6.15-powerpc64-di event-modules-6.6.15-powerpc64-di ext4-modules-6.6.15-powerpc64-di f2fs-modules-6.6.15-powerpc64-di fancontrol-modules-6.6.15-powerpc64-di fat-modules-6.6.15-powerpc64-di fb-modules-6.6.15-powerpc64-di firewire-core-modules-6.6.15-powerpc64-di hfs-modules-6.6.15-powerpc64-di hypervisor-modules-6.6.15-powerpc64-di i2c-modules-6.6.15-powerpc64-di input-modules-6.6.15-powerpc64-di isofs-modules-6.6.15-powerpc64-di jfs-modules-6.6.15-powerpc64-di kernel-image-6.6.15-powerpc64-di loop-modules-6.6.15-powerpc64-di md-modules-6.6.15-powerpc64-di mmc-core-modules-6.6.15-powerpc64-di mouse-modules-6.6.15-powerpc64-di mtd-core-modules-6.6.15-powerpc64-di multipath-modules-6.6.15-powerpc64-di nbd-modules-6.6.15-powerpc64-di nic-modules-6.6.15-powerpc64-di nic-pcmcia-modules-6.6.15-powerpc64-di nic-shared-modules-6.6.15-powerpc64-di nic-usb-modules-6.6.15-powerpc64-di nic-wireless-modules-6.6.15-powerpc64-di pata-modules-6.6.15-powerpc64-di pcmcia-modules-6.6.15-powerpc64-di pcmcia-storage-modules-6.6.15-powerpc64-di ppp-modules-6.6.15-powerpc64-di sata-modules-6.6.15-powerpc64-di scsi-core-modules-6.6.15-powerpc64-di scsi-modules-6.6.15-powerpc64-di scsi-nic-modules-6.6.15-powerpc64-di serial-modules-6.6.15-powerpc64-di squashfs-modules-6.6.15-powerpc64-di udf-modules-6.6.15-powerpc64-di uinput-modules-6.6.15-powerpc64-di usb-modules-6.6.15-powerpc64-di usb-serial-modules-6.6.15-powerpc64-di usb-storage-modules-6.6.15-powerpc64-di xfs-modules-6.6.15-powerpc64-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.6.15' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-powerpc64-di -pata-modules-6.6.15-powerpc64-di -pbtrfs-modules-6.6.15-powerpc64-di -pcdrom-core-modules-6.6.15-powerpc64-di -pcrc-modules-6.6.15-powerpc64-di -pcrypto-dm-modules-6.6.15-powerpc64-di -pcrypto-modules-6.6.15-powerpc64-di -pevent-modules-6.6.15-powerpc64-di -pext4-modules-6.6.15-powerpc64-di -pf2fs-modules-6.6.15-powerpc64-di -pfancontrol-modules-6.6.15-powerpc64-di -pfat-modules-6.6.15-powerpc64-di -pfb-modules-6.6.15-powerpc64-di -pfirewire-core-modules-6.6.15-powerpc64-di -phfs-modules-6.6.15-powerpc64-di -phypervisor-modules-6.6.15-powerpc64-di -pi2c-modules-6.6.15-powerpc64-di -pinput-modules-6.6.15-powerpc64-di -pisofs-modules-6.6.15-powerpc64-di -pjfs-modules-6.6.15-powerpc64-di -pkernel-image-6.6.15-powerpc64-di -ploop-modules-6.6.15-powerpc64-di -pmd-modules-6.6.15-powerpc64-di -pmmc-core-modules-6.6.15-powerpc64-di -pmouse-modules-6.6.15-powerpc64-di -pmtd-core-modules-6.6.15-powerpc64-di -pmultipath-modules-6.6.15-powerpc64-di -pnbd-modules-6.6.15-powerpc64-di -pnic-modules-6.6.15-powerpc64-di -pnic-pcmcia-modules-6.6.15-powerpc64-di -pnic-shared-modules-6.6.15-powerpc64-di -pnic-usb-modules-6.6.15-powerpc64-di -pnic-wireless-modules-6.6.15-powerpc64-di -ppata-modules-6.6.15-powerpc64-di -ppcmcia-modules-6.6.15-powerpc64-di -ppcmcia-storage-modules-6.6.15-powerpc64-di -pppp-modules-6.6.15-powerpc64-di -psata-modules-6.6.15-powerpc64-di -pscsi-core-modules-6.6.15-powerpc64-di -pscsi-modules-6.6.15-powerpc64-di -pscsi-nic-modules-6.6.15-powerpc64-di -pserial-modules-6.6.15-powerpc64-di -psquashfs-modules-6.6.15-powerpc64-di -pudf-modules-6.6.15-powerpc64-di -puinput-modules-6.6.15-powerpc64-di -pusb-modules-6.6.15-powerpc64-di -pusb-serial-modules-6.6.15-powerpc64-di -pusb-storage-modules-6.6.15-powerpc64-di -pxfs-modules-6.6.15-powerpc64-di' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-powerpc64-di' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-powerpc64-di ata-modules-6.7.7-powerpc64-di btrfs-modules-6.7.7-powerpc64-di cdrom-core-modules-6.7.7-powerpc64-di crc-modules-6.7.7-powerpc64-di crypto-dm-modules-6.7.7-powerpc64-di crypto-modules-6.7.7-powerpc64-di event-modules-6.7.7-powerpc64-di ext4-modules-6.7.7-powerpc64-di f2fs-modules-6.7.7-powerpc64-di fancontrol-modules-6.7.7-powerpc64-di fat-modules-6.7.7-powerpc64-di fb-modules-6.7.7-powerpc64-di firewire-core-modules-6.7.7-powerpc64-di hfs-modules-6.7.7-powerpc64-di hypervisor-modules-6.7.7-powerpc64-di i2c-modules-6.7.7-powerpc64-di input-modules-6.7.7-powerpc64-di isofs-modules-6.7.7-powerpc64-di jfs-modules-6.7.7-powerpc64-di kernel-image-6.7.7-powerpc64-di loop-modules-6.7.7-powerpc64-di md-modules-6.7.7-powerpc64-di mmc-core-modules-6.7.7-powerpc64-di mouse-modules-6.7.7-powerpc64-di mtd-core-modules-6.7.7-powerpc64-di multipath-modules-6.7.7-powerpc64-di nbd-modules-6.7.7-powerpc64-di nic-modules-6.7.7-powerpc64-di nic-pcmcia-modules-6.7.7-powerpc64-di nic-shared-modules-6.7.7-powerpc64-di nic-usb-modules-6.7.7-powerpc64-di nic-wireless-modules-6.7.7-powerpc64-di pata-modules-6.7.7-powerpc64-di pcmcia-modules-6.7.7-powerpc64-di pcmcia-storage-modules-6.7.7-powerpc64-di ppp-modules-6.7.7-powerpc64-di sata-modules-6.7.7-powerpc64-di scsi-core-modules-6.7.7-powerpc64-di scsi-modules-6.7.7-powerpc64-di scsi-nic-modules-6.7.7-powerpc64-di serial-modules-6.7.7-powerpc64-di squashfs-modules-6.7.7-powerpc64-di udf-modules-6.7.7-powerpc64-di uinput-modules-6.7.7-powerpc64-di usb-modules-6.7.7-powerpc64-di usb-serial-modules-6.7.7-powerpc64-di usb-storage-modules-6.7.7-powerpc64-di xfs-modules-6.7.7-powerpc64-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.7.7' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-powerpc64-di -pata-modules-6.7.7-powerpc64-di -pbtrfs-modules-6.7.7-powerpc64-di -pcdrom-core-modules-6.7.7-powerpc64-di -pcrc-modules-6.7.7-powerpc64-di -pcrypto-dm-modules-6.7.7-powerpc64-di -pcrypto-modules-6.7.7-powerpc64-di -pevent-modules-6.7.7-powerpc64-di -pext4-modules-6.7.7-powerpc64-di -pf2fs-modules-6.7.7-powerpc64-di -pfancontrol-modules-6.7.7-powerpc64-di -pfat-modules-6.7.7-powerpc64-di -pfb-modules-6.7.7-powerpc64-di -pfirewire-core-modules-6.7.7-powerpc64-di -phfs-modules-6.7.7-powerpc64-di -phypervisor-modules-6.7.7-powerpc64-di -pi2c-modules-6.7.7-powerpc64-di -pinput-modules-6.7.7-powerpc64-di -pisofs-modules-6.7.7-powerpc64-di -pjfs-modules-6.7.7-powerpc64-di -pkernel-image-6.7.7-powerpc64-di -ploop-modules-6.7.7-powerpc64-di -pmd-modules-6.7.7-powerpc64-di -pmmc-core-modules-6.7.7-powerpc64-di -pmouse-modules-6.7.7-powerpc64-di -pmtd-core-modules-6.7.7-powerpc64-di -pmultipath-modules-6.7.7-powerpc64-di -pnbd-modules-6.7.7-powerpc64-di -pnic-modules-6.7.7-powerpc64-di -pnic-pcmcia-modules-6.7.7-powerpc64-di -pnic-shared-modules-6.7.7-powerpc64-di -pnic-usb-modules-6.7.7-powerpc64-di -pnic-wireless-modules-6.7.7-powerpc64-di -ppata-modules-6.7.7-powerpc64-di -ppcmcia-modules-6.7.7-powerpc64-di -ppcmcia-storage-modules-6.7.7-powerpc64-di -pppp-modules-6.7.7-powerpc64-di -psata-modules-6.7.7-powerpc64-di -pscsi-core-modules-6.7.7-powerpc64-di -pscsi-modules-6.7.7-powerpc64-di -pscsi-nic-modules-6.7.7-powerpc64-di -pserial-modules-6.7.7-powerpc64-di -psquashfs-modules-6.7.7-powerpc64-di -pudf-modules-6.7.7-powerpc64-di -puinput-modules-6.7.7-powerpc64-di -pusb-modules-6.7.7-powerpc64-di -pusb-serial-modules-6.7.7-powerpc64-di -pusb-storage-modules-6.7.7-powerpc64-di -pxfs-modules-6.7.7-powerpc64-di' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-powerpc64-di' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_ppc64_none_powerpc64_meta: - $(call if_package, linux-image-powerpc64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc64' DH_OPTIONS='-plinux-image-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-powerpc64' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-powerpc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-powerpc64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-powerpc64' DH_OPTIONS='-plinux-headers-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-powerpc64' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-headers-powerpc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-powerpc64-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc64-dbg' DH_OPTIONS='-plinux-image-powerpc64-dbg' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-powerpc64-dbg' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-powerpc64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-powerpc64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc64' DH_OPTIONS='-plinux-image-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-powerpc64' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-powerpc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-powerpc64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-powerpc64' DH_OPTIONS='-plinux-headers-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-powerpc64' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-headers-powerpc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-powerpc64-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc64-dbg' DH_OPTIONS='-plinux-image-powerpc64-dbg' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-powerpc64-dbg' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-powerpc64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_ppc64_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.6.15' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.7.7' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_ppc64_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.6.15' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='powerpc' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.7.7' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='powerpc' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_ppc64_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.6.15' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='powerpc' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.7.7' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='powerpc' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_ppc64el:binary-arch_ppc64el_bpftool binary-arch_ppc64el_config binary-arch_ppc64el_cpupower binary-arch_ppc64el_hyperv-daemons binary-arch_ppc64el_kbuild binary-arch_ppc64el_none binary-arch_ppc64el_perf binary-arch_ppc64el_rtla binary-arch_ppc64el_usbip binary-arch_ppc64el_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.6.15' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='powerpc' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.7.7' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='powerpc' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_ppc64el_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real binary_config ABINAME='6.6.15' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real binary_config ABINAME='6.7.7' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_ppc64el_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.6.15' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='powerpc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.7.7' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='powerpc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_ppc64el_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.6.15' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='powerpc' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.7.7' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='powerpc' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_ppc64el_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.6.15' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.7.7' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_ppc64el_none:binary-arch_ppc64el_none_powerpc64le binary-arch_ppc64el_none_powerpc64le:binary-arch_ppc64el_none_powerpc64le_headers binary-arch_ppc64el_none_powerpc64le_image binary-arch_ppc64el_none_powerpc64le_image-dbg binary-arch_ppc64el_none_powerpc64le_installer binary-arch_ppc64el_none_powerpc64le_meta binary-arch_ppc64el_none_powerpc64le_headers: - $(call if_package, linux-headers-6.6.15-powerpc64le, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-powerpc64le' DH_OPTIONS='-plinux-headers-6.6.15-powerpc64le' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' PACKAGE_NAME='linux-headers-6.6.15-powerpc64le' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-powerpc64le, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-powerpc64le' DH_OPTIONS='-plinux-headers-6.7.7-powerpc64le' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' PACKAGE_NAME='linux-headers-6.7.7-powerpc64le' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_ppc64el_none_powerpc64le_image: - $(call if_package, linux-image-6.6.15-powerpc64le, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-powerpc64le' DH_OPTIONS='-plinux-image-6.6.15-powerpc64le' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' PACKAGE_NAME='linux-image-6.6.15-powerpc64le' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-powerpc64le, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-powerpc64le' DH_OPTIONS='-plinux-image-6.7.7-powerpc64le' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' PACKAGE_NAME='linux-image-6.7.7-powerpc64le' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_ppc64el_none_powerpc64le_image-dbg: - $(call if_package, linux-image-6.6.15-powerpc64le-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-powerpc64le-dbg' DH_OPTIONS='-plinux-image-6.6.15-powerpc64le-dbg' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' PACKAGE_NAME='linux-image-6.6.15-powerpc64le-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-powerpc64le-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-powerpc64le-dbg' DH_OPTIONS='-plinux-image-6.7.7-powerpc64le-dbg' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' PACKAGE_NAME='linux-image-6.7.7-powerpc64le-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_ppc64el_none_powerpc64le_installer: - $(call if_package, ata-modules-6.6.15-powerpc64le-di btrfs-modules-6.6.15-powerpc64le-di cdrom-core-modules-6.6.15-powerpc64le-di crc-modules-6.6.15-powerpc64le-di crypto-dm-modules-6.6.15-powerpc64le-di crypto-modules-6.6.15-powerpc64le-di event-modules-6.6.15-powerpc64le-di ext4-modules-6.6.15-powerpc64le-di f2fs-modules-6.6.15-powerpc64le-di fancontrol-modules-6.6.15-powerpc64le-di fat-modules-6.6.15-powerpc64le-di fb-modules-6.6.15-powerpc64le-di firewire-core-modules-6.6.15-powerpc64le-di hypervisor-modules-6.6.15-powerpc64le-di i2c-modules-6.6.15-powerpc64le-di input-modules-6.6.15-powerpc64le-di isofs-modules-6.6.15-powerpc64le-di jfs-modules-6.6.15-powerpc64le-di kernel-image-6.6.15-powerpc64le-di loop-modules-6.6.15-powerpc64le-di md-modules-6.6.15-powerpc64le-di mouse-modules-6.6.15-powerpc64le-di mtd-core-modules-6.6.15-powerpc64le-di multipath-modules-6.6.15-powerpc64le-di nbd-modules-6.6.15-powerpc64le-di nic-modules-6.6.15-powerpc64le-di nic-shared-modules-6.6.15-powerpc64le-di nic-usb-modules-6.6.15-powerpc64le-di nic-wireless-modules-6.6.15-powerpc64le-di ppp-modules-6.6.15-powerpc64le-di sata-modules-6.6.15-powerpc64le-di scsi-core-modules-6.6.15-powerpc64le-di scsi-modules-6.6.15-powerpc64le-di scsi-nic-modules-6.6.15-powerpc64le-di serial-modules-6.6.15-powerpc64le-di squashfs-modules-6.6.15-powerpc64le-di udf-modules-6.6.15-powerpc64le-di uinput-modules-6.6.15-powerpc64le-di usb-modules-6.6.15-powerpc64le-di usb-serial-modules-6.6.15-powerpc64le-di usb-storage-modules-6.6.15-powerpc64le-di xfs-modules-6.6.15-powerpc64le-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.6.15' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.6.15-powerpc64le-di -pbtrfs-modules-6.6.15-powerpc64le-di -pcdrom-core-modules-6.6.15-powerpc64le-di -pcrc-modules-6.6.15-powerpc64le-di -pcrypto-dm-modules-6.6.15-powerpc64le-di -pcrypto-modules-6.6.15-powerpc64le-di -pevent-modules-6.6.15-powerpc64le-di -pext4-modules-6.6.15-powerpc64le-di -pf2fs-modules-6.6.15-powerpc64le-di -pfancontrol-modules-6.6.15-powerpc64le-di -pfat-modules-6.6.15-powerpc64le-di -pfb-modules-6.6.15-powerpc64le-di -pfirewire-core-modules-6.6.15-powerpc64le-di -phypervisor-modules-6.6.15-powerpc64le-di -pi2c-modules-6.6.15-powerpc64le-di -pinput-modules-6.6.15-powerpc64le-di -pisofs-modules-6.6.15-powerpc64le-di -pjfs-modules-6.6.15-powerpc64le-di -pkernel-image-6.6.15-powerpc64le-di -ploop-modules-6.6.15-powerpc64le-di -pmd-modules-6.6.15-powerpc64le-di -pmouse-modules-6.6.15-powerpc64le-di -pmtd-core-modules-6.6.15-powerpc64le-di -pmultipath-modules-6.6.15-powerpc64le-di -pnbd-modules-6.6.15-powerpc64le-di -pnic-modules-6.6.15-powerpc64le-di -pnic-shared-modules-6.6.15-powerpc64le-di -pnic-usb-modules-6.6.15-powerpc64le-di -pnic-wireless-modules-6.6.15-powerpc64le-di -pppp-modules-6.6.15-powerpc64le-di -psata-modules-6.6.15-powerpc64le-di -pscsi-core-modules-6.6.15-powerpc64le-di -pscsi-modules-6.6.15-powerpc64le-di -pscsi-nic-modules-6.6.15-powerpc64le-di -pserial-modules-6.6.15-powerpc64le-di -psquashfs-modules-6.6.15-powerpc64le-di -pudf-modules-6.6.15-powerpc64le-di -puinput-modules-6.6.15-powerpc64le-di -pusb-modules-6.6.15-powerpc64le-di -pusb-serial-modules-6.6.15-powerpc64le-di -pusb-storage-modules-6.6.15-powerpc64le-di -pxfs-modules-6.6.15-powerpc64le-di' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-powerpc64le-di' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, ata-modules-6.7.7-powerpc64le-di btrfs-modules-6.7.7-powerpc64le-di cdrom-core-modules-6.7.7-powerpc64le-di crc-modules-6.7.7-powerpc64le-di crypto-dm-modules-6.7.7-powerpc64le-di crypto-modules-6.7.7-powerpc64le-di event-modules-6.7.7-powerpc64le-di ext4-modules-6.7.7-powerpc64le-di f2fs-modules-6.7.7-powerpc64le-di fancontrol-modules-6.7.7-powerpc64le-di fat-modules-6.7.7-powerpc64le-di fb-modules-6.7.7-powerpc64le-di firewire-core-modules-6.7.7-powerpc64le-di hypervisor-modules-6.7.7-powerpc64le-di i2c-modules-6.7.7-powerpc64le-di input-modules-6.7.7-powerpc64le-di isofs-modules-6.7.7-powerpc64le-di jfs-modules-6.7.7-powerpc64le-di kernel-image-6.7.7-powerpc64le-di loop-modules-6.7.7-powerpc64le-di md-modules-6.7.7-powerpc64le-di mouse-modules-6.7.7-powerpc64le-di mtd-core-modules-6.7.7-powerpc64le-di multipath-modules-6.7.7-powerpc64le-di nbd-modules-6.7.7-powerpc64le-di nic-modules-6.7.7-powerpc64le-di nic-shared-modules-6.7.7-powerpc64le-di nic-usb-modules-6.7.7-powerpc64le-di nic-wireless-modules-6.7.7-powerpc64le-di ppp-modules-6.7.7-powerpc64le-di sata-modules-6.7.7-powerpc64le-di scsi-core-modules-6.7.7-powerpc64le-di scsi-modules-6.7.7-powerpc64le-di scsi-nic-modules-6.7.7-powerpc64le-di serial-modules-6.7.7-powerpc64le-di squashfs-modules-6.7.7-powerpc64le-di udf-modules-6.7.7-powerpc64le-di uinput-modules-6.7.7-powerpc64le-di usb-modules-6.7.7-powerpc64le-di usb-serial-modules-6.7.7-powerpc64le-di usb-storage-modules-6.7.7-powerpc64le-di xfs-modules-6.7.7-powerpc64le-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.7.7' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.7.7-powerpc64le-di -pbtrfs-modules-6.7.7-powerpc64le-di -pcdrom-core-modules-6.7.7-powerpc64le-di -pcrc-modules-6.7.7-powerpc64le-di -pcrypto-dm-modules-6.7.7-powerpc64le-di -pcrypto-modules-6.7.7-powerpc64le-di -pevent-modules-6.7.7-powerpc64le-di -pext4-modules-6.7.7-powerpc64le-di -pf2fs-modules-6.7.7-powerpc64le-di -pfancontrol-modules-6.7.7-powerpc64le-di -pfat-modules-6.7.7-powerpc64le-di -pfb-modules-6.7.7-powerpc64le-di -pfirewire-core-modules-6.7.7-powerpc64le-di -phypervisor-modules-6.7.7-powerpc64le-di -pi2c-modules-6.7.7-powerpc64le-di -pinput-modules-6.7.7-powerpc64le-di -pisofs-modules-6.7.7-powerpc64le-di -pjfs-modules-6.7.7-powerpc64le-di -pkernel-image-6.7.7-powerpc64le-di -ploop-modules-6.7.7-powerpc64le-di -pmd-modules-6.7.7-powerpc64le-di -pmouse-modules-6.7.7-powerpc64le-di -pmtd-core-modules-6.7.7-powerpc64le-di -pmultipath-modules-6.7.7-powerpc64le-di -pnbd-modules-6.7.7-powerpc64le-di -pnic-modules-6.7.7-powerpc64le-di -pnic-shared-modules-6.7.7-powerpc64le-di -pnic-usb-modules-6.7.7-powerpc64le-di -pnic-wireless-modules-6.7.7-powerpc64le-di -pppp-modules-6.7.7-powerpc64le-di -psata-modules-6.7.7-powerpc64le-di -pscsi-core-modules-6.7.7-powerpc64le-di -pscsi-modules-6.7.7-powerpc64le-di -pscsi-nic-modules-6.7.7-powerpc64le-di -pserial-modules-6.7.7-powerpc64le-di -psquashfs-modules-6.7.7-powerpc64le-di -pudf-modules-6.7.7-powerpc64le-di -puinput-modules-6.7.7-powerpc64le-di -pusb-modules-6.7.7-powerpc64le-di -pusb-serial-modules-6.7.7-powerpc64le-di -pusb-storage-modules-6.7.7-powerpc64le-di -pxfs-modules-6.7.7-powerpc64le-di' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-powerpc64le-di' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_ppc64el_none_powerpc64le_meta: - $(call if_package, linux-image-powerpc64le, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc64le' DH_OPTIONS='-plinux-image-powerpc64le' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-powerpc64le' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' PACKAGE_NAME='linux-image-powerpc64le' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-powerpc64le, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-powerpc64le' DH_OPTIONS='-plinux-headers-powerpc64le' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-powerpc64le' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' PACKAGE_NAME='linux-headers-powerpc64le' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-powerpc64le-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc64le-dbg' DH_OPTIONS='-plinux-image-powerpc64le-dbg' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-powerpc64le-dbg' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' PACKAGE_NAME='linux-image-powerpc64le-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-powerpc64le, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc64le' DH_OPTIONS='-plinux-image-powerpc64le' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-powerpc64le' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' PACKAGE_NAME='linux-image-powerpc64le' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-powerpc64le, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-powerpc64le' DH_OPTIONS='-plinux-headers-powerpc64le' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-powerpc64le' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' PACKAGE_NAME='linux-headers-powerpc64le' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-powerpc64le-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc64le-dbg' DH_OPTIONS='-plinux-image-powerpc64le-dbg' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-powerpc64le-dbg' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' PACKAGE_NAME='linux-image-powerpc64le-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_ppc64el_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.6.15' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.7.7' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_ppc64el_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.6.15' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='powerpc' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.7.7' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='powerpc' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_ppc64el_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.6.15' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='powerpc' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.7.7' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='powerpc' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_riscv64:binary-arch_riscv64_bpftool binary-arch_riscv64_config binary-arch_riscv64_cpupower binary-arch_riscv64_hyperv-daemons binary-arch_riscv64_kbuild binary-arch_riscv64_none binary-arch_riscv64_perf binary-arch_riscv64_rtla binary-arch_riscv64_usbip binary-arch_riscv64_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.6.15' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='riscv' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.7.7' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='riscv' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_riscv64_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real binary_config ABINAME='6.6.15' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='riscv' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real binary_config ABINAME='6.7.7' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='riscv' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_riscv64_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.6.15' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='riscv' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.7.7' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='riscv' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_riscv64_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.6.15' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='riscv' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.7.7' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='riscv' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_riscv64_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.6.15' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='riscv' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.7.7' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='riscv' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_riscv64_none:binary-arch_riscv64_none_riscv64 binary-arch_riscv64_none_riscv64:binary-arch_riscv64_none_riscv64_headers binary-arch_riscv64_none_riscv64_image binary-arch_riscv64_none_riscv64_image-dbg binary-arch_riscv64_none_riscv64_installer binary-arch_riscv64_none_riscv64_meta binary-arch_riscv64_none_riscv64_headers: - $(call if_package, linux-headers-6.6.15-riscv64, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-riscv64' DH_OPTIONS='-plinux-headers-6.6.15-riscv64' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' PACKAGE_NAME='linux-headers-6.6.15-riscv64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-riscv64, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-riscv64' DH_OPTIONS='-plinux-headers-6.7.7-riscv64' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' PACKAGE_NAME='linux-headers-6.7.7-riscv64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_riscv64_none_riscv64_image: - $(call if_package, linux-image-6.6.15-riscv64, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-riscv64' DH_OPTIONS='-plinux-image-6.6.15-riscv64' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' PACKAGE_NAME='linux-image-6.6.15-riscv64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-riscv64, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-riscv64' DH_OPTIONS='-plinux-image-6.7.7-riscv64' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' PACKAGE_NAME='linux-image-6.7.7-riscv64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_riscv64_none_riscv64_image-dbg: - $(call if_package, linux-image-6.6.15-riscv64-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-riscv64-dbg' DH_OPTIONS='-plinux-image-6.6.15-riscv64-dbg' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' PACKAGE_NAME='linux-image-6.6.15-riscv64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-riscv64-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-riscv64-dbg' DH_OPTIONS='-plinux-image-6.7.7-riscv64-dbg' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' PACKAGE_NAME='linux-image-6.7.7-riscv64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_riscv64_none_riscv64_installer: - $(call if_package, ata-modules-6.6.15-riscv64-di btrfs-modules-6.6.15-riscv64-di cdrom-core-modules-6.6.15-riscv64-di crc-modules-6.6.15-riscv64-di crypto-dm-modules-6.6.15-riscv64-di crypto-modules-6.6.15-riscv64-di event-modules-6.6.15-riscv64-di ext4-modules-6.6.15-riscv64-di f2fs-modules-6.6.15-riscv64-di fat-modules-6.6.15-riscv64-di fb-modules-6.6.15-riscv64-di i2c-modules-6.6.15-riscv64-di input-modules-6.6.15-riscv64-di isofs-modules-6.6.15-riscv64-di jfs-modules-6.6.15-riscv64-di kernel-image-6.6.15-riscv64-di loop-modules-6.6.15-riscv64-di md-modules-6.6.15-riscv64-di mmc-core-modules-6.6.15-riscv64-di mmc-modules-6.6.15-riscv64-di mtd-core-modules-6.6.15-riscv64-di mtd-modules-6.6.15-riscv64-di multipath-modules-6.6.15-riscv64-di nbd-modules-6.6.15-riscv64-di nic-modules-6.6.15-riscv64-di nic-shared-modules-6.6.15-riscv64-di nic-usb-modules-6.6.15-riscv64-di nic-wireless-modules-6.6.15-riscv64-di pata-modules-6.6.15-riscv64-di ppp-modules-6.6.15-riscv64-di sata-modules-6.6.15-riscv64-di scsi-core-modules-6.6.15-riscv64-di scsi-modules-6.6.15-riscv64-di scsi-nic-modules-6.6.15-riscv64-di squashfs-modules-6.6.15-riscv64-di udf-modules-6.6.15-riscv64-di usb-modules-6.6.15-riscv64-di usb-serial-modules-6.6.15-riscv64-di usb-storage-modules-6.6.15-riscv64-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.6.15' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.6.15-riscv64-di -pbtrfs-modules-6.6.15-riscv64-di -pcdrom-core-modules-6.6.15-riscv64-di -pcrc-modules-6.6.15-riscv64-di -pcrypto-dm-modules-6.6.15-riscv64-di -pcrypto-modules-6.6.15-riscv64-di -pevent-modules-6.6.15-riscv64-di -pext4-modules-6.6.15-riscv64-di -pf2fs-modules-6.6.15-riscv64-di -pfat-modules-6.6.15-riscv64-di -pfb-modules-6.6.15-riscv64-di -pi2c-modules-6.6.15-riscv64-di -pinput-modules-6.6.15-riscv64-di -pisofs-modules-6.6.15-riscv64-di -pjfs-modules-6.6.15-riscv64-di -pkernel-image-6.6.15-riscv64-di -ploop-modules-6.6.15-riscv64-di -pmd-modules-6.6.15-riscv64-di -pmmc-core-modules-6.6.15-riscv64-di -pmmc-modules-6.6.15-riscv64-di -pmtd-core-modules-6.6.15-riscv64-di -pmtd-modules-6.6.15-riscv64-di -pmultipath-modules-6.6.15-riscv64-di -pnbd-modules-6.6.15-riscv64-di -pnic-modules-6.6.15-riscv64-di -pnic-shared-modules-6.6.15-riscv64-di -pnic-usb-modules-6.6.15-riscv64-di -pnic-wireless-modules-6.6.15-riscv64-di -ppata-modules-6.6.15-riscv64-di -pppp-modules-6.6.15-riscv64-di -psata-modules-6.6.15-riscv64-di -pscsi-core-modules-6.6.15-riscv64-di -pscsi-modules-6.6.15-riscv64-di -pscsi-nic-modules-6.6.15-riscv64-di -psquashfs-modules-6.6.15-riscv64-di -pudf-modules-6.6.15-riscv64-di -pusb-modules-6.6.15-riscv64-di -pusb-serial-modules-6.6.15-riscv64-di -pusb-storage-modules-6.6.15-riscv64-di' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-riscv64-di' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, ata-modules-6.7.7-riscv64-di btrfs-modules-6.7.7-riscv64-di cdrom-core-modules-6.7.7-riscv64-di crc-modules-6.7.7-riscv64-di crypto-dm-modules-6.7.7-riscv64-di crypto-modules-6.7.7-riscv64-di efi-modules-6.7.7-riscv64-di event-modules-6.7.7-riscv64-di ext4-modules-6.7.7-riscv64-di f2fs-modules-6.7.7-riscv64-di fat-modules-6.7.7-riscv64-di fb-modules-6.7.7-riscv64-di i2c-modules-6.7.7-riscv64-di input-modules-6.7.7-riscv64-di isofs-modules-6.7.7-riscv64-di jfs-modules-6.7.7-riscv64-di kernel-image-6.7.7-riscv64-di loop-modules-6.7.7-riscv64-di md-modules-6.7.7-riscv64-di mmc-core-modules-6.7.7-riscv64-di mmc-modules-6.7.7-riscv64-di mtd-core-modules-6.7.7-riscv64-di mtd-modules-6.7.7-riscv64-di multipath-modules-6.7.7-riscv64-di nbd-modules-6.7.7-riscv64-di nic-modules-6.7.7-riscv64-di nic-shared-modules-6.7.7-riscv64-di nic-usb-modules-6.7.7-riscv64-di nic-wireless-modules-6.7.7-riscv64-di pata-modules-6.7.7-riscv64-di ppp-modules-6.7.7-riscv64-di sata-modules-6.7.7-riscv64-di scsi-core-modules-6.7.7-riscv64-di scsi-modules-6.7.7-riscv64-di scsi-nic-modules-6.7.7-riscv64-di squashfs-modules-6.7.7-riscv64-di udf-modules-6.7.7-riscv64-di usb-modules-6.7.7-riscv64-di usb-serial-modules-6.7.7-riscv64-di usb-storage-modules-6.7.7-riscv64-di xfs-modules-6.7.7-riscv64-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.7.7' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.7.7-riscv64-di -pbtrfs-modules-6.7.7-riscv64-di -pcdrom-core-modules-6.7.7-riscv64-di -pcrc-modules-6.7.7-riscv64-di -pcrypto-dm-modules-6.7.7-riscv64-di -pcrypto-modules-6.7.7-riscv64-di -pefi-modules-6.7.7-riscv64-di -pevent-modules-6.7.7-riscv64-di -pext4-modules-6.7.7-riscv64-di -pf2fs-modules-6.7.7-riscv64-di -pfat-modules-6.7.7-riscv64-di -pfb-modules-6.7.7-riscv64-di -pi2c-modules-6.7.7-riscv64-di -pinput-modules-6.7.7-riscv64-di -pisofs-modules-6.7.7-riscv64-di -pjfs-modules-6.7.7-riscv64-di -pkernel-image-6.7.7-riscv64-di -ploop-modules-6.7.7-riscv64-di -pmd-modules-6.7.7-riscv64-di -pmmc-core-modules-6.7.7-riscv64-di -pmmc-modules-6.7.7-riscv64-di -pmtd-core-modules-6.7.7-riscv64-di -pmtd-modules-6.7.7-riscv64-di -pmultipath-modules-6.7.7-riscv64-di -pnbd-modules-6.7.7-riscv64-di -pnic-modules-6.7.7-riscv64-di -pnic-shared-modules-6.7.7-riscv64-di -pnic-usb-modules-6.7.7-riscv64-di -pnic-wireless-modules-6.7.7-riscv64-di -ppata-modules-6.7.7-riscv64-di -pppp-modules-6.7.7-riscv64-di -psata-modules-6.7.7-riscv64-di -pscsi-core-modules-6.7.7-riscv64-di -pscsi-modules-6.7.7-riscv64-di -pscsi-nic-modules-6.7.7-riscv64-di -psquashfs-modules-6.7.7-riscv64-di -pudf-modules-6.7.7-riscv64-di -pusb-modules-6.7.7-riscv64-di -pusb-serial-modules-6.7.7-riscv64-di -pusb-storage-modules-6.7.7-riscv64-di -pxfs-modules-6.7.7-riscv64-di' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-riscv64-di' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_riscv64_none_riscv64_meta: - $(call if_package, linux-image-riscv64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-riscv64' DH_OPTIONS='-plinux-image-riscv64' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-riscv64' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' PACKAGE_NAME='linux-image-riscv64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-riscv64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-riscv64' DH_OPTIONS='-plinux-headers-riscv64' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-riscv64' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' PACKAGE_NAME='linux-headers-riscv64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-image-riscv64-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-riscv64-dbg' DH_OPTIONS='-plinux-image-riscv64-dbg' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-riscv64-dbg' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' PACKAGE_NAME='linux-image-riscv64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-riscv64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-riscv64' DH_OPTIONS='-plinux-image-riscv64' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-riscv64' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' PACKAGE_NAME='linux-image-riscv64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-riscv64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-riscv64' DH_OPTIONS='-plinux-headers-riscv64' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-riscv64' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' PACKAGE_NAME='linux-headers-riscv64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-image-riscv64-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-riscv64-dbg' DH_OPTIONS='-plinux-image-riscv64-dbg' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-riscv64-dbg' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' PACKAGE_NAME='linux-image-riscv64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_riscv64_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.6.15' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='riscv' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.7.7' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='riscv' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_riscv64_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.6.15' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='riscv' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.7.7' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='riscv' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_riscv64_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.6.15' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='riscv' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.7.7' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='riscv' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_s390x:binary-arch_s390x_bpftool binary-arch_s390x_config binary-arch_s390x_cpupower binary-arch_s390x_hyperv-daemons binary-arch_s390x_kbuild binary-arch_s390x_none binary-arch_s390x_perf binary-arch_s390x_rtla binary-arch_s390x_usbip binary-arch_s390x_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.6.15' ARCH='s390x' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='s390' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.7.7' ARCH='s390x' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='s390' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_s390x_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real binary_config ABINAME='6.6.15' ARCH='s390x' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='s390' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real binary_config ABINAME='6.7.7' ARCH='s390x' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='s390' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_s390x_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.6.15' ARCH='s390x' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='s390' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.7.7' ARCH='s390x' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='s390' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_s390x_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.6.15' ARCH='s390x' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='s390' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.7.7' ARCH='s390x' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='s390' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_s390x_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.6.15' ARCH='s390x' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='s390' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.7.7' ARCH='s390x' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='s390' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_s390x_none:binary-arch_s390x_none_s390x binary-arch_s390x_none_s390x:binary-arch_s390x_none_s390x_headers binary-arch_s390x_none_s390x_image binary-arch_s390x_none_s390x_image-dbg binary-arch_s390x_none_s390x_installer binary-arch_s390x_none_s390x_meta binary-arch_s390x_none_s390x_headers: - $(call if_package, linux-headers-6.6.15-s390x, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-s390x' DH_OPTIONS='-plinux-headers-6.6.15-s390x' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' PACKAGE_NAME='linux-headers-6.6.15-s390x' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-s390x, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-s390x' DH_OPTIONS='-plinux-headers-6.7.7-s390x' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' PACKAGE_NAME='linux-headers-6.7.7-s390x' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_s390x_none_s390x_image: - $(call if_package, linux-image-6.6.15-s390x, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-s390x' DH_OPTIONS='-plinux-image-6.6.15-s390x' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' PACKAGE_NAME='linux-image-6.6.15-s390x' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-s390x, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-s390x' DH_OPTIONS='-plinux-image-6.7.7-s390x' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' PACKAGE_NAME='linux-image-6.7.7-s390x' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_s390x_none_s390x_image-dbg: - $(call if_package, linux-image-6.6.15-s390x-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-s390x-dbg' DH_OPTIONS='-plinux-image-6.6.15-s390x-dbg' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' PACKAGE_NAME='linux-image-6.6.15-s390x-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-s390x-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-s390x-dbg' DH_OPTIONS='-plinux-image-6.7.7-s390x-dbg' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' PACKAGE_NAME='linux-image-6.7.7-s390x-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_s390x_none_s390x_installer: - $(call if_package, btrfs-modules-6.6.15-s390x-di cdrom-core-modules-6.6.15-s390x-di crc-modules-6.6.15-s390x-di crypto-dm-modules-6.6.15-s390x-di crypto-modules-6.6.15-s390x-di dasd-extra-modules-6.6.15-s390x-di dasd-modules-6.6.15-s390x-di ext4-modules-6.6.15-s390x-di f2fs-modules-6.6.15-s390x-di fat-modules-6.6.15-s390x-di isofs-modules-6.6.15-s390x-di kernel-image-6.6.15-s390x-di loop-modules-6.6.15-s390x-di md-modules-6.6.15-s390x-di mtd-core-modules-6.6.15-s390x-di multipath-modules-6.6.15-s390x-di nbd-modules-6.6.15-s390x-di nic-modules-6.6.15-s390x-di scsi-core-modules-6.6.15-s390x-di scsi-modules-6.6.15-s390x-di udf-modules-6.6.15-s390x-di xfs-modules-6.6.15-s390x-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.6.15' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pbtrfs-modules-6.6.15-s390x-di -pcdrom-core-modules-6.6.15-s390x-di -pcrc-modules-6.6.15-s390x-di -pcrypto-dm-modules-6.6.15-s390x-di -pcrypto-modules-6.6.15-s390x-di -pdasd-extra-modules-6.6.15-s390x-di -pdasd-modules-6.6.15-s390x-di -pext4-modules-6.6.15-s390x-di -pf2fs-modules-6.6.15-s390x-di -pfat-modules-6.6.15-s390x-di -pisofs-modules-6.6.15-s390x-di -pkernel-image-6.6.15-s390x-di -ploop-modules-6.6.15-s390x-di -pmd-modules-6.6.15-s390x-di -pmtd-core-modules-6.6.15-s390x-di -pmultipath-modules-6.6.15-s390x-di -pnbd-modules-6.6.15-s390x-di -pnic-modules-6.6.15-s390x-di -pscsi-core-modules-6.6.15-s390x-di -pscsi-modules-6.6.15-s390x-di -pudf-modules-6.6.15-s390x-di -pxfs-modules-6.6.15-s390x-di' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-s390x-di' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, btrfs-modules-6.7.7-s390x-di cdrom-core-modules-6.7.7-s390x-di crc-modules-6.7.7-s390x-di crypto-dm-modules-6.7.7-s390x-di crypto-modules-6.7.7-s390x-di dasd-extra-modules-6.7.7-s390x-di dasd-modules-6.7.7-s390x-di ext4-modules-6.7.7-s390x-di f2fs-modules-6.7.7-s390x-di fat-modules-6.7.7-s390x-di isofs-modules-6.7.7-s390x-di kernel-image-6.7.7-s390x-di loop-modules-6.7.7-s390x-di md-modules-6.7.7-s390x-di mtd-core-modules-6.7.7-s390x-di multipath-modules-6.7.7-s390x-di nbd-modules-6.7.7-s390x-di nic-modules-6.7.7-s390x-di scsi-core-modules-6.7.7-s390x-di scsi-modules-6.7.7-s390x-di udf-modules-6.7.7-s390x-di xfs-modules-6.7.7-s390x-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.7.7' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pbtrfs-modules-6.7.7-s390x-di -pcdrom-core-modules-6.7.7-s390x-di -pcrc-modules-6.7.7-s390x-di -pcrypto-dm-modules-6.7.7-s390x-di -pcrypto-modules-6.7.7-s390x-di -pdasd-extra-modules-6.7.7-s390x-di -pdasd-modules-6.7.7-s390x-di -pext4-modules-6.7.7-s390x-di -pf2fs-modules-6.7.7-s390x-di -pfat-modules-6.7.7-s390x-di -pisofs-modules-6.7.7-s390x-di -pkernel-image-6.7.7-s390x-di -ploop-modules-6.7.7-s390x-di -pmd-modules-6.7.7-s390x-di -pmtd-core-modules-6.7.7-s390x-di -pmultipath-modules-6.7.7-s390x-di -pnbd-modules-6.7.7-s390x-di -pnic-modules-6.7.7-s390x-di -pscsi-core-modules-6.7.7-s390x-di -pscsi-modules-6.7.7-s390x-di -pudf-modules-6.7.7-s390x-di -pxfs-modules-6.7.7-s390x-di' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-s390x-di' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_s390x_none_s390x_meta: - $(call if_package, linux-image-s390x, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-s390x' DH_OPTIONS='-plinux-image-s390x' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-s390x' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' PACKAGE_NAME='linux-image-s390x' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-s390x, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-s390x' DH_OPTIONS='-plinux-headers-s390x' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-s390x' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' PACKAGE_NAME='linux-headers-s390x' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-image-s390x-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-s390x-dbg' DH_OPTIONS='-plinux-image-s390x-dbg' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-s390x-dbg' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' PACKAGE_NAME='linux-image-s390x-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-s390x, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-s390x' DH_OPTIONS='-plinux-image-s390x' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-s390x' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' PACKAGE_NAME='linux-image-s390x' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-s390x, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-s390x' DH_OPTIONS='-plinux-headers-s390x' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-s390x' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' PACKAGE_NAME='linux-headers-s390x' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-image-s390x-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-s390x-dbg' DH_OPTIONS='-plinux-image-s390x-dbg' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-s390x-dbg' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' PACKAGE_NAME='linux-image-s390x-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') binary-arch_s390x_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.6.15' ARCH='s390x' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='s390' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.7.7' ARCH='s390x' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='s390' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_s390x_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.6.15' ARCH='s390x' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='s390' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.7.7' ARCH='s390x' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='s390' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_s390x_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.6.15' ARCH='s390x' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='s390' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.7.7' ARCH='s390x' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='s390' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_sh4:binary-arch_sh4_bpftool binary-arch_sh4_config binary-arch_sh4_cpupower binary-arch_sh4_hyperv-daemons binary-arch_sh4_kbuild binary-arch_sh4_none binary-arch_sh4_perf binary-arch_sh4_rtla binary-arch_sh4_usbip binary-arch_sh4_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.6.15' ARCH='sh4' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='sh' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.7.7' ARCH='sh4' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='sh' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_sh4_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real binary_config ABINAME='6.6.15' ARCH='sh4' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='sh' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real binary_config ABINAME='6.7.7' ARCH='sh4' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='sh' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_sh4_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.6.15' ARCH='sh4' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='sh' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.7.7' ARCH='sh4' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='sh' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_sh4_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.6.15' ARCH='sh4' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='sh' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.7.7' ARCH='sh4' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='sh' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_sh4_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.6.15' ARCH='sh4' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='sh' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.7.7' ARCH='sh4' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='sh' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_sh4_none:binary-arch_sh4_none_sh7751r binary-arch_sh4_none_sh7785lcr binary-arch_sh4_none_sh7751r:binary-arch_sh4_none_sh7751r_headers binary-arch_sh4_none_sh7751r_image binary-arch_sh4_none_sh7751r_image-dbg binary-arch_sh4_none_sh7751r_installer binary-arch_sh4_none_sh7751r_meta binary-arch_sh4_none_sh7751r_headers: - $(call if_package, linux-headers-6.6.15-sh7751r, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-sh7751r' DH_OPTIONS='-plinux-headers-6.6.15-sh7751r' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' PACKAGE_NAME='linux-headers-6.6.15-sh7751r' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-sh7751r, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-sh7751r' DH_OPTIONS='-plinux-headers-6.7.7-sh7751r' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' PACKAGE_NAME='linux-headers-6.7.7-sh7751r' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_sh4_none_sh7751r_image: - $(call if_package, linux-image-6.6.15-sh7751r, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-sh7751r' DH_OPTIONS='-plinux-image-6.6.15-sh7751r' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' PACKAGE_NAME='linux-image-6.6.15-sh7751r' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-sh7751r, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-sh7751r' DH_OPTIONS='-plinux-image-6.7.7-sh7751r' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' PACKAGE_NAME='linux-image-6.7.7-sh7751r' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_sh4_none_sh7751r_image-dbg: - $(call if_package, linux-image-6.6.15-sh7751r-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-sh7751r-dbg' DH_OPTIONS='-plinux-image-6.6.15-sh7751r-dbg' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' PACKAGE_NAME='linux-image-6.6.15-sh7751r-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-sh7751r-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-sh7751r-dbg' DH_OPTIONS='-plinux-image-6.7.7-sh7751r-dbg' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' PACKAGE_NAME='linux-image-6.7.7-sh7751r-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_sh4_none_sh7751r_installer: - $(call if_package, btrfs-modules-6.6.15-sh7751r-di cdrom-core-modules-6.6.15-sh7751r-di crc-modules-6.6.15-sh7751r-di crypto-dm-modules-6.6.15-sh7751r-di crypto-modules-6.6.15-sh7751r-di ext4-modules-6.6.15-sh7751r-di f2fs-modules-6.6.15-sh7751r-di fat-modules-6.6.15-sh7751r-di firewire-core-modules-6.6.15-sh7751r-di i2c-modules-6.6.15-sh7751r-di isofs-modules-6.6.15-sh7751r-di jfs-modules-6.6.15-sh7751r-di kernel-image-6.6.15-sh7751r-di loop-modules-6.6.15-sh7751r-di md-modules-6.6.15-sh7751r-di minix-modules-6.6.15-sh7751r-di multipath-modules-6.6.15-sh7751r-di nbd-modules-6.6.15-sh7751r-di nic-modules-6.6.15-sh7751r-di nic-shared-modules-6.6.15-sh7751r-di nic-usb-modules-6.6.15-sh7751r-di pata-modules-6.6.15-sh7751r-di ppp-modules-6.6.15-sh7751r-di sata-modules-6.6.15-sh7751r-di sound-modules-6.6.15-sh7751r-di speakup-modules-6.6.15-sh7751r-di squashfs-modules-6.6.15-sh7751r-di udf-modules-6.6.15-sh7751r-di usb-serial-modules-6.6.15-sh7751r-di usb-storage-modules-6.6.15-sh7751r-di xfs-modules-6.6.15-sh7751r-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pbtrfs-modules-6.6.15-sh7751r-di -pcdrom-core-modules-6.6.15-sh7751r-di -pcrc-modules-6.6.15-sh7751r-di -pcrypto-dm-modules-6.6.15-sh7751r-di -pcrypto-modules-6.6.15-sh7751r-di -pext4-modules-6.6.15-sh7751r-di -pf2fs-modules-6.6.15-sh7751r-di -pfat-modules-6.6.15-sh7751r-di -pfirewire-core-modules-6.6.15-sh7751r-di -pi2c-modules-6.6.15-sh7751r-di -pisofs-modules-6.6.15-sh7751r-di -pjfs-modules-6.6.15-sh7751r-di -pkernel-image-6.6.15-sh7751r-di -ploop-modules-6.6.15-sh7751r-di -pmd-modules-6.6.15-sh7751r-di -pminix-modules-6.6.15-sh7751r-di -pmultipath-modules-6.6.15-sh7751r-di -pnbd-modules-6.6.15-sh7751r-di -pnic-modules-6.6.15-sh7751r-di -pnic-shared-modules-6.6.15-sh7751r-di -pnic-usb-modules-6.6.15-sh7751r-di -ppata-modules-6.6.15-sh7751r-di -pppp-modules-6.6.15-sh7751r-di -psata-modules-6.6.15-sh7751r-di -psound-modules-6.6.15-sh7751r-di -pspeakup-modules-6.6.15-sh7751r-di -psquashfs-modules-6.6.15-sh7751r-di -pudf-modules-6.6.15-sh7751r-di -pusb-serial-modules-6.6.15-sh7751r-di -pusb-storage-modules-6.6.15-sh7751r-di -pxfs-modules-6.6.15-sh7751r-di' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-sh7751r-di' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, btrfs-modules-6.7.7-sh7751r-di cdrom-core-modules-6.7.7-sh7751r-di crc-modules-6.7.7-sh7751r-di crypto-dm-modules-6.7.7-sh7751r-di crypto-modules-6.7.7-sh7751r-di ext4-modules-6.7.7-sh7751r-di f2fs-modules-6.7.7-sh7751r-di fat-modules-6.7.7-sh7751r-di firewire-core-modules-6.7.7-sh7751r-di i2c-modules-6.7.7-sh7751r-di isofs-modules-6.7.7-sh7751r-di jfs-modules-6.7.7-sh7751r-di kernel-image-6.7.7-sh7751r-di loop-modules-6.7.7-sh7751r-di md-modules-6.7.7-sh7751r-di minix-modules-6.7.7-sh7751r-di multipath-modules-6.7.7-sh7751r-di nbd-modules-6.7.7-sh7751r-di nic-modules-6.7.7-sh7751r-di nic-shared-modules-6.7.7-sh7751r-di nic-usb-modules-6.7.7-sh7751r-di pata-modules-6.7.7-sh7751r-di ppp-modules-6.7.7-sh7751r-di sata-modules-6.7.7-sh7751r-di sound-modules-6.7.7-sh7751r-di speakup-modules-6.7.7-sh7751r-di squashfs-modules-6.7.7-sh7751r-di udf-modules-6.7.7-sh7751r-di usb-serial-modules-6.7.7-sh7751r-di usb-storage-modules-6.7.7-sh7751r-di xfs-modules-6.7.7-sh7751r-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pbtrfs-modules-6.7.7-sh7751r-di -pcdrom-core-modules-6.7.7-sh7751r-di -pcrc-modules-6.7.7-sh7751r-di -pcrypto-dm-modules-6.7.7-sh7751r-di -pcrypto-modules-6.7.7-sh7751r-di -pext4-modules-6.7.7-sh7751r-di -pf2fs-modules-6.7.7-sh7751r-di -pfat-modules-6.7.7-sh7751r-di -pfirewire-core-modules-6.7.7-sh7751r-di -pi2c-modules-6.7.7-sh7751r-di -pisofs-modules-6.7.7-sh7751r-di -pjfs-modules-6.7.7-sh7751r-di -pkernel-image-6.7.7-sh7751r-di -ploop-modules-6.7.7-sh7751r-di -pmd-modules-6.7.7-sh7751r-di -pminix-modules-6.7.7-sh7751r-di -pmultipath-modules-6.7.7-sh7751r-di -pnbd-modules-6.7.7-sh7751r-di -pnic-modules-6.7.7-sh7751r-di -pnic-shared-modules-6.7.7-sh7751r-di -pnic-usb-modules-6.7.7-sh7751r-di -ppata-modules-6.7.7-sh7751r-di -pppp-modules-6.7.7-sh7751r-di -psata-modules-6.7.7-sh7751r-di -psound-modules-6.7.7-sh7751r-di -pspeakup-modules-6.7.7-sh7751r-di -psquashfs-modules-6.7.7-sh7751r-di -pudf-modules-6.7.7-sh7751r-di -pusb-serial-modules-6.7.7-sh7751r-di -pusb-storage-modules-6.7.7-sh7751r-di -pxfs-modules-6.7.7-sh7751r-di' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-sh7751r-di' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_sh4_none_sh7751r_meta: - $(call if_package, linux-image-sh7751r, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sh7751r' DH_OPTIONS='-plinux-image-sh7751r' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-sh7751r' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' PACKAGE_NAME='linux-image-sh7751r' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-sh7751r, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-sh7751r' DH_OPTIONS='-plinux-headers-sh7751r' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-sh7751r' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' PACKAGE_NAME='linux-headers-sh7751r' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-sh7751r-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sh7751r-dbg' DH_OPTIONS='-plinux-image-sh7751r-dbg' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-sh7751r-dbg' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' PACKAGE_NAME='linux-image-sh7751r-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-sh7751r, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sh7751r' DH_OPTIONS='-plinux-image-sh7751r' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-sh7751r' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' PACKAGE_NAME='linux-image-sh7751r' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-sh7751r, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-sh7751r' DH_OPTIONS='-plinux-headers-sh7751r' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-sh7751r' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' PACKAGE_NAME='linux-headers-sh7751r' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-sh7751r-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sh7751r-dbg' DH_OPTIONS='-plinux-image-sh7751r-dbg' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-sh7751r-dbg' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' PACKAGE_NAME='linux-image-sh7751r-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_sh4_none_sh7785lcr:binary-arch_sh4_none_sh7785lcr_headers binary-arch_sh4_none_sh7785lcr_image binary-arch_sh4_none_sh7785lcr_image-dbg binary-arch_sh4_none_sh7785lcr_installer binary-arch_sh4_none_sh7785lcr_meta binary-arch_sh4_none_sh7785lcr_headers: - $(call if_package, linux-headers-6.6.15-sh7785lcr, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-sh7785lcr' DH_OPTIONS='-plinux-headers-6.6.15-sh7785lcr' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' PACKAGE_NAME='linux-headers-6.6.15-sh7785lcr' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-sh7785lcr, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-sh7785lcr' DH_OPTIONS='-plinux-headers-6.7.7-sh7785lcr' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' PACKAGE_NAME='linux-headers-6.7.7-sh7785lcr' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_sh4_none_sh7785lcr_image: - $(call if_package, linux-image-6.6.15-sh7785lcr, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-sh7785lcr' DH_OPTIONS='-plinux-image-6.6.15-sh7785lcr' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' PACKAGE_NAME='linux-image-6.6.15-sh7785lcr' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-sh7785lcr, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-sh7785lcr' DH_OPTIONS='-plinux-image-6.7.7-sh7785lcr' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' PACKAGE_NAME='linux-image-6.7.7-sh7785lcr' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_sh4_none_sh7785lcr_image-dbg: - $(call if_package, linux-image-6.6.15-sh7785lcr-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-sh7785lcr-dbg' DH_OPTIONS='-plinux-image-6.6.15-sh7785lcr-dbg' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' PACKAGE_NAME='linux-image-6.6.15-sh7785lcr-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-sh7785lcr-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-sh7785lcr-dbg' DH_OPTIONS='-plinux-image-6.7.7-sh7785lcr-dbg' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' PACKAGE_NAME='linux-image-6.7.7-sh7785lcr-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_sh4_none_sh7785lcr_installer: - $(call if_package, ata-modules-6.6.15-sh7785lcr-di btrfs-modules-6.6.15-sh7785lcr-di cdrom-core-modules-6.6.15-sh7785lcr-di crc-modules-6.6.15-sh7785lcr-di crypto-dm-modules-6.6.15-sh7785lcr-di crypto-modules-6.6.15-sh7785lcr-di ext4-modules-6.6.15-sh7785lcr-di f2fs-modules-6.6.15-sh7785lcr-di fat-modules-6.6.15-sh7785lcr-di firewire-core-modules-6.6.15-sh7785lcr-di i2c-modules-6.6.15-sh7785lcr-di isofs-modules-6.6.15-sh7785lcr-di jfs-modules-6.6.15-sh7785lcr-di kernel-image-6.6.15-sh7785lcr-di loop-modules-6.6.15-sh7785lcr-di md-modules-6.6.15-sh7785lcr-di minix-modules-6.6.15-sh7785lcr-di multipath-modules-6.6.15-sh7785lcr-di nbd-modules-6.6.15-sh7785lcr-di nic-modules-6.6.15-sh7785lcr-di nic-shared-modules-6.6.15-sh7785lcr-di nic-usb-modules-6.6.15-sh7785lcr-di pata-modules-6.6.15-sh7785lcr-di ppp-modules-6.6.15-sh7785lcr-di sata-modules-6.6.15-sh7785lcr-di scsi-core-modules-6.6.15-sh7785lcr-di sound-modules-6.6.15-sh7785lcr-di speakup-modules-6.6.15-sh7785lcr-di squashfs-modules-6.6.15-sh7785lcr-di udf-modules-6.6.15-sh7785lcr-di usb-modules-6.6.15-sh7785lcr-di usb-serial-modules-6.6.15-sh7785lcr-di xfs-modules-6.6.15-sh7785lcr-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.6.15-sh7785lcr-di -pbtrfs-modules-6.6.15-sh7785lcr-di -pcdrom-core-modules-6.6.15-sh7785lcr-di -pcrc-modules-6.6.15-sh7785lcr-di -pcrypto-dm-modules-6.6.15-sh7785lcr-di -pcrypto-modules-6.6.15-sh7785lcr-di -pext4-modules-6.6.15-sh7785lcr-di -pf2fs-modules-6.6.15-sh7785lcr-di -pfat-modules-6.6.15-sh7785lcr-di -pfirewire-core-modules-6.6.15-sh7785lcr-di -pi2c-modules-6.6.15-sh7785lcr-di -pisofs-modules-6.6.15-sh7785lcr-di -pjfs-modules-6.6.15-sh7785lcr-di -pkernel-image-6.6.15-sh7785lcr-di -ploop-modules-6.6.15-sh7785lcr-di -pmd-modules-6.6.15-sh7785lcr-di -pminix-modules-6.6.15-sh7785lcr-di -pmultipath-modules-6.6.15-sh7785lcr-di -pnbd-modules-6.6.15-sh7785lcr-di -pnic-modules-6.6.15-sh7785lcr-di -pnic-shared-modules-6.6.15-sh7785lcr-di -pnic-usb-modules-6.6.15-sh7785lcr-di -ppata-modules-6.6.15-sh7785lcr-di -pppp-modules-6.6.15-sh7785lcr-di -psata-modules-6.6.15-sh7785lcr-di -pscsi-core-modules-6.6.15-sh7785lcr-di -psound-modules-6.6.15-sh7785lcr-di -pspeakup-modules-6.6.15-sh7785lcr-di -psquashfs-modules-6.6.15-sh7785lcr-di -pudf-modules-6.6.15-sh7785lcr-di -pusb-modules-6.6.15-sh7785lcr-di -pusb-serial-modules-6.6.15-sh7785lcr-di -pxfs-modules-6.6.15-sh7785lcr-di' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-sh7785lcr-di' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, ata-modules-6.7.7-sh7785lcr-di btrfs-modules-6.7.7-sh7785lcr-di cdrom-core-modules-6.7.7-sh7785lcr-di crc-modules-6.7.7-sh7785lcr-di crypto-dm-modules-6.7.7-sh7785lcr-di crypto-modules-6.7.7-sh7785lcr-di ext4-modules-6.7.7-sh7785lcr-di f2fs-modules-6.7.7-sh7785lcr-di fat-modules-6.7.7-sh7785lcr-di firewire-core-modules-6.7.7-sh7785lcr-di i2c-modules-6.7.7-sh7785lcr-di isofs-modules-6.7.7-sh7785lcr-di jfs-modules-6.7.7-sh7785lcr-di kernel-image-6.7.7-sh7785lcr-di loop-modules-6.7.7-sh7785lcr-di md-modules-6.7.7-sh7785lcr-di minix-modules-6.7.7-sh7785lcr-di multipath-modules-6.7.7-sh7785lcr-di nbd-modules-6.7.7-sh7785lcr-di nic-modules-6.7.7-sh7785lcr-di nic-shared-modules-6.7.7-sh7785lcr-di nic-usb-modules-6.7.7-sh7785lcr-di pata-modules-6.7.7-sh7785lcr-di ppp-modules-6.7.7-sh7785lcr-di sata-modules-6.7.7-sh7785lcr-di scsi-core-modules-6.7.7-sh7785lcr-di sound-modules-6.7.7-sh7785lcr-di speakup-modules-6.7.7-sh7785lcr-di squashfs-modules-6.7.7-sh7785lcr-di udf-modules-6.7.7-sh7785lcr-di usb-modules-6.7.7-sh7785lcr-di usb-serial-modules-6.7.7-sh7785lcr-di xfs-modules-6.7.7-sh7785lcr-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.7.7-sh7785lcr-di -pbtrfs-modules-6.7.7-sh7785lcr-di -pcdrom-core-modules-6.7.7-sh7785lcr-di -pcrc-modules-6.7.7-sh7785lcr-di -pcrypto-dm-modules-6.7.7-sh7785lcr-di -pcrypto-modules-6.7.7-sh7785lcr-di -pext4-modules-6.7.7-sh7785lcr-di -pf2fs-modules-6.7.7-sh7785lcr-di -pfat-modules-6.7.7-sh7785lcr-di -pfirewire-core-modules-6.7.7-sh7785lcr-di -pi2c-modules-6.7.7-sh7785lcr-di -pisofs-modules-6.7.7-sh7785lcr-di -pjfs-modules-6.7.7-sh7785lcr-di -pkernel-image-6.7.7-sh7785lcr-di -ploop-modules-6.7.7-sh7785lcr-di -pmd-modules-6.7.7-sh7785lcr-di -pminix-modules-6.7.7-sh7785lcr-di -pmultipath-modules-6.7.7-sh7785lcr-di -pnbd-modules-6.7.7-sh7785lcr-di -pnic-modules-6.7.7-sh7785lcr-di -pnic-shared-modules-6.7.7-sh7785lcr-di -pnic-usb-modules-6.7.7-sh7785lcr-di -ppata-modules-6.7.7-sh7785lcr-di -pppp-modules-6.7.7-sh7785lcr-di -psata-modules-6.7.7-sh7785lcr-di -pscsi-core-modules-6.7.7-sh7785lcr-di -psound-modules-6.7.7-sh7785lcr-di -pspeakup-modules-6.7.7-sh7785lcr-di -psquashfs-modules-6.7.7-sh7785lcr-di -pudf-modules-6.7.7-sh7785lcr-di -pusb-modules-6.7.7-sh7785lcr-di -pusb-serial-modules-6.7.7-sh7785lcr-di -pxfs-modules-6.7.7-sh7785lcr-di' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-sh7785lcr-di' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_sh4_none_sh7785lcr_meta: - $(call if_package, linux-image-sh7785lcr, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sh7785lcr' DH_OPTIONS='-plinux-image-sh7785lcr' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-sh7785lcr' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' PACKAGE_NAME='linux-image-sh7785lcr' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-sh7785lcr, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-sh7785lcr' DH_OPTIONS='-plinux-headers-sh7785lcr' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-sh7785lcr' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' PACKAGE_NAME='linux-headers-sh7785lcr' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-sh7785lcr-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sh7785lcr-dbg' DH_OPTIONS='-plinux-image-sh7785lcr-dbg' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-sh7785lcr-dbg' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' PACKAGE_NAME='linux-image-sh7785lcr-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-sh7785lcr, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sh7785lcr' DH_OPTIONS='-plinux-image-sh7785lcr' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-sh7785lcr' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' PACKAGE_NAME='linux-image-sh7785lcr' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-sh7785lcr, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-sh7785lcr' DH_OPTIONS='-plinux-headers-sh7785lcr' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-sh7785lcr' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' PACKAGE_NAME='linux-headers-sh7785lcr' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-sh7785lcr-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sh7785lcr-dbg' DH_OPTIONS='-plinux-image-sh7785lcr-dbg' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-sh7785lcr-dbg' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' PACKAGE_NAME='linux-image-sh7785lcr-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_sh4_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.6.15' ARCH='sh4' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='sh' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.7.7' ARCH='sh4' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='sh' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_sh4_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.6.15' ARCH='sh4' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='sh' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.7.7' ARCH='sh4' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='sh' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_sh4_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.6.15' ARCH='sh4' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='sh' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.7.7' ARCH='sh4' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='sh' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_sparc64:binary-arch_sparc64_bpftool binary-arch_sparc64_config binary-arch_sparc64_cpupower binary-arch_sparc64_hyperv-daemons binary-arch_sparc64_kbuild binary-arch_sparc64_none binary-arch_sparc64_perf binary-arch_sparc64_rtla binary-arch_sparc64_usbip binary-arch_sparc64_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.6.15' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='sparc' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.7.7' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='sparc' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_sparc64_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real binary_config ABINAME='6.6.15' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='sparc' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real binary_config ABINAME='6.7.7' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='sparc' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_sparc64_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.6.15' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='sparc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.7.7' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='sparc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_sparc64_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.6.15' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='sparc' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.7.7' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='sparc' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_sparc64_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.6.15' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='sparc' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.7.7' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='sparc' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_sparc64_none:binary-arch_sparc64_none_sparc64 binary-arch_sparc64_none_sparc64-smp binary-arch_sparc64_none_sparc64:binary-arch_sparc64_none_sparc64_headers binary-arch_sparc64_none_sparc64_image binary-arch_sparc64_none_sparc64_image-dbg binary-arch_sparc64_none_sparc64_installer binary-arch_sparc64_none_sparc64_meta binary-arch_sparc64_none_sparc64-smp:binary-arch_sparc64_none_sparc64-smp_headers binary-arch_sparc64_none_sparc64-smp_image binary-arch_sparc64_none_sparc64-smp_image-dbg binary-arch_sparc64_none_sparc64-smp_meta binary-arch_sparc64_none_sparc64-smp_headers: - $(call if_package, linux-headers-6.6.15-sparc64-smp, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-sparc64-smp' DH_OPTIONS='-plinux-headers-6.6.15-sparc64-smp' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' PACKAGE_NAME='linux-headers-6.6.15-sparc64-smp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-sparc64-smp, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-sparc64-smp' DH_OPTIONS='-plinux-headers-6.7.7-sparc64-smp' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' PACKAGE_NAME='linux-headers-6.7.7-sparc64-smp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_sparc64_none_sparc64-smp_image: - $(call if_package, linux-image-6.6.15-sparc64-smp, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-sparc64-smp' DH_OPTIONS='-plinux-image-6.6.15-sparc64-smp' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' PACKAGE_NAME='linux-image-6.6.15-sparc64-smp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-sparc64-smp, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-sparc64-smp' DH_OPTIONS='-plinux-image-6.7.7-sparc64-smp' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' PACKAGE_NAME='linux-image-6.7.7-sparc64-smp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_sparc64_none_sparc64-smp_image-dbg: - $(call if_package, linux-image-6.6.15-sparc64-smp-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-sparc64-smp-dbg' DH_OPTIONS='-plinux-image-6.6.15-sparc64-smp-dbg' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' PACKAGE_NAME='linux-image-6.6.15-sparc64-smp-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-sparc64-smp-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-sparc64-smp-dbg' DH_OPTIONS='-plinux-image-6.7.7-sparc64-smp-dbg' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' PACKAGE_NAME='linux-image-6.7.7-sparc64-smp-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_sparc64_none_sparc64-smp_meta: - $(call if_package, linux-image-sparc64-smp, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sparc64-smp' DH_OPTIONS='-plinux-image-sparc64-smp' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-sparc64-smp' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' PACKAGE_NAME='linux-image-sparc64-smp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-sparc64-smp, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-sparc64-smp' DH_OPTIONS='-plinux-headers-sparc64-smp' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-sparc64-smp' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' PACKAGE_NAME='linux-headers-sparc64-smp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-sparc64-smp-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sparc64-smp-dbg' DH_OPTIONS='-plinux-image-sparc64-smp-dbg' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-sparc64-smp-dbg' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' PACKAGE_NAME='linux-image-sparc64-smp-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-sparc64-smp, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sparc64-smp' DH_OPTIONS='-plinux-image-sparc64-smp' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-sparc64-smp' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' PACKAGE_NAME='linux-image-sparc64-smp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-sparc64-smp, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-sparc64-smp' DH_OPTIONS='-plinux-headers-sparc64-smp' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-sparc64-smp' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' PACKAGE_NAME='linux-headers-sparc64-smp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-sparc64-smp-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sparc64-smp-dbg' DH_OPTIONS='-plinux-image-sparc64-smp-dbg' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-sparc64-smp-dbg' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' PACKAGE_NAME='linux-image-sparc64-smp-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_sparc64_none_sparc64_headers: - $(call if_package, linux-headers-6.6.15-sparc64, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-sparc64' DH_OPTIONS='-plinux-headers-6.6.15-sparc64' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' PACKAGE_NAME='linux-headers-6.6.15-sparc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-sparc64, $(MAKE) -f debian/rules.real binary_headers ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-sparc64' DH_OPTIONS='-plinux-headers-6.7.7-sparc64' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' PACKAGE_NAME='linux-headers-6.7.7-sparc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_sparc64_none_sparc64_image: - $(call if_package, linux-image-6.6.15-sparc64, $(MAKE) -f debian/rules.real binary_image ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-sparc64' DH_OPTIONS='-plinux-image-6.6.15-sparc64' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' PACKAGE_NAME='linux-image-6.6.15-sparc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-sparc64, $(MAKE) -f debian/rules.real binary_image ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-sparc64' DH_OPTIONS='-plinux-image-6.7.7-sparc64' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' PACKAGE_NAME='linux-image-6.7.7-sparc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_sparc64_none_sparc64_image-dbg: - $(call if_package, linux-image-6.6.15-sparc64-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-sparc64-dbg' DH_OPTIONS='-plinux-image-6.6.15-sparc64-dbg' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' PACKAGE_NAME='linux-image-6.6.15-sparc64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-sparc64-dbg, $(MAKE) -f debian/rules.real binary_image-dbg ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-sparc64-dbg' DH_OPTIONS='-plinux-image-6.7.7-sparc64-dbg' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' PACKAGE_NAME='linux-image-6.7.7-sparc64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_sparc64_none_sparc64_installer: - $(call if_package, ata-modules-6.6.15-sparc64-di btrfs-modules-6.6.15-sparc64-di cdrom-core-modules-6.6.15-sparc64-di crc-modules-6.6.15-sparc64-di crypto-dm-modules-6.6.15-sparc64-di crypto-modules-6.6.15-sparc64-di ext4-modules-6.6.15-sparc64-di f2fs-modules-6.6.15-sparc64-di fat-modules-6.6.15-sparc64-di fb-modules-6.6.15-sparc64-di i2c-modules-6.6.15-sparc64-di input-modules-6.6.15-sparc64-di isofs-modules-6.6.15-sparc64-di jfs-modules-6.6.15-sparc64-di kernel-image-6.6.15-sparc64-di md-modules-6.6.15-sparc64-di multipath-modules-6.6.15-sparc64-di nbd-modules-6.6.15-sparc64-di nic-modules-6.6.15-sparc64-di nic-shared-modules-6.6.15-sparc64-di nic-usb-modules-6.6.15-sparc64-di pata-modules-6.6.15-sparc64-di ppp-modules-6.6.15-sparc64-di sata-modules-6.6.15-sparc64-di scsi-core-modules-6.6.15-sparc64-di scsi-modules-6.6.15-sparc64-di squashfs-modules-6.6.15-sparc64-di udf-modules-6.6.15-sparc64-di ufs-modules-6.6.15-sparc64-di usb-modules-6.6.15-sparc64-di usb-serial-modules-6.6.15-sparc64-di usb-storage-modules-6.6.15-sparc64-di xfs-modules-6.6.15-sparc64-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.6.15-sparc64-di -pbtrfs-modules-6.6.15-sparc64-di -pcdrom-core-modules-6.6.15-sparc64-di -pcrc-modules-6.6.15-sparc64-di -pcrypto-dm-modules-6.6.15-sparc64-di -pcrypto-modules-6.6.15-sparc64-di -pext4-modules-6.6.15-sparc64-di -pf2fs-modules-6.6.15-sparc64-di -pfat-modules-6.6.15-sparc64-di -pfb-modules-6.6.15-sparc64-di -pi2c-modules-6.6.15-sparc64-di -pinput-modules-6.6.15-sparc64-di -pisofs-modules-6.6.15-sparc64-di -pjfs-modules-6.6.15-sparc64-di -pkernel-image-6.6.15-sparc64-di -pmd-modules-6.6.15-sparc64-di -pmultipath-modules-6.6.15-sparc64-di -pnbd-modules-6.6.15-sparc64-di -pnic-modules-6.6.15-sparc64-di -pnic-shared-modules-6.6.15-sparc64-di -pnic-usb-modules-6.6.15-sparc64-di -ppata-modules-6.6.15-sparc64-di -pppp-modules-6.6.15-sparc64-di -psata-modules-6.6.15-sparc64-di -pscsi-core-modules-6.6.15-sparc64-di -pscsi-modules-6.6.15-sparc64-di -psquashfs-modules-6.6.15-sparc64-di -pudf-modules-6.6.15-sparc64-di -pufs-modules-6.6.15-sparc64-di -pusb-modules-6.6.15-sparc64-di -pusb-serial-modules-6.6.15-sparc64-di -pusb-storage-modules-6.6.15-sparc64-di -pxfs-modules-6.6.15-sparc64-di' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-sparc64-di' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, ata-modules-6.7.7-sparc64-di btrfs-modules-6.7.7-sparc64-di cdrom-core-modules-6.7.7-sparc64-di crc-modules-6.7.7-sparc64-di crypto-dm-modules-6.7.7-sparc64-di crypto-modules-6.7.7-sparc64-di ext4-modules-6.7.7-sparc64-di f2fs-modules-6.7.7-sparc64-di fat-modules-6.7.7-sparc64-di fb-modules-6.7.7-sparc64-di i2c-modules-6.7.7-sparc64-di input-modules-6.7.7-sparc64-di isofs-modules-6.7.7-sparc64-di jfs-modules-6.7.7-sparc64-di kernel-image-6.7.7-sparc64-di md-modules-6.7.7-sparc64-di multipath-modules-6.7.7-sparc64-di nbd-modules-6.7.7-sparc64-di nic-modules-6.7.7-sparc64-di nic-shared-modules-6.7.7-sparc64-di nic-usb-modules-6.7.7-sparc64-di pata-modules-6.7.7-sparc64-di ppp-modules-6.7.7-sparc64-di sata-modules-6.7.7-sparc64-di scsi-core-modules-6.7.7-sparc64-di scsi-modules-6.7.7-sparc64-di squashfs-modules-6.7.7-sparc64-di udf-modules-6.7.7-sparc64-di ufs-modules-6.7.7-sparc64-di usb-modules-6.7.7-sparc64-di usb-serial-modules-6.7.7-sparc64-di usb-storage-modules-6.7.7-sparc64-di xfs-modules-6.7.7-sparc64-di, $(MAKE) -f debian/rules.real binary_installer ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.7.7-sparc64-di -pbtrfs-modules-6.7.7-sparc64-di -pcdrom-core-modules-6.7.7-sparc64-di -pcrc-modules-6.7.7-sparc64-di -pcrypto-dm-modules-6.7.7-sparc64-di -pcrypto-modules-6.7.7-sparc64-di -pext4-modules-6.7.7-sparc64-di -pf2fs-modules-6.7.7-sparc64-di -pfat-modules-6.7.7-sparc64-di -pfb-modules-6.7.7-sparc64-di -pi2c-modules-6.7.7-sparc64-di -pinput-modules-6.7.7-sparc64-di -pisofs-modules-6.7.7-sparc64-di -pjfs-modules-6.7.7-sparc64-di -pkernel-image-6.7.7-sparc64-di -pmd-modules-6.7.7-sparc64-di -pmultipath-modules-6.7.7-sparc64-di -pnbd-modules-6.7.7-sparc64-di -pnic-modules-6.7.7-sparc64-di -pnic-shared-modules-6.7.7-sparc64-di -pnic-usb-modules-6.7.7-sparc64-di -ppata-modules-6.7.7-sparc64-di -pppp-modules-6.7.7-sparc64-di -psata-modules-6.7.7-sparc64-di -pscsi-core-modules-6.7.7-sparc64-di -pscsi-modules-6.7.7-sparc64-di -psquashfs-modules-6.7.7-sparc64-di -pudf-modules-6.7.7-sparc64-di -pufs-modules-6.7.7-sparc64-di -pusb-modules-6.7.7-sparc64-di -pusb-serial-modules-6.7.7-sparc64-di -pusb-storage-modules-6.7.7-sparc64-di -pxfs-modules-6.7.7-sparc64-di' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-sparc64-di' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_sparc64_none_sparc64_meta: - $(call if_package, linux-image-sparc64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sparc64' DH_OPTIONS='-plinux-image-sparc64' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-sparc64' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' PACKAGE_NAME='linux-image-sparc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-sparc64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-sparc64' DH_OPTIONS='-plinux-headers-sparc64' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-sparc64' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' PACKAGE_NAME='linux-headers-sparc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-sparc64-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sparc64-dbg' DH_OPTIONS='-plinux-image-sparc64-dbg' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-sparc64-dbg' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' PACKAGE_NAME='linux-image-sparc64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-sparc64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sparc64' DH_OPTIONS='-plinux-image-sparc64' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-sparc64' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' PACKAGE_NAME='linux-image-sparc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-sparc64, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-sparc64' DH_OPTIONS='-plinux-headers-sparc64' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-sparc64' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' PACKAGE_NAME='linux-headers-sparc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-sparc64-dbg, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sparc64-dbg' DH_OPTIONS='-plinux-image-sparc64-dbg' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-sparc64-dbg' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' PACKAGE_NAME='linux-image-sparc64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_sparc64_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.6.15' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='sparc' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.7.7' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='sparc' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_sparc64_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.6.15' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='sparc' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.7.7' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='sparc' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_sparc64_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.6.15' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='sparc' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.7.7' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='sparc' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_x32:binary-arch_x32_bpftool binary-arch_x32_cpupower binary-arch_x32_hyperv-daemons binary-arch_x32_kbuild binary-arch_x32_perf binary-arch_x32_rtla binary-arch_x32_usbip binary-arch_x32_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.6.15' ARCH='x32' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='x86' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real binary_bpftool ABINAME='6.7.7' ARCH='x32' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='x86' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_x32_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.6.15' ARCH='x32' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='x86' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real binary_cpupower ABINAME='6.7.7' ARCH='x32' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='x86' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_x32_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.6.15' ARCH='x32' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='x86' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real binary_hyperv-daemons ABINAME='6.7.7' ARCH='x32' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='x86' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_x32_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.6.15' ARCH='x32' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='x86' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real binary_kbuild ABINAME='6.7.7' ARCH='x32' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='x86' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_x32_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.6.15' ARCH='x32' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='x86' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real binary_perf ABINAME='6.7.7' ARCH='x32' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='x86' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_x32_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.6.15' ARCH='x32' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='x86' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real binary_rtla ABINAME='6.7.7' ARCH='x32' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='x86' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-arch_x32_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.6.15' ARCH='x32' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='x86' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real binary_usbip ABINAME='6.7.7' ARCH='x32' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='x86' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-indep:binary-indep_doc binary-indep_libc-dev binary-indep_meta binary-indep_none binary-indep_rt binary-indep_source binary-indep_support binary-indep_doc: - $(call if_package, linux-doc-6.6, $(MAKE) -f debian/rules.real binary_doc ABINAME='6.6.15' DESTDIR='$(CURDIR)/debian/linux-doc-6.6' DH_OPTIONS='-plinux-doc-6.6' PACKAGE_NAME='linux-doc-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-doc-6.7, $(MAKE) -f debian/rules.real binary_doc ABINAME='6.7.7' DESTDIR='$(CURDIR)/debian/linux-doc-6.7' DH_OPTIONS='-plinux-doc-6.7' PACKAGE_NAME='linux-doc-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-indep_libc-dev: - $(call if_package, linux-libc-dev, $(MAKE) -f debian/rules.real binary_libc-dev ABINAME='6.6.15' ALL_LIBCDEV_KERNELARCHES='alpha arm arm64 ia64 m68k mips parisc powerpc riscv s390 sh sparc x86' ALL_LIBCDEV_MULTIARCHES='aarch64-linux-gnu:arm64 alpha-linux-gnu:alpha arm-linux-gnueabi:arm arm-linux-gnueabihf:arm hppa-linux-gnu:parisc i386-linux-gnu:x86 ia64-linux-gnu:ia64 m68k-linux-gnu:m68k mips-linux-gnu:mips mips64-linux-gnuabi64:mips mips64el-linux-gnuabi64:mips mipsel-linux-gnu:mips mipsisa64r6el-linux-gnuabi64:mips powerpc-linux-gnu:powerpc powerpc64-linux-gnu:powerpc powerpc64le-linux-gnu:powerpc riscv64-linux-gnu:riscv s390x-linux-gnu:s390 sh4-linux-gnu:sh sparc64-linux-gnu:sparc x86_64-linux-gnu:x86 x86_64-linux-gnux32:x86' DESTDIR='$(CURDIR)/debian/linux-libc-dev' DH_OPTIONS='-plinux-libc-dev' PACKAGE_NAME='linux-libc-dev' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-libc-dev, $(MAKE) -f debian/rules.real binary_libc-dev ABINAME='6.7.7' ALL_LIBCDEV_KERNELARCHES='alpha arm arm64 loongarch m68k mips parisc powerpc riscv s390 sh sparc x86' ALL_LIBCDEV_MULTIARCHES='aarch64-linux-gnu:arm64 alpha-linux-gnu:alpha arm-linux-gnueabi:arm arm-linux-gnueabihf:arm hppa-linux-gnu:parisc i386-linux-gnu:x86 loongarch64-linux-gnu:loongarch m68k-linux-gnu:m68k mips-linux-gnu:mips mips64-linux-gnuabi64:mips mips64el-linux-gnuabi64:mips mipsel-linux-gnu:mips mipsisa64r6el-linux-gnuabi64:mips powerpc-linux-gnu:powerpc powerpc64-linux-gnu:powerpc powerpc64le-linux-gnu:powerpc riscv64-linux-gnu:riscv s390x-linux-gnu:s390 sh4-linux-gnu:sh sparc64-linux-gnu:sparc x86_64-linux-gnu:x86 x86_64-linux-gnux32:x86' DESTDIR='$(CURDIR)/debian/linux-libc-dev' DH_OPTIONS='-plinux-libc-dev' PACKAGE_NAME='linux-libc-dev' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-indep_meta: - $(call if_package, linux-doc, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' DESTDIR='$(CURDIR)/debian/linux-doc' DH_OPTIONS='-plinux-doc' INSTALLDOCS_LINK_DOC='linux-doc-6.6' PACKAGE_NAME='linux-doc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-source, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.6.15' DESTDIR='$(CURDIR)/debian/linux-source' DH_OPTIONS='-plinux-source' INSTALLDOCS_LINK_DOC='linux-source-6.6' PACKAGE_NAME='linux-source' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-doc, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' DESTDIR='$(CURDIR)/debian/linux-doc' DH_OPTIONS='-plinux-doc' INSTALLDOCS_LINK_DOC='linux-doc-6.7' PACKAGE_NAME='linux-doc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-source, $(MAKE) -f debian/rules.real binary_meta ABINAME='6.7.7' DESTDIR='$(CURDIR)/debian/linux-source' DH_OPTIONS='-plinux-source' INSTALLDOCS_LINK_DOC='linux-source-6.7' PACKAGE_NAME='linux-source' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-indep_none:binary-indep_none_headers-common binary-indep_none_headers-common: - $(call if_package, linux-headers-6.6.15-common, $(MAKE) -f debian/rules.real binary_headers-common ABINAME='6.6.15' ALL_KERNEL_ARCHES='alpha arm arm64 ia64 m68k mips parisc powerpc riscv s390 sh sparc x86' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-common' DH_OPTIONS='-plinux-headers-6.6.15-common' FEATURESET='none' LOCALVERSION='' PACKAGE_NAME='linux-headers-6.6.15-common' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-common, $(MAKE) -f debian/rules.real binary_headers-common ABINAME='6.7.7' ALL_KERNEL_ARCHES='alpha arm arm64 loongarch m68k mips parisc powerpc riscv s390 sh sparc x86' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-common' DH_OPTIONS='-plinux-headers-6.7.7-common' FEATURESET='none' LOCALVERSION='' PACKAGE_NAME='linux-headers-6.7.7-common' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-indep_rt:binary-indep_rt_headers-common binary-indep_rt_headers-common: - $(call if_package, linux-headers-6.6.15-common-rt, $(MAKE) -f debian/rules.real binary_headers-common ABINAME='6.6.15' ALL_KERNEL_ARCHES='arm arm64 x86' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-common-rt' DH_OPTIONS='-plinux-headers-6.6.15-common-rt' FEATURESET='rt' LOCALVERSION='-rt' PACKAGE_NAME='linux-headers-6.6.15-common-rt' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-common-rt, $(MAKE) -f debian/rules.real binary_headers-common ABINAME='6.7.7' ALL_KERNEL_ARCHES='arm arm64 x86' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-common-rt' DH_OPTIONS='-plinux-headers-6.7.7-common-rt' FEATURESET='rt' LOCALVERSION='-rt' PACKAGE_NAME='linux-headers-6.7.7-common-rt' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-indep_source: - $(call if_package, linux-source-6.6, $(MAKE) -f debian/rules.real binary_source ABINAME='6.6.15' DESTDIR='$(CURDIR)/debian/linux-source-6.6' DH_OPTIONS='-plinux-source-6.6' PACKAGE_NAME='linux-source-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-source-6.7, $(MAKE) -f debian/rules.real binary_source ABINAME='6.7.7' DESTDIR='$(CURDIR)/debian/linux-source-6.7' DH_OPTIONS='-plinux-source-6.7' PACKAGE_NAME='linux-source-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') binary-indep_support: - $(call if_package, linux-support-6.6.15, $(MAKE) -f debian/rules.real binary_support ABINAME='6.6.15' DESTDIR='$(CURDIR)/debian/linux-support-6.6.15' DH_OPTIONS='-plinux-support-6.6.15' PACKAGE_NAME='linux-support-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -build-arch:build-arch_alpha build-arch_amd64 build-arch_arm64 build-arch_armel build-arch_armhf build-arch_hppa build-arch_i386 build-arch_ia64 build-arch_m68k build-arch_mips build-arch_mips64 build-arch_mips64el build-arch_mips64r6el build-arch_mipsel build-arch_powerpc build-arch_ppc64 build-arch_ppc64el build-arch_riscv64 build-arch_s390x build-arch_sh4 build-arch_sparc64 build-arch_x32 + $(call if_package, linux-support-6.7.7, $(MAKE) -f debian/rules.real binary_support ABINAME='6.7.7' DESTDIR='$(CURDIR)/debian/linux-support-6.7.7' DH_OPTIONS='-plinux-support-6.7.7' PACKAGE_NAME='linux-support-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') +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_loong64 build-arch_m68k build-arch_mips build-arch_mips64 build-arch_mips64el build-arch_mips64r6el build-arch_mipsel build-arch_powerpc build-arch_ppc64 build-arch_ppc64el build-arch_riscv64 build-arch_s390x build-arch_sh4 build-arch_sparc64 build-arch_x32 build-arch_alpha:build-arch_alpha_bpftool build-arch_alpha_config build-arch_alpha_cpupower build-arch_alpha_hyperv-daemons build-arch_alpha_kbuild build-arch_alpha_none build-arch_alpha_perf build-arch_alpha_rtla build-arch_alpha_usbip build-arch_alpha_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.6.15' ARCH='alpha' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='alpha' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.7.7' ARCH='alpha' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='alpha' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_alpha_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real build_config ABINAME='6.6.15' ARCH='alpha' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='alpha' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real build_config ABINAME='6.7.7' ARCH='alpha' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='alpha' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_alpha_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.6.15' ARCH='alpha' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='alpha' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.7.7' ARCH='alpha' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='alpha' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_alpha_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.6.15' ARCH='alpha' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='alpha' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.7.7' ARCH='alpha' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='alpha' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_alpha_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.6.15' ARCH='alpha' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='alpha' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.7.7' ARCH='alpha' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='alpha' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_alpha_none:build-arch_alpha_none_alpha-generic build-arch_alpha_none_alpha-smp build-arch_alpha_none_alpha-generic:build-arch_alpha_none_alpha-generic_headers build-arch_alpha_none_alpha-generic_image build-arch_alpha_none_alpha-generic_image-dbg build-arch_alpha_none_alpha-generic_installer build-arch_alpha_none_alpha-generic_meta build-arch_alpha_none_alpha-generic_headers: - $(call if_package, linux-headers-6.6.15-alpha-generic, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-alpha-generic' DH_OPTIONS='-plinux-headers-6.6.15-alpha-generic' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' PACKAGE_NAME='linux-headers-6.6.15-alpha-generic' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-alpha-generic, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-alpha-generic' DH_OPTIONS='-plinux-headers-6.7.7-alpha-generic' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' PACKAGE_NAME='linux-headers-6.7.7-alpha-generic' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_alpha_none_alpha-generic_image: - $(call if_package, linux-image-6.6.15-alpha-generic, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-alpha-generic' DH_OPTIONS='-plinux-image-6.6.15-alpha-generic' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' PACKAGE_NAME='linux-image-6.6.15-alpha-generic' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-alpha-generic, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-alpha-generic' DH_OPTIONS='-plinux-image-6.7.7-alpha-generic' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' PACKAGE_NAME='linux-image-6.7.7-alpha-generic' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_alpha_none_alpha-generic_image-dbg: - $(call if_package, linux-image-6.6.15-alpha-generic-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-alpha-generic-dbg' DH_OPTIONS='-plinux-image-6.6.15-alpha-generic-dbg' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' PACKAGE_NAME='linux-image-6.6.15-alpha-generic-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-alpha-generic-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-alpha-generic-dbg' DH_OPTIONS='-plinux-image-6.7.7-alpha-generic-dbg' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' PACKAGE_NAME='linux-image-6.7.7-alpha-generic-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_alpha_none_alpha-generic_installer: - $(call if_package, ata-modules-6.6.15-alpha-generic-di btrfs-modules-6.6.15-alpha-generic-di cdrom-core-modules-6.6.15-alpha-generic-di crc-modules-6.6.15-alpha-generic-di crypto-dm-modules-6.6.15-alpha-generic-di crypto-modules-6.6.15-alpha-generic-di event-modules-6.6.15-alpha-generic-di ext4-modules-6.6.15-alpha-generic-di f2fs-modules-6.6.15-alpha-generic-di fat-modules-6.6.15-alpha-generic-di fb-modules-6.6.15-alpha-generic-di i2c-modules-6.6.15-alpha-generic-di input-modules-6.6.15-alpha-generic-di isofs-modules-6.6.15-alpha-generic-di jfs-modules-6.6.15-alpha-generic-di kernel-image-6.6.15-alpha-generic-di loop-modules-6.6.15-alpha-generic-di md-modules-6.6.15-alpha-generic-di mouse-modules-6.6.15-alpha-generic-di multipath-modules-6.6.15-alpha-generic-di nbd-modules-6.6.15-alpha-generic-di nic-modules-6.6.15-alpha-generic-di nic-pcmcia-modules-6.6.15-alpha-generic-di nic-shared-modules-6.6.15-alpha-generic-di nic-usb-modules-6.6.15-alpha-generic-di nic-wireless-modules-6.6.15-alpha-generic-di pata-modules-6.6.15-alpha-generic-di pcmcia-modules-6.6.15-alpha-generic-di ppp-modules-6.6.15-alpha-generic-di sata-modules-6.6.15-alpha-generic-di scsi-core-modules-6.6.15-alpha-generic-di scsi-modules-6.6.15-alpha-generic-di scsi-nic-modules-6.6.15-alpha-generic-di serial-modules-6.6.15-alpha-generic-di squashfs-modules-6.6.15-alpha-generic-di srm-modules-6.6.15-alpha-generic-di usb-modules-6.6.15-alpha-generic-di usb-serial-modules-6.6.15-alpha-generic-di usb-storage-modules-6.6.15-alpha-generic-di xfs-modules-6.6.15-alpha-generic-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.6.15-alpha-generic-di -pbtrfs-modules-6.6.15-alpha-generic-di -pcdrom-core-modules-6.6.15-alpha-generic-di -pcrc-modules-6.6.15-alpha-generic-di -pcrypto-dm-modules-6.6.15-alpha-generic-di -pcrypto-modules-6.6.15-alpha-generic-di -pevent-modules-6.6.15-alpha-generic-di -pext4-modules-6.6.15-alpha-generic-di -pf2fs-modules-6.6.15-alpha-generic-di -pfat-modules-6.6.15-alpha-generic-di -pfb-modules-6.6.15-alpha-generic-di -pi2c-modules-6.6.15-alpha-generic-di -pinput-modules-6.6.15-alpha-generic-di -pisofs-modules-6.6.15-alpha-generic-di -pjfs-modules-6.6.15-alpha-generic-di -pkernel-image-6.6.15-alpha-generic-di -ploop-modules-6.6.15-alpha-generic-di -pmd-modules-6.6.15-alpha-generic-di -pmouse-modules-6.6.15-alpha-generic-di -pmultipath-modules-6.6.15-alpha-generic-di -pnbd-modules-6.6.15-alpha-generic-di -pnic-modules-6.6.15-alpha-generic-di -pnic-pcmcia-modules-6.6.15-alpha-generic-di -pnic-shared-modules-6.6.15-alpha-generic-di -pnic-usb-modules-6.6.15-alpha-generic-di -pnic-wireless-modules-6.6.15-alpha-generic-di -ppata-modules-6.6.15-alpha-generic-di -ppcmcia-modules-6.6.15-alpha-generic-di -pppp-modules-6.6.15-alpha-generic-di -psata-modules-6.6.15-alpha-generic-di -pscsi-core-modules-6.6.15-alpha-generic-di -pscsi-modules-6.6.15-alpha-generic-di -pscsi-nic-modules-6.6.15-alpha-generic-di -pserial-modules-6.6.15-alpha-generic-di -psquashfs-modules-6.6.15-alpha-generic-di -psrm-modules-6.6.15-alpha-generic-di -pusb-modules-6.6.15-alpha-generic-di -pusb-serial-modules-6.6.15-alpha-generic-di -pusb-storage-modules-6.6.15-alpha-generic-di -pxfs-modules-6.6.15-alpha-generic-di' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-alpha-generic-di' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, ata-modules-6.7.7-alpha-generic-di btrfs-modules-6.7.7-alpha-generic-di cdrom-core-modules-6.7.7-alpha-generic-di crc-modules-6.7.7-alpha-generic-di crypto-dm-modules-6.7.7-alpha-generic-di crypto-modules-6.7.7-alpha-generic-di event-modules-6.7.7-alpha-generic-di ext4-modules-6.7.7-alpha-generic-di f2fs-modules-6.7.7-alpha-generic-di fat-modules-6.7.7-alpha-generic-di fb-modules-6.7.7-alpha-generic-di i2c-modules-6.7.7-alpha-generic-di input-modules-6.7.7-alpha-generic-di isofs-modules-6.7.7-alpha-generic-di jfs-modules-6.7.7-alpha-generic-di kernel-image-6.7.7-alpha-generic-di loop-modules-6.7.7-alpha-generic-di md-modules-6.7.7-alpha-generic-di mouse-modules-6.7.7-alpha-generic-di multipath-modules-6.7.7-alpha-generic-di nbd-modules-6.7.7-alpha-generic-di nic-modules-6.7.7-alpha-generic-di nic-pcmcia-modules-6.7.7-alpha-generic-di nic-shared-modules-6.7.7-alpha-generic-di nic-usb-modules-6.7.7-alpha-generic-di nic-wireless-modules-6.7.7-alpha-generic-di pata-modules-6.7.7-alpha-generic-di pcmcia-modules-6.7.7-alpha-generic-di ppp-modules-6.7.7-alpha-generic-di sata-modules-6.7.7-alpha-generic-di scsi-core-modules-6.7.7-alpha-generic-di scsi-modules-6.7.7-alpha-generic-di scsi-nic-modules-6.7.7-alpha-generic-di serial-modules-6.7.7-alpha-generic-di squashfs-modules-6.7.7-alpha-generic-di srm-modules-6.7.7-alpha-generic-di usb-modules-6.7.7-alpha-generic-di usb-serial-modules-6.7.7-alpha-generic-di usb-storage-modules-6.7.7-alpha-generic-di xfs-modules-6.7.7-alpha-generic-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.7.7-alpha-generic-di -pbtrfs-modules-6.7.7-alpha-generic-di -pcdrom-core-modules-6.7.7-alpha-generic-di -pcrc-modules-6.7.7-alpha-generic-di -pcrypto-dm-modules-6.7.7-alpha-generic-di -pcrypto-modules-6.7.7-alpha-generic-di -pevent-modules-6.7.7-alpha-generic-di -pext4-modules-6.7.7-alpha-generic-di -pf2fs-modules-6.7.7-alpha-generic-di -pfat-modules-6.7.7-alpha-generic-di -pfb-modules-6.7.7-alpha-generic-di -pi2c-modules-6.7.7-alpha-generic-di -pinput-modules-6.7.7-alpha-generic-di -pisofs-modules-6.7.7-alpha-generic-di -pjfs-modules-6.7.7-alpha-generic-di -pkernel-image-6.7.7-alpha-generic-di -ploop-modules-6.7.7-alpha-generic-di -pmd-modules-6.7.7-alpha-generic-di -pmouse-modules-6.7.7-alpha-generic-di -pmultipath-modules-6.7.7-alpha-generic-di -pnbd-modules-6.7.7-alpha-generic-di -pnic-modules-6.7.7-alpha-generic-di -pnic-pcmcia-modules-6.7.7-alpha-generic-di -pnic-shared-modules-6.7.7-alpha-generic-di -pnic-usb-modules-6.7.7-alpha-generic-di -pnic-wireless-modules-6.7.7-alpha-generic-di -ppata-modules-6.7.7-alpha-generic-di -ppcmcia-modules-6.7.7-alpha-generic-di -pppp-modules-6.7.7-alpha-generic-di -psata-modules-6.7.7-alpha-generic-di -pscsi-core-modules-6.7.7-alpha-generic-di -pscsi-modules-6.7.7-alpha-generic-di -pscsi-nic-modules-6.7.7-alpha-generic-di -pserial-modules-6.7.7-alpha-generic-di -psquashfs-modules-6.7.7-alpha-generic-di -psrm-modules-6.7.7-alpha-generic-di -pusb-modules-6.7.7-alpha-generic-di -pusb-serial-modules-6.7.7-alpha-generic-di -pusb-storage-modules-6.7.7-alpha-generic-di -pxfs-modules-6.7.7-alpha-generic-di' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-alpha-generic-di' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_alpha_none_alpha-generic_meta: - $(call if_package, linux-image-alpha-generic, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-alpha-generic' DH_OPTIONS='-plinux-image-alpha-generic' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-alpha-generic' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' PACKAGE_NAME='linux-image-alpha-generic' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-alpha-generic, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-alpha-generic' DH_OPTIONS='-plinux-headers-alpha-generic' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-alpha-generic' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' PACKAGE_NAME='linux-headers-alpha-generic' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-alpha-generic-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-alpha-generic-dbg' DH_OPTIONS='-plinux-image-alpha-generic-dbg' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-alpha-generic-dbg' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' PACKAGE_NAME='linux-image-alpha-generic-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-alpha-generic, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-alpha-generic' DH_OPTIONS='-plinux-image-alpha-generic' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-alpha-generic' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' PACKAGE_NAME='linux-image-alpha-generic' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-alpha-generic, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-alpha-generic' DH_OPTIONS='-plinux-headers-alpha-generic' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-alpha-generic' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' PACKAGE_NAME='linux-headers-alpha-generic' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-alpha-generic-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-alpha-generic-dbg' DH_OPTIONS='-plinux-image-alpha-generic-dbg' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-alpha-generic-dbg' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' PACKAGE_NAME='linux-image-alpha-generic-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_alpha_none_alpha-smp:build-arch_alpha_none_alpha-smp_headers build-arch_alpha_none_alpha-smp_image build-arch_alpha_none_alpha-smp_image-dbg build-arch_alpha_none_alpha-smp_meta build-arch_alpha_none_alpha-smp_headers: - $(call if_package, linux-headers-6.6.15-alpha-smp, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-alpha-smp' DH_OPTIONS='-plinux-headers-6.6.15-alpha-smp' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' PACKAGE_NAME='linux-headers-6.6.15-alpha-smp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-alpha-smp, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-alpha-smp' DH_OPTIONS='-plinux-headers-6.7.7-alpha-smp' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' PACKAGE_NAME='linux-headers-6.7.7-alpha-smp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_alpha_none_alpha-smp_image: - $(call if_package, linux-image-6.6.15-alpha-smp, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-alpha-smp' DH_OPTIONS='-plinux-image-6.6.15-alpha-smp' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' PACKAGE_NAME='linux-image-6.6.15-alpha-smp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-alpha-smp, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-alpha-smp' DH_OPTIONS='-plinux-image-6.7.7-alpha-smp' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' PACKAGE_NAME='linux-image-6.7.7-alpha-smp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_alpha_none_alpha-smp_image-dbg: - $(call if_package, linux-image-6.6.15-alpha-smp-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-alpha-smp-dbg' DH_OPTIONS='-plinux-image-6.6.15-alpha-smp-dbg' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' PACKAGE_NAME='linux-image-6.6.15-alpha-smp-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-alpha-smp-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-alpha-smp-dbg' DH_OPTIONS='-plinux-image-6.7.7-alpha-smp-dbg' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' PACKAGE_NAME='linux-image-6.7.7-alpha-smp-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_alpha_none_alpha-smp_meta: - $(call if_package, linux-image-alpha-smp, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-alpha-smp' DH_OPTIONS='-plinux-image-alpha-smp' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-alpha-smp' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' PACKAGE_NAME='linux-image-alpha-smp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-alpha-smp, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-alpha-smp' DH_OPTIONS='-plinux-headers-alpha-smp' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-alpha-smp' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' PACKAGE_NAME='linux-headers-alpha-smp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-alpha-smp-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-alpha-smp-dbg' DH_OPTIONS='-plinux-image-alpha-smp-dbg' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-alpha-smp-dbg' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' PACKAGE_NAME='linux-image-alpha-smp-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-alpha-smp, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-alpha-smp' DH_OPTIONS='-plinux-image-alpha-smp' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-alpha-smp' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' PACKAGE_NAME='linux-image-alpha-smp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-alpha-smp, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-alpha-smp' DH_OPTIONS='-plinux-headers-alpha-smp' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-alpha-smp' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' PACKAGE_NAME='linux-headers-alpha-smp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-alpha-smp-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-alpha-smp-dbg' DH_OPTIONS='-plinux-image-alpha-smp-dbg' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-alpha-smp-dbg' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' PACKAGE_NAME='linux-image-alpha-smp-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_alpha_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.6.15' ARCH='alpha' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='alpha' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.7.7' ARCH='alpha' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='alpha' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_alpha_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.6.15' ARCH='alpha' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='alpha' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.7.7' ARCH='alpha' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='alpha' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_alpha_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.6.15' ARCH='alpha' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='alpha' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.7.7' ARCH='alpha' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='alpha' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_amd64:build-arch_amd64_bpftool build-arch_amd64_config build-arch_amd64_cpupower build-arch_amd64_hyperv-daemons build-arch_amd64_kbuild build-arch_amd64_none build-arch_amd64_perf build-arch_amd64_rt build-arch_amd64_rtla build-arch_amd64_signed-template build-arch_amd64_usbip build-arch_amd64_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.6.15' ARCH='amd64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='x86' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.7.7' ARCH='amd64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='x86' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_amd64_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real build_config ABINAME='6.6.15' ARCH='amd64' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='x86' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real build_config ABINAME='6.7.7' ARCH='amd64' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='x86' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_amd64_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.6.15' ARCH='amd64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='x86' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.7.7' ARCH='amd64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='x86' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_amd64_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.6.15' ARCH='amd64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='x86' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.7.7' ARCH='amd64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='x86' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_amd64_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.6.15' ARCH='amd64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='x86' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.7.7' ARCH='amd64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='x86' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_amd64_none:build-arch_amd64_none_amd64 build-arch_amd64_none_cloud-amd64 build-arch_amd64_none_amd64:build-arch_amd64_none_amd64_headers build-arch_amd64_none_amd64_image build-arch_amd64_none_amd64_image-dbg build-arch_amd64_none_amd64_installer-test build-arch_amd64_none_amd64_meta build-arch_amd64_none_amd64_headers: - $(call if_package, linux-headers-6.6.15-amd64, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-amd64' DH_OPTIONS='-plinux-headers-6.6.15-amd64' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-headers-6.6.15-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-amd64, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-amd64' DH_OPTIONS='-plinux-headers-6.7.7-amd64' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-headers-6.7.7-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_amd64_none_amd64_image: - $(call if_package, linux-image-6.6.15-amd64-unsigned, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-amd64-unsigned' DH_OPTIONS='-plinux-image-6.6.15-amd64-unsigned' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-image-6.6.15-amd64-unsigned' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-amd64-unsigned, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-amd64-unsigned' DH_OPTIONS='-plinux-image-6.7.7-amd64-unsigned' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-image-6.7.7-amd64-unsigned' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_amd64_none_amd64_image-dbg: - $(call if_package, linux-image-6.6.15-amd64-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-amd64-dbg' DH_OPTIONS='-plinux-image-6.6.15-amd64-dbg' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-image-6.6.15-amd64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-amd64-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-amd64-dbg' DH_OPTIONS='-plinux-image-6.7.7-amd64-dbg' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-image-6.7.7-amd64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_amd64_none_amd64_installer-test: - $(MAKE) -f debian/rules.real build_installer-test ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pacpi-modules-6.6.15-amd64-di -pata-modules-6.6.15-amd64-di -pbtrfs-modules-6.6.15-amd64-di -pcdrom-core-modules-6.6.15-amd64-di -pcrc-modules-6.6.15-amd64-di -pcrypto-dm-modules-6.6.15-amd64-di -pcrypto-modules-6.6.15-amd64-di -pefi-modules-6.6.15-amd64-di -pevent-modules-6.6.15-amd64-di -pext4-modules-6.6.15-amd64-di -pf2fs-modules-6.6.15-amd64-di -pfat-modules-6.6.15-amd64-di -pfb-modules-6.6.15-amd64-di -pfirewire-core-modules-6.6.15-amd64-di -pi2c-modules-6.6.15-amd64-di -pinput-modules-6.6.15-amd64-di -pisofs-modules-6.6.15-amd64-di -pjfs-modules-6.6.15-amd64-di -pkernel-image-6.6.15-amd64-di -ploop-modules-6.6.15-amd64-di -pmd-modules-6.6.15-amd64-di -pmmc-core-modules-6.6.15-amd64-di -pmmc-modules-6.6.15-amd64-di -pmouse-modules-6.6.15-amd64-di -pmtd-core-modules-6.6.15-amd64-di -pmultipath-modules-6.6.15-amd64-di -pnbd-modules-6.6.15-amd64-di -pnic-modules-6.6.15-amd64-di -pnic-pcmcia-modules-6.6.15-amd64-di -pnic-shared-modules-6.6.15-amd64-di -pnic-usb-modules-6.6.15-amd64-di -pnic-wireless-modules-6.6.15-amd64-di -ppata-modules-6.6.15-amd64-di -ppcmcia-modules-6.6.15-amd64-di -ppcmcia-storage-modules-6.6.15-amd64-di -pppp-modules-6.6.15-amd64-di -prfkill-modules-6.6.15-amd64-di -psata-modules-6.6.15-amd64-di -pscsi-core-modules-6.6.15-amd64-di -pscsi-modules-6.6.15-amd64-di -pscsi-nic-modules-6.6.15-amd64-di -pserial-modules-6.6.15-amd64-di -psound-modules-6.6.15-amd64-di -pspeakup-modules-6.6.15-amd64-di -psquashfs-modules-6.6.15-amd64-di -pudf-modules-6.6.15-amd64-di -puinput-modules-6.6.15-amd64-di -pusb-modules-6.6.15-amd64-di -pusb-serial-modules-6.6.15-amd64-di -pusb-storage-modules-6.6.15-amd64-di -pxfs-modules-6.6.15-amd64-di' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6' + $(MAKE) -f debian/rules.real build_installer-test ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pacpi-modules-6.7.7-amd64-di -pata-modules-6.7.7-amd64-di -pbtrfs-modules-6.7.7-amd64-di -pcdrom-core-modules-6.7.7-amd64-di -pcrc-modules-6.7.7-amd64-di -pcrypto-dm-modules-6.7.7-amd64-di -pcrypto-modules-6.7.7-amd64-di -pefi-modules-6.7.7-amd64-di -pevent-modules-6.7.7-amd64-di -pext4-modules-6.7.7-amd64-di -pf2fs-modules-6.7.7-amd64-di -pfat-modules-6.7.7-amd64-di -pfb-modules-6.7.7-amd64-di -pfirewire-core-modules-6.7.7-amd64-di -pi2c-modules-6.7.7-amd64-di -pinput-modules-6.7.7-amd64-di -pisofs-modules-6.7.7-amd64-di -pjfs-modules-6.7.7-amd64-di -pkernel-image-6.7.7-amd64-di -ploop-modules-6.7.7-amd64-di -pmd-modules-6.7.7-amd64-di -pmmc-core-modules-6.7.7-amd64-di -pmmc-modules-6.7.7-amd64-di -pmouse-modules-6.7.7-amd64-di -pmtd-core-modules-6.7.7-amd64-di -pmultipath-modules-6.7.7-amd64-di -pnbd-modules-6.7.7-amd64-di -pnic-modules-6.7.7-amd64-di -pnic-pcmcia-modules-6.7.7-amd64-di -pnic-shared-modules-6.7.7-amd64-di -pnic-usb-modules-6.7.7-amd64-di -pnic-wireless-modules-6.7.7-amd64-di -ppata-modules-6.7.7-amd64-di -ppcmcia-modules-6.7.7-amd64-di -ppcmcia-storage-modules-6.7.7-amd64-di -pppp-modules-6.7.7-amd64-di -prfkill-modules-6.7.7-amd64-di -psata-modules-6.7.7-amd64-di -pscsi-core-modules-6.7.7-amd64-di -pscsi-modules-6.7.7-amd64-di -pscsi-nic-modules-6.7.7-amd64-di -pserial-modules-6.7.7-amd64-di -psound-modules-6.7.7-amd64-di -pspeakup-modules-6.7.7-amd64-di -psquashfs-modules-6.7.7-amd64-di -pudf-modules-6.7.7-amd64-di -puinput-modules-6.7.7-amd64-di -pusb-modules-6.7.7-amd64-di -pusb-serial-modules-6.7.7-amd64-di -pusb-storage-modules-6.7.7-amd64-di -pxfs-modules-6.7.7-amd64-di' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7' build-arch_amd64_none_amd64_meta: - $(call if_package, linux-image-amd64-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-amd64-dbg' DH_OPTIONS='-plinux-image-amd64-dbg' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-amd64-dbg' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-image-amd64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-amd64-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-amd64-dbg' DH_OPTIONS='-plinux-image-amd64-dbg' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-amd64-dbg' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-image-amd64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_amd64_none_cloud-amd64:build-arch_amd64_none_cloud-amd64_headers build-arch_amd64_none_cloud-amd64_image build-arch_amd64_none_cloud-amd64_image-dbg build-arch_amd64_none_cloud-amd64_meta build-arch_amd64_none_cloud-amd64_headers: - $(call if_package, linux-headers-6.6.15-cloud-amd64, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-cloud-amd64' DH_OPTIONS='-plinux-headers-6.6.15-cloud-amd64' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/amd64/config.cloud-amd64 debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-headers-6.6.15-cloud-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-cloud-amd64, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-cloud-amd64' DH_OPTIONS='-plinux-headers-6.7.7-cloud-amd64' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-headers-6.7.7-cloud-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_amd64_none_cloud-amd64_image: - $(call if_package, linux-image-6.6.15-cloud-amd64-unsigned, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-cloud-amd64-unsigned' DH_OPTIONS='-plinux-image-6.6.15-cloud-amd64-unsigned' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/amd64/config.cloud-amd64 debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-image-6.6.15-cloud-amd64-unsigned' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-cloud-amd64-unsigned, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-cloud-amd64-unsigned' DH_OPTIONS='-plinux-image-6.7.7-cloud-amd64-unsigned' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-image-6.7.7-cloud-amd64-unsigned' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_amd64_none_cloud-amd64_image-dbg: - $(call if_package, linux-image-6.6.15-cloud-amd64-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-cloud-amd64-dbg' DH_OPTIONS='-plinux-image-6.6.15-cloud-amd64-dbg' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/amd64/config.cloud-amd64 debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-image-6.6.15-cloud-amd64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-cloud-amd64-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-cloud-amd64-dbg' DH_OPTIONS='-plinux-image-6.7.7-cloud-amd64-dbg' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-image-6.7.7-cloud-amd64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_amd64_none_cloud-amd64_meta: - $(call if_package, linux-image-cloud-amd64-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-cloud-amd64-dbg' DH_OPTIONS='-plinux-image-cloud-amd64-dbg' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-cloud-amd64-dbg' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/amd64/config.cloud-amd64 debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-image-cloud-amd64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-cloud-amd64-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-cloud-amd64-dbg' DH_OPTIONS='-plinux-image-cloud-amd64-dbg' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-cloud-amd64-dbg' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-image-cloud-amd64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_amd64_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.6.15' ARCH='amd64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='x86' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.7.7' ARCH='amd64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='x86' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_amd64_rt:build-arch_amd64_rt_amd64 build-arch_amd64_rt_amd64:build-arch_amd64_rt_amd64_headers build-arch_amd64_rt_amd64_image build-arch_amd64_rt_amd64_image-dbg build-arch_amd64_rt_amd64_meta build-arch_amd64_rt_amd64_headers: - $(call if_package, linux-headers-6.6.15-rt-amd64, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-rt-amd64' DH_OPTIONS='-plinux-headers-6.6.15-rt-amd64' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-headers-6.6.15-rt-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-rt-amd64, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-rt-amd64' DH_OPTIONS='-plinux-headers-6.7.7-rt-amd64' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-headers-6.7.7-rt-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_amd64_rt_amd64_image: - $(call if_package, linux-image-6.6.15-rt-amd64-unsigned, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-rt-amd64-unsigned' DH_OPTIONS='-plinux-image-6.6.15-rt-amd64-unsigned' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-image-6.6.15-rt-amd64-unsigned' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-rt-amd64-unsigned, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-rt-amd64-unsigned' DH_OPTIONS='-plinux-image-6.7.7-rt-amd64-unsigned' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-image-6.7.7-rt-amd64-unsigned' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_amd64_rt_amd64_image-dbg: - $(call if_package, linux-image-6.6.15-rt-amd64-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-rt-amd64-dbg' DH_OPTIONS='-plinux-image-6.6.15-rt-amd64-dbg' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-image-6.6.15-rt-amd64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-rt-amd64-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-rt-amd64-dbg' DH_OPTIONS='-plinux-image-6.7.7-rt-amd64-dbg' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-image-6.7.7-rt-amd64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_amd64_rt_amd64_meta: - $(call if_package, linux-image-rt-amd64-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-amd64-dbg' DH_OPTIONS='-plinux-image-rt-amd64-dbg' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-rt-amd64-dbg' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-image-rt-amd64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-rt-amd64-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-amd64-dbg' DH_OPTIONS='-plinux-image-rt-amd64-dbg' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-rt-amd64-dbg' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-image-rt-amd64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_amd64_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.6.15' ARCH='amd64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='x86' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.7.7' ARCH='amd64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='x86' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_amd64_signed-template: - $(call if_package, linux-image-amd64-signed-template, $(MAKE) -f debian/rules.real build_signed-template ABINAME='6.6.15' ARCH='amd64' DESTDIR='$(CURDIR)/debian/linux-image-amd64-signed-template' DH_OPTIONS='-plinux-image-amd64-signed-template' KERNEL_ARCH='x86' PACKAGE_NAME='linux-image-amd64-signed-template' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-amd64-signed-template, $(MAKE) -f debian/rules.real build_signed-template ABINAME='6.7.7' ARCH='amd64' DESTDIR='$(CURDIR)/debian/linux-image-amd64-signed-template' DH_OPTIONS='-plinux-image-amd64-signed-template' KERNEL_ARCH='x86' PACKAGE_NAME='linux-image-amd64-signed-template' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_amd64_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.6.15' ARCH='amd64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='x86' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.7.7' ARCH='amd64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='x86' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_arm64:build-arch_arm64_bpftool build-arch_arm64_config build-arch_arm64_cpupower build-arch_arm64_hyperv-daemons build-arch_arm64_kbuild build-arch_arm64_none build-arch_arm64_perf build-arch_arm64_rt build-arch_arm64_rtla build-arch_arm64_signed-template build-arch_arm64_usbip build-arch_arm64_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.6.15' ARCH='arm64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='arm64' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.7.7' ARCH='arm64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='arm64' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_arm64_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real build_config ABINAME='6.6.15' ARCH='arm64' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='arm64' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real build_config ABINAME='6.7.7' ARCH='arm64' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='arm64' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_arm64_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.6.15' ARCH='arm64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.7.7' ARCH='arm64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_arm64_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.6.15' ARCH='arm64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='arm64' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.7.7' ARCH='arm64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='arm64' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_arm64_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.6.15' ARCH='arm64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='arm64' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.7.7' ARCH='arm64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='arm64' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_arm64_none:build-arch_arm64_none_arm64 build-arch_arm64_none_cloud-arm64 build-arch_arm64_none_arm64:build-arch_arm64_none_arm64_headers build-arch_arm64_none_arm64_image build-arch_arm64_none_arm64_image-dbg build-arch_arm64_none_arm64_installer-test build-arch_arm64_none_arm64_meta build-arch_arm64_none_arm64_headers: - $(call if_package, linux-headers-6.6.15-arm64, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-arm64' DH_OPTIONS='-plinux-headers-6.6.15-arm64' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-headers-6.6.15-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-arm64, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-arm64' DH_OPTIONS='-plinux-headers-6.7.7-arm64' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-headers-6.7.7-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_arm64_none_arm64_image: - $(call if_package, linux-image-6.6.15-arm64-unsigned, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-arm64-unsigned' DH_OPTIONS='-plinux-image-6.6.15-arm64-unsigned' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-image-6.6.15-arm64-unsigned' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-arm64-unsigned, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-arm64-unsigned' DH_OPTIONS='-plinux-image-6.7.7-arm64-unsigned' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-image-6.7.7-arm64-unsigned' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_arm64_none_arm64_image-dbg: - $(call if_package, linux-image-6.6.15-arm64-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-arm64-dbg' DH_OPTIONS='-plinux-image-6.6.15-arm64-dbg' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-image-6.6.15-arm64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-arm64-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-arm64-dbg' DH_OPTIONS='-plinux-image-6.7.7-arm64-dbg' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-image-6.7.7-arm64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_arm64_none_arm64_installer-test: - $(MAKE) -f debian/rules.real build_installer-test ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.6.15-arm64-di -pbtrfs-modules-6.6.15-arm64-di -pcdrom-core-modules-6.6.15-arm64-di -pcrc-modules-6.6.15-arm64-di -pcrypto-dm-modules-6.6.15-arm64-di -pcrypto-modules-6.6.15-arm64-di -pefi-modules-6.6.15-arm64-di -pevent-modules-6.6.15-arm64-di -pext4-modules-6.6.15-arm64-di -pf2fs-modules-6.6.15-arm64-di -pfat-modules-6.6.15-arm64-di -pfb-modules-6.6.15-arm64-di -pi2c-modules-6.6.15-arm64-di -pinput-modules-6.6.15-arm64-di -pisofs-modules-6.6.15-arm64-di -pjfs-modules-6.6.15-arm64-di -pkernel-image-6.6.15-arm64-di -pleds-modules-6.6.15-arm64-di -ploop-modules-6.6.15-arm64-di -pmd-modules-6.6.15-arm64-di -pmmc-modules-6.6.15-arm64-di -pmtd-core-modules-6.6.15-arm64-di -pmultipath-modules-6.6.15-arm64-di -pnbd-modules-6.6.15-arm64-di -pnic-modules-6.6.15-arm64-di -pnic-shared-modules-6.6.15-arm64-di -pnic-usb-modules-6.6.15-arm64-di -pnic-wireless-modules-6.6.15-arm64-di -pppp-modules-6.6.15-arm64-di -psata-modules-6.6.15-arm64-di -pscsi-core-modules-6.6.15-arm64-di -pscsi-modules-6.6.15-arm64-di -pscsi-nic-modules-6.6.15-arm64-di -psound-modules-6.6.15-arm64-di -pspeakup-modules-6.6.15-arm64-di -psquashfs-modules-6.6.15-arm64-di -pudf-modules-6.6.15-arm64-di -puinput-modules-6.6.15-arm64-di -pusb-modules-6.6.15-arm64-di -pusb-serial-modules-6.6.15-arm64-di -pusb-storage-modules-6.6.15-arm64-di -pxfs-modules-6.6.15-arm64-di' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6' + $(MAKE) -f debian/rules.real build_installer-test ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.7.7-arm64-di -pbtrfs-modules-6.7.7-arm64-di -pcdrom-core-modules-6.7.7-arm64-di -pcrc-modules-6.7.7-arm64-di -pcrypto-dm-modules-6.7.7-arm64-di -pcrypto-modules-6.7.7-arm64-di -pefi-modules-6.7.7-arm64-di -pevent-modules-6.7.7-arm64-di -pext4-modules-6.7.7-arm64-di -pf2fs-modules-6.7.7-arm64-di -pfat-modules-6.7.7-arm64-di -pfb-modules-6.7.7-arm64-di -pi2c-modules-6.7.7-arm64-di -pinput-modules-6.7.7-arm64-di -pisofs-modules-6.7.7-arm64-di -pjfs-modules-6.7.7-arm64-di -pkernel-image-6.7.7-arm64-di -pleds-modules-6.7.7-arm64-di -ploop-modules-6.7.7-arm64-di -pmd-modules-6.7.7-arm64-di -pmmc-modules-6.7.7-arm64-di -pmtd-core-modules-6.7.7-arm64-di -pmultipath-modules-6.7.7-arm64-di -pnbd-modules-6.7.7-arm64-di -pnic-modules-6.7.7-arm64-di -pnic-shared-modules-6.7.7-arm64-di -pnic-usb-modules-6.7.7-arm64-di -pnic-wireless-modules-6.7.7-arm64-di -pppp-modules-6.7.7-arm64-di -psata-modules-6.7.7-arm64-di -pscsi-core-modules-6.7.7-arm64-di -pscsi-modules-6.7.7-arm64-di -pscsi-nic-modules-6.7.7-arm64-di -psound-modules-6.7.7-arm64-di -pspeakup-modules-6.7.7-arm64-di -psquashfs-modules-6.7.7-arm64-di -pudf-modules-6.7.7-arm64-di -puinput-modules-6.7.7-arm64-di -pusb-modules-6.7.7-arm64-di -pusb-serial-modules-6.7.7-arm64-di -pusb-storage-modules-6.7.7-arm64-di -pxfs-modules-6.7.7-arm64-di' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7' build-arch_arm64_none_arm64_meta: - $(call if_package, linux-image-arm64-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-arm64-dbg' DH_OPTIONS='-plinux-image-arm64-dbg' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-arm64-dbg' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-image-arm64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-arm64-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-arm64-dbg' DH_OPTIONS='-plinux-image-arm64-dbg' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-arm64-dbg' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-image-arm64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_arm64_none_cloud-arm64:build-arch_arm64_none_cloud-arm64_headers build-arch_arm64_none_cloud-arm64_image build-arch_arm64_none_cloud-arm64_image-dbg build-arch_arm64_none_cloud-arm64_meta build-arch_arm64_none_cloud-arm64_headers: - $(call if_package, linux-headers-6.6.15-cloud-arm64, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-cloud-arm64' DH_OPTIONS='-plinux-headers-6.6.15-cloud-arm64' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/arm64/config.cloud-arm64 debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-headers-6.6.15-cloud-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-cloud-arm64, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-cloud-arm64' DH_OPTIONS='-plinux-headers-6.7.7-cloud-arm64' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-headers-6.7.7-cloud-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_arm64_none_cloud-arm64_image: - $(call if_package, linux-image-6.6.15-cloud-arm64-unsigned, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-cloud-arm64-unsigned' DH_OPTIONS='-plinux-image-6.6.15-cloud-arm64-unsigned' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/arm64/config.cloud-arm64 debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-image-6.6.15-cloud-arm64-unsigned' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-cloud-arm64-unsigned, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-cloud-arm64-unsigned' DH_OPTIONS='-plinux-image-6.7.7-cloud-arm64-unsigned' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-image-6.7.7-cloud-arm64-unsigned' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_arm64_none_cloud-arm64_image-dbg: - $(call if_package, linux-image-6.6.15-cloud-arm64-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-cloud-arm64-dbg' DH_OPTIONS='-plinux-image-6.6.15-cloud-arm64-dbg' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/arm64/config.cloud-arm64 debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-image-6.6.15-cloud-arm64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-cloud-arm64-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-cloud-arm64-dbg' DH_OPTIONS='-plinux-image-6.7.7-cloud-arm64-dbg' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-image-6.7.7-cloud-arm64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_arm64_none_cloud-arm64_meta: - $(call if_package, linux-image-cloud-arm64-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-cloud-arm64-dbg' DH_OPTIONS='-plinux-image-cloud-arm64-dbg' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-cloud-arm64-dbg' KCONFIG='debian/config/config debian/config/arm64/config debian/config/arm64/config.cloud-arm64 debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-image-cloud-arm64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-cloud-arm64-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-cloud-arm64-dbg' DH_OPTIONS='-plinux-image-cloud-arm64-dbg' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-cloud-arm64-dbg' KCONFIG='debian/config/config debian/config/arm64/config debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-image-cloud-arm64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_arm64_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.6.15' ARCH='arm64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='arm64' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.7.7' ARCH='arm64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='arm64' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_arm64_rt:build-arch_arm64_rt_arm64 build-arch_arm64_rt_arm64:build-arch_arm64_rt_arm64_headers build-arch_arm64_rt_arm64_image build-arch_arm64_rt_arm64_image-dbg build-arch_arm64_rt_arm64_meta build-arch_arm64_rt_arm64_headers: - $(call if_package, linux-headers-6.6.15-rt-arm64, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-rt-arm64' DH_OPTIONS='-plinux-headers-6.6.15-rt-arm64' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-headers-6.6.15-rt-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-rt-arm64, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-rt-arm64' DH_OPTIONS='-plinux-headers-6.7.7-rt-arm64' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-headers-6.7.7-rt-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_arm64_rt_arm64_image: - $(call if_package, linux-image-6.6.15-rt-arm64-unsigned, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-rt-arm64-unsigned' DH_OPTIONS='-plinux-image-6.6.15-rt-arm64-unsigned' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-image-6.6.15-rt-arm64-unsigned' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-rt-arm64-unsigned, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-rt-arm64-unsigned' DH_OPTIONS='-plinux-image-6.7.7-rt-arm64-unsigned' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-image-6.7.7-rt-arm64-unsigned' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_arm64_rt_arm64_image-dbg: - $(call if_package, linux-image-6.6.15-rt-arm64-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-rt-arm64-dbg' DH_OPTIONS='-plinux-image-6.6.15-rt-arm64-dbg' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-image-6.6.15-rt-arm64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-rt-arm64-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-rt-arm64-dbg' DH_OPTIONS='-plinux-image-6.7.7-rt-arm64-dbg' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-image-6.7.7-rt-arm64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_arm64_rt_arm64_meta: - $(call if_package, linux-image-rt-arm64-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-arm64-dbg' DH_OPTIONS='-plinux-image-rt-arm64-dbg' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-rt-arm64-dbg' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-image-rt-arm64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-rt-arm64-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-arm64-dbg' DH_OPTIONS='-plinux-image-rt-arm64-dbg' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-rt-arm64-dbg' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-image-rt-arm64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_arm64_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.6.15' ARCH='arm64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='arm64' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.7.7' ARCH='arm64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='arm64' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_arm64_signed-template: - $(call if_package, linux-image-arm64-signed-template, $(MAKE) -f debian/rules.real build_signed-template ABINAME='6.6.15' ARCH='arm64' DESTDIR='$(CURDIR)/debian/linux-image-arm64-signed-template' DH_OPTIONS='-plinux-image-arm64-signed-template' KERNEL_ARCH='arm64' PACKAGE_NAME='linux-image-arm64-signed-template' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-arm64-signed-template, $(MAKE) -f debian/rules.real build_signed-template ABINAME='6.7.7' ARCH='arm64' DESTDIR='$(CURDIR)/debian/linux-image-arm64-signed-template' DH_OPTIONS='-plinux-image-arm64-signed-template' KERNEL_ARCH='arm64' PACKAGE_NAME='linux-image-arm64-signed-template' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_arm64_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.6.15' ARCH='arm64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='arm64' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.7.7' ARCH='arm64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='arm64' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_armel:build-arch_armel_bpftool build-arch_armel_config build-arch_armel_cpupower build-arch_armel_hyperv-daemons build-arch_armel_kbuild build-arch_armel_none build-arch_armel_perf build-arch_armel_rtla build-arch_armel_usbip build-arch_armel_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.6.15' ARCH='armel' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='arm' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.7.7' ARCH='armel' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='arm' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_armel_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real build_config ABINAME='6.6.15' ARCH='armel' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='arm' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real build_config ABINAME='6.7.7' ARCH='armel' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='arm' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_armel_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.6.15' ARCH='armel' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='arm' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.7.7' ARCH='armel' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='arm' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_armel_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.6.15' ARCH='armel' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='arm' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.7.7' ARCH='armel' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='arm' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_armel_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.6.15' ARCH='armel' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='arm' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.7.7' ARCH='armel' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='arm' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_armel_none:build-arch_armel_none_rpi build-arch_armel_none_rpi:build-arch_armel_none_rpi_headers build-arch_armel_none_rpi_image build-arch_armel_none_rpi_image-dbg build-arch_armel_none_rpi_meta build-arch_armel_none_rpi_headers: - $(call if_package, linux-headers-6.6.15-rpi, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='armel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-rpi' DH_OPTIONS='-plinux-headers-6.6.15-rpi' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' PACKAGE_NAME='linux-headers-6.6.15-rpi' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-rpi, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='armel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-rpi' DH_OPTIONS='-plinux-headers-6.7.7-rpi' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' PACKAGE_NAME='linux-headers-6.7.7-rpi' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_armel_none_rpi_image: - $(call if_package, linux-image-6.6.15-rpi, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='armel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-rpi' DH_OPTIONS='-plinux-image-6.6.15-rpi' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' PACKAGE_NAME='linux-image-6.6.15-rpi' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-rpi, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='armel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-rpi' DH_OPTIONS='-plinux-image-6.7.7-rpi' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' PACKAGE_NAME='linux-image-6.7.7-rpi' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_armel_none_rpi_image-dbg: - $(call if_package, linux-image-6.6.15-rpi-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='armel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-rpi-dbg' DH_OPTIONS='-plinux-image-6.6.15-rpi-dbg' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' PACKAGE_NAME='linux-image-6.6.15-rpi-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-rpi-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='armel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-rpi-dbg' DH_OPTIONS='-plinux-image-6.7.7-rpi-dbg' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' PACKAGE_NAME='linux-image-6.7.7-rpi-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_armel_none_rpi_meta: - $(call if_package, linux-image-rpi, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='armel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rpi' DH_OPTIONS='-plinux-image-rpi' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-rpi' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' PACKAGE_NAME='linux-image-rpi' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-rpi, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='armel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-rpi' DH_OPTIONS='-plinux-headers-rpi' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-rpi' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' PACKAGE_NAME='linux-headers-rpi' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-rpi-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='armel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rpi-dbg' DH_OPTIONS='-plinux-image-rpi-dbg' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-rpi-dbg' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' PACKAGE_NAME='linux-image-rpi-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-rpi, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='armel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rpi' DH_OPTIONS='-plinux-image-rpi' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-rpi' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' PACKAGE_NAME='linux-image-rpi' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-rpi, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='armel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-rpi' DH_OPTIONS='-plinux-headers-rpi' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-rpi' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' PACKAGE_NAME='linux-headers-rpi' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-rpi-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='armel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rpi-dbg' DH_OPTIONS='-plinux-image-rpi-dbg' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-rpi-dbg' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' PACKAGE_NAME='linux-image-rpi-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_armel_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.6.15' ARCH='armel' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='arm' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.7.7' ARCH='armel' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='arm' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_armel_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.6.15' ARCH='armel' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='arm' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.7.7' ARCH='armel' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='arm' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_armel_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.6.15' ARCH='armel' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='arm' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.7.7' ARCH='armel' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='arm' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_armhf:build-arch_armhf_bpftool build-arch_armhf_config build-arch_armhf_cpupower build-arch_armhf_hyperv-daemons build-arch_armhf_kbuild build-arch_armhf_none build-arch_armhf_perf build-arch_armhf_rt build-arch_armhf_rtla build-arch_armhf_usbip build-arch_armhf_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.6.15' ARCH='armhf' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='arm' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.7.7' ARCH='armhf' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='arm' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_armhf_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real build_config ABINAME='6.6.15' ARCH='armhf' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='arm' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real build_config ABINAME='6.7.7' ARCH='armhf' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='arm' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_armhf_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.6.15' ARCH='armhf' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='arm' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.7.7' ARCH='armhf' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='arm' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_armhf_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.6.15' ARCH='armhf' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='arm' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.7.7' ARCH='armhf' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='arm' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_armhf_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.6.15' ARCH='armhf' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='arm' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.7.7' ARCH='armhf' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='arm' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_armhf_none:build-arch_armhf_none_armmp build-arch_armhf_none_armmp-lpae build-arch_armhf_none_armmp:build-arch_armhf_none_armmp_headers build-arch_armhf_none_armmp_image build-arch_armhf_none_armmp_image-dbg build-arch_armhf_none_armmp_installer build-arch_armhf_none_armmp_meta build-arch_armhf_none_armmp-lpae:build-arch_armhf_none_armmp-lpae_headers build-arch_armhf_none_armmp-lpae_image build-arch_armhf_none_armmp-lpae_image-dbg build-arch_armhf_none_armmp-lpae_meta build-arch_armhf_none_armmp-lpae_headers: - $(call if_package, linux-headers-6.6.15-armmp-lpae, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-armmp-lpae' DH_OPTIONS='-plinux-headers-6.6.15-armmp-lpae' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' PACKAGE_NAME='linux-headers-6.6.15-armmp-lpae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-armmp-lpae, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-armmp-lpae' DH_OPTIONS='-plinux-headers-6.7.7-armmp-lpae' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' PACKAGE_NAME='linux-headers-6.7.7-armmp-lpae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_armhf_none_armmp-lpae_image: - $(call if_package, linux-image-6.6.15-armmp-lpae, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-armmp-lpae' DH_OPTIONS='-plinux-image-6.6.15-armmp-lpae' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' PACKAGE_NAME='linux-image-6.6.15-armmp-lpae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-armmp-lpae, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-armmp-lpae' DH_OPTIONS='-plinux-image-6.7.7-armmp-lpae' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' PACKAGE_NAME='linux-image-6.7.7-armmp-lpae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_armhf_none_armmp-lpae_image-dbg: - $(call if_package, linux-image-6.6.15-armmp-lpae-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-armmp-lpae-dbg' DH_OPTIONS='-plinux-image-6.6.15-armmp-lpae-dbg' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' PACKAGE_NAME='linux-image-6.6.15-armmp-lpae-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-armmp-lpae-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-armmp-lpae-dbg' DH_OPTIONS='-plinux-image-6.7.7-armmp-lpae-dbg' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' PACKAGE_NAME='linux-image-6.7.7-armmp-lpae-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_armhf_none_armmp-lpae_meta: - $(call if_package, linux-image-armmp-lpae, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-armmp-lpae' DH_OPTIONS='-plinux-image-armmp-lpae' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-armmp-lpae' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' PACKAGE_NAME='linux-image-armmp-lpae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-armmp-lpae, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-armmp-lpae' DH_OPTIONS='-plinux-headers-armmp-lpae' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-armmp-lpae' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' PACKAGE_NAME='linux-headers-armmp-lpae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-image-armmp-lpae-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-armmp-lpae-dbg' DH_OPTIONS='-plinux-image-armmp-lpae-dbg' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-armmp-lpae-dbg' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' PACKAGE_NAME='linux-image-armmp-lpae-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-armmp-lpae, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-armmp-lpae' DH_OPTIONS='-plinux-image-armmp-lpae' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-armmp-lpae' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' PACKAGE_NAME='linux-image-armmp-lpae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-armmp-lpae, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-armmp-lpae' DH_OPTIONS='-plinux-headers-armmp-lpae' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-armmp-lpae' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' PACKAGE_NAME='linux-headers-armmp-lpae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-image-armmp-lpae-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-armmp-lpae-dbg' DH_OPTIONS='-plinux-image-armmp-lpae-dbg' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-armmp-lpae-dbg' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' PACKAGE_NAME='linux-image-armmp-lpae-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_armhf_none_armmp_headers: - $(call if_package, linux-headers-6.6.15-armmp, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-armmp' DH_OPTIONS='-plinux-headers-6.6.15-armmp' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' PACKAGE_NAME='linux-headers-6.6.15-armmp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-armmp, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-armmp' DH_OPTIONS='-plinux-headers-6.7.7-armmp' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' PACKAGE_NAME='linux-headers-6.7.7-armmp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_armhf_none_armmp_image: - $(call if_package, linux-image-6.6.15-armmp, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-armmp' DH_OPTIONS='-plinux-image-6.6.15-armmp' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' PACKAGE_NAME='linux-image-6.6.15-armmp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-armmp, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-armmp' DH_OPTIONS='-plinux-image-6.7.7-armmp' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' PACKAGE_NAME='linux-image-6.7.7-armmp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_armhf_none_armmp_image-dbg: - $(call if_package, linux-image-6.6.15-armmp-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-armmp-dbg' DH_OPTIONS='-plinux-image-6.6.15-armmp-dbg' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' PACKAGE_NAME='linux-image-6.6.15-armmp-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-armmp-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-armmp-dbg' DH_OPTIONS='-plinux-image-6.7.7-armmp-dbg' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' PACKAGE_NAME='linux-image-6.7.7-armmp-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_armhf_none_armmp_installer: - $(call if_package, ata-modules-6.6.15-armmp-di btrfs-modules-6.6.15-armmp-di cdrom-core-modules-6.6.15-armmp-di crc-modules-6.6.15-armmp-di crypto-dm-modules-6.6.15-armmp-di crypto-modules-6.6.15-armmp-di efi-modules-6.6.15-armmp-di event-modules-6.6.15-armmp-di ext4-modules-6.6.15-armmp-di f2fs-modules-6.6.15-armmp-di fat-modules-6.6.15-armmp-di fb-modules-6.6.15-armmp-di i2c-modules-6.6.15-armmp-di input-modules-6.6.15-armmp-di isofs-modules-6.6.15-armmp-di jfs-modules-6.6.15-armmp-di kernel-image-6.6.15-armmp-di leds-modules-6.6.15-armmp-di loop-modules-6.6.15-armmp-di md-modules-6.6.15-armmp-di mmc-modules-6.6.15-armmp-di mtd-modules-6.6.15-armmp-di multipath-modules-6.6.15-armmp-di nbd-modules-6.6.15-armmp-di nic-modules-6.6.15-armmp-di nic-shared-modules-6.6.15-armmp-di nic-usb-modules-6.6.15-armmp-di nic-wireless-modules-6.6.15-armmp-di pata-modules-6.6.15-armmp-di ppp-modules-6.6.15-armmp-di sata-modules-6.6.15-armmp-di scsi-core-modules-6.6.15-armmp-di scsi-modules-6.6.15-armmp-di scsi-nic-modules-6.6.15-armmp-di sound-modules-6.6.15-armmp-di speakup-modules-6.6.15-armmp-di squashfs-modules-6.6.15-armmp-di udf-modules-6.6.15-armmp-di uinput-modules-6.6.15-armmp-di usb-modules-6.6.15-armmp-di usb-serial-modules-6.6.15-armmp-di usb-storage-modules-6.6.15-armmp-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.6.15-armmp-di -pbtrfs-modules-6.6.15-armmp-di -pcdrom-core-modules-6.6.15-armmp-di -pcrc-modules-6.6.15-armmp-di -pcrypto-dm-modules-6.6.15-armmp-di -pcrypto-modules-6.6.15-armmp-di -pefi-modules-6.6.15-armmp-di -pevent-modules-6.6.15-armmp-di -pext4-modules-6.6.15-armmp-di -pf2fs-modules-6.6.15-armmp-di -pfat-modules-6.6.15-armmp-di -pfb-modules-6.6.15-armmp-di -pi2c-modules-6.6.15-armmp-di -pinput-modules-6.6.15-armmp-di -pisofs-modules-6.6.15-armmp-di -pjfs-modules-6.6.15-armmp-di -pkernel-image-6.6.15-armmp-di -pleds-modules-6.6.15-armmp-di -ploop-modules-6.6.15-armmp-di -pmd-modules-6.6.15-armmp-di -pmmc-modules-6.6.15-armmp-di -pmtd-modules-6.6.15-armmp-di -pmultipath-modules-6.6.15-armmp-di -pnbd-modules-6.6.15-armmp-di -pnic-modules-6.6.15-armmp-di -pnic-shared-modules-6.6.15-armmp-di -pnic-usb-modules-6.6.15-armmp-di -pnic-wireless-modules-6.6.15-armmp-di -ppata-modules-6.6.15-armmp-di -pppp-modules-6.6.15-armmp-di -psata-modules-6.6.15-armmp-di -pscsi-core-modules-6.6.15-armmp-di -pscsi-modules-6.6.15-armmp-di -pscsi-nic-modules-6.6.15-armmp-di -psound-modules-6.6.15-armmp-di -pspeakup-modules-6.6.15-armmp-di -psquashfs-modules-6.6.15-armmp-di -pudf-modules-6.6.15-armmp-di -puinput-modules-6.6.15-armmp-di -pusb-modules-6.6.15-armmp-di -pusb-serial-modules-6.6.15-armmp-di -pusb-storage-modules-6.6.15-armmp-di' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-armmp-di' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, ata-modules-6.7.7-armmp-di btrfs-modules-6.7.7-armmp-di cdrom-core-modules-6.7.7-armmp-di crc-modules-6.7.7-armmp-di crypto-dm-modules-6.7.7-armmp-di crypto-modules-6.7.7-armmp-di efi-modules-6.7.7-armmp-di event-modules-6.7.7-armmp-di ext4-modules-6.7.7-armmp-di f2fs-modules-6.7.7-armmp-di fat-modules-6.7.7-armmp-di fb-modules-6.7.7-armmp-di i2c-modules-6.7.7-armmp-di input-modules-6.7.7-armmp-di isofs-modules-6.7.7-armmp-di jfs-modules-6.7.7-armmp-di kernel-image-6.7.7-armmp-di leds-modules-6.7.7-armmp-di loop-modules-6.7.7-armmp-di md-modules-6.7.7-armmp-di mmc-modules-6.7.7-armmp-di mtd-modules-6.7.7-armmp-di multipath-modules-6.7.7-armmp-di nbd-modules-6.7.7-armmp-di nic-modules-6.7.7-armmp-di nic-shared-modules-6.7.7-armmp-di nic-usb-modules-6.7.7-armmp-di nic-wireless-modules-6.7.7-armmp-di pata-modules-6.7.7-armmp-di ppp-modules-6.7.7-armmp-di sata-modules-6.7.7-armmp-di scsi-core-modules-6.7.7-armmp-di scsi-modules-6.7.7-armmp-di scsi-nic-modules-6.7.7-armmp-di sound-modules-6.7.7-armmp-di speakup-modules-6.7.7-armmp-di squashfs-modules-6.7.7-armmp-di udf-modules-6.7.7-armmp-di uinput-modules-6.7.7-armmp-di usb-modules-6.7.7-armmp-di usb-serial-modules-6.7.7-armmp-di usb-storage-modules-6.7.7-armmp-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.7.7-armmp-di -pbtrfs-modules-6.7.7-armmp-di -pcdrom-core-modules-6.7.7-armmp-di -pcrc-modules-6.7.7-armmp-di -pcrypto-dm-modules-6.7.7-armmp-di -pcrypto-modules-6.7.7-armmp-di -pefi-modules-6.7.7-armmp-di -pevent-modules-6.7.7-armmp-di -pext4-modules-6.7.7-armmp-di -pf2fs-modules-6.7.7-armmp-di -pfat-modules-6.7.7-armmp-di -pfb-modules-6.7.7-armmp-di -pi2c-modules-6.7.7-armmp-di -pinput-modules-6.7.7-armmp-di -pisofs-modules-6.7.7-armmp-di -pjfs-modules-6.7.7-armmp-di -pkernel-image-6.7.7-armmp-di -pleds-modules-6.7.7-armmp-di -ploop-modules-6.7.7-armmp-di -pmd-modules-6.7.7-armmp-di -pmmc-modules-6.7.7-armmp-di -pmtd-modules-6.7.7-armmp-di -pmultipath-modules-6.7.7-armmp-di -pnbd-modules-6.7.7-armmp-di -pnic-modules-6.7.7-armmp-di -pnic-shared-modules-6.7.7-armmp-di -pnic-usb-modules-6.7.7-armmp-di -pnic-wireless-modules-6.7.7-armmp-di -ppata-modules-6.7.7-armmp-di -pppp-modules-6.7.7-armmp-di -psata-modules-6.7.7-armmp-di -pscsi-core-modules-6.7.7-armmp-di -pscsi-modules-6.7.7-armmp-di -pscsi-nic-modules-6.7.7-armmp-di -psound-modules-6.7.7-armmp-di -pspeakup-modules-6.7.7-armmp-di -psquashfs-modules-6.7.7-armmp-di -pudf-modules-6.7.7-armmp-di -puinput-modules-6.7.7-armmp-di -pusb-modules-6.7.7-armmp-di -pusb-serial-modules-6.7.7-armmp-di -pusb-storage-modules-6.7.7-armmp-di' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-armmp-di' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_armhf_none_armmp_meta: - $(call if_package, linux-image-armmp, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-armmp' DH_OPTIONS='-plinux-image-armmp' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-armmp' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' PACKAGE_NAME='linux-image-armmp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-armmp, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-armmp' DH_OPTIONS='-plinux-headers-armmp' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-armmp' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' PACKAGE_NAME='linux-headers-armmp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-image-armmp-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-armmp-dbg' DH_OPTIONS='-plinux-image-armmp-dbg' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-armmp-dbg' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' PACKAGE_NAME='linux-image-armmp-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-armmp, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-armmp' DH_OPTIONS='-plinux-image-armmp' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-armmp' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' PACKAGE_NAME='linux-image-armmp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-armmp, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-armmp' DH_OPTIONS='-plinux-headers-armmp' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-armmp' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' PACKAGE_NAME='linux-headers-armmp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-image-armmp-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-armmp-dbg' DH_OPTIONS='-plinux-image-armmp-dbg' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-armmp-dbg' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' PACKAGE_NAME='linux-image-armmp-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_armhf_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.6.15' ARCH='armhf' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='arm' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.7.7' ARCH='armhf' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='arm' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_armhf_rt:build-arch_armhf_rt_armmp build-arch_armhf_rt_armmp:build-arch_armhf_rt_armmp_headers build-arch_armhf_rt_armmp_image build-arch_armhf_rt_armmp_image-dbg build-arch_armhf_rt_armmp_meta build-arch_armhf_rt_armmp_headers: - $(call if_package, linux-headers-6.6.15-rt-armmp, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-rt-armmp' DH_OPTIONS='-plinux-headers-6.6.15-rt-armmp' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' PACKAGE_NAME='linux-headers-6.6.15-rt-armmp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-rt-armmp, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-rt-armmp' DH_OPTIONS='-plinux-headers-6.7.7-rt-armmp' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' PACKAGE_NAME='linux-headers-6.7.7-rt-armmp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_armhf_rt_armmp_image: - $(call if_package, linux-image-6.6.15-rt-armmp, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-rt-armmp' DH_OPTIONS='-plinux-image-6.6.15-rt-armmp' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' PACKAGE_NAME='linux-image-6.6.15-rt-armmp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-rt-armmp, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-rt-armmp' DH_OPTIONS='-plinux-image-6.7.7-rt-armmp' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' PACKAGE_NAME='linux-image-6.7.7-rt-armmp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_armhf_rt_armmp_image-dbg: - $(call if_package, linux-image-6.6.15-rt-armmp-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-rt-armmp-dbg' DH_OPTIONS='-plinux-image-6.6.15-rt-armmp-dbg' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' PACKAGE_NAME='linux-image-6.6.15-rt-armmp-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-rt-armmp-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-rt-armmp-dbg' DH_OPTIONS='-plinux-image-6.7.7-rt-armmp-dbg' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' PACKAGE_NAME='linux-image-6.7.7-rt-armmp-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_armhf_rt_armmp_meta: - $(call if_package, linux-image-rt-armmp, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-armmp' DH_OPTIONS='-plinux-image-rt-armmp' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-rt-armmp' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' PACKAGE_NAME='linux-image-rt-armmp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-rt-armmp, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-rt-armmp' DH_OPTIONS='-plinux-headers-rt-armmp' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-rt-armmp' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' PACKAGE_NAME='linux-headers-rt-armmp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-image-rt-armmp-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-armmp-dbg' DH_OPTIONS='-plinux-image-rt-armmp-dbg' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-rt-armmp-dbg' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' PACKAGE_NAME='linux-image-rt-armmp-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-rt-armmp, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-armmp' DH_OPTIONS='-plinux-image-rt-armmp' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-rt-armmp' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' PACKAGE_NAME='linux-image-rt-armmp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-rt-armmp, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-rt-armmp' DH_OPTIONS='-plinux-headers-rt-armmp' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-rt-armmp' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' PACKAGE_NAME='linux-headers-rt-armmp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-image-rt-armmp-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-armmp-dbg' DH_OPTIONS='-plinux-image-rt-armmp-dbg' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-rt-armmp-dbg' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' PACKAGE_NAME='linux-image-rt-armmp-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_armhf_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.6.15' ARCH='armhf' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='arm' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.7.7' ARCH='armhf' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='arm' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_armhf_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.6.15' ARCH='armhf' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='arm' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.7.7' ARCH='armhf' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='arm' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_hppa:build-arch_hppa_bpftool build-arch_hppa_config build-arch_hppa_cpupower build-arch_hppa_hyperv-daemons build-arch_hppa_kbuild build-arch_hppa_none build-arch_hppa_perf build-arch_hppa_rtla build-arch_hppa_usbip build-arch_hppa_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.6.15' ARCH='hppa' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='parisc' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.7.7' ARCH='hppa' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='parisc' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_hppa_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real build_config ABINAME='6.6.15' ARCH='hppa' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='parisc' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real build_config ABINAME='6.7.7' ARCH='hppa' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='parisc' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_hppa_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.6.15' ARCH='hppa' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='parisc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.7.7' ARCH='hppa' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='parisc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_hppa_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.6.15' ARCH='hppa' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='parisc' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.7.7' ARCH='hppa' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='parisc' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_hppa_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.6.15' ARCH='hppa' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='parisc' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.7.7' ARCH='hppa' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='parisc' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_hppa_none:build-arch_hppa_none_parisc build-arch_hppa_none_parisc64 build-arch_hppa_none_parisc:build-arch_hppa_none_parisc_headers build-arch_hppa_none_parisc_image build-arch_hppa_none_parisc_image-dbg build-arch_hppa_none_parisc_installer build-arch_hppa_none_parisc_meta build-arch_hppa_none_parisc64:build-arch_hppa_none_parisc64_headers build-arch_hppa_none_parisc64_image build-arch_hppa_none_parisc64_image-dbg build-arch_hppa_none_parisc64_installer build-arch_hppa_none_parisc64_meta build-arch_hppa_none_parisc64_headers: - $(call if_package, linux-headers-6.6.15-parisc64, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='hppa' COMPAT_DEB_ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-parisc64' DH_OPTIONS='-plinux-headers-6.6.15-parisc64' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCFLAGS='-fno-cse-follow-jumps' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc64\""' KERNEL_ARCH='parisc' KERNEL_DEB_ARCH='undefined' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' PACKAGE_NAME='linux-headers-6.6.15-parisc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-parisc64, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-parisc64' DH_OPTIONS='-plinux-headers-6.7.7-parisc64' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc64\""' KERNEL_ARCH='parisc' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' PACKAGE_NAME='linux-headers-6.7.7-parisc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_hppa_none_parisc64_image: - $(call if_package, linux-image-6.6.15-parisc64, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='hppa' COMPAT_DEB_ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-parisc64' DH_OPTIONS='-plinux-image-6.6.15-parisc64' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCFLAGS='-fno-cse-follow-jumps' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc64\""' KERNEL_ARCH='parisc' KERNEL_DEB_ARCH='undefined' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' PACKAGE_NAME='linux-image-6.6.15-parisc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-parisc64, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-parisc64' DH_OPTIONS='-plinux-image-6.7.7-parisc64' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc64\""' KERNEL_ARCH='parisc' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' PACKAGE_NAME='linux-image-6.7.7-parisc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_hppa_none_parisc64_image-dbg: - $(call if_package, linux-image-6.6.15-parisc64-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='hppa' COMPAT_DEB_ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-parisc64-dbg' DH_OPTIONS='-plinux-image-6.6.15-parisc64-dbg' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCFLAGS='-fno-cse-follow-jumps' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc64\""' KERNEL_ARCH='parisc' KERNEL_DEB_ARCH='undefined' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' PACKAGE_NAME='linux-image-6.6.15-parisc64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-parisc64-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-parisc64-dbg' DH_OPTIONS='-plinux-image-6.7.7-parisc64-dbg' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc64\""' KERNEL_ARCH='parisc' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' PACKAGE_NAME='linux-image-6.7.7-parisc64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_hppa_none_parisc64_installer: - $(call if_package, ata-modules-6.6.15-parisc64-di btrfs-modules-6.6.15-parisc64-di cdrom-core-modules-6.6.15-parisc64-di crc-modules-6.6.15-parisc64-di crypto-dm-modules-6.6.15-parisc64-di crypto-modules-6.6.15-parisc64-di event-modules-6.6.15-parisc64-di ext4-modules-6.6.15-parisc64-di f2fs-modules-6.6.15-parisc64-di fat-modules-6.6.15-parisc64-di fb-modules-6.6.15-parisc64-di input-modules-6.6.15-parisc64-di isofs-modules-6.6.15-parisc64-di jfs-modules-6.6.15-parisc64-di kernel-image-6.6.15-parisc64-di loop-modules-6.6.15-parisc64-di md-modules-6.6.15-parisc64-di mouse-modules-6.6.15-parisc64-di multipath-modules-6.6.15-parisc64-di nbd-modules-6.6.15-parisc64-di nic-modules-6.6.15-parisc64-di nic-shared-modules-6.6.15-parisc64-di nic-usb-modules-6.6.15-parisc64-di pata-modules-6.6.15-parisc64-di ppp-modules-6.6.15-parisc64-di sata-modules-6.6.15-parisc64-di scsi-core-modules-6.6.15-parisc64-di scsi-modules-6.6.15-parisc64-di serial-modules-6.6.15-parisc64-di squashfs-modules-6.6.15-parisc64-di usb-modules-6.6.15-parisc64-di usb-serial-modules-6.6.15-parisc64-di usb-storage-modules-6.6.15-parisc64-di xfs-modules-6.6.15-parisc64-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.6.15' ARCH='hppa' COMPAT_DEB_ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.6.15-parisc64-di -pbtrfs-modules-6.6.15-parisc64-di -pcdrom-core-modules-6.6.15-parisc64-di -pcrc-modules-6.6.15-parisc64-di -pcrypto-dm-modules-6.6.15-parisc64-di -pcrypto-modules-6.6.15-parisc64-di -pevent-modules-6.6.15-parisc64-di -pext4-modules-6.6.15-parisc64-di -pf2fs-modules-6.6.15-parisc64-di -pfat-modules-6.6.15-parisc64-di -pfb-modules-6.6.15-parisc64-di -pinput-modules-6.6.15-parisc64-di -pisofs-modules-6.6.15-parisc64-di -pjfs-modules-6.6.15-parisc64-di -pkernel-image-6.6.15-parisc64-di -ploop-modules-6.6.15-parisc64-di -pmd-modules-6.6.15-parisc64-di -pmouse-modules-6.6.15-parisc64-di -pmultipath-modules-6.6.15-parisc64-di -pnbd-modules-6.6.15-parisc64-di -pnic-modules-6.6.15-parisc64-di -pnic-shared-modules-6.6.15-parisc64-di -pnic-usb-modules-6.6.15-parisc64-di -ppata-modules-6.6.15-parisc64-di -pppp-modules-6.6.15-parisc64-di -psata-modules-6.6.15-parisc64-di -pscsi-core-modules-6.6.15-parisc64-di -pscsi-modules-6.6.15-parisc64-di -pserial-modules-6.6.15-parisc64-di -psquashfs-modules-6.6.15-parisc64-di -pusb-modules-6.6.15-parisc64-di -pusb-serial-modules-6.6.15-parisc64-di -pusb-storage-modules-6.6.15-parisc64-di -pxfs-modules-6.6.15-parisc64-di' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-parisc64-di' KCFLAGS='-fno-cse-follow-jumps' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc64\""' KERNEL_ARCH='parisc' KERNEL_DEB_ARCH='undefined' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, ata-modules-6.7.7-parisc64-di btrfs-modules-6.7.7-parisc64-di cdrom-core-modules-6.7.7-parisc64-di crc-modules-6.7.7-parisc64-di crypto-dm-modules-6.7.7-parisc64-di crypto-modules-6.7.7-parisc64-di event-modules-6.7.7-parisc64-di ext4-modules-6.7.7-parisc64-di f2fs-modules-6.7.7-parisc64-di fat-modules-6.7.7-parisc64-di fb-modules-6.7.7-parisc64-di input-modules-6.7.7-parisc64-di isofs-modules-6.7.7-parisc64-di jfs-modules-6.7.7-parisc64-di kernel-image-6.7.7-parisc64-di loop-modules-6.7.7-parisc64-di md-modules-6.7.7-parisc64-di mouse-modules-6.7.7-parisc64-di multipath-modules-6.7.7-parisc64-di nbd-modules-6.7.7-parisc64-di nic-modules-6.7.7-parisc64-di nic-shared-modules-6.7.7-parisc64-di nic-usb-modules-6.7.7-parisc64-di pata-modules-6.7.7-parisc64-di ppp-modules-6.7.7-parisc64-di sata-modules-6.7.7-parisc64-di scsi-core-modules-6.7.7-parisc64-di scsi-modules-6.7.7-parisc64-di serial-modules-6.7.7-parisc64-di squashfs-modules-6.7.7-parisc64-di usb-modules-6.7.7-parisc64-di usb-serial-modules-6.7.7-parisc64-di usb-storage-modules-6.7.7-parisc64-di xfs-modules-6.7.7-parisc64-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.7.7' ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.7.7-parisc64-di -pbtrfs-modules-6.7.7-parisc64-di -pcdrom-core-modules-6.7.7-parisc64-di -pcrc-modules-6.7.7-parisc64-di -pcrypto-dm-modules-6.7.7-parisc64-di -pcrypto-modules-6.7.7-parisc64-di -pevent-modules-6.7.7-parisc64-di -pext4-modules-6.7.7-parisc64-di -pf2fs-modules-6.7.7-parisc64-di -pfat-modules-6.7.7-parisc64-di -pfb-modules-6.7.7-parisc64-di -pinput-modules-6.7.7-parisc64-di -pisofs-modules-6.7.7-parisc64-di -pjfs-modules-6.7.7-parisc64-di -pkernel-image-6.7.7-parisc64-di -ploop-modules-6.7.7-parisc64-di -pmd-modules-6.7.7-parisc64-di -pmouse-modules-6.7.7-parisc64-di -pmultipath-modules-6.7.7-parisc64-di -pnbd-modules-6.7.7-parisc64-di -pnic-modules-6.7.7-parisc64-di -pnic-shared-modules-6.7.7-parisc64-di -pnic-usb-modules-6.7.7-parisc64-di -ppata-modules-6.7.7-parisc64-di -pppp-modules-6.7.7-parisc64-di -psata-modules-6.7.7-parisc64-di -pscsi-core-modules-6.7.7-parisc64-di -pscsi-modules-6.7.7-parisc64-di -pserial-modules-6.7.7-parisc64-di -psquashfs-modules-6.7.7-parisc64-di -pusb-modules-6.7.7-parisc64-di -pusb-serial-modules-6.7.7-parisc64-di -pusb-storage-modules-6.7.7-parisc64-di -pxfs-modules-6.7.7-parisc64-di' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-parisc64-di' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc64\""' KERNEL_ARCH='parisc' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_hppa_none_parisc64_meta: - $(call if_package, linux-image-parisc64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='hppa' COMPAT_DEB_ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-parisc64' DH_OPTIONS='-plinux-image-parisc64' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-parisc64' KCFLAGS='-fno-cse-follow-jumps' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc64\""' KERNEL_ARCH='parisc' KERNEL_DEB_ARCH='undefined' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' PACKAGE_NAME='linux-image-parisc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-parisc64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='hppa' COMPAT_DEB_ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-parisc64' DH_OPTIONS='-plinux-headers-parisc64' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-parisc64' KCFLAGS='-fno-cse-follow-jumps' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc64\""' KERNEL_ARCH='parisc' KERNEL_DEB_ARCH='undefined' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' PACKAGE_NAME='linux-headers-parisc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-parisc64-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='hppa' COMPAT_DEB_ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-parisc64-dbg' DH_OPTIONS='-plinux-image-parisc64-dbg' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-parisc64-dbg' KCFLAGS='-fno-cse-follow-jumps' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc64\""' KERNEL_ARCH='parisc' KERNEL_DEB_ARCH='undefined' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' PACKAGE_NAME='linux-image-parisc64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-parisc64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-parisc64' DH_OPTIONS='-plinux-image-parisc64' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-parisc64' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc64\""' KERNEL_ARCH='parisc' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' PACKAGE_NAME='linux-image-parisc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-parisc64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-parisc64' DH_OPTIONS='-plinux-headers-parisc64' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-parisc64' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc64\""' KERNEL_ARCH='parisc' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' PACKAGE_NAME='linux-headers-parisc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-parisc64-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-parisc64-dbg' DH_OPTIONS='-plinux-image-parisc64-dbg' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-parisc64-dbg' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc64\""' KERNEL_ARCH='parisc' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' PACKAGE_NAME='linux-image-parisc64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_hppa_none_parisc_headers: - $(call if_package, linux-headers-6.6.15-parisc, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-parisc' DH_OPTIONS='-plinux-headers-6.6.15-parisc' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' PACKAGE_NAME='linux-headers-6.6.15-parisc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-parisc, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-parisc' DH_OPTIONS='-plinux-headers-6.7.7-parisc' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' PACKAGE_NAME='linux-headers-6.7.7-parisc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_hppa_none_parisc_image: - $(call if_package, linux-image-6.6.15-parisc, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-parisc' DH_OPTIONS='-plinux-image-6.6.15-parisc' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' PACKAGE_NAME='linux-image-6.6.15-parisc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-parisc, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-parisc' DH_OPTIONS='-plinux-image-6.7.7-parisc' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' PACKAGE_NAME='linux-image-6.7.7-parisc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_hppa_none_parisc_image-dbg: - $(call if_package, linux-image-6.6.15-parisc-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-parisc-dbg' DH_OPTIONS='-plinux-image-6.6.15-parisc-dbg' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' PACKAGE_NAME='linux-image-6.6.15-parisc-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-parisc-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-parisc-dbg' DH_OPTIONS='-plinux-image-6.7.7-parisc-dbg' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' PACKAGE_NAME='linux-image-6.7.7-parisc-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_hppa_none_parisc_installer: - $(call if_package, ata-modules-6.6.15-parisc-di btrfs-modules-6.6.15-parisc-di cdrom-core-modules-6.6.15-parisc-di crc-modules-6.6.15-parisc-di crypto-dm-modules-6.6.15-parisc-di crypto-modules-6.6.15-parisc-di event-modules-6.6.15-parisc-di ext4-modules-6.6.15-parisc-di f2fs-modules-6.6.15-parisc-di fat-modules-6.6.15-parisc-di i2c-modules-6.6.15-parisc-di input-modules-6.6.15-parisc-di isofs-modules-6.6.15-parisc-di jfs-modules-6.6.15-parisc-di kernel-image-6.6.15-parisc-di loop-modules-6.6.15-parisc-di md-modules-6.6.15-parisc-di mouse-modules-6.6.15-parisc-di multipath-modules-6.6.15-parisc-di nbd-modules-6.6.15-parisc-di nic-modules-6.6.15-parisc-di nic-shared-modules-6.6.15-parisc-di nic-usb-modules-6.6.15-parisc-di pata-modules-6.6.15-parisc-di ppp-modules-6.6.15-parisc-di sata-modules-6.6.15-parisc-di scsi-core-modules-6.6.15-parisc-di scsi-modules-6.6.15-parisc-di serial-modules-6.6.15-parisc-di squashfs-modules-6.6.15-parisc-di usb-modules-6.6.15-parisc-di usb-serial-modules-6.6.15-parisc-di usb-storage-modules-6.6.15-parisc-di xfs-modules-6.6.15-parisc-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.6.15' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.6.15-parisc-di -pbtrfs-modules-6.6.15-parisc-di -pcdrom-core-modules-6.6.15-parisc-di -pcrc-modules-6.6.15-parisc-di -pcrypto-dm-modules-6.6.15-parisc-di -pcrypto-modules-6.6.15-parisc-di -pevent-modules-6.6.15-parisc-di -pext4-modules-6.6.15-parisc-di -pf2fs-modules-6.6.15-parisc-di -pfat-modules-6.6.15-parisc-di -pi2c-modules-6.6.15-parisc-di -pinput-modules-6.6.15-parisc-di -pisofs-modules-6.6.15-parisc-di -pjfs-modules-6.6.15-parisc-di -pkernel-image-6.6.15-parisc-di -ploop-modules-6.6.15-parisc-di -pmd-modules-6.6.15-parisc-di -pmouse-modules-6.6.15-parisc-di -pmultipath-modules-6.6.15-parisc-di -pnbd-modules-6.6.15-parisc-di -pnic-modules-6.6.15-parisc-di -pnic-shared-modules-6.6.15-parisc-di -pnic-usb-modules-6.6.15-parisc-di -ppata-modules-6.6.15-parisc-di -pppp-modules-6.6.15-parisc-di -psata-modules-6.6.15-parisc-di -pscsi-core-modules-6.6.15-parisc-di -pscsi-modules-6.6.15-parisc-di -pserial-modules-6.6.15-parisc-di -psquashfs-modules-6.6.15-parisc-di -pusb-modules-6.6.15-parisc-di -pusb-serial-modules-6.6.15-parisc-di -pusb-storage-modules-6.6.15-parisc-di -pxfs-modules-6.6.15-parisc-di' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-parisc-di' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, ata-modules-6.7.7-parisc-di btrfs-modules-6.7.7-parisc-di cdrom-core-modules-6.7.7-parisc-di crc-modules-6.7.7-parisc-di crypto-dm-modules-6.7.7-parisc-di crypto-modules-6.7.7-parisc-di event-modules-6.7.7-parisc-di ext4-modules-6.7.7-parisc-di f2fs-modules-6.7.7-parisc-di fat-modules-6.7.7-parisc-di i2c-modules-6.7.7-parisc-di input-modules-6.7.7-parisc-di isofs-modules-6.7.7-parisc-di jfs-modules-6.7.7-parisc-di kernel-image-6.7.7-parisc-di loop-modules-6.7.7-parisc-di md-modules-6.7.7-parisc-di mouse-modules-6.7.7-parisc-di multipath-modules-6.7.7-parisc-di nbd-modules-6.7.7-parisc-di nic-modules-6.7.7-parisc-di nic-shared-modules-6.7.7-parisc-di nic-usb-modules-6.7.7-parisc-di pata-modules-6.7.7-parisc-di ppp-modules-6.7.7-parisc-di sata-modules-6.7.7-parisc-di scsi-core-modules-6.7.7-parisc-di scsi-modules-6.7.7-parisc-di serial-modules-6.7.7-parisc-di squashfs-modules-6.7.7-parisc-di usb-modules-6.7.7-parisc-di usb-serial-modules-6.7.7-parisc-di usb-storage-modules-6.7.7-parisc-di xfs-modules-6.7.7-parisc-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.7.7' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.7.7-parisc-di -pbtrfs-modules-6.7.7-parisc-di -pcdrom-core-modules-6.7.7-parisc-di -pcrc-modules-6.7.7-parisc-di -pcrypto-dm-modules-6.7.7-parisc-di -pcrypto-modules-6.7.7-parisc-di -pevent-modules-6.7.7-parisc-di -pext4-modules-6.7.7-parisc-di -pf2fs-modules-6.7.7-parisc-di -pfat-modules-6.7.7-parisc-di -pi2c-modules-6.7.7-parisc-di -pinput-modules-6.7.7-parisc-di -pisofs-modules-6.7.7-parisc-di -pjfs-modules-6.7.7-parisc-di -pkernel-image-6.7.7-parisc-di -ploop-modules-6.7.7-parisc-di -pmd-modules-6.7.7-parisc-di -pmouse-modules-6.7.7-parisc-di -pmultipath-modules-6.7.7-parisc-di -pnbd-modules-6.7.7-parisc-di -pnic-modules-6.7.7-parisc-di -pnic-shared-modules-6.7.7-parisc-di -pnic-usb-modules-6.7.7-parisc-di -ppata-modules-6.7.7-parisc-di -pppp-modules-6.7.7-parisc-di -psata-modules-6.7.7-parisc-di -pscsi-core-modules-6.7.7-parisc-di -pscsi-modules-6.7.7-parisc-di -pserial-modules-6.7.7-parisc-di -psquashfs-modules-6.7.7-parisc-di -pusb-modules-6.7.7-parisc-di -pusb-serial-modules-6.7.7-parisc-di -pusb-storage-modules-6.7.7-parisc-di -pxfs-modules-6.7.7-parisc-di' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-parisc-di' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_hppa_none_parisc_meta: - $(call if_package, linux-image-parisc, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-parisc' DH_OPTIONS='-plinux-image-parisc' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-parisc' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' PACKAGE_NAME='linux-image-parisc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-parisc, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-parisc' DH_OPTIONS='-plinux-headers-parisc' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-parisc' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' PACKAGE_NAME='linux-headers-parisc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-parisc-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-parisc-dbg' DH_OPTIONS='-plinux-image-parisc-dbg' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-parisc-dbg' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' PACKAGE_NAME='linux-image-parisc-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-parisc, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-parisc' DH_OPTIONS='-plinux-image-parisc' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-parisc' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' PACKAGE_NAME='linux-image-parisc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-parisc, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-parisc' DH_OPTIONS='-plinux-headers-parisc' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-parisc' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' PACKAGE_NAME='linux-headers-parisc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-parisc-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-parisc-dbg' DH_OPTIONS='-plinux-image-parisc-dbg' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-parisc-dbg' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' PACKAGE_NAME='linux-image-parisc-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_hppa_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.6.15' ARCH='hppa' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='parisc' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.7.7' ARCH='hppa' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='parisc' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_hppa_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.6.15' ARCH='hppa' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='parisc' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.7.7' ARCH='hppa' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='parisc' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_hppa_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.6.15' ARCH='hppa' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='parisc' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.7.7' ARCH='hppa' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='parisc' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_i386:build-arch_i386_bpftool build-arch_i386_config build-arch_i386_cpupower build-arch_i386_hyperv-daemons build-arch_i386_kbuild build-arch_i386_none build-arch_i386_perf build-arch_i386_rt build-arch_i386_rtla build-arch_i386_usbip build-arch_i386_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.6.15' ARCH='i386' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='x86' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.7.7' ARCH='i386' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='x86' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_i386_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real build_config ABINAME='6.6.15' ARCH='i386' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='x86' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real build_config ABINAME='6.7.7' ARCH='i386' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='x86' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_i386_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.6.15' ARCH='i386' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='x86' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.7.7' ARCH='i386' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='x86' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_i386_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.6.15' ARCH='i386' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='x86' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.7.7' ARCH='i386' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='x86' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_i386_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.6.15' ARCH='i386' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='x86' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.7.7' ARCH='i386' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='x86' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_i386_none:build-arch_i386_none_686 build-arch_i386_none_686-pae build-arch_i386_none_686:build-arch_i386_none_686_headers build-arch_i386_none_686_image build-arch_i386_none_686_image-dbg build-arch_i386_none_686_installer build-arch_i386_none_686_meta build-arch_i386_none_686-pae:build-arch_i386_none_686-pae_headers build-arch_i386_none_686-pae_image build-arch_i386_none_686-pae_image-dbg build-arch_i386_none_686-pae_installer build-arch_i386_none_686-pae_meta build-arch_i386_none_686-pae_headers: - $(call if_package, linux-headers-6.6.15-686-pae, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-686-pae' DH_OPTIONS='-plinux-headers-6.6.15-686-pae' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' PACKAGE_NAME='linux-headers-6.6.15-686-pae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-686-pae, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-686-pae' DH_OPTIONS='-plinux-headers-6.7.7-686-pae' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' PACKAGE_NAME='linux-headers-6.7.7-686-pae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_i386_none_686-pae_image: - $(call if_package, linux-image-6.6.15-686-pae, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-686-pae' DH_OPTIONS='-plinux-image-6.6.15-686-pae' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' PACKAGE_NAME='linux-image-6.6.15-686-pae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-686-pae, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-686-pae' DH_OPTIONS='-plinux-image-6.7.7-686-pae' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' PACKAGE_NAME='linux-image-6.7.7-686-pae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_i386_none_686-pae_image-dbg: - $(call if_package, linux-image-6.6.15-686-pae-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-686-pae-dbg' DH_OPTIONS='-plinux-image-6.6.15-686-pae-dbg' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' PACKAGE_NAME='linux-image-6.6.15-686-pae-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-686-pae-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-686-pae-dbg' DH_OPTIONS='-plinux-image-6.7.7-686-pae-dbg' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' PACKAGE_NAME='linux-image-6.7.7-686-pae-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_i386_none_686-pae_installer: - $(call if_package, acpi-modules-6.6.15-686-pae-di ata-modules-6.6.15-686-pae-di btrfs-modules-6.6.15-686-pae-di cdrom-core-modules-6.6.15-686-pae-di crc-modules-6.6.15-686-pae-di crypto-dm-modules-6.6.15-686-pae-di crypto-modules-6.6.15-686-pae-di efi-modules-6.6.15-686-pae-di event-modules-6.6.15-686-pae-di ext4-modules-6.6.15-686-pae-di f2fs-modules-6.6.15-686-pae-di fat-modules-6.6.15-686-pae-di fb-modules-6.6.15-686-pae-di firewire-core-modules-6.6.15-686-pae-di i2c-modules-6.6.15-686-pae-di input-modules-6.6.15-686-pae-di isofs-modules-6.6.15-686-pae-di jfs-modules-6.6.15-686-pae-di kernel-image-6.6.15-686-pae-di loop-modules-6.6.15-686-pae-di md-modules-6.6.15-686-pae-di mmc-core-modules-6.6.15-686-pae-di mmc-modules-6.6.15-686-pae-di mouse-modules-6.6.15-686-pae-di mtd-core-modules-6.6.15-686-pae-di multipath-modules-6.6.15-686-pae-di nbd-modules-6.6.15-686-pae-di nic-modules-6.6.15-686-pae-di nic-pcmcia-modules-6.6.15-686-pae-di nic-shared-modules-6.6.15-686-pae-di nic-usb-modules-6.6.15-686-pae-di nic-wireless-modules-6.6.15-686-pae-di pata-modules-6.6.15-686-pae-di pcmcia-modules-6.6.15-686-pae-di pcmcia-storage-modules-6.6.15-686-pae-di ppp-modules-6.6.15-686-pae-di rfkill-modules-6.6.15-686-pae-di sata-modules-6.6.15-686-pae-di scsi-core-modules-6.6.15-686-pae-di scsi-modules-6.6.15-686-pae-di scsi-nic-modules-6.6.15-686-pae-di serial-modules-6.6.15-686-pae-di sound-modules-6.6.15-686-pae-di speakup-modules-6.6.15-686-pae-di squashfs-modules-6.6.15-686-pae-di udf-modules-6.6.15-686-pae-di uinput-modules-6.6.15-686-pae-di usb-modules-6.6.15-686-pae-di usb-serial-modules-6.6.15-686-pae-di usb-storage-modules-6.6.15-686-pae-di xfs-modules-6.6.15-686-pae-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pacpi-modules-6.6.15-686-pae-di -pata-modules-6.6.15-686-pae-di -pbtrfs-modules-6.6.15-686-pae-di -pcdrom-core-modules-6.6.15-686-pae-di -pcrc-modules-6.6.15-686-pae-di -pcrypto-dm-modules-6.6.15-686-pae-di -pcrypto-modules-6.6.15-686-pae-di -pefi-modules-6.6.15-686-pae-di -pevent-modules-6.6.15-686-pae-di -pext4-modules-6.6.15-686-pae-di -pf2fs-modules-6.6.15-686-pae-di -pfat-modules-6.6.15-686-pae-di -pfb-modules-6.6.15-686-pae-di -pfirewire-core-modules-6.6.15-686-pae-di -pi2c-modules-6.6.15-686-pae-di -pinput-modules-6.6.15-686-pae-di -pisofs-modules-6.6.15-686-pae-di -pjfs-modules-6.6.15-686-pae-di -pkernel-image-6.6.15-686-pae-di -ploop-modules-6.6.15-686-pae-di -pmd-modules-6.6.15-686-pae-di -pmmc-core-modules-6.6.15-686-pae-di -pmmc-modules-6.6.15-686-pae-di -pmouse-modules-6.6.15-686-pae-di -pmtd-core-modules-6.6.15-686-pae-di -pmultipath-modules-6.6.15-686-pae-di -pnbd-modules-6.6.15-686-pae-di -pnic-modules-6.6.15-686-pae-di -pnic-pcmcia-modules-6.6.15-686-pae-di -pnic-shared-modules-6.6.15-686-pae-di -pnic-usb-modules-6.6.15-686-pae-di -pnic-wireless-modules-6.6.15-686-pae-di -ppata-modules-6.6.15-686-pae-di -ppcmcia-modules-6.6.15-686-pae-di -ppcmcia-storage-modules-6.6.15-686-pae-di -pppp-modules-6.6.15-686-pae-di -prfkill-modules-6.6.15-686-pae-di -psata-modules-6.6.15-686-pae-di -pscsi-core-modules-6.6.15-686-pae-di -pscsi-modules-6.6.15-686-pae-di -pscsi-nic-modules-6.6.15-686-pae-di -pserial-modules-6.6.15-686-pae-di -psound-modules-6.6.15-686-pae-di -pspeakup-modules-6.6.15-686-pae-di -psquashfs-modules-6.6.15-686-pae-di -pudf-modules-6.6.15-686-pae-di -puinput-modules-6.6.15-686-pae-di -pusb-modules-6.6.15-686-pae-di -pusb-serial-modules-6.6.15-686-pae-di -pusb-storage-modules-6.6.15-686-pae-di -pxfs-modules-6.6.15-686-pae-di' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-686-pae-di' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, acpi-modules-6.7.7-686-pae-di ata-modules-6.7.7-686-pae-di btrfs-modules-6.7.7-686-pae-di cdrom-core-modules-6.7.7-686-pae-di crc-modules-6.7.7-686-pae-di crypto-dm-modules-6.7.7-686-pae-di crypto-modules-6.7.7-686-pae-di efi-modules-6.7.7-686-pae-di event-modules-6.7.7-686-pae-di ext4-modules-6.7.7-686-pae-di f2fs-modules-6.7.7-686-pae-di fat-modules-6.7.7-686-pae-di fb-modules-6.7.7-686-pae-di firewire-core-modules-6.7.7-686-pae-di i2c-modules-6.7.7-686-pae-di input-modules-6.7.7-686-pae-di isofs-modules-6.7.7-686-pae-di jfs-modules-6.7.7-686-pae-di kernel-image-6.7.7-686-pae-di loop-modules-6.7.7-686-pae-di md-modules-6.7.7-686-pae-di mmc-core-modules-6.7.7-686-pae-di mmc-modules-6.7.7-686-pae-di mouse-modules-6.7.7-686-pae-di mtd-core-modules-6.7.7-686-pae-di multipath-modules-6.7.7-686-pae-di nbd-modules-6.7.7-686-pae-di nic-modules-6.7.7-686-pae-di nic-pcmcia-modules-6.7.7-686-pae-di nic-shared-modules-6.7.7-686-pae-di nic-usb-modules-6.7.7-686-pae-di nic-wireless-modules-6.7.7-686-pae-di pata-modules-6.7.7-686-pae-di pcmcia-modules-6.7.7-686-pae-di pcmcia-storage-modules-6.7.7-686-pae-di ppp-modules-6.7.7-686-pae-di rfkill-modules-6.7.7-686-pae-di sata-modules-6.7.7-686-pae-di scsi-core-modules-6.7.7-686-pae-di scsi-modules-6.7.7-686-pae-di scsi-nic-modules-6.7.7-686-pae-di serial-modules-6.7.7-686-pae-di sound-modules-6.7.7-686-pae-di speakup-modules-6.7.7-686-pae-di squashfs-modules-6.7.7-686-pae-di udf-modules-6.7.7-686-pae-di uinput-modules-6.7.7-686-pae-di usb-modules-6.7.7-686-pae-di usb-serial-modules-6.7.7-686-pae-di usb-storage-modules-6.7.7-686-pae-di xfs-modules-6.7.7-686-pae-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pacpi-modules-6.7.7-686-pae-di -pata-modules-6.7.7-686-pae-di -pbtrfs-modules-6.7.7-686-pae-di -pcdrom-core-modules-6.7.7-686-pae-di -pcrc-modules-6.7.7-686-pae-di -pcrypto-dm-modules-6.7.7-686-pae-di -pcrypto-modules-6.7.7-686-pae-di -pefi-modules-6.7.7-686-pae-di -pevent-modules-6.7.7-686-pae-di -pext4-modules-6.7.7-686-pae-di -pf2fs-modules-6.7.7-686-pae-di -pfat-modules-6.7.7-686-pae-di -pfb-modules-6.7.7-686-pae-di -pfirewire-core-modules-6.7.7-686-pae-di -pi2c-modules-6.7.7-686-pae-di -pinput-modules-6.7.7-686-pae-di -pisofs-modules-6.7.7-686-pae-di -pjfs-modules-6.7.7-686-pae-di -pkernel-image-6.7.7-686-pae-di -ploop-modules-6.7.7-686-pae-di -pmd-modules-6.7.7-686-pae-di -pmmc-core-modules-6.7.7-686-pae-di -pmmc-modules-6.7.7-686-pae-di -pmouse-modules-6.7.7-686-pae-di -pmtd-core-modules-6.7.7-686-pae-di -pmultipath-modules-6.7.7-686-pae-di -pnbd-modules-6.7.7-686-pae-di -pnic-modules-6.7.7-686-pae-di -pnic-pcmcia-modules-6.7.7-686-pae-di -pnic-shared-modules-6.7.7-686-pae-di -pnic-usb-modules-6.7.7-686-pae-di -pnic-wireless-modules-6.7.7-686-pae-di -ppata-modules-6.7.7-686-pae-di -ppcmcia-modules-6.7.7-686-pae-di -ppcmcia-storage-modules-6.7.7-686-pae-di -pppp-modules-6.7.7-686-pae-di -prfkill-modules-6.7.7-686-pae-di -psata-modules-6.7.7-686-pae-di -pscsi-core-modules-6.7.7-686-pae-di -pscsi-modules-6.7.7-686-pae-di -pscsi-nic-modules-6.7.7-686-pae-di -pserial-modules-6.7.7-686-pae-di -psound-modules-6.7.7-686-pae-di -pspeakup-modules-6.7.7-686-pae-di -psquashfs-modules-6.7.7-686-pae-di -pudf-modules-6.7.7-686-pae-di -puinput-modules-6.7.7-686-pae-di -pusb-modules-6.7.7-686-pae-di -pusb-serial-modules-6.7.7-686-pae-di -pusb-storage-modules-6.7.7-686-pae-di -pxfs-modules-6.7.7-686-pae-di' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-686-pae-di' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_i386_none_686-pae_meta: - $(call if_package, linux-image-686-pae, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-686-pae' DH_OPTIONS='-plinux-image-686-pae' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-686-pae' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' PACKAGE_NAME='linux-image-686-pae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-686-pae, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-686-pae' DH_OPTIONS='-plinux-headers-686-pae' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-686-pae' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' PACKAGE_NAME='linux-headers-686-pae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-image-686-pae-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-686-pae-dbg' DH_OPTIONS='-plinux-image-686-pae-dbg' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-686-pae-dbg' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' PACKAGE_NAME='linux-image-686-pae-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-686-pae, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-686-pae' DH_OPTIONS='-plinux-image-686-pae' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-686-pae' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' PACKAGE_NAME='linux-image-686-pae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-686-pae, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-686-pae' DH_OPTIONS='-plinux-headers-686-pae' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-686-pae' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' PACKAGE_NAME='linux-headers-686-pae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-image-686-pae-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-686-pae-dbg' DH_OPTIONS='-plinux-image-686-pae-dbg' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-686-pae-dbg' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' PACKAGE_NAME='linux-image-686-pae-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_i386_none_686_headers: - $(call if_package, linux-headers-6.6.15-686, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-686' DH_OPTIONS='-plinux-headers-6.6.15-686' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' PACKAGE_NAME='linux-headers-6.6.15-686' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-686, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-686' DH_OPTIONS='-plinux-headers-6.7.7-686' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' PACKAGE_NAME='linux-headers-6.7.7-686' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_i386_none_686_image: - $(call if_package, linux-image-6.6.15-686, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-686' DH_OPTIONS='-plinux-image-6.6.15-686' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' PACKAGE_NAME='linux-image-6.6.15-686' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-686, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-686' DH_OPTIONS='-plinux-image-6.7.7-686' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' PACKAGE_NAME='linux-image-6.7.7-686' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_i386_none_686_image-dbg: - $(call if_package, linux-image-6.6.15-686-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-686-dbg' DH_OPTIONS='-plinux-image-6.6.15-686-dbg' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' PACKAGE_NAME='linux-image-6.6.15-686-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-686-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-686-dbg' DH_OPTIONS='-plinux-image-6.7.7-686-dbg' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' PACKAGE_NAME='linux-image-6.7.7-686-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_i386_none_686_installer: - $(call if_package, acpi-modules-6.6.15-686-di ata-modules-6.6.15-686-di btrfs-modules-6.6.15-686-di cdrom-core-modules-6.6.15-686-di crc-modules-6.6.15-686-di crypto-dm-modules-6.6.15-686-di crypto-modules-6.6.15-686-di efi-modules-6.6.15-686-di event-modules-6.6.15-686-di ext4-modules-6.6.15-686-di f2fs-modules-6.6.15-686-di fat-modules-6.6.15-686-di fb-modules-6.6.15-686-di firewire-core-modules-6.6.15-686-di i2c-modules-6.6.15-686-di input-modules-6.6.15-686-di isofs-modules-6.6.15-686-di jfs-modules-6.6.15-686-di kernel-image-6.6.15-686-di loop-modules-6.6.15-686-di md-modules-6.6.15-686-di mmc-core-modules-6.6.15-686-di mmc-modules-6.6.15-686-di mouse-modules-6.6.15-686-di mtd-core-modules-6.6.15-686-di multipath-modules-6.6.15-686-di nbd-modules-6.6.15-686-di nic-modules-6.6.15-686-di nic-pcmcia-modules-6.6.15-686-di nic-shared-modules-6.6.15-686-di nic-usb-modules-6.6.15-686-di nic-wireless-modules-6.6.15-686-di pata-modules-6.6.15-686-di pcmcia-modules-6.6.15-686-di pcmcia-storage-modules-6.6.15-686-di ppp-modules-6.6.15-686-di rfkill-modules-6.6.15-686-di sata-modules-6.6.15-686-di scsi-core-modules-6.6.15-686-di scsi-modules-6.6.15-686-di scsi-nic-modules-6.6.15-686-di serial-modules-6.6.15-686-di sound-modules-6.6.15-686-di speakup-modules-6.6.15-686-di squashfs-modules-6.6.15-686-di udf-modules-6.6.15-686-di uinput-modules-6.6.15-686-di usb-modules-6.6.15-686-di usb-serial-modules-6.6.15-686-di usb-storage-modules-6.6.15-686-di xfs-modules-6.6.15-686-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pacpi-modules-6.6.15-686-di -pata-modules-6.6.15-686-di -pbtrfs-modules-6.6.15-686-di -pcdrom-core-modules-6.6.15-686-di -pcrc-modules-6.6.15-686-di -pcrypto-dm-modules-6.6.15-686-di -pcrypto-modules-6.6.15-686-di -pefi-modules-6.6.15-686-di -pevent-modules-6.6.15-686-di -pext4-modules-6.6.15-686-di -pf2fs-modules-6.6.15-686-di -pfat-modules-6.6.15-686-di -pfb-modules-6.6.15-686-di -pfirewire-core-modules-6.6.15-686-di -pi2c-modules-6.6.15-686-di -pinput-modules-6.6.15-686-di -pisofs-modules-6.6.15-686-di -pjfs-modules-6.6.15-686-di -pkernel-image-6.6.15-686-di -ploop-modules-6.6.15-686-di -pmd-modules-6.6.15-686-di -pmmc-core-modules-6.6.15-686-di -pmmc-modules-6.6.15-686-di -pmouse-modules-6.6.15-686-di -pmtd-core-modules-6.6.15-686-di -pmultipath-modules-6.6.15-686-di -pnbd-modules-6.6.15-686-di -pnic-modules-6.6.15-686-di -pnic-pcmcia-modules-6.6.15-686-di -pnic-shared-modules-6.6.15-686-di -pnic-usb-modules-6.6.15-686-di -pnic-wireless-modules-6.6.15-686-di -ppata-modules-6.6.15-686-di -ppcmcia-modules-6.6.15-686-di -ppcmcia-storage-modules-6.6.15-686-di -pppp-modules-6.6.15-686-di -prfkill-modules-6.6.15-686-di -psata-modules-6.6.15-686-di -pscsi-core-modules-6.6.15-686-di -pscsi-modules-6.6.15-686-di -pscsi-nic-modules-6.6.15-686-di -pserial-modules-6.6.15-686-di -psound-modules-6.6.15-686-di -pspeakup-modules-6.6.15-686-di -psquashfs-modules-6.6.15-686-di -pudf-modules-6.6.15-686-di -puinput-modules-6.6.15-686-di -pusb-modules-6.6.15-686-di -pusb-serial-modules-6.6.15-686-di -pusb-storage-modules-6.6.15-686-di -pxfs-modules-6.6.15-686-di' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-686-di' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, acpi-modules-6.7.7-686-di ata-modules-6.7.7-686-di btrfs-modules-6.7.7-686-di cdrom-core-modules-6.7.7-686-di crc-modules-6.7.7-686-di crypto-dm-modules-6.7.7-686-di crypto-modules-6.7.7-686-di efi-modules-6.7.7-686-di event-modules-6.7.7-686-di ext4-modules-6.7.7-686-di f2fs-modules-6.7.7-686-di fat-modules-6.7.7-686-di fb-modules-6.7.7-686-di firewire-core-modules-6.7.7-686-di i2c-modules-6.7.7-686-di input-modules-6.7.7-686-di isofs-modules-6.7.7-686-di jfs-modules-6.7.7-686-di kernel-image-6.7.7-686-di loop-modules-6.7.7-686-di md-modules-6.7.7-686-di mmc-core-modules-6.7.7-686-di mmc-modules-6.7.7-686-di mouse-modules-6.7.7-686-di mtd-core-modules-6.7.7-686-di multipath-modules-6.7.7-686-di nbd-modules-6.7.7-686-di nic-modules-6.7.7-686-di nic-pcmcia-modules-6.7.7-686-di nic-shared-modules-6.7.7-686-di nic-usb-modules-6.7.7-686-di nic-wireless-modules-6.7.7-686-di pata-modules-6.7.7-686-di pcmcia-modules-6.7.7-686-di pcmcia-storage-modules-6.7.7-686-di ppp-modules-6.7.7-686-di rfkill-modules-6.7.7-686-di sata-modules-6.7.7-686-di scsi-core-modules-6.7.7-686-di scsi-modules-6.7.7-686-di scsi-nic-modules-6.7.7-686-di serial-modules-6.7.7-686-di sound-modules-6.7.7-686-di speakup-modules-6.7.7-686-di squashfs-modules-6.7.7-686-di udf-modules-6.7.7-686-di uinput-modules-6.7.7-686-di usb-modules-6.7.7-686-di usb-serial-modules-6.7.7-686-di usb-storage-modules-6.7.7-686-di xfs-modules-6.7.7-686-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pacpi-modules-6.7.7-686-di -pata-modules-6.7.7-686-di -pbtrfs-modules-6.7.7-686-di -pcdrom-core-modules-6.7.7-686-di -pcrc-modules-6.7.7-686-di -pcrypto-dm-modules-6.7.7-686-di -pcrypto-modules-6.7.7-686-di -pefi-modules-6.7.7-686-di -pevent-modules-6.7.7-686-di -pext4-modules-6.7.7-686-di -pf2fs-modules-6.7.7-686-di -pfat-modules-6.7.7-686-di -pfb-modules-6.7.7-686-di -pfirewire-core-modules-6.7.7-686-di -pi2c-modules-6.7.7-686-di -pinput-modules-6.7.7-686-di -pisofs-modules-6.7.7-686-di -pjfs-modules-6.7.7-686-di -pkernel-image-6.7.7-686-di -ploop-modules-6.7.7-686-di -pmd-modules-6.7.7-686-di -pmmc-core-modules-6.7.7-686-di -pmmc-modules-6.7.7-686-di -pmouse-modules-6.7.7-686-di -pmtd-core-modules-6.7.7-686-di -pmultipath-modules-6.7.7-686-di -pnbd-modules-6.7.7-686-di -pnic-modules-6.7.7-686-di -pnic-pcmcia-modules-6.7.7-686-di -pnic-shared-modules-6.7.7-686-di -pnic-usb-modules-6.7.7-686-di -pnic-wireless-modules-6.7.7-686-di -ppata-modules-6.7.7-686-di -ppcmcia-modules-6.7.7-686-di -ppcmcia-storage-modules-6.7.7-686-di -pppp-modules-6.7.7-686-di -prfkill-modules-6.7.7-686-di -psata-modules-6.7.7-686-di -pscsi-core-modules-6.7.7-686-di -pscsi-modules-6.7.7-686-di -pscsi-nic-modules-6.7.7-686-di -pserial-modules-6.7.7-686-di -psound-modules-6.7.7-686-di -pspeakup-modules-6.7.7-686-di -psquashfs-modules-6.7.7-686-di -pudf-modules-6.7.7-686-di -puinput-modules-6.7.7-686-di -pusb-modules-6.7.7-686-di -pusb-serial-modules-6.7.7-686-di -pusb-storage-modules-6.7.7-686-di -pxfs-modules-6.7.7-686-di' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-686-di' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_i386_none_686_meta: - $(call if_package, linux-image-686, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-686' DH_OPTIONS='-plinux-image-686' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-686' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' PACKAGE_NAME='linux-image-686' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-686, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-686' DH_OPTIONS='-plinux-headers-686' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-686' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' PACKAGE_NAME='linux-headers-686' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-image-686-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-686-dbg' DH_OPTIONS='-plinux-image-686-dbg' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-686-dbg' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' PACKAGE_NAME='linux-image-686-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-686, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-686' DH_OPTIONS='-plinux-image-686' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-686' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' PACKAGE_NAME='linux-image-686' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-686, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-686' DH_OPTIONS='-plinux-headers-686' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-686' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' PACKAGE_NAME='linux-headers-686' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-image-686-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-686-dbg' DH_OPTIONS='-plinux-image-686-dbg' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-686-dbg' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' PACKAGE_NAME='linux-image-686-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_i386_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.6.15' ARCH='i386' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='x86' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.7.7' ARCH='i386' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='x86' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_i386_rt:build-arch_i386_rt_686-pae build-arch_i386_rt_686-pae:build-arch_i386_rt_686-pae_headers build-arch_i386_rt_686-pae_image build-arch_i386_rt_686-pae_image-dbg build-arch_i386_rt_686-pae_meta build-arch_i386_rt_686-pae_headers: - $(call if_package, linux-headers-6.6.15-rt-686-pae, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-rt-686-pae' DH_OPTIONS='-plinux-headers-6.6.15-rt-686-pae' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' PACKAGE_NAME='linux-headers-6.6.15-rt-686-pae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-rt-686-pae, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-rt-686-pae' DH_OPTIONS='-plinux-headers-6.7.7-rt-686-pae' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' PACKAGE_NAME='linux-headers-6.7.7-rt-686-pae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_i386_rt_686-pae_image: - $(call if_package, linux-image-6.6.15-rt-686-pae, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-rt-686-pae' DH_OPTIONS='-plinux-image-6.6.15-rt-686-pae' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' PACKAGE_NAME='linux-image-6.6.15-rt-686-pae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-rt-686-pae, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-rt-686-pae' DH_OPTIONS='-plinux-image-6.7.7-rt-686-pae' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' PACKAGE_NAME='linux-image-6.7.7-rt-686-pae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_i386_rt_686-pae_image-dbg: - $(call if_package, linux-image-6.6.15-rt-686-pae-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-rt-686-pae-dbg' DH_OPTIONS='-plinux-image-6.6.15-rt-686-pae-dbg' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' PACKAGE_NAME='linux-image-6.6.15-rt-686-pae-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-rt-686-pae-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-rt-686-pae-dbg' DH_OPTIONS='-plinux-image-6.7.7-rt-686-pae-dbg' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' PACKAGE_NAME='linux-image-6.7.7-rt-686-pae-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_i386_rt_686-pae_meta: - $(call if_package, linux-image-rt-686-pae, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-686-pae' DH_OPTIONS='-plinux-image-rt-686-pae' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-rt-686-pae' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' PACKAGE_NAME='linux-image-rt-686-pae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-rt-686-pae, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-rt-686-pae' DH_OPTIONS='-plinux-headers-rt-686-pae' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-rt-686-pae' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' PACKAGE_NAME='linux-headers-rt-686-pae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-image-rt-686-pae-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-686-pae-dbg' DH_OPTIONS='-plinux-image-rt-686-pae-dbg' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-rt-686-pae-dbg' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' PACKAGE_NAME='linux-image-rt-686-pae-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-rt-686-pae, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-686-pae' DH_OPTIONS='-plinux-image-rt-686-pae' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-rt-686-pae' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' PACKAGE_NAME='linux-image-rt-686-pae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-rt-686-pae, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-rt-686-pae' DH_OPTIONS='-plinux-headers-rt-686-pae' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-rt-686-pae' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' PACKAGE_NAME='linux-headers-rt-686-pae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-image-rt-686-pae-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-686-pae-dbg' DH_OPTIONS='-plinux-image-rt-686-pae-dbg' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-rt-686-pae-dbg' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' PACKAGE_NAME='linux-image-rt-686-pae-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_i386_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.6.15' ARCH='i386' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='x86' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.7.7' ARCH='i386' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='x86' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_i386_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.6.15' ARCH='i386' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='x86' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -build-arch_ia64:build-arch_ia64_bpftool build-arch_ia64_config build-arch_ia64_cpupower build-arch_ia64_hyperv-daemons build-arch_ia64_kbuild build-arch_ia64_none build-arch_ia64_perf build-arch_ia64_rtla build-arch_ia64_usbip -build-arch_ia64_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.6.15' ARCH='ia64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='ia64' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -build-arch_ia64_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real build_config ABINAME='6.6.15' ARCH='ia64' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='ia64' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -build-arch_ia64_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.6.15' ARCH='ia64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='ia64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -build-arch_ia64_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.6.15' ARCH='ia64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='ia64' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -build-arch_ia64_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.6.15' ARCH='ia64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='ia64' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -build-arch_ia64_none:build-arch_ia64_none_itanium build-arch_ia64_none_mckinley -build-arch_ia64_none_itanium:build-arch_ia64_none_itanium_headers build-arch_ia64_none_itanium_image build-arch_ia64_none_itanium_image-dbg build-arch_ia64_none_itanium_installer build-arch_ia64_none_itanium_meta -build-arch_ia64_none_itanium_headers: - $(call if_package, linux-headers-6.6.15-itanium, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-itanium' DH_OPTIONS='-plinux-headers-6.6.15-itanium' FEATURESET='none' FLAVOUR='itanium' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.itanium' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-itanium\""' KERNEL_ARCH='ia64' LOCALVERSION='-itanium' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-itanium' PACKAGE_NAME='linux-headers-6.6.15-itanium' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -build-arch_ia64_none_itanium_image: - $(call if_package, linux-image-6.6.15-itanium, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-itanium' DH_OPTIONS='-plinux-image-6.6.15-itanium' FEATURESET='none' FLAVOUR='itanium' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.itanium' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-itanium\""' KERNEL_ARCH='ia64' LOCALVERSION='-itanium' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-itanium' PACKAGE_NAME='linux-image-6.6.15-itanium' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -build-arch_ia64_none_itanium_image-dbg: - $(call if_package, linux-image-6.6.15-itanium-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-itanium-dbg' DH_OPTIONS='-plinux-image-6.6.15-itanium-dbg' FEATURESET='none' FLAVOUR='itanium' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.itanium' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-itanium\""' KERNEL_ARCH='ia64' LOCALVERSION='-itanium' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-itanium' PACKAGE_NAME='linux-image-6.6.15-itanium-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -build-arch_ia64_none_itanium_installer: - $(call if_package, ata-modules-6.6.15-itanium-di btrfs-modules-6.6.15-itanium-di cdrom-core-modules-6.6.15-itanium-di crc-modules-6.6.15-itanium-di crypto-dm-modules-6.6.15-itanium-di crypto-modules-6.6.15-itanium-di event-modules-6.6.15-itanium-di ext4-modules-6.6.15-itanium-di f2fs-modules-6.6.15-itanium-di fat-modules-6.6.15-itanium-di fb-modules-6.6.15-itanium-di firewire-core-modules-6.6.15-itanium-di i2c-modules-6.6.15-itanium-di input-modules-6.6.15-itanium-di isofs-modules-6.6.15-itanium-di jfs-modules-6.6.15-itanium-di kernel-image-6.6.15-itanium-di loop-modules-6.6.15-itanium-di md-modules-6.6.15-itanium-di mouse-modules-6.6.15-itanium-di mtd-core-modules-6.6.15-itanium-di multipath-modules-6.6.15-itanium-di nbd-modules-6.6.15-itanium-di nic-modules-6.6.15-itanium-di nic-shared-modules-6.6.15-itanium-di nic-usb-modules-6.6.15-itanium-di pata-modules-6.6.15-itanium-di pcmcia-modules-6.6.15-itanium-di ppp-modules-6.6.15-itanium-di sata-modules-6.6.15-itanium-di scsi-core-modules-6.6.15-itanium-di scsi-modules-6.6.15-itanium-di scsi-nic-modules-6.6.15-itanium-di serial-modules-6.6.15-itanium-di squashfs-modules-6.6.15-itanium-di udf-modules-6.6.15-itanium-di uinput-modules-6.6.15-itanium-di usb-modules-6.6.15-itanium-di usb-serial-modules-6.6.15-itanium-di usb-storage-modules-6.6.15-itanium-di xfs-modules-6.6.15-itanium-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.6.15-itanium-di -pbtrfs-modules-6.6.15-itanium-di -pcdrom-core-modules-6.6.15-itanium-di -pcrc-modules-6.6.15-itanium-di -pcrypto-dm-modules-6.6.15-itanium-di -pcrypto-modules-6.6.15-itanium-di -pevent-modules-6.6.15-itanium-di -pext4-modules-6.6.15-itanium-di -pf2fs-modules-6.6.15-itanium-di -pfat-modules-6.6.15-itanium-di -pfb-modules-6.6.15-itanium-di -pfirewire-core-modules-6.6.15-itanium-di -pi2c-modules-6.6.15-itanium-di -pinput-modules-6.6.15-itanium-di -pisofs-modules-6.6.15-itanium-di -pjfs-modules-6.6.15-itanium-di -pkernel-image-6.6.15-itanium-di -ploop-modules-6.6.15-itanium-di -pmd-modules-6.6.15-itanium-di -pmouse-modules-6.6.15-itanium-di -pmtd-core-modules-6.6.15-itanium-di -pmultipath-modules-6.6.15-itanium-di -pnbd-modules-6.6.15-itanium-di -pnic-modules-6.6.15-itanium-di -pnic-shared-modules-6.6.15-itanium-di -pnic-usb-modules-6.6.15-itanium-di -ppata-modules-6.6.15-itanium-di -ppcmcia-modules-6.6.15-itanium-di -pppp-modules-6.6.15-itanium-di -psata-modules-6.6.15-itanium-di -pscsi-core-modules-6.6.15-itanium-di -pscsi-modules-6.6.15-itanium-di -pscsi-nic-modules-6.6.15-itanium-di -pserial-modules-6.6.15-itanium-di -psquashfs-modules-6.6.15-itanium-di -pudf-modules-6.6.15-itanium-di -puinput-modules-6.6.15-itanium-di -pusb-modules-6.6.15-itanium-di -pusb-serial-modules-6.6.15-itanium-di -pusb-storage-modules-6.6.15-itanium-di -pxfs-modules-6.6.15-itanium-di' FEATURESET='none' FLAVOUR='itanium' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-itanium-di' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.itanium' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-itanium\""' KERNEL_ARCH='ia64' LOCALVERSION='-itanium' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-itanium' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -build-arch_ia64_none_itanium_meta: - $(call if_package, linux-image-itanium, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' DESTDIR='$(CURDIR)/debian/linux-image-itanium' DH_OPTIONS='-plinux-image-itanium' FEATURESET='none' FLAVOUR='itanium' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-itanium' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.itanium' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-itanium\""' KERNEL_ARCH='ia64' LOCALVERSION='-itanium' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-itanium' PACKAGE_NAME='linux-image-itanium' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-itanium, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' DESTDIR='$(CURDIR)/debian/linux-headers-itanium' DH_OPTIONS='-plinux-headers-itanium' FEATURESET='none' FLAVOUR='itanium' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-itanium' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.itanium' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-itanium\""' KERNEL_ARCH='ia64' LOCALVERSION='-itanium' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-itanium' PACKAGE_NAME='linux-headers-itanium' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-itanium-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' DESTDIR='$(CURDIR)/debian/linux-image-itanium-dbg' DH_OPTIONS='-plinux-image-itanium-dbg' FEATURESET='none' FLAVOUR='itanium' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-itanium-dbg' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.itanium' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-itanium\""' KERNEL_ARCH='ia64' LOCALVERSION='-itanium' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-itanium' PACKAGE_NAME='linux-image-itanium-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -build-arch_ia64_none_mckinley:build-arch_ia64_none_mckinley_headers build-arch_ia64_none_mckinley_image build-arch_ia64_none_mckinley_image-dbg build-arch_ia64_none_mckinley_meta -build-arch_ia64_none_mckinley_headers: - $(call if_package, linux-headers-6.6.15-mckinley, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-mckinley' DH_OPTIONS='-plinux-headers-6.6.15-mckinley' FEATURESET='none' FLAVOUR='mckinley' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.mckinley' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mckinley\""' KERNEL_ARCH='ia64' LOCALVERSION='-mckinley' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mckinley' PACKAGE_NAME='linux-headers-6.6.15-mckinley' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -build-arch_ia64_none_mckinley_image: - $(call if_package, linux-image-6.6.15-mckinley, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-mckinley' DH_OPTIONS='-plinux-image-6.6.15-mckinley' FEATURESET='none' FLAVOUR='mckinley' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.mckinley' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mckinley\""' KERNEL_ARCH='ia64' LOCALVERSION='-mckinley' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mckinley' PACKAGE_NAME='linux-image-6.6.15-mckinley' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -build-arch_ia64_none_mckinley_image-dbg: - $(call if_package, linux-image-6.6.15-mckinley-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-mckinley-dbg' DH_OPTIONS='-plinux-image-6.6.15-mckinley-dbg' FEATURESET='none' FLAVOUR='mckinley' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.mckinley' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mckinley\""' KERNEL_ARCH='ia64' LOCALVERSION='-mckinley' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mckinley' PACKAGE_NAME='linux-image-6.6.15-mckinley-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -build-arch_ia64_none_mckinley_meta: - $(call if_package, linux-image-mckinley, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' DESTDIR='$(CURDIR)/debian/linux-image-mckinley' DH_OPTIONS='-plinux-image-mckinley' FEATURESET='none' FLAVOUR='mckinley' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-mckinley' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.mckinley' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mckinley\""' KERNEL_ARCH='ia64' LOCALVERSION='-mckinley' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mckinley' PACKAGE_NAME='linux-image-mckinley' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-mckinley, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' DESTDIR='$(CURDIR)/debian/linux-headers-mckinley' DH_OPTIONS='-plinux-headers-mckinley' FEATURESET='none' FLAVOUR='mckinley' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-mckinley' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.mckinley' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mckinley\""' KERNEL_ARCH='ia64' LOCALVERSION='-mckinley' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mckinley' PACKAGE_NAME='linux-headers-mckinley' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-mckinley-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' DESTDIR='$(CURDIR)/debian/linux-image-mckinley-dbg' DH_OPTIONS='-plinux-image-mckinley-dbg' FEATURESET='none' FLAVOUR='mckinley' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-mckinley-dbg' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.mckinley' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mckinley\""' KERNEL_ARCH='ia64' LOCALVERSION='-mckinley' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mckinley' PACKAGE_NAME='linux-image-mckinley-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -build-arch_ia64_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.6.15' ARCH='ia64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='ia64' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -build-arch_ia64_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.6.15' ARCH='ia64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='ia64' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -build-arch_ia64_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.6.15' ARCH='ia64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='ia64' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.7.7' ARCH='i386' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='x86' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') +build-arch_loong64:build-arch_loong64_bpftool build-arch_loong64_config build-arch_loong64_cpupower build-arch_loong64_hyperv-daemons build-arch_loong64_kbuild build-arch_loong64_none build-arch_loong64_perf build-arch_loong64_rtla build-arch_loong64_usbip +build-arch_loong64_bpftool: + $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.7.7' ARCH='loong64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='loongarch' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') +build-arch_loong64_config: + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real build_config ABINAME='6.7.7' ARCH='loong64' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='loongarch' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') +build-arch_loong64_cpupower: + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.7.7' ARCH='loong64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='loongarch' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') +build-arch_loong64_hyperv-daemons: + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.7.7' ARCH='loong64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='loongarch' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') +build-arch_loong64_kbuild: + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.7.7' ARCH='loong64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='loongarch' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') +build-arch_loong64_none:build-arch_loong64_none_loong64 +build-arch_loong64_none_loong64:build-arch_loong64_none_loong64_headers build-arch_loong64_none_loong64_image build-arch_loong64_none_loong64_image-dbg build-arch_loong64_none_loong64_installer build-arch_loong64_none_loong64_meta +build-arch_loong64_none_loong64_headers: + $(call if_package, linux-headers-6.7.7-loong64, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='loong64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-loong64' DH_OPTIONS='-plinux-headers-6.7.7-loong64' FEATURESET='none' FLAVOUR='loong64' IMAGE_FILE='arch/loongarch/boot/vmlinuz.efi' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/loong64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loong64\""' KERNEL_ARCH='loongarch' LOCALVERSION='-loong64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loong64' PACKAGE_NAME='linux-headers-6.7.7-loong64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') +build-arch_loong64_none_loong64_image: + $(call if_package, linux-image-6.7.7-loong64, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='loong64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-loong64' DH_OPTIONS='-plinux-image-6.7.7-loong64' FEATURESET='none' FLAVOUR='loong64' IMAGE_FILE='arch/loongarch/boot/vmlinuz.efi' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/loong64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loong64\""' KERNEL_ARCH='loongarch' LOCALVERSION='-loong64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loong64' PACKAGE_NAME='linux-image-6.7.7-loong64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') +build-arch_loong64_none_loong64_image-dbg: + $(call if_package, linux-image-6.7.7-loong64-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='loong64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-loong64-dbg' DH_OPTIONS='-plinux-image-6.7.7-loong64-dbg' FEATURESET='none' FLAVOUR='loong64' IMAGE_FILE='arch/loongarch/boot/vmlinuz.efi' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/loong64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loong64\""' KERNEL_ARCH='loongarch' LOCALVERSION='-loong64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loong64' PACKAGE_NAME='linux-image-6.7.7-loong64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') +build-arch_loong64_none_loong64_installer: + $(call if_package, ata-modules-6.7.7-loong64-di btrfs-modules-6.7.7-loong64-di cdrom-core-modules-6.7.7-loong64-di crc-modules-6.7.7-loong64-di crypto-dm-modules-6.7.7-loong64-di crypto-modules-6.7.7-loong64-di efi-modules-6.7.7-loong64-di event-modules-6.7.7-loong64-di ext4-modules-6.7.7-loong64-di f2fs-modules-6.7.7-loong64-di fat-modules-6.7.7-loong64-di fb-modules-6.7.7-loong64-di firewire-core-modules-6.7.7-loong64-di i2c-modules-6.7.7-loong64-di input-modules-6.7.7-loong64-di isofs-modules-6.7.7-loong64-di jfs-modules-6.7.7-loong64-di kernel-image-6.7.7-loong64-di loop-modules-6.7.7-loong64-di md-modules-6.7.7-loong64-di mouse-modules-6.7.7-loong64-di mtd-core-modules-6.7.7-loong64-di mtd-modules-6.7.7-loong64-di multipath-modules-6.7.7-loong64-di nbd-modules-6.7.7-loong64-di nic-modules-6.7.7-loong64-di nic-shared-modules-6.7.7-loong64-di nic-usb-modules-6.7.7-loong64-di nic-wireless-modules-6.7.7-loong64-di pata-modules-6.7.7-loong64-di ppp-modules-6.7.7-loong64-di rfkill-modules-6.7.7-loong64-di sata-modules-6.7.7-loong64-di scsi-core-modules-6.7.7-loong64-di scsi-modules-6.7.7-loong64-di scsi-nic-modules-6.7.7-loong64-di serial-modules-6.7.7-loong64-di sound-modules-6.7.7-loong64-di speakup-modules-6.7.7-loong64-di squashfs-modules-6.7.7-loong64-di udf-modules-6.7.7-loong64-di uinput-modules-6.7.7-loong64-di usb-modules-6.7.7-loong64-di usb-serial-modules-6.7.7-loong64-di usb-storage-modules-6.7.7-loong64-di xfs-modules-6.7.7-loong64-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.7.7' ARCH='loong64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.7.7-loong64-di -pbtrfs-modules-6.7.7-loong64-di -pcdrom-core-modules-6.7.7-loong64-di -pcrc-modules-6.7.7-loong64-di -pcrypto-dm-modules-6.7.7-loong64-di -pcrypto-modules-6.7.7-loong64-di -pefi-modules-6.7.7-loong64-di -pevent-modules-6.7.7-loong64-di -pext4-modules-6.7.7-loong64-di -pf2fs-modules-6.7.7-loong64-di -pfat-modules-6.7.7-loong64-di -pfb-modules-6.7.7-loong64-di -pfirewire-core-modules-6.7.7-loong64-di -pi2c-modules-6.7.7-loong64-di -pinput-modules-6.7.7-loong64-di -pisofs-modules-6.7.7-loong64-di -pjfs-modules-6.7.7-loong64-di -pkernel-image-6.7.7-loong64-di -ploop-modules-6.7.7-loong64-di -pmd-modules-6.7.7-loong64-di -pmouse-modules-6.7.7-loong64-di -pmtd-core-modules-6.7.7-loong64-di -pmtd-modules-6.7.7-loong64-di -pmultipath-modules-6.7.7-loong64-di -pnbd-modules-6.7.7-loong64-di -pnic-modules-6.7.7-loong64-di -pnic-shared-modules-6.7.7-loong64-di -pnic-usb-modules-6.7.7-loong64-di -pnic-wireless-modules-6.7.7-loong64-di -ppata-modules-6.7.7-loong64-di -pppp-modules-6.7.7-loong64-di -prfkill-modules-6.7.7-loong64-di -psata-modules-6.7.7-loong64-di -pscsi-core-modules-6.7.7-loong64-di -pscsi-modules-6.7.7-loong64-di -pscsi-nic-modules-6.7.7-loong64-di -pserial-modules-6.7.7-loong64-di -psound-modules-6.7.7-loong64-di -pspeakup-modules-6.7.7-loong64-di -psquashfs-modules-6.7.7-loong64-di -pudf-modules-6.7.7-loong64-di -puinput-modules-6.7.7-loong64-di -pusb-modules-6.7.7-loong64-di -pusb-serial-modules-6.7.7-loong64-di -pusb-storage-modules-6.7.7-loong64-di -pxfs-modules-6.7.7-loong64-di' FEATURESET='none' FLAVOUR='loong64' IMAGE_FILE='arch/loongarch/boot/vmlinuz.efi' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-loong64-di' KCONFIG='debian/config/config debian/config/loong64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loong64\""' KERNEL_ARCH='loongarch' LOCALVERSION='-loong64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loong64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') +build-arch_loong64_none_loong64_meta: + $(call if_package, linux-image-loong64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='loong64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-loong64' DH_OPTIONS='-plinux-image-loong64' FEATURESET='none' FLAVOUR='loong64' IMAGE_FILE='arch/loongarch/boot/vmlinuz.efi' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-loong64' KCONFIG='debian/config/config debian/config/loong64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loong64\""' KERNEL_ARCH='loongarch' LOCALVERSION='-loong64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loong64' PACKAGE_NAME='linux-image-loong64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-loong64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='loong64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-loong64' DH_OPTIONS='-plinux-headers-loong64' FEATURESET='none' FLAVOUR='loong64' IMAGE_FILE='arch/loongarch/boot/vmlinuz.efi' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-loong64' KCONFIG='debian/config/config debian/config/loong64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loong64\""' KERNEL_ARCH='loongarch' LOCALVERSION='-loong64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loong64' PACKAGE_NAME='linux-headers-loong64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-image-loong64-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='loong64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-loong64-dbg' DH_OPTIONS='-plinux-image-loong64-dbg' FEATURESET='none' FLAVOUR='loong64' IMAGE_FILE='arch/loongarch/boot/vmlinuz.efi' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-loong64-dbg' KCONFIG='debian/config/config debian/config/loong64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loong64\""' KERNEL_ARCH='loongarch' LOCALVERSION='-loong64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loong64' PACKAGE_NAME='linux-image-loong64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') +build-arch_loong64_perf: + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.7.7' ARCH='loong64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='loongarch' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') +build-arch_loong64_rtla: + $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.7.7' ARCH='loong64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='loongarch' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') +build-arch_loong64_usbip: + $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.7.7' ARCH='loong64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='loongarch' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_m68k:build-arch_m68k_bpftool build-arch_m68k_config build-arch_m68k_cpupower build-arch_m68k_hyperv-daemons build-arch_m68k_kbuild build-arch_m68k_none build-arch_m68k_perf build-arch_m68k_rtla build-arch_m68k_usbip build-arch_m68k_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.6.15' ARCH='m68k' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='m68k' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.7.7' ARCH='m68k' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='m68k' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_m68k_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real build_config ABINAME='6.6.15' ARCH='m68k' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='m68k' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real build_config ABINAME='6.7.7' ARCH='m68k' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='m68k' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_m68k_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.6.15' ARCH='m68k' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='m68k' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.7.7' ARCH='m68k' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='m68k' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_m68k_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.6.15' ARCH='m68k' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='m68k' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.7.7' ARCH='m68k' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='m68k' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_m68k_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.6.15' ARCH='m68k' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='m68k' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.7.7' ARCH='m68k' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='m68k' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_m68k_none:build-arch_m68k_none_m68k build-arch_m68k_none_m68k:build-arch_m68k_none_m68k_headers build-arch_m68k_none_m68k_image build-arch_m68k_none_m68k_image-dbg build-arch_m68k_none_m68k_installer build-arch_m68k_none_m68k_meta build-arch_m68k_none_m68k_headers: - $(call if_package, linux-headers-6.6.15-m68k, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-m68k' DH_OPTIONS='-plinux-headers-6.6.15-m68k' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCFLAGS='-ffreestanding' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' PACKAGE_NAME='linux-headers-6.6.15-m68k' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-m68k, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-m68k' DH_OPTIONS='-plinux-headers-6.7.7-m68k' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' PACKAGE_NAME='linux-headers-6.7.7-m68k' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_m68k_none_m68k_image: - $(call if_package, linux-image-6.6.15-m68k, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-m68k' DH_OPTIONS='-plinux-image-6.6.15-m68k' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCFLAGS='-ffreestanding' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' PACKAGE_NAME='linux-image-6.6.15-m68k' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-m68k, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-m68k' DH_OPTIONS='-plinux-image-6.7.7-m68k' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' PACKAGE_NAME='linux-image-6.7.7-m68k' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_m68k_none_m68k_image-dbg: - $(call if_package, linux-image-6.6.15-m68k-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-m68k-dbg' DH_OPTIONS='-plinux-image-6.6.15-m68k-dbg' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCFLAGS='-ffreestanding' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' PACKAGE_NAME='linux-image-6.6.15-m68k-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-m68k-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-m68k-dbg' DH_OPTIONS='-plinux-image-6.7.7-m68k-dbg' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' PACKAGE_NAME='linux-image-6.7.7-m68k-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_m68k_none_m68k_installer: - $(call if_package, affs-modules-6.6.15-m68k-di ata-modules-6.6.15-m68k-di btrfs-modules-6.6.15-m68k-di cdrom-core-modules-6.6.15-m68k-di crc-modules-6.6.15-m68k-di crypto-modules-6.6.15-m68k-di ext4-modules-6.6.15-m68k-di fat-modules-6.6.15-m68k-di hfs-modules-6.6.15-m68k-di isofs-modules-6.6.15-m68k-di kernel-image-6.6.15-m68k-di loop-modules-6.6.15-m68k-di md-modules-6.6.15-m68k-di nbd-modules-6.6.15-m68k-di nic-modules-6.6.15-m68k-di nic-shared-modules-6.6.15-m68k-di pata-modules-6.6.15-m68k-di ppp-modules-6.6.15-m68k-di scsi-core-modules-6.6.15-m68k-di scsi-modules-6.6.15-m68k-di squashfs-modules-6.6.15-m68k-di udf-modules-6.6.15-m68k-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.6.15' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-m68k-di -pata-modules-6.6.15-m68k-di -pbtrfs-modules-6.6.15-m68k-di -pcdrom-core-modules-6.6.15-m68k-di -pcrc-modules-6.6.15-m68k-di -pcrypto-modules-6.6.15-m68k-di -pext4-modules-6.6.15-m68k-di -pfat-modules-6.6.15-m68k-di -phfs-modules-6.6.15-m68k-di -pisofs-modules-6.6.15-m68k-di -pkernel-image-6.6.15-m68k-di -ploop-modules-6.6.15-m68k-di -pmd-modules-6.6.15-m68k-di -pnbd-modules-6.6.15-m68k-di -pnic-modules-6.6.15-m68k-di -pnic-shared-modules-6.6.15-m68k-di -ppata-modules-6.6.15-m68k-di -pppp-modules-6.6.15-m68k-di -pscsi-core-modules-6.6.15-m68k-di -pscsi-modules-6.6.15-m68k-di -psquashfs-modules-6.6.15-m68k-di -pudf-modules-6.6.15-m68k-di' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-m68k-di' KCFLAGS='-ffreestanding' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-m68k-di ata-modules-6.7.7-m68k-di btrfs-modules-6.7.7-m68k-di cdrom-core-modules-6.7.7-m68k-di crc-modules-6.7.7-m68k-di crypto-modules-6.7.7-m68k-di ext4-modules-6.7.7-m68k-di fat-modules-6.7.7-m68k-di hfs-modules-6.7.7-m68k-di isofs-modules-6.7.7-m68k-di kernel-image-6.7.7-m68k-di loop-modules-6.7.7-m68k-di md-modules-6.7.7-m68k-di nbd-modules-6.7.7-m68k-di nic-modules-6.7.7-m68k-di nic-shared-modules-6.7.7-m68k-di pata-modules-6.7.7-m68k-di ppp-modules-6.7.7-m68k-di scsi-core-modules-6.7.7-m68k-di scsi-modules-6.7.7-m68k-di squashfs-modules-6.7.7-m68k-di udf-modules-6.7.7-m68k-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.7.7' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-m68k-di -pata-modules-6.7.7-m68k-di -pbtrfs-modules-6.7.7-m68k-di -pcdrom-core-modules-6.7.7-m68k-di -pcrc-modules-6.7.7-m68k-di -pcrypto-modules-6.7.7-m68k-di -pext4-modules-6.7.7-m68k-di -pfat-modules-6.7.7-m68k-di -phfs-modules-6.7.7-m68k-di -pisofs-modules-6.7.7-m68k-di -pkernel-image-6.7.7-m68k-di -ploop-modules-6.7.7-m68k-di -pmd-modules-6.7.7-m68k-di -pnbd-modules-6.7.7-m68k-di -pnic-modules-6.7.7-m68k-di -pnic-shared-modules-6.7.7-m68k-di -ppata-modules-6.7.7-m68k-di -pppp-modules-6.7.7-m68k-di -pscsi-core-modules-6.7.7-m68k-di -pscsi-modules-6.7.7-m68k-di -psquashfs-modules-6.7.7-m68k-di -pudf-modules-6.7.7-m68k-di' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-m68k-di' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_m68k_none_m68k_meta: - $(call if_package, linux-image-m68k, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-m68k' DH_OPTIONS='-plinux-image-m68k' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-m68k' KCFLAGS='-ffreestanding' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' PACKAGE_NAME='linux-image-m68k' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-m68k, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-m68k' DH_OPTIONS='-plinux-headers-m68k' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-m68k' KCFLAGS='-ffreestanding' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' PACKAGE_NAME='linux-headers-m68k' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-m68k-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-m68k-dbg' DH_OPTIONS='-plinux-image-m68k-dbg' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-m68k-dbg' KCFLAGS='-ffreestanding' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' PACKAGE_NAME='linux-image-m68k-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-m68k, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-m68k' DH_OPTIONS='-plinux-image-m68k' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-m68k' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' PACKAGE_NAME='linux-image-m68k' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-m68k, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-m68k' DH_OPTIONS='-plinux-headers-m68k' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-m68k' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' PACKAGE_NAME='linux-headers-m68k' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-m68k-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-m68k-dbg' DH_OPTIONS='-plinux-image-m68k-dbg' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-m68k-dbg' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' PACKAGE_NAME='linux-image-m68k-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_m68k_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.6.15' ARCH='m68k' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='m68k' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.7.7' ARCH='m68k' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='m68k' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_m68k_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.6.15' ARCH='m68k' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='m68k' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.7.7' ARCH='m68k' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='m68k' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_m68k_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.6.15' ARCH='m68k' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='m68k' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.7.7' ARCH='m68k' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='m68k' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips:build-arch_mips_bpftool build-arch_mips_config build-arch_mips_cpupower build-arch_mips_hyperv-daemons build-arch_mips_kbuild build-arch_mips_none build-arch_mips_perf build-arch_mips_rtla build-arch_mips_usbip build-arch_mips64:build-arch_mips64_bpftool build-arch_mips64_config build-arch_mips64_cpupower build-arch_mips64_hyperv-daemons build-arch_mips64_kbuild build-arch_mips64_none build-arch_mips64_perf build-arch_mips64_rtla build-arch_mips64_usbip build-arch_mips64_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.6.15' ARCH='mips64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='mips' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.7.7' ARCH='mips64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='mips' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real build_config ABINAME='6.6.15' ARCH='mips64' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='mips' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real build_config ABINAME='6.7.7' ARCH='mips64' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='mips' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.6.15' ARCH='mips64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='mips' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.7.7' ARCH='mips64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='mips' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.6.15' ARCH='mips64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='mips' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.7.7' ARCH='mips64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='mips' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.6.15' ARCH='mips64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='mips' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.7.7' ARCH='mips64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='mips' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64_none:build-arch_mips64_none_5kc-malta build-arch_mips64_none_mips64r2eb build-arch_mips64_none_octeon build-arch_mips64_none_5kc-malta:build-arch_mips64_none_5kc-malta_headers build-arch_mips64_none_5kc-malta_image build-arch_mips64_none_5kc-malta_image-dbg build-arch_mips64_none_5kc-malta_installer build-arch_mips64_none_5kc-malta_meta build-arch_mips64_none_5kc-malta_headers: - $(call if_package, linux-headers-6.6.15-5kc-malta, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-5kc-malta' DH_OPTIONS='-plinux-headers-6.6.15-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-headers-6.6.15-5kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-5kc-malta, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-5kc-malta' DH_OPTIONS='-plinux-headers-6.7.7-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-headers-6.7.7-5kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64_none_5kc-malta_image: - $(call if_package, linux-image-6.6.15-5kc-malta, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-5kc-malta' DH_OPTIONS='-plinux-image-6.6.15-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-6.6.15-5kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-5kc-malta, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-5kc-malta' DH_OPTIONS='-plinux-image-6.7.7-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-6.7.7-5kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64_none_5kc-malta_image-dbg: - $(call if_package, linux-image-6.6.15-5kc-malta-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-5kc-malta-dbg' DH_OPTIONS='-plinux-image-6.6.15-5kc-malta-dbg' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-6.6.15-5kc-malta-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-5kc-malta-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-5kc-malta-dbg' DH_OPTIONS='-plinux-image-6.7.7-5kc-malta-dbg' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-6.7.7-5kc-malta-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64_none_5kc-malta_installer: - $(call if_package, affs-modules-6.6.15-5kc-malta-di ata-modules-6.6.15-5kc-malta-di btrfs-modules-6.6.15-5kc-malta-di cdrom-core-modules-6.6.15-5kc-malta-di crc-modules-6.6.15-5kc-malta-di crypto-dm-modules-6.6.15-5kc-malta-di crypto-modules-6.6.15-5kc-malta-di event-modules-6.6.15-5kc-malta-di ext4-modules-6.6.15-5kc-malta-di f2fs-modules-6.6.15-5kc-malta-di fat-modules-6.6.15-5kc-malta-di fb-modules-6.6.15-5kc-malta-di firewire-core-modules-6.6.15-5kc-malta-di input-modules-6.6.15-5kc-malta-di isofs-modules-6.6.15-5kc-malta-di jfs-modules-6.6.15-5kc-malta-di kernel-image-6.6.15-5kc-malta-di loop-modules-6.6.15-5kc-malta-di md-modules-6.6.15-5kc-malta-di minix-modules-6.6.15-5kc-malta-di mmc-core-modules-6.6.15-5kc-malta-di mmc-modules-6.6.15-5kc-malta-di mouse-modules-6.6.15-5kc-malta-di multipath-modules-6.6.15-5kc-malta-di nbd-modules-6.6.15-5kc-malta-di nfs-modules-6.6.15-5kc-malta-di nic-modules-6.6.15-5kc-malta-di nic-shared-modules-6.6.15-5kc-malta-di nic-usb-modules-6.6.15-5kc-malta-di nic-wireless-modules-6.6.15-5kc-malta-di pata-modules-6.6.15-5kc-malta-di ppp-modules-6.6.15-5kc-malta-di sata-modules-6.6.15-5kc-malta-di scsi-core-modules-6.6.15-5kc-malta-di scsi-modules-6.6.15-5kc-malta-di scsi-nic-modules-6.6.15-5kc-malta-di sound-modules-6.6.15-5kc-malta-di speakup-modules-6.6.15-5kc-malta-di squashfs-modules-6.6.15-5kc-malta-di udf-modules-6.6.15-5kc-malta-di usb-modules-6.6.15-5kc-malta-di usb-serial-modules-6.6.15-5kc-malta-di usb-storage-modules-6.6.15-5kc-malta-di xfs-modules-6.6.15-5kc-malta-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-5kc-malta-di -pata-modules-6.6.15-5kc-malta-di -pbtrfs-modules-6.6.15-5kc-malta-di -pcdrom-core-modules-6.6.15-5kc-malta-di -pcrc-modules-6.6.15-5kc-malta-di -pcrypto-dm-modules-6.6.15-5kc-malta-di -pcrypto-modules-6.6.15-5kc-malta-di -pevent-modules-6.6.15-5kc-malta-di -pext4-modules-6.6.15-5kc-malta-di -pf2fs-modules-6.6.15-5kc-malta-di -pfat-modules-6.6.15-5kc-malta-di -pfb-modules-6.6.15-5kc-malta-di -pfirewire-core-modules-6.6.15-5kc-malta-di -pinput-modules-6.6.15-5kc-malta-di -pisofs-modules-6.6.15-5kc-malta-di -pjfs-modules-6.6.15-5kc-malta-di -pkernel-image-6.6.15-5kc-malta-di -ploop-modules-6.6.15-5kc-malta-di -pmd-modules-6.6.15-5kc-malta-di -pminix-modules-6.6.15-5kc-malta-di -pmmc-core-modules-6.6.15-5kc-malta-di -pmmc-modules-6.6.15-5kc-malta-di -pmouse-modules-6.6.15-5kc-malta-di -pmultipath-modules-6.6.15-5kc-malta-di -pnbd-modules-6.6.15-5kc-malta-di -pnfs-modules-6.6.15-5kc-malta-di -pnic-modules-6.6.15-5kc-malta-di -pnic-shared-modules-6.6.15-5kc-malta-di -pnic-usb-modules-6.6.15-5kc-malta-di -pnic-wireless-modules-6.6.15-5kc-malta-di -ppata-modules-6.6.15-5kc-malta-di -pppp-modules-6.6.15-5kc-malta-di -psata-modules-6.6.15-5kc-malta-di -pscsi-core-modules-6.6.15-5kc-malta-di -pscsi-modules-6.6.15-5kc-malta-di -pscsi-nic-modules-6.6.15-5kc-malta-di -psound-modules-6.6.15-5kc-malta-di -pspeakup-modules-6.6.15-5kc-malta-di -psquashfs-modules-6.6.15-5kc-malta-di -pudf-modules-6.6.15-5kc-malta-di -pusb-modules-6.6.15-5kc-malta-di -pusb-serial-modules-6.6.15-5kc-malta-di -pusb-storage-modules-6.6.15-5kc-malta-di -pxfs-modules-6.6.15-5kc-malta-di' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-5kc-malta-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-5kc-malta-di ata-modules-6.7.7-5kc-malta-di btrfs-modules-6.7.7-5kc-malta-di cdrom-core-modules-6.7.7-5kc-malta-di crc-modules-6.7.7-5kc-malta-di crypto-dm-modules-6.7.7-5kc-malta-di crypto-modules-6.7.7-5kc-malta-di event-modules-6.7.7-5kc-malta-di ext4-modules-6.7.7-5kc-malta-di f2fs-modules-6.7.7-5kc-malta-di fat-modules-6.7.7-5kc-malta-di fb-modules-6.7.7-5kc-malta-di firewire-core-modules-6.7.7-5kc-malta-di input-modules-6.7.7-5kc-malta-di isofs-modules-6.7.7-5kc-malta-di jfs-modules-6.7.7-5kc-malta-di kernel-image-6.7.7-5kc-malta-di loop-modules-6.7.7-5kc-malta-di md-modules-6.7.7-5kc-malta-di minix-modules-6.7.7-5kc-malta-di mmc-core-modules-6.7.7-5kc-malta-di mmc-modules-6.7.7-5kc-malta-di mouse-modules-6.7.7-5kc-malta-di multipath-modules-6.7.7-5kc-malta-di nbd-modules-6.7.7-5kc-malta-di nfs-modules-6.7.7-5kc-malta-di nic-modules-6.7.7-5kc-malta-di nic-shared-modules-6.7.7-5kc-malta-di nic-usb-modules-6.7.7-5kc-malta-di nic-wireless-modules-6.7.7-5kc-malta-di pata-modules-6.7.7-5kc-malta-di ppp-modules-6.7.7-5kc-malta-di sata-modules-6.7.7-5kc-malta-di scsi-core-modules-6.7.7-5kc-malta-di scsi-modules-6.7.7-5kc-malta-di scsi-nic-modules-6.7.7-5kc-malta-di sound-modules-6.7.7-5kc-malta-di speakup-modules-6.7.7-5kc-malta-di squashfs-modules-6.7.7-5kc-malta-di udf-modules-6.7.7-5kc-malta-di usb-modules-6.7.7-5kc-malta-di usb-serial-modules-6.7.7-5kc-malta-di usb-storage-modules-6.7.7-5kc-malta-di xfs-modules-6.7.7-5kc-malta-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-5kc-malta-di -pata-modules-6.7.7-5kc-malta-di -pbtrfs-modules-6.7.7-5kc-malta-di -pcdrom-core-modules-6.7.7-5kc-malta-di -pcrc-modules-6.7.7-5kc-malta-di -pcrypto-dm-modules-6.7.7-5kc-malta-di -pcrypto-modules-6.7.7-5kc-malta-di -pevent-modules-6.7.7-5kc-malta-di -pext4-modules-6.7.7-5kc-malta-di -pf2fs-modules-6.7.7-5kc-malta-di -pfat-modules-6.7.7-5kc-malta-di -pfb-modules-6.7.7-5kc-malta-di -pfirewire-core-modules-6.7.7-5kc-malta-di -pinput-modules-6.7.7-5kc-malta-di -pisofs-modules-6.7.7-5kc-malta-di -pjfs-modules-6.7.7-5kc-malta-di -pkernel-image-6.7.7-5kc-malta-di -ploop-modules-6.7.7-5kc-malta-di -pmd-modules-6.7.7-5kc-malta-di -pminix-modules-6.7.7-5kc-malta-di -pmmc-core-modules-6.7.7-5kc-malta-di -pmmc-modules-6.7.7-5kc-malta-di -pmouse-modules-6.7.7-5kc-malta-di -pmultipath-modules-6.7.7-5kc-malta-di -pnbd-modules-6.7.7-5kc-malta-di -pnfs-modules-6.7.7-5kc-malta-di -pnic-modules-6.7.7-5kc-malta-di -pnic-shared-modules-6.7.7-5kc-malta-di -pnic-usb-modules-6.7.7-5kc-malta-di -pnic-wireless-modules-6.7.7-5kc-malta-di -ppata-modules-6.7.7-5kc-malta-di -pppp-modules-6.7.7-5kc-malta-di -psata-modules-6.7.7-5kc-malta-di -pscsi-core-modules-6.7.7-5kc-malta-di -pscsi-modules-6.7.7-5kc-malta-di -pscsi-nic-modules-6.7.7-5kc-malta-di -psound-modules-6.7.7-5kc-malta-di -pspeakup-modules-6.7.7-5kc-malta-di -psquashfs-modules-6.7.7-5kc-malta-di -pudf-modules-6.7.7-5kc-malta-di -pusb-modules-6.7.7-5kc-malta-di -pusb-serial-modules-6.7.7-5kc-malta-di -pusb-storage-modules-6.7.7-5kc-malta-di -pxfs-modules-6.7.7-5kc-malta-di' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-5kc-malta-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64_none_5kc-malta_meta: - $(call if_package, linux-image-5kc-malta, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-5kc-malta' DH_OPTIONS='-plinux-image-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-5kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-5kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-5kc-malta, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-5kc-malta' DH_OPTIONS='-plinux-headers-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-5kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-headers-5kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-5kc-malta-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-5kc-malta-dbg' DH_OPTIONS='-plinux-image-5kc-malta-dbg' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-5kc-malta-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-5kc-malta-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-5kc-malta, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-5kc-malta' DH_OPTIONS='-plinux-image-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-5kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-5kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-5kc-malta, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-5kc-malta' DH_OPTIONS='-plinux-headers-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-5kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-headers-5kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-5kc-malta-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-5kc-malta-dbg' DH_OPTIONS='-plinux-image-5kc-malta-dbg' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-5kc-malta-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-5kc-malta-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64_none_mips64r2eb:build-arch_mips64_none_mips64r2eb_headers build-arch_mips64_none_mips64r2eb_image build-arch_mips64_none_mips64r2eb_image-dbg build-arch_mips64_none_mips64r2eb_installer build-arch_mips64_none_mips64r2eb_meta build-arch_mips64_none_mips64r2eb_headers: - $(call if_package, linux-headers-6.6.15-mips64r2eb, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-mips64r2eb' DH_OPTIONS='-plinux-headers-6.6.15-mips64r2eb' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' PACKAGE_NAME='linux-headers-6.6.15-mips64r2eb' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-mips64r2eb, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-mips64r2eb' DH_OPTIONS='-plinux-headers-6.7.7-mips64r2eb' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' PACKAGE_NAME='linux-headers-6.7.7-mips64r2eb' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64_none_mips64r2eb_image: - $(call if_package, linux-image-6.6.15-mips64r2eb, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-mips64r2eb' DH_OPTIONS='-plinux-image-6.6.15-mips64r2eb' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' PACKAGE_NAME='linux-image-6.6.15-mips64r2eb' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-mips64r2eb, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-mips64r2eb' DH_OPTIONS='-plinux-image-6.7.7-mips64r2eb' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' PACKAGE_NAME='linux-image-6.7.7-mips64r2eb' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64_none_mips64r2eb_image-dbg: - $(call if_package, linux-image-6.6.15-mips64r2eb-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-mips64r2eb-dbg' DH_OPTIONS='-plinux-image-6.6.15-mips64r2eb-dbg' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' PACKAGE_NAME='linux-image-6.6.15-mips64r2eb-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-mips64r2eb-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-mips64r2eb-dbg' DH_OPTIONS='-plinux-image-6.7.7-mips64r2eb-dbg' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' PACKAGE_NAME='linux-image-6.7.7-mips64r2eb-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64_none_mips64r2eb_installer: - $(call if_package, affs-modules-6.6.15-mips64r2eb-di ata-modules-6.6.15-mips64r2eb-di btrfs-modules-6.6.15-mips64r2eb-di cdrom-core-modules-6.6.15-mips64r2eb-di crc-modules-6.6.15-mips64r2eb-di crypto-dm-modules-6.6.15-mips64r2eb-di crypto-modules-6.6.15-mips64r2eb-di event-modules-6.6.15-mips64r2eb-di ext4-modules-6.6.15-mips64r2eb-di f2fs-modules-6.6.15-mips64r2eb-di fat-modules-6.6.15-mips64r2eb-di fb-modules-6.6.15-mips64r2eb-di firewire-core-modules-6.6.15-mips64r2eb-di input-modules-6.6.15-mips64r2eb-di isofs-modules-6.6.15-mips64r2eb-di jfs-modules-6.6.15-mips64r2eb-di kernel-image-6.6.15-mips64r2eb-di loop-modules-6.6.15-mips64r2eb-di md-modules-6.6.15-mips64r2eb-di minix-modules-6.6.15-mips64r2eb-di mmc-core-modules-6.6.15-mips64r2eb-di mmc-modules-6.6.15-mips64r2eb-di mouse-modules-6.6.15-mips64r2eb-di multipath-modules-6.6.15-mips64r2eb-di nbd-modules-6.6.15-mips64r2eb-di nfs-modules-6.6.15-mips64r2eb-di nic-modules-6.6.15-mips64r2eb-di nic-shared-modules-6.6.15-mips64r2eb-di nic-usb-modules-6.6.15-mips64r2eb-di nic-wireless-modules-6.6.15-mips64r2eb-di pata-modules-6.6.15-mips64r2eb-di ppp-modules-6.6.15-mips64r2eb-di sata-modules-6.6.15-mips64r2eb-di scsi-core-modules-6.6.15-mips64r2eb-di scsi-modules-6.6.15-mips64r2eb-di scsi-nic-modules-6.6.15-mips64r2eb-di sound-modules-6.6.15-mips64r2eb-di speakup-modules-6.6.15-mips64r2eb-di squashfs-modules-6.6.15-mips64r2eb-di udf-modules-6.6.15-mips64r2eb-di usb-modules-6.6.15-mips64r2eb-di usb-serial-modules-6.6.15-mips64r2eb-di usb-storage-modules-6.6.15-mips64r2eb-di xfs-modules-6.6.15-mips64r2eb-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-mips64r2eb-di -pata-modules-6.6.15-mips64r2eb-di -pbtrfs-modules-6.6.15-mips64r2eb-di -pcdrom-core-modules-6.6.15-mips64r2eb-di -pcrc-modules-6.6.15-mips64r2eb-di -pcrypto-dm-modules-6.6.15-mips64r2eb-di -pcrypto-modules-6.6.15-mips64r2eb-di -pevent-modules-6.6.15-mips64r2eb-di -pext4-modules-6.6.15-mips64r2eb-di -pf2fs-modules-6.6.15-mips64r2eb-di -pfat-modules-6.6.15-mips64r2eb-di -pfb-modules-6.6.15-mips64r2eb-di -pfirewire-core-modules-6.6.15-mips64r2eb-di -pinput-modules-6.6.15-mips64r2eb-di -pisofs-modules-6.6.15-mips64r2eb-di -pjfs-modules-6.6.15-mips64r2eb-di -pkernel-image-6.6.15-mips64r2eb-di -ploop-modules-6.6.15-mips64r2eb-di -pmd-modules-6.6.15-mips64r2eb-di -pminix-modules-6.6.15-mips64r2eb-di -pmmc-core-modules-6.6.15-mips64r2eb-di -pmmc-modules-6.6.15-mips64r2eb-di -pmouse-modules-6.6.15-mips64r2eb-di -pmultipath-modules-6.6.15-mips64r2eb-di -pnbd-modules-6.6.15-mips64r2eb-di -pnfs-modules-6.6.15-mips64r2eb-di -pnic-modules-6.6.15-mips64r2eb-di -pnic-shared-modules-6.6.15-mips64r2eb-di -pnic-usb-modules-6.6.15-mips64r2eb-di -pnic-wireless-modules-6.6.15-mips64r2eb-di -ppata-modules-6.6.15-mips64r2eb-di -pppp-modules-6.6.15-mips64r2eb-di -psata-modules-6.6.15-mips64r2eb-di -pscsi-core-modules-6.6.15-mips64r2eb-di -pscsi-modules-6.6.15-mips64r2eb-di -pscsi-nic-modules-6.6.15-mips64r2eb-di -psound-modules-6.6.15-mips64r2eb-di -pspeakup-modules-6.6.15-mips64r2eb-di -psquashfs-modules-6.6.15-mips64r2eb-di -pudf-modules-6.6.15-mips64r2eb-di -pusb-modules-6.6.15-mips64r2eb-di -pusb-serial-modules-6.6.15-mips64r2eb-di -pusb-storage-modules-6.6.15-mips64r2eb-di -pxfs-modules-6.6.15-mips64r2eb-di' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-mips64r2eb-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-mips64r2eb-di ata-modules-6.7.7-mips64r2eb-di btrfs-modules-6.7.7-mips64r2eb-di cdrom-core-modules-6.7.7-mips64r2eb-di crc-modules-6.7.7-mips64r2eb-di crypto-dm-modules-6.7.7-mips64r2eb-di crypto-modules-6.7.7-mips64r2eb-di event-modules-6.7.7-mips64r2eb-di ext4-modules-6.7.7-mips64r2eb-di f2fs-modules-6.7.7-mips64r2eb-di fat-modules-6.7.7-mips64r2eb-di fb-modules-6.7.7-mips64r2eb-di firewire-core-modules-6.7.7-mips64r2eb-di input-modules-6.7.7-mips64r2eb-di isofs-modules-6.7.7-mips64r2eb-di jfs-modules-6.7.7-mips64r2eb-di kernel-image-6.7.7-mips64r2eb-di loop-modules-6.7.7-mips64r2eb-di md-modules-6.7.7-mips64r2eb-di minix-modules-6.7.7-mips64r2eb-di mmc-core-modules-6.7.7-mips64r2eb-di mmc-modules-6.7.7-mips64r2eb-di mouse-modules-6.7.7-mips64r2eb-di multipath-modules-6.7.7-mips64r2eb-di nbd-modules-6.7.7-mips64r2eb-di nfs-modules-6.7.7-mips64r2eb-di nic-modules-6.7.7-mips64r2eb-di nic-shared-modules-6.7.7-mips64r2eb-di nic-usb-modules-6.7.7-mips64r2eb-di nic-wireless-modules-6.7.7-mips64r2eb-di pata-modules-6.7.7-mips64r2eb-di ppp-modules-6.7.7-mips64r2eb-di sata-modules-6.7.7-mips64r2eb-di scsi-core-modules-6.7.7-mips64r2eb-di scsi-modules-6.7.7-mips64r2eb-di scsi-nic-modules-6.7.7-mips64r2eb-di sound-modules-6.7.7-mips64r2eb-di speakup-modules-6.7.7-mips64r2eb-di squashfs-modules-6.7.7-mips64r2eb-di udf-modules-6.7.7-mips64r2eb-di usb-modules-6.7.7-mips64r2eb-di usb-serial-modules-6.7.7-mips64r2eb-di usb-storage-modules-6.7.7-mips64r2eb-di xfs-modules-6.7.7-mips64r2eb-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-mips64r2eb-di -pata-modules-6.7.7-mips64r2eb-di -pbtrfs-modules-6.7.7-mips64r2eb-di -pcdrom-core-modules-6.7.7-mips64r2eb-di -pcrc-modules-6.7.7-mips64r2eb-di -pcrypto-dm-modules-6.7.7-mips64r2eb-di -pcrypto-modules-6.7.7-mips64r2eb-di -pevent-modules-6.7.7-mips64r2eb-di -pext4-modules-6.7.7-mips64r2eb-di -pf2fs-modules-6.7.7-mips64r2eb-di -pfat-modules-6.7.7-mips64r2eb-di -pfb-modules-6.7.7-mips64r2eb-di -pfirewire-core-modules-6.7.7-mips64r2eb-di -pinput-modules-6.7.7-mips64r2eb-di -pisofs-modules-6.7.7-mips64r2eb-di -pjfs-modules-6.7.7-mips64r2eb-di -pkernel-image-6.7.7-mips64r2eb-di -ploop-modules-6.7.7-mips64r2eb-di -pmd-modules-6.7.7-mips64r2eb-di -pminix-modules-6.7.7-mips64r2eb-di -pmmc-core-modules-6.7.7-mips64r2eb-di -pmmc-modules-6.7.7-mips64r2eb-di -pmouse-modules-6.7.7-mips64r2eb-di -pmultipath-modules-6.7.7-mips64r2eb-di -pnbd-modules-6.7.7-mips64r2eb-di -pnfs-modules-6.7.7-mips64r2eb-di -pnic-modules-6.7.7-mips64r2eb-di -pnic-shared-modules-6.7.7-mips64r2eb-di -pnic-usb-modules-6.7.7-mips64r2eb-di -pnic-wireless-modules-6.7.7-mips64r2eb-di -ppata-modules-6.7.7-mips64r2eb-di -pppp-modules-6.7.7-mips64r2eb-di -psata-modules-6.7.7-mips64r2eb-di -pscsi-core-modules-6.7.7-mips64r2eb-di -pscsi-modules-6.7.7-mips64r2eb-di -pscsi-nic-modules-6.7.7-mips64r2eb-di -psound-modules-6.7.7-mips64r2eb-di -pspeakup-modules-6.7.7-mips64r2eb-di -psquashfs-modules-6.7.7-mips64r2eb-di -pudf-modules-6.7.7-mips64r2eb-di -pusb-modules-6.7.7-mips64r2eb-di -pusb-serial-modules-6.7.7-mips64r2eb-di -pusb-storage-modules-6.7.7-mips64r2eb-di -pxfs-modules-6.7.7-mips64r2eb-di' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-mips64r2eb-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64_none_mips64r2eb_meta: - $(call if_package, linux-image-mips64r2eb, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips64r2eb' DH_OPTIONS='-plinux-image-mips64r2eb' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-mips64r2eb' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' PACKAGE_NAME='linux-image-mips64r2eb' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-mips64r2eb, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-mips64r2eb' DH_OPTIONS='-plinux-headers-mips64r2eb' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-mips64r2eb' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' PACKAGE_NAME='linux-headers-mips64r2eb' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-mips64r2eb-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips64r2eb-dbg' DH_OPTIONS='-plinux-image-mips64r2eb-dbg' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-mips64r2eb-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' PACKAGE_NAME='linux-image-mips64r2eb-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-mips64r2eb, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips64r2eb' DH_OPTIONS='-plinux-image-mips64r2eb' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-mips64r2eb' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' PACKAGE_NAME='linux-image-mips64r2eb' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-mips64r2eb, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-mips64r2eb' DH_OPTIONS='-plinux-headers-mips64r2eb' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-mips64r2eb' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' PACKAGE_NAME='linux-headers-mips64r2eb' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-mips64r2eb-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips64r2eb-dbg' DH_OPTIONS='-plinux-image-mips64r2eb-dbg' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-mips64r2eb-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' PACKAGE_NAME='linux-image-mips64r2eb-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64_none_octeon:build-arch_mips64_none_octeon_headers build-arch_mips64_none_octeon_image build-arch_mips64_none_octeon_image-dbg build-arch_mips64_none_octeon_installer build-arch_mips64_none_octeon_meta build-arch_mips64_none_octeon_headers: - $(call if_package, linux-headers-6.6.15-octeon, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-octeon' DH_OPTIONS='-plinux-headers-6.6.15-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-6.6.15-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-octeon, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-octeon' DH_OPTIONS='-plinux-headers-6.7.7-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-6.7.7-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64_none_octeon_image: - $(call if_package, linux-image-6.6.15-octeon, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-octeon' DH_OPTIONS='-plinux-image-6.6.15-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.6.15-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-octeon, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-octeon' DH_OPTIONS='-plinux-image-6.7.7-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.7.7-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64_none_octeon_image-dbg: - $(call if_package, linux-image-6.6.15-octeon-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-octeon-dbg' DH_OPTIONS='-plinux-image-6.6.15-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.6.15-octeon-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-octeon-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-octeon-dbg' DH_OPTIONS='-plinux-image-6.7.7-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.7.7-octeon-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64_none_octeon_installer: - $(call if_package, affs-modules-6.6.15-octeon-di ata-modules-6.6.15-octeon-di btrfs-modules-6.6.15-octeon-di cdrom-core-modules-6.6.15-octeon-di crc-modules-6.6.15-octeon-di crypto-dm-modules-6.6.15-octeon-di crypto-modules-6.6.15-octeon-di event-modules-6.6.15-octeon-di ext4-modules-6.6.15-octeon-di f2fs-modules-6.6.15-octeon-di fat-modules-6.6.15-octeon-di fb-modules-6.6.15-octeon-di firewire-core-modules-6.6.15-octeon-di input-modules-6.6.15-octeon-di isofs-modules-6.6.15-octeon-di jfs-modules-6.6.15-octeon-di kernel-image-6.6.15-octeon-di loop-modules-6.6.15-octeon-di md-modules-6.6.15-octeon-di minix-modules-6.6.15-octeon-di mmc-core-modules-6.6.15-octeon-di mmc-modules-6.6.15-octeon-di mouse-modules-6.6.15-octeon-di multipath-modules-6.6.15-octeon-di nbd-modules-6.6.15-octeon-di nfs-modules-6.6.15-octeon-di nic-modules-6.6.15-octeon-di nic-shared-modules-6.6.15-octeon-di nic-usb-modules-6.6.15-octeon-di nic-wireless-modules-6.6.15-octeon-di pata-modules-6.6.15-octeon-di ppp-modules-6.6.15-octeon-di sata-modules-6.6.15-octeon-di scsi-core-modules-6.6.15-octeon-di scsi-modules-6.6.15-octeon-di scsi-nic-modules-6.6.15-octeon-di sound-modules-6.6.15-octeon-di speakup-modules-6.6.15-octeon-di squashfs-modules-6.6.15-octeon-di udf-modules-6.6.15-octeon-di usb-modules-6.6.15-octeon-di usb-serial-modules-6.6.15-octeon-di usb-storage-modules-6.6.15-octeon-di xfs-modules-6.6.15-octeon-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-octeon-di -pata-modules-6.6.15-octeon-di -pbtrfs-modules-6.6.15-octeon-di -pcdrom-core-modules-6.6.15-octeon-di -pcrc-modules-6.6.15-octeon-di -pcrypto-dm-modules-6.6.15-octeon-di -pcrypto-modules-6.6.15-octeon-di -pevent-modules-6.6.15-octeon-di -pext4-modules-6.6.15-octeon-di -pf2fs-modules-6.6.15-octeon-di -pfat-modules-6.6.15-octeon-di -pfb-modules-6.6.15-octeon-di -pfirewire-core-modules-6.6.15-octeon-di -pinput-modules-6.6.15-octeon-di -pisofs-modules-6.6.15-octeon-di -pjfs-modules-6.6.15-octeon-di -pkernel-image-6.6.15-octeon-di -ploop-modules-6.6.15-octeon-di -pmd-modules-6.6.15-octeon-di -pminix-modules-6.6.15-octeon-di -pmmc-core-modules-6.6.15-octeon-di -pmmc-modules-6.6.15-octeon-di -pmouse-modules-6.6.15-octeon-di -pmultipath-modules-6.6.15-octeon-di -pnbd-modules-6.6.15-octeon-di -pnfs-modules-6.6.15-octeon-di -pnic-modules-6.6.15-octeon-di -pnic-shared-modules-6.6.15-octeon-di -pnic-usb-modules-6.6.15-octeon-di -pnic-wireless-modules-6.6.15-octeon-di -ppata-modules-6.6.15-octeon-di -pppp-modules-6.6.15-octeon-di -psata-modules-6.6.15-octeon-di -pscsi-core-modules-6.6.15-octeon-di -pscsi-modules-6.6.15-octeon-di -pscsi-nic-modules-6.6.15-octeon-di -psound-modules-6.6.15-octeon-di -pspeakup-modules-6.6.15-octeon-di -psquashfs-modules-6.6.15-octeon-di -pudf-modules-6.6.15-octeon-di -pusb-modules-6.6.15-octeon-di -pusb-serial-modules-6.6.15-octeon-di -pusb-storage-modules-6.6.15-octeon-di -pxfs-modules-6.6.15-octeon-di' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-octeon-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-octeon-di ata-modules-6.7.7-octeon-di btrfs-modules-6.7.7-octeon-di cdrom-core-modules-6.7.7-octeon-di crc-modules-6.7.7-octeon-di crypto-dm-modules-6.7.7-octeon-di crypto-modules-6.7.7-octeon-di event-modules-6.7.7-octeon-di ext4-modules-6.7.7-octeon-di f2fs-modules-6.7.7-octeon-di fat-modules-6.7.7-octeon-di fb-modules-6.7.7-octeon-di firewire-core-modules-6.7.7-octeon-di input-modules-6.7.7-octeon-di isofs-modules-6.7.7-octeon-di jfs-modules-6.7.7-octeon-di kernel-image-6.7.7-octeon-di loop-modules-6.7.7-octeon-di md-modules-6.7.7-octeon-di minix-modules-6.7.7-octeon-di mmc-core-modules-6.7.7-octeon-di mmc-modules-6.7.7-octeon-di mouse-modules-6.7.7-octeon-di multipath-modules-6.7.7-octeon-di nbd-modules-6.7.7-octeon-di nfs-modules-6.7.7-octeon-di nic-modules-6.7.7-octeon-di nic-shared-modules-6.7.7-octeon-di nic-usb-modules-6.7.7-octeon-di nic-wireless-modules-6.7.7-octeon-di pata-modules-6.7.7-octeon-di ppp-modules-6.7.7-octeon-di sata-modules-6.7.7-octeon-di scsi-core-modules-6.7.7-octeon-di scsi-modules-6.7.7-octeon-di scsi-nic-modules-6.7.7-octeon-di sound-modules-6.7.7-octeon-di speakup-modules-6.7.7-octeon-di squashfs-modules-6.7.7-octeon-di udf-modules-6.7.7-octeon-di usb-modules-6.7.7-octeon-di usb-serial-modules-6.7.7-octeon-di usb-storage-modules-6.7.7-octeon-di xfs-modules-6.7.7-octeon-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-octeon-di -pata-modules-6.7.7-octeon-di -pbtrfs-modules-6.7.7-octeon-di -pcdrom-core-modules-6.7.7-octeon-di -pcrc-modules-6.7.7-octeon-di -pcrypto-dm-modules-6.7.7-octeon-di -pcrypto-modules-6.7.7-octeon-di -pevent-modules-6.7.7-octeon-di -pext4-modules-6.7.7-octeon-di -pf2fs-modules-6.7.7-octeon-di -pfat-modules-6.7.7-octeon-di -pfb-modules-6.7.7-octeon-di -pfirewire-core-modules-6.7.7-octeon-di -pinput-modules-6.7.7-octeon-di -pisofs-modules-6.7.7-octeon-di -pjfs-modules-6.7.7-octeon-di -pkernel-image-6.7.7-octeon-di -ploop-modules-6.7.7-octeon-di -pmd-modules-6.7.7-octeon-di -pminix-modules-6.7.7-octeon-di -pmmc-core-modules-6.7.7-octeon-di -pmmc-modules-6.7.7-octeon-di -pmouse-modules-6.7.7-octeon-di -pmultipath-modules-6.7.7-octeon-di -pnbd-modules-6.7.7-octeon-di -pnfs-modules-6.7.7-octeon-di -pnic-modules-6.7.7-octeon-di -pnic-shared-modules-6.7.7-octeon-di -pnic-usb-modules-6.7.7-octeon-di -pnic-wireless-modules-6.7.7-octeon-di -ppata-modules-6.7.7-octeon-di -pppp-modules-6.7.7-octeon-di -psata-modules-6.7.7-octeon-di -pscsi-core-modules-6.7.7-octeon-di -pscsi-modules-6.7.7-octeon-di -pscsi-nic-modules-6.7.7-octeon-di -psound-modules-6.7.7-octeon-di -pspeakup-modules-6.7.7-octeon-di -psquashfs-modules-6.7.7-octeon-di -pudf-modules-6.7.7-octeon-di -pusb-modules-6.7.7-octeon-di -pusb-serial-modules-6.7.7-octeon-di -pusb-storage-modules-6.7.7-octeon-di -pxfs-modules-6.7.7-octeon-di' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-octeon-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64_none_octeon_meta: - $(call if_package, linux-image-octeon, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon' DH_OPTIONS='-plinux-image-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-octeon, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-octeon' DH_OPTIONS='-plinux-headers-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-octeon-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon-dbg' DH_OPTIONS='-plinux-image-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-octeon-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-octeon, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon' DH_OPTIONS='-plinux-image-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-octeon, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-octeon' DH_OPTIONS='-plinux-headers-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-octeon-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon-dbg' DH_OPTIONS='-plinux-image-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-octeon-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.6.15' ARCH='mips64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='mips' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.7.7' ARCH='mips64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='mips' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.6.15' ARCH='mips64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='mips' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.7.7' ARCH='mips64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='mips' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.6.15' ARCH='mips64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='mips' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.7.7' ARCH='mips64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='mips' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64el:build-arch_mips64el_bpftool build-arch_mips64el_config build-arch_mips64el_cpupower build-arch_mips64el_hyperv-daemons build-arch_mips64el_kbuild build-arch_mips64el_none build-arch_mips64el_perf build-arch_mips64el_rtla build-arch_mips64el_usbip build-arch_mips64el_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.6.15' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='mips' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.7.7' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='mips' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64el_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real build_config ABINAME='6.6.15' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='mips' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real build_config ABINAME='6.7.7' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='mips' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64el_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.6.15' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='mips' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.7.7' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='mips' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64el_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.6.15' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='mips' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.7.7' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='mips' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64el_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.6.15' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='mips' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.7.7' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='mips' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64el_none:build-arch_mips64el_none_5kc-malta build-arch_mips64el_none_loongson-3 build-arch_mips64el_none_mips64r2el build-arch_mips64el_none_octeon build-arch_mips64el_none_5kc-malta:build-arch_mips64el_none_5kc-malta_headers build-arch_mips64el_none_5kc-malta_image build-arch_mips64el_none_5kc-malta_image-dbg build-arch_mips64el_none_5kc-malta_installer build-arch_mips64el_none_5kc-malta_meta build-arch_mips64el_none_5kc-malta_headers: - $(call if_package, linux-headers-6.6.15-5kc-malta, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-5kc-malta' DH_OPTIONS='-plinux-headers-6.6.15-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-headers-6.6.15-5kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-5kc-malta, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-5kc-malta' DH_OPTIONS='-plinux-headers-6.7.7-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-headers-6.7.7-5kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64el_none_5kc-malta_image: - $(call if_package, linux-image-6.6.15-5kc-malta, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-5kc-malta' DH_OPTIONS='-plinux-image-6.6.15-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-6.6.15-5kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-5kc-malta, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-5kc-malta' DH_OPTIONS='-plinux-image-6.7.7-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-6.7.7-5kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64el_none_5kc-malta_image-dbg: - $(call if_package, linux-image-6.6.15-5kc-malta-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-5kc-malta-dbg' DH_OPTIONS='-plinux-image-6.6.15-5kc-malta-dbg' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-6.6.15-5kc-malta-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-5kc-malta-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-5kc-malta-dbg' DH_OPTIONS='-plinux-image-6.7.7-5kc-malta-dbg' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-6.7.7-5kc-malta-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64el_none_5kc-malta_installer: - $(call if_package, affs-modules-6.6.15-5kc-malta-di ata-modules-6.6.15-5kc-malta-di btrfs-modules-6.6.15-5kc-malta-di cdrom-core-modules-6.6.15-5kc-malta-di crc-modules-6.6.15-5kc-malta-di crypto-dm-modules-6.6.15-5kc-malta-di crypto-modules-6.6.15-5kc-malta-di event-modules-6.6.15-5kc-malta-di ext4-modules-6.6.15-5kc-malta-di f2fs-modules-6.6.15-5kc-malta-di fat-modules-6.6.15-5kc-malta-di fb-modules-6.6.15-5kc-malta-di firewire-core-modules-6.6.15-5kc-malta-di input-modules-6.6.15-5kc-malta-di isofs-modules-6.6.15-5kc-malta-di jfs-modules-6.6.15-5kc-malta-di kernel-image-6.6.15-5kc-malta-di loop-modules-6.6.15-5kc-malta-di md-modules-6.6.15-5kc-malta-di minix-modules-6.6.15-5kc-malta-di mmc-core-modules-6.6.15-5kc-malta-di mmc-modules-6.6.15-5kc-malta-di mouse-modules-6.6.15-5kc-malta-di multipath-modules-6.6.15-5kc-malta-di nbd-modules-6.6.15-5kc-malta-di nfs-modules-6.6.15-5kc-malta-di nic-modules-6.6.15-5kc-malta-di nic-shared-modules-6.6.15-5kc-malta-di nic-usb-modules-6.6.15-5kc-malta-di nic-wireless-modules-6.6.15-5kc-malta-di pata-modules-6.6.15-5kc-malta-di ppp-modules-6.6.15-5kc-malta-di sata-modules-6.6.15-5kc-malta-di scsi-core-modules-6.6.15-5kc-malta-di scsi-modules-6.6.15-5kc-malta-di scsi-nic-modules-6.6.15-5kc-malta-di sound-modules-6.6.15-5kc-malta-di speakup-modules-6.6.15-5kc-malta-di squashfs-modules-6.6.15-5kc-malta-di udf-modules-6.6.15-5kc-malta-di usb-modules-6.6.15-5kc-malta-di usb-serial-modules-6.6.15-5kc-malta-di usb-storage-modules-6.6.15-5kc-malta-di xfs-modules-6.6.15-5kc-malta-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-5kc-malta-di -pata-modules-6.6.15-5kc-malta-di -pbtrfs-modules-6.6.15-5kc-malta-di -pcdrom-core-modules-6.6.15-5kc-malta-di -pcrc-modules-6.6.15-5kc-malta-di -pcrypto-dm-modules-6.6.15-5kc-malta-di -pcrypto-modules-6.6.15-5kc-malta-di -pevent-modules-6.6.15-5kc-malta-di -pext4-modules-6.6.15-5kc-malta-di -pf2fs-modules-6.6.15-5kc-malta-di -pfat-modules-6.6.15-5kc-malta-di -pfb-modules-6.6.15-5kc-malta-di -pfirewire-core-modules-6.6.15-5kc-malta-di -pinput-modules-6.6.15-5kc-malta-di -pisofs-modules-6.6.15-5kc-malta-di -pjfs-modules-6.6.15-5kc-malta-di -pkernel-image-6.6.15-5kc-malta-di -ploop-modules-6.6.15-5kc-malta-di -pmd-modules-6.6.15-5kc-malta-di -pminix-modules-6.6.15-5kc-malta-di -pmmc-core-modules-6.6.15-5kc-malta-di -pmmc-modules-6.6.15-5kc-malta-di -pmouse-modules-6.6.15-5kc-malta-di -pmultipath-modules-6.6.15-5kc-malta-di -pnbd-modules-6.6.15-5kc-malta-di -pnfs-modules-6.6.15-5kc-malta-di -pnic-modules-6.6.15-5kc-malta-di -pnic-shared-modules-6.6.15-5kc-malta-di -pnic-usb-modules-6.6.15-5kc-malta-di -pnic-wireless-modules-6.6.15-5kc-malta-di -ppata-modules-6.6.15-5kc-malta-di -pppp-modules-6.6.15-5kc-malta-di -psata-modules-6.6.15-5kc-malta-di -pscsi-core-modules-6.6.15-5kc-malta-di -pscsi-modules-6.6.15-5kc-malta-di -pscsi-nic-modules-6.6.15-5kc-malta-di -psound-modules-6.6.15-5kc-malta-di -pspeakup-modules-6.6.15-5kc-malta-di -psquashfs-modules-6.6.15-5kc-malta-di -pudf-modules-6.6.15-5kc-malta-di -pusb-modules-6.6.15-5kc-malta-di -pusb-serial-modules-6.6.15-5kc-malta-di -pusb-storage-modules-6.6.15-5kc-malta-di -pxfs-modules-6.6.15-5kc-malta-di' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-5kc-malta-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-5kc-malta-di ata-modules-6.7.7-5kc-malta-di btrfs-modules-6.7.7-5kc-malta-di cdrom-core-modules-6.7.7-5kc-malta-di crc-modules-6.7.7-5kc-malta-di crypto-dm-modules-6.7.7-5kc-malta-di crypto-modules-6.7.7-5kc-malta-di event-modules-6.7.7-5kc-malta-di ext4-modules-6.7.7-5kc-malta-di f2fs-modules-6.7.7-5kc-malta-di fat-modules-6.7.7-5kc-malta-di fb-modules-6.7.7-5kc-malta-di firewire-core-modules-6.7.7-5kc-malta-di input-modules-6.7.7-5kc-malta-di isofs-modules-6.7.7-5kc-malta-di jfs-modules-6.7.7-5kc-malta-di kernel-image-6.7.7-5kc-malta-di loop-modules-6.7.7-5kc-malta-di md-modules-6.7.7-5kc-malta-di minix-modules-6.7.7-5kc-malta-di mmc-core-modules-6.7.7-5kc-malta-di mmc-modules-6.7.7-5kc-malta-di mouse-modules-6.7.7-5kc-malta-di multipath-modules-6.7.7-5kc-malta-di nbd-modules-6.7.7-5kc-malta-di nfs-modules-6.7.7-5kc-malta-di nic-modules-6.7.7-5kc-malta-di nic-shared-modules-6.7.7-5kc-malta-di nic-usb-modules-6.7.7-5kc-malta-di nic-wireless-modules-6.7.7-5kc-malta-di pata-modules-6.7.7-5kc-malta-di ppp-modules-6.7.7-5kc-malta-di sata-modules-6.7.7-5kc-malta-di scsi-core-modules-6.7.7-5kc-malta-di scsi-modules-6.7.7-5kc-malta-di scsi-nic-modules-6.7.7-5kc-malta-di sound-modules-6.7.7-5kc-malta-di speakup-modules-6.7.7-5kc-malta-di squashfs-modules-6.7.7-5kc-malta-di udf-modules-6.7.7-5kc-malta-di usb-modules-6.7.7-5kc-malta-di usb-serial-modules-6.7.7-5kc-malta-di usb-storage-modules-6.7.7-5kc-malta-di xfs-modules-6.7.7-5kc-malta-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-5kc-malta-di -pata-modules-6.7.7-5kc-malta-di -pbtrfs-modules-6.7.7-5kc-malta-di -pcdrom-core-modules-6.7.7-5kc-malta-di -pcrc-modules-6.7.7-5kc-malta-di -pcrypto-dm-modules-6.7.7-5kc-malta-di -pcrypto-modules-6.7.7-5kc-malta-di -pevent-modules-6.7.7-5kc-malta-di -pext4-modules-6.7.7-5kc-malta-di -pf2fs-modules-6.7.7-5kc-malta-di -pfat-modules-6.7.7-5kc-malta-di -pfb-modules-6.7.7-5kc-malta-di -pfirewire-core-modules-6.7.7-5kc-malta-di -pinput-modules-6.7.7-5kc-malta-di -pisofs-modules-6.7.7-5kc-malta-di -pjfs-modules-6.7.7-5kc-malta-di -pkernel-image-6.7.7-5kc-malta-di -ploop-modules-6.7.7-5kc-malta-di -pmd-modules-6.7.7-5kc-malta-di -pminix-modules-6.7.7-5kc-malta-di -pmmc-core-modules-6.7.7-5kc-malta-di -pmmc-modules-6.7.7-5kc-malta-di -pmouse-modules-6.7.7-5kc-malta-di -pmultipath-modules-6.7.7-5kc-malta-di -pnbd-modules-6.7.7-5kc-malta-di -pnfs-modules-6.7.7-5kc-malta-di -pnic-modules-6.7.7-5kc-malta-di -pnic-shared-modules-6.7.7-5kc-malta-di -pnic-usb-modules-6.7.7-5kc-malta-di -pnic-wireless-modules-6.7.7-5kc-malta-di -ppata-modules-6.7.7-5kc-malta-di -pppp-modules-6.7.7-5kc-malta-di -psata-modules-6.7.7-5kc-malta-di -pscsi-core-modules-6.7.7-5kc-malta-di -pscsi-modules-6.7.7-5kc-malta-di -pscsi-nic-modules-6.7.7-5kc-malta-di -psound-modules-6.7.7-5kc-malta-di -pspeakup-modules-6.7.7-5kc-malta-di -psquashfs-modules-6.7.7-5kc-malta-di -pudf-modules-6.7.7-5kc-malta-di -pusb-modules-6.7.7-5kc-malta-di -pusb-serial-modules-6.7.7-5kc-malta-di -pusb-storage-modules-6.7.7-5kc-malta-di -pxfs-modules-6.7.7-5kc-malta-di' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-5kc-malta-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64el_none_5kc-malta_meta: - $(call if_package, linux-image-5kc-malta, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-5kc-malta' DH_OPTIONS='-plinux-image-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-5kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-5kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-5kc-malta, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-5kc-malta' DH_OPTIONS='-plinux-headers-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-5kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-headers-5kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-5kc-malta-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-5kc-malta-dbg' DH_OPTIONS='-plinux-image-5kc-malta-dbg' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-5kc-malta-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-5kc-malta-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-5kc-malta, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-5kc-malta' DH_OPTIONS='-plinux-image-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-5kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-5kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-5kc-malta, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-5kc-malta' DH_OPTIONS='-plinux-headers-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-5kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-headers-5kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-5kc-malta-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-5kc-malta-dbg' DH_OPTIONS='-plinux-image-5kc-malta-dbg' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-5kc-malta-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-5kc-malta-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64el_none_loongson-3:build-arch_mips64el_none_loongson-3_headers build-arch_mips64el_none_loongson-3_image build-arch_mips64el_none_loongson-3_image-dbg build-arch_mips64el_none_loongson-3_installer build-arch_mips64el_none_loongson-3_meta build-arch_mips64el_none_loongson-3_headers: - $(call if_package, linux-headers-6.6.15-loongson-3, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-loongson-3' DH_OPTIONS='-plinux-headers-6.6.15-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-headers-6.6.15-loongson-3' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-loongson-3, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-loongson-3' DH_OPTIONS='-plinux-headers-6.7.7-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-headers-6.7.7-loongson-3' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64el_none_loongson-3_image: - $(call if_package, linux-image-6.6.15-loongson-3, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-loongson-3' DH_OPTIONS='-plinux-image-6.6.15-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-6.6.15-loongson-3' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-loongson-3, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-loongson-3' DH_OPTIONS='-plinux-image-6.7.7-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-6.7.7-loongson-3' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64el_none_loongson-3_image-dbg: - $(call if_package, linux-image-6.6.15-loongson-3-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-loongson-3-dbg' DH_OPTIONS='-plinux-image-6.6.15-loongson-3-dbg' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-6.6.15-loongson-3-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-loongson-3-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-loongson-3-dbg' DH_OPTIONS='-plinux-image-6.7.7-loongson-3-dbg' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-6.7.7-loongson-3-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64el_none_loongson-3_installer: - $(call if_package, affs-modules-6.6.15-loongson-3-di ata-modules-6.6.15-loongson-3-di btrfs-modules-6.6.15-loongson-3-di cdrom-core-modules-6.6.15-loongson-3-di crc-modules-6.6.15-loongson-3-di crypto-dm-modules-6.6.15-loongson-3-di crypto-modules-6.6.15-loongson-3-di event-modules-6.6.15-loongson-3-di ext4-modules-6.6.15-loongson-3-di f2fs-modules-6.6.15-loongson-3-di fat-modules-6.6.15-loongson-3-di fb-modules-6.6.15-loongson-3-di firewire-core-modules-6.6.15-loongson-3-di input-modules-6.6.15-loongson-3-di isofs-modules-6.6.15-loongson-3-di jfs-modules-6.6.15-loongson-3-di kernel-image-6.6.15-loongson-3-di loop-modules-6.6.15-loongson-3-di md-modules-6.6.15-loongson-3-di minix-modules-6.6.15-loongson-3-di mmc-core-modules-6.6.15-loongson-3-di mmc-modules-6.6.15-loongson-3-di mouse-modules-6.6.15-loongson-3-di multipath-modules-6.6.15-loongson-3-di nbd-modules-6.6.15-loongson-3-di nfs-modules-6.6.15-loongson-3-di nic-modules-6.6.15-loongson-3-di nic-shared-modules-6.6.15-loongson-3-di nic-usb-modules-6.6.15-loongson-3-di nic-wireless-modules-6.6.15-loongson-3-di pata-modules-6.6.15-loongson-3-di ppp-modules-6.6.15-loongson-3-di sata-modules-6.6.15-loongson-3-di scsi-core-modules-6.6.15-loongson-3-di scsi-modules-6.6.15-loongson-3-di scsi-nic-modules-6.6.15-loongson-3-di sound-modules-6.6.15-loongson-3-di speakup-modules-6.6.15-loongson-3-di squashfs-modules-6.6.15-loongson-3-di udf-modules-6.6.15-loongson-3-di usb-modules-6.6.15-loongson-3-di usb-serial-modules-6.6.15-loongson-3-di usb-storage-modules-6.6.15-loongson-3-di xfs-modules-6.6.15-loongson-3-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-loongson-3-di -pata-modules-6.6.15-loongson-3-di -pbtrfs-modules-6.6.15-loongson-3-di -pcdrom-core-modules-6.6.15-loongson-3-di -pcrc-modules-6.6.15-loongson-3-di -pcrypto-dm-modules-6.6.15-loongson-3-di -pcrypto-modules-6.6.15-loongson-3-di -pevent-modules-6.6.15-loongson-3-di -pext4-modules-6.6.15-loongson-3-di -pf2fs-modules-6.6.15-loongson-3-di -pfat-modules-6.6.15-loongson-3-di -pfb-modules-6.6.15-loongson-3-di -pfirewire-core-modules-6.6.15-loongson-3-di -pinput-modules-6.6.15-loongson-3-di -pisofs-modules-6.6.15-loongson-3-di -pjfs-modules-6.6.15-loongson-3-di -pkernel-image-6.6.15-loongson-3-di -ploop-modules-6.6.15-loongson-3-di -pmd-modules-6.6.15-loongson-3-di -pminix-modules-6.6.15-loongson-3-di -pmmc-core-modules-6.6.15-loongson-3-di -pmmc-modules-6.6.15-loongson-3-di -pmouse-modules-6.6.15-loongson-3-di -pmultipath-modules-6.6.15-loongson-3-di -pnbd-modules-6.6.15-loongson-3-di -pnfs-modules-6.6.15-loongson-3-di -pnic-modules-6.6.15-loongson-3-di -pnic-shared-modules-6.6.15-loongson-3-di -pnic-usb-modules-6.6.15-loongson-3-di -pnic-wireless-modules-6.6.15-loongson-3-di -ppata-modules-6.6.15-loongson-3-di -pppp-modules-6.6.15-loongson-3-di -psata-modules-6.6.15-loongson-3-di -pscsi-core-modules-6.6.15-loongson-3-di -pscsi-modules-6.6.15-loongson-3-di -pscsi-nic-modules-6.6.15-loongson-3-di -psound-modules-6.6.15-loongson-3-di -pspeakup-modules-6.6.15-loongson-3-di -psquashfs-modules-6.6.15-loongson-3-di -pudf-modules-6.6.15-loongson-3-di -pusb-modules-6.6.15-loongson-3-di -pusb-serial-modules-6.6.15-loongson-3-di -pusb-storage-modules-6.6.15-loongson-3-di -pxfs-modules-6.6.15-loongson-3-di' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-loongson-3-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-loongson-3-di ata-modules-6.7.7-loongson-3-di btrfs-modules-6.7.7-loongson-3-di cdrom-core-modules-6.7.7-loongson-3-di crc-modules-6.7.7-loongson-3-di crypto-dm-modules-6.7.7-loongson-3-di crypto-modules-6.7.7-loongson-3-di event-modules-6.7.7-loongson-3-di ext4-modules-6.7.7-loongson-3-di f2fs-modules-6.7.7-loongson-3-di fat-modules-6.7.7-loongson-3-di fb-modules-6.7.7-loongson-3-di firewire-core-modules-6.7.7-loongson-3-di input-modules-6.7.7-loongson-3-di isofs-modules-6.7.7-loongson-3-di jfs-modules-6.7.7-loongson-3-di kernel-image-6.7.7-loongson-3-di loop-modules-6.7.7-loongson-3-di md-modules-6.7.7-loongson-3-di minix-modules-6.7.7-loongson-3-di mmc-core-modules-6.7.7-loongson-3-di mmc-modules-6.7.7-loongson-3-di mouse-modules-6.7.7-loongson-3-di multipath-modules-6.7.7-loongson-3-di nbd-modules-6.7.7-loongson-3-di nfs-modules-6.7.7-loongson-3-di nic-modules-6.7.7-loongson-3-di nic-shared-modules-6.7.7-loongson-3-di nic-usb-modules-6.7.7-loongson-3-di nic-wireless-modules-6.7.7-loongson-3-di pata-modules-6.7.7-loongson-3-di ppp-modules-6.7.7-loongson-3-di sata-modules-6.7.7-loongson-3-di scsi-core-modules-6.7.7-loongson-3-di scsi-modules-6.7.7-loongson-3-di scsi-nic-modules-6.7.7-loongson-3-di sound-modules-6.7.7-loongson-3-di speakup-modules-6.7.7-loongson-3-di squashfs-modules-6.7.7-loongson-3-di udf-modules-6.7.7-loongson-3-di usb-modules-6.7.7-loongson-3-di usb-serial-modules-6.7.7-loongson-3-di usb-storage-modules-6.7.7-loongson-3-di xfs-modules-6.7.7-loongson-3-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-loongson-3-di -pata-modules-6.7.7-loongson-3-di -pbtrfs-modules-6.7.7-loongson-3-di -pcdrom-core-modules-6.7.7-loongson-3-di -pcrc-modules-6.7.7-loongson-3-di -pcrypto-dm-modules-6.7.7-loongson-3-di -pcrypto-modules-6.7.7-loongson-3-di -pevent-modules-6.7.7-loongson-3-di -pext4-modules-6.7.7-loongson-3-di -pf2fs-modules-6.7.7-loongson-3-di -pfat-modules-6.7.7-loongson-3-di -pfb-modules-6.7.7-loongson-3-di -pfirewire-core-modules-6.7.7-loongson-3-di -pinput-modules-6.7.7-loongson-3-di -pisofs-modules-6.7.7-loongson-3-di -pjfs-modules-6.7.7-loongson-3-di -pkernel-image-6.7.7-loongson-3-di -ploop-modules-6.7.7-loongson-3-di -pmd-modules-6.7.7-loongson-3-di -pminix-modules-6.7.7-loongson-3-di -pmmc-core-modules-6.7.7-loongson-3-di -pmmc-modules-6.7.7-loongson-3-di -pmouse-modules-6.7.7-loongson-3-di -pmultipath-modules-6.7.7-loongson-3-di -pnbd-modules-6.7.7-loongson-3-di -pnfs-modules-6.7.7-loongson-3-di -pnic-modules-6.7.7-loongson-3-di -pnic-shared-modules-6.7.7-loongson-3-di -pnic-usb-modules-6.7.7-loongson-3-di -pnic-wireless-modules-6.7.7-loongson-3-di -ppata-modules-6.7.7-loongson-3-di -pppp-modules-6.7.7-loongson-3-di -psata-modules-6.7.7-loongson-3-di -pscsi-core-modules-6.7.7-loongson-3-di -pscsi-modules-6.7.7-loongson-3-di -pscsi-nic-modules-6.7.7-loongson-3-di -psound-modules-6.7.7-loongson-3-di -pspeakup-modules-6.7.7-loongson-3-di -psquashfs-modules-6.7.7-loongson-3-di -pudf-modules-6.7.7-loongson-3-di -pusb-modules-6.7.7-loongson-3-di -pusb-serial-modules-6.7.7-loongson-3-di -pusb-storage-modules-6.7.7-loongson-3-di -pxfs-modules-6.7.7-loongson-3-di' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-loongson-3-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64el_none_loongson-3_meta: - $(call if_package, linux-image-loongson-3, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-loongson-3' DH_OPTIONS='-plinux-image-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-loongson-3' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-loongson-3' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-loongson-3, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-loongson-3' DH_OPTIONS='-plinux-headers-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-loongson-3' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-headers-loongson-3' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-loongson-3-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-loongson-3-dbg' DH_OPTIONS='-plinux-image-loongson-3-dbg' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-loongson-3-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-loongson-3-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-loongson-3, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-loongson-3' DH_OPTIONS='-plinux-image-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-loongson-3' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-loongson-3' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-loongson-3, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-loongson-3' DH_OPTIONS='-plinux-headers-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-loongson-3' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-headers-loongson-3' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-loongson-3-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-loongson-3-dbg' DH_OPTIONS='-plinux-image-loongson-3-dbg' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-loongson-3-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-loongson-3-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64el_none_mips64r2el:build-arch_mips64el_none_mips64r2el_headers build-arch_mips64el_none_mips64r2el_image build-arch_mips64el_none_mips64r2el_image-dbg build-arch_mips64el_none_mips64r2el_installer build-arch_mips64el_none_mips64r2el_meta build-arch_mips64el_none_mips64r2el_headers: - $(call if_package, linux-headers-6.6.15-mips64r2el, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-mips64r2el' DH_OPTIONS='-plinux-headers-6.6.15-mips64r2el' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' PACKAGE_NAME='linux-headers-6.6.15-mips64r2el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-mips64r2el, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-mips64r2el' DH_OPTIONS='-plinux-headers-6.7.7-mips64r2el' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' PACKAGE_NAME='linux-headers-6.7.7-mips64r2el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64el_none_mips64r2el_image: - $(call if_package, linux-image-6.6.15-mips64r2el, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-mips64r2el' DH_OPTIONS='-plinux-image-6.6.15-mips64r2el' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' PACKAGE_NAME='linux-image-6.6.15-mips64r2el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-mips64r2el, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-mips64r2el' DH_OPTIONS='-plinux-image-6.7.7-mips64r2el' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' PACKAGE_NAME='linux-image-6.7.7-mips64r2el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64el_none_mips64r2el_image-dbg: - $(call if_package, linux-image-6.6.15-mips64r2el-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-mips64r2el-dbg' DH_OPTIONS='-plinux-image-6.6.15-mips64r2el-dbg' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' PACKAGE_NAME='linux-image-6.6.15-mips64r2el-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-mips64r2el-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-mips64r2el-dbg' DH_OPTIONS='-plinux-image-6.7.7-mips64r2el-dbg' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' PACKAGE_NAME='linux-image-6.7.7-mips64r2el-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64el_none_mips64r2el_installer: - $(call if_package, affs-modules-6.6.15-mips64r2el-di ata-modules-6.6.15-mips64r2el-di btrfs-modules-6.6.15-mips64r2el-di cdrom-core-modules-6.6.15-mips64r2el-di crc-modules-6.6.15-mips64r2el-di crypto-dm-modules-6.6.15-mips64r2el-di crypto-modules-6.6.15-mips64r2el-di event-modules-6.6.15-mips64r2el-di ext4-modules-6.6.15-mips64r2el-di f2fs-modules-6.6.15-mips64r2el-di fat-modules-6.6.15-mips64r2el-di fb-modules-6.6.15-mips64r2el-di firewire-core-modules-6.6.15-mips64r2el-di input-modules-6.6.15-mips64r2el-di isofs-modules-6.6.15-mips64r2el-di jfs-modules-6.6.15-mips64r2el-di kernel-image-6.6.15-mips64r2el-di loop-modules-6.6.15-mips64r2el-di md-modules-6.6.15-mips64r2el-di minix-modules-6.6.15-mips64r2el-di mmc-core-modules-6.6.15-mips64r2el-di mmc-modules-6.6.15-mips64r2el-di mouse-modules-6.6.15-mips64r2el-di multipath-modules-6.6.15-mips64r2el-di nbd-modules-6.6.15-mips64r2el-di nfs-modules-6.6.15-mips64r2el-di nic-modules-6.6.15-mips64r2el-di nic-shared-modules-6.6.15-mips64r2el-di nic-usb-modules-6.6.15-mips64r2el-di nic-wireless-modules-6.6.15-mips64r2el-di pata-modules-6.6.15-mips64r2el-di ppp-modules-6.6.15-mips64r2el-di sata-modules-6.6.15-mips64r2el-di scsi-core-modules-6.6.15-mips64r2el-di scsi-modules-6.6.15-mips64r2el-di scsi-nic-modules-6.6.15-mips64r2el-di sound-modules-6.6.15-mips64r2el-di speakup-modules-6.6.15-mips64r2el-di squashfs-modules-6.6.15-mips64r2el-di udf-modules-6.6.15-mips64r2el-di usb-modules-6.6.15-mips64r2el-di usb-serial-modules-6.6.15-mips64r2el-di usb-storage-modules-6.6.15-mips64r2el-di xfs-modules-6.6.15-mips64r2el-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-mips64r2el-di -pata-modules-6.6.15-mips64r2el-di -pbtrfs-modules-6.6.15-mips64r2el-di -pcdrom-core-modules-6.6.15-mips64r2el-di -pcrc-modules-6.6.15-mips64r2el-di -pcrypto-dm-modules-6.6.15-mips64r2el-di -pcrypto-modules-6.6.15-mips64r2el-di -pevent-modules-6.6.15-mips64r2el-di -pext4-modules-6.6.15-mips64r2el-di -pf2fs-modules-6.6.15-mips64r2el-di -pfat-modules-6.6.15-mips64r2el-di -pfb-modules-6.6.15-mips64r2el-di -pfirewire-core-modules-6.6.15-mips64r2el-di -pinput-modules-6.6.15-mips64r2el-di -pisofs-modules-6.6.15-mips64r2el-di -pjfs-modules-6.6.15-mips64r2el-di -pkernel-image-6.6.15-mips64r2el-di -ploop-modules-6.6.15-mips64r2el-di -pmd-modules-6.6.15-mips64r2el-di -pminix-modules-6.6.15-mips64r2el-di -pmmc-core-modules-6.6.15-mips64r2el-di -pmmc-modules-6.6.15-mips64r2el-di -pmouse-modules-6.6.15-mips64r2el-di -pmultipath-modules-6.6.15-mips64r2el-di -pnbd-modules-6.6.15-mips64r2el-di -pnfs-modules-6.6.15-mips64r2el-di -pnic-modules-6.6.15-mips64r2el-di -pnic-shared-modules-6.6.15-mips64r2el-di -pnic-usb-modules-6.6.15-mips64r2el-di -pnic-wireless-modules-6.6.15-mips64r2el-di -ppata-modules-6.6.15-mips64r2el-di -pppp-modules-6.6.15-mips64r2el-di -psata-modules-6.6.15-mips64r2el-di -pscsi-core-modules-6.6.15-mips64r2el-di -pscsi-modules-6.6.15-mips64r2el-di -pscsi-nic-modules-6.6.15-mips64r2el-di -psound-modules-6.6.15-mips64r2el-di -pspeakup-modules-6.6.15-mips64r2el-di -psquashfs-modules-6.6.15-mips64r2el-di -pudf-modules-6.6.15-mips64r2el-di -pusb-modules-6.6.15-mips64r2el-di -pusb-serial-modules-6.6.15-mips64r2el-di -pusb-storage-modules-6.6.15-mips64r2el-di -pxfs-modules-6.6.15-mips64r2el-di' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-mips64r2el-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-mips64r2el-di ata-modules-6.7.7-mips64r2el-di btrfs-modules-6.7.7-mips64r2el-di cdrom-core-modules-6.7.7-mips64r2el-di crc-modules-6.7.7-mips64r2el-di crypto-dm-modules-6.7.7-mips64r2el-di crypto-modules-6.7.7-mips64r2el-di event-modules-6.7.7-mips64r2el-di ext4-modules-6.7.7-mips64r2el-di f2fs-modules-6.7.7-mips64r2el-di fat-modules-6.7.7-mips64r2el-di fb-modules-6.7.7-mips64r2el-di firewire-core-modules-6.7.7-mips64r2el-di input-modules-6.7.7-mips64r2el-di isofs-modules-6.7.7-mips64r2el-di jfs-modules-6.7.7-mips64r2el-di kernel-image-6.7.7-mips64r2el-di loop-modules-6.7.7-mips64r2el-di md-modules-6.7.7-mips64r2el-di minix-modules-6.7.7-mips64r2el-di mmc-core-modules-6.7.7-mips64r2el-di mmc-modules-6.7.7-mips64r2el-di mouse-modules-6.7.7-mips64r2el-di multipath-modules-6.7.7-mips64r2el-di nbd-modules-6.7.7-mips64r2el-di nfs-modules-6.7.7-mips64r2el-di nic-modules-6.7.7-mips64r2el-di nic-shared-modules-6.7.7-mips64r2el-di nic-usb-modules-6.7.7-mips64r2el-di nic-wireless-modules-6.7.7-mips64r2el-di pata-modules-6.7.7-mips64r2el-di ppp-modules-6.7.7-mips64r2el-di sata-modules-6.7.7-mips64r2el-di scsi-core-modules-6.7.7-mips64r2el-di scsi-modules-6.7.7-mips64r2el-di scsi-nic-modules-6.7.7-mips64r2el-di sound-modules-6.7.7-mips64r2el-di speakup-modules-6.7.7-mips64r2el-di squashfs-modules-6.7.7-mips64r2el-di udf-modules-6.7.7-mips64r2el-di usb-modules-6.7.7-mips64r2el-di usb-serial-modules-6.7.7-mips64r2el-di usb-storage-modules-6.7.7-mips64r2el-di xfs-modules-6.7.7-mips64r2el-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-mips64r2el-di -pata-modules-6.7.7-mips64r2el-di -pbtrfs-modules-6.7.7-mips64r2el-di -pcdrom-core-modules-6.7.7-mips64r2el-di -pcrc-modules-6.7.7-mips64r2el-di -pcrypto-dm-modules-6.7.7-mips64r2el-di -pcrypto-modules-6.7.7-mips64r2el-di -pevent-modules-6.7.7-mips64r2el-di -pext4-modules-6.7.7-mips64r2el-di -pf2fs-modules-6.7.7-mips64r2el-di -pfat-modules-6.7.7-mips64r2el-di -pfb-modules-6.7.7-mips64r2el-di -pfirewire-core-modules-6.7.7-mips64r2el-di -pinput-modules-6.7.7-mips64r2el-di -pisofs-modules-6.7.7-mips64r2el-di -pjfs-modules-6.7.7-mips64r2el-di -pkernel-image-6.7.7-mips64r2el-di -ploop-modules-6.7.7-mips64r2el-di -pmd-modules-6.7.7-mips64r2el-di -pminix-modules-6.7.7-mips64r2el-di -pmmc-core-modules-6.7.7-mips64r2el-di -pmmc-modules-6.7.7-mips64r2el-di -pmouse-modules-6.7.7-mips64r2el-di -pmultipath-modules-6.7.7-mips64r2el-di -pnbd-modules-6.7.7-mips64r2el-di -pnfs-modules-6.7.7-mips64r2el-di -pnic-modules-6.7.7-mips64r2el-di -pnic-shared-modules-6.7.7-mips64r2el-di -pnic-usb-modules-6.7.7-mips64r2el-di -pnic-wireless-modules-6.7.7-mips64r2el-di -ppata-modules-6.7.7-mips64r2el-di -pppp-modules-6.7.7-mips64r2el-di -psata-modules-6.7.7-mips64r2el-di -pscsi-core-modules-6.7.7-mips64r2el-di -pscsi-modules-6.7.7-mips64r2el-di -pscsi-nic-modules-6.7.7-mips64r2el-di -psound-modules-6.7.7-mips64r2el-di -pspeakup-modules-6.7.7-mips64r2el-di -psquashfs-modules-6.7.7-mips64r2el-di -pudf-modules-6.7.7-mips64r2el-di -pusb-modules-6.7.7-mips64r2el-di -pusb-serial-modules-6.7.7-mips64r2el-di -pusb-storage-modules-6.7.7-mips64r2el-di -pxfs-modules-6.7.7-mips64r2el-di' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-mips64r2el-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64el_none_mips64r2el_meta: - $(call if_package, linux-image-mips64r2el, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips64r2el' DH_OPTIONS='-plinux-image-mips64r2el' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-mips64r2el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' PACKAGE_NAME='linux-image-mips64r2el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-mips64r2el, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-mips64r2el' DH_OPTIONS='-plinux-headers-mips64r2el' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-mips64r2el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' PACKAGE_NAME='linux-headers-mips64r2el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-mips64r2el-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips64r2el-dbg' DH_OPTIONS='-plinux-image-mips64r2el-dbg' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-mips64r2el-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' PACKAGE_NAME='linux-image-mips64r2el-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-mips64r2el, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips64r2el' DH_OPTIONS='-plinux-image-mips64r2el' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-mips64r2el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' PACKAGE_NAME='linux-image-mips64r2el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-mips64r2el, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-mips64r2el' DH_OPTIONS='-plinux-headers-mips64r2el' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-mips64r2el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' PACKAGE_NAME='linux-headers-mips64r2el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-mips64r2el-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips64r2el-dbg' DH_OPTIONS='-plinux-image-mips64r2el-dbg' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-mips64r2el-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' PACKAGE_NAME='linux-image-mips64r2el-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64el_none_octeon:build-arch_mips64el_none_octeon_headers build-arch_mips64el_none_octeon_image build-arch_mips64el_none_octeon_image-dbg build-arch_mips64el_none_octeon_installer build-arch_mips64el_none_octeon_meta build-arch_mips64el_none_octeon_headers: - $(call if_package, linux-headers-6.6.15-octeon, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-octeon' DH_OPTIONS='-plinux-headers-6.6.15-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-6.6.15-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-octeon, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-octeon' DH_OPTIONS='-plinux-headers-6.7.7-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-6.7.7-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64el_none_octeon_image: - $(call if_package, linux-image-6.6.15-octeon, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-octeon' DH_OPTIONS='-plinux-image-6.6.15-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.6.15-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-octeon, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-octeon' DH_OPTIONS='-plinux-image-6.7.7-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.7.7-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64el_none_octeon_image-dbg: - $(call if_package, linux-image-6.6.15-octeon-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-octeon-dbg' DH_OPTIONS='-plinux-image-6.6.15-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.6.15-octeon-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-octeon-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-octeon-dbg' DH_OPTIONS='-plinux-image-6.7.7-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.7.7-octeon-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64el_none_octeon_installer: - $(call if_package, affs-modules-6.6.15-octeon-di ata-modules-6.6.15-octeon-di btrfs-modules-6.6.15-octeon-di cdrom-core-modules-6.6.15-octeon-di crc-modules-6.6.15-octeon-di crypto-dm-modules-6.6.15-octeon-di crypto-modules-6.6.15-octeon-di event-modules-6.6.15-octeon-di ext4-modules-6.6.15-octeon-di f2fs-modules-6.6.15-octeon-di fat-modules-6.6.15-octeon-di fb-modules-6.6.15-octeon-di firewire-core-modules-6.6.15-octeon-di input-modules-6.6.15-octeon-di isofs-modules-6.6.15-octeon-di jfs-modules-6.6.15-octeon-di kernel-image-6.6.15-octeon-di loop-modules-6.6.15-octeon-di md-modules-6.6.15-octeon-di minix-modules-6.6.15-octeon-di mmc-core-modules-6.6.15-octeon-di mmc-modules-6.6.15-octeon-di mouse-modules-6.6.15-octeon-di multipath-modules-6.6.15-octeon-di nbd-modules-6.6.15-octeon-di nfs-modules-6.6.15-octeon-di nic-modules-6.6.15-octeon-di nic-shared-modules-6.6.15-octeon-di nic-usb-modules-6.6.15-octeon-di nic-wireless-modules-6.6.15-octeon-di pata-modules-6.6.15-octeon-di ppp-modules-6.6.15-octeon-di sata-modules-6.6.15-octeon-di scsi-core-modules-6.6.15-octeon-di scsi-modules-6.6.15-octeon-di scsi-nic-modules-6.6.15-octeon-di sound-modules-6.6.15-octeon-di speakup-modules-6.6.15-octeon-di squashfs-modules-6.6.15-octeon-di udf-modules-6.6.15-octeon-di usb-modules-6.6.15-octeon-di usb-serial-modules-6.6.15-octeon-di usb-storage-modules-6.6.15-octeon-di xfs-modules-6.6.15-octeon-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-octeon-di -pata-modules-6.6.15-octeon-di -pbtrfs-modules-6.6.15-octeon-di -pcdrom-core-modules-6.6.15-octeon-di -pcrc-modules-6.6.15-octeon-di -pcrypto-dm-modules-6.6.15-octeon-di -pcrypto-modules-6.6.15-octeon-di -pevent-modules-6.6.15-octeon-di -pext4-modules-6.6.15-octeon-di -pf2fs-modules-6.6.15-octeon-di -pfat-modules-6.6.15-octeon-di -pfb-modules-6.6.15-octeon-di -pfirewire-core-modules-6.6.15-octeon-di -pinput-modules-6.6.15-octeon-di -pisofs-modules-6.6.15-octeon-di -pjfs-modules-6.6.15-octeon-di -pkernel-image-6.6.15-octeon-di -ploop-modules-6.6.15-octeon-di -pmd-modules-6.6.15-octeon-di -pminix-modules-6.6.15-octeon-di -pmmc-core-modules-6.6.15-octeon-di -pmmc-modules-6.6.15-octeon-di -pmouse-modules-6.6.15-octeon-di -pmultipath-modules-6.6.15-octeon-di -pnbd-modules-6.6.15-octeon-di -pnfs-modules-6.6.15-octeon-di -pnic-modules-6.6.15-octeon-di -pnic-shared-modules-6.6.15-octeon-di -pnic-usb-modules-6.6.15-octeon-di -pnic-wireless-modules-6.6.15-octeon-di -ppata-modules-6.6.15-octeon-di -pppp-modules-6.6.15-octeon-di -psata-modules-6.6.15-octeon-di -pscsi-core-modules-6.6.15-octeon-di -pscsi-modules-6.6.15-octeon-di -pscsi-nic-modules-6.6.15-octeon-di -psound-modules-6.6.15-octeon-di -pspeakup-modules-6.6.15-octeon-di -psquashfs-modules-6.6.15-octeon-di -pudf-modules-6.6.15-octeon-di -pusb-modules-6.6.15-octeon-di -pusb-serial-modules-6.6.15-octeon-di -pusb-storage-modules-6.6.15-octeon-di -pxfs-modules-6.6.15-octeon-di' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-octeon-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-octeon-di ata-modules-6.7.7-octeon-di btrfs-modules-6.7.7-octeon-di cdrom-core-modules-6.7.7-octeon-di crc-modules-6.7.7-octeon-di crypto-dm-modules-6.7.7-octeon-di crypto-modules-6.7.7-octeon-di event-modules-6.7.7-octeon-di ext4-modules-6.7.7-octeon-di f2fs-modules-6.7.7-octeon-di fat-modules-6.7.7-octeon-di fb-modules-6.7.7-octeon-di firewire-core-modules-6.7.7-octeon-di input-modules-6.7.7-octeon-di isofs-modules-6.7.7-octeon-di jfs-modules-6.7.7-octeon-di kernel-image-6.7.7-octeon-di loop-modules-6.7.7-octeon-di md-modules-6.7.7-octeon-di minix-modules-6.7.7-octeon-di mmc-core-modules-6.7.7-octeon-di mmc-modules-6.7.7-octeon-di mouse-modules-6.7.7-octeon-di multipath-modules-6.7.7-octeon-di nbd-modules-6.7.7-octeon-di nfs-modules-6.7.7-octeon-di nic-modules-6.7.7-octeon-di nic-shared-modules-6.7.7-octeon-di nic-usb-modules-6.7.7-octeon-di nic-wireless-modules-6.7.7-octeon-di pata-modules-6.7.7-octeon-di ppp-modules-6.7.7-octeon-di sata-modules-6.7.7-octeon-di scsi-core-modules-6.7.7-octeon-di scsi-modules-6.7.7-octeon-di scsi-nic-modules-6.7.7-octeon-di sound-modules-6.7.7-octeon-di speakup-modules-6.7.7-octeon-di squashfs-modules-6.7.7-octeon-di udf-modules-6.7.7-octeon-di usb-modules-6.7.7-octeon-di usb-serial-modules-6.7.7-octeon-di usb-storage-modules-6.7.7-octeon-di xfs-modules-6.7.7-octeon-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-octeon-di -pata-modules-6.7.7-octeon-di -pbtrfs-modules-6.7.7-octeon-di -pcdrom-core-modules-6.7.7-octeon-di -pcrc-modules-6.7.7-octeon-di -pcrypto-dm-modules-6.7.7-octeon-di -pcrypto-modules-6.7.7-octeon-di -pevent-modules-6.7.7-octeon-di -pext4-modules-6.7.7-octeon-di -pf2fs-modules-6.7.7-octeon-di -pfat-modules-6.7.7-octeon-di -pfb-modules-6.7.7-octeon-di -pfirewire-core-modules-6.7.7-octeon-di -pinput-modules-6.7.7-octeon-di -pisofs-modules-6.7.7-octeon-di -pjfs-modules-6.7.7-octeon-di -pkernel-image-6.7.7-octeon-di -ploop-modules-6.7.7-octeon-di -pmd-modules-6.7.7-octeon-di -pminix-modules-6.7.7-octeon-di -pmmc-core-modules-6.7.7-octeon-di -pmmc-modules-6.7.7-octeon-di -pmouse-modules-6.7.7-octeon-di -pmultipath-modules-6.7.7-octeon-di -pnbd-modules-6.7.7-octeon-di -pnfs-modules-6.7.7-octeon-di -pnic-modules-6.7.7-octeon-di -pnic-shared-modules-6.7.7-octeon-di -pnic-usb-modules-6.7.7-octeon-di -pnic-wireless-modules-6.7.7-octeon-di -ppata-modules-6.7.7-octeon-di -pppp-modules-6.7.7-octeon-di -psata-modules-6.7.7-octeon-di -pscsi-core-modules-6.7.7-octeon-di -pscsi-modules-6.7.7-octeon-di -pscsi-nic-modules-6.7.7-octeon-di -psound-modules-6.7.7-octeon-di -pspeakup-modules-6.7.7-octeon-di -psquashfs-modules-6.7.7-octeon-di -pudf-modules-6.7.7-octeon-di -pusb-modules-6.7.7-octeon-di -pusb-serial-modules-6.7.7-octeon-di -pusb-storage-modules-6.7.7-octeon-di -pxfs-modules-6.7.7-octeon-di' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-octeon-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64el_none_octeon_meta: - $(call if_package, linux-image-octeon, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon' DH_OPTIONS='-plinux-image-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-octeon, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-octeon' DH_OPTIONS='-plinux-headers-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-octeon-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon-dbg' DH_OPTIONS='-plinux-image-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-octeon-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-octeon, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon' DH_OPTIONS='-plinux-image-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-octeon, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-octeon' DH_OPTIONS='-plinux-headers-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-octeon-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon-dbg' DH_OPTIONS='-plinux-image-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-octeon-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64el_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.6.15' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='mips' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.7.7' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='mips' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64el_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.6.15' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='mips' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.7.7' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='mips' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64el_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.6.15' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='mips' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.7.7' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='mips' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64r6el:build-arch_mips64r6el_bpftool build-arch_mips64r6el_config build-arch_mips64r6el_cpupower build-arch_mips64r6el_hyperv-daemons build-arch_mips64r6el_kbuild build-arch_mips64r6el_none build-arch_mips64r6el_perf build-arch_mips64r6el_rtla build-arch_mips64r6el_usbip build-arch_mips64r6el_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.6.15' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='mips' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.7.7' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='mips' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64r6el_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real build_config ABINAME='6.6.15' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='mips' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real build_config ABINAME='6.7.7' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='mips' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64r6el_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.6.15' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='mips' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.7.7' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='mips' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64r6el_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.6.15' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='mips' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.7.7' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='mips' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64r6el_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.6.15' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='mips' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.7.7' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='mips' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64r6el_none:build-arch_mips64r6el_none_mips64r6el build-arch_mips64r6el_none_mips64r6el:build-arch_mips64r6el_none_mips64r6el_headers build-arch_mips64r6el_none_mips64r6el_image build-arch_mips64r6el_none_mips64r6el_image-dbg build-arch_mips64r6el_none_mips64r6el_installer build-arch_mips64r6el_none_mips64r6el_meta build-arch_mips64r6el_none_mips64r6el_headers: - $(call if_package, linux-headers-6.6.15-mips64r6el, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-mips64r6el' DH_OPTIONS='-plinux-headers-6.6.15-mips64r6el' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' PACKAGE_NAME='linux-headers-6.6.15-mips64r6el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-mips64r6el, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-mips64r6el' DH_OPTIONS='-plinux-headers-6.7.7-mips64r6el' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' PACKAGE_NAME='linux-headers-6.7.7-mips64r6el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64r6el_none_mips64r6el_image: - $(call if_package, linux-image-6.6.15-mips64r6el, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-mips64r6el' DH_OPTIONS='-plinux-image-6.6.15-mips64r6el' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' PACKAGE_NAME='linux-image-6.6.15-mips64r6el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-mips64r6el, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-mips64r6el' DH_OPTIONS='-plinux-image-6.7.7-mips64r6el' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' PACKAGE_NAME='linux-image-6.7.7-mips64r6el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64r6el_none_mips64r6el_image-dbg: - $(call if_package, linux-image-6.6.15-mips64r6el-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-mips64r6el-dbg' DH_OPTIONS='-plinux-image-6.6.15-mips64r6el-dbg' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' PACKAGE_NAME='linux-image-6.6.15-mips64r6el-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-mips64r6el-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-mips64r6el-dbg' DH_OPTIONS='-plinux-image-6.7.7-mips64r6el-dbg' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' PACKAGE_NAME='linux-image-6.7.7-mips64r6el-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64r6el_none_mips64r6el_installer: - $(call if_package, affs-modules-6.6.15-mips64r6el-di ata-modules-6.6.15-mips64r6el-di btrfs-modules-6.6.15-mips64r6el-di cdrom-core-modules-6.6.15-mips64r6el-di crc-modules-6.6.15-mips64r6el-di crypto-dm-modules-6.6.15-mips64r6el-di crypto-modules-6.6.15-mips64r6el-di event-modules-6.6.15-mips64r6el-di ext4-modules-6.6.15-mips64r6el-di f2fs-modules-6.6.15-mips64r6el-di fat-modules-6.6.15-mips64r6el-di fb-modules-6.6.15-mips64r6el-di firewire-core-modules-6.6.15-mips64r6el-di input-modules-6.6.15-mips64r6el-di isofs-modules-6.6.15-mips64r6el-di jfs-modules-6.6.15-mips64r6el-di kernel-image-6.6.15-mips64r6el-di loop-modules-6.6.15-mips64r6el-di md-modules-6.6.15-mips64r6el-di minix-modules-6.6.15-mips64r6el-di mmc-core-modules-6.6.15-mips64r6el-di mmc-modules-6.6.15-mips64r6el-di mouse-modules-6.6.15-mips64r6el-di multipath-modules-6.6.15-mips64r6el-di nbd-modules-6.6.15-mips64r6el-di nfs-modules-6.6.15-mips64r6el-di nic-modules-6.6.15-mips64r6el-di nic-shared-modules-6.6.15-mips64r6el-di nic-usb-modules-6.6.15-mips64r6el-di nic-wireless-modules-6.6.15-mips64r6el-di pata-modules-6.6.15-mips64r6el-di ppp-modules-6.6.15-mips64r6el-di sata-modules-6.6.15-mips64r6el-di scsi-core-modules-6.6.15-mips64r6el-di scsi-modules-6.6.15-mips64r6el-di scsi-nic-modules-6.6.15-mips64r6el-di sound-modules-6.6.15-mips64r6el-di speakup-modules-6.6.15-mips64r6el-di squashfs-modules-6.6.15-mips64r6el-di udf-modules-6.6.15-mips64r6el-di usb-modules-6.6.15-mips64r6el-di usb-serial-modules-6.6.15-mips64r6el-di usb-storage-modules-6.6.15-mips64r6el-di xfs-modules-6.6.15-mips64r6el-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.6.15' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-mips64r6el-di -pata-modules-6.6.15-mips64r6el-di -pbtrfs-modules-6.6.15-mips64r6el-di -pcdrom-core-modules-6.6.15-mips64r6el-di -pcrc-modules-6.6.15-mips64r6el-di -pcrypto-dm-modules-6.6.15-mips64r6el-di -pcrypto-modules-6.6.15-mips64r6el-di -pevent-modules-6.6.15-mips64r6el-di -pext4-modules-6.6.15-mips64r6el-di -pf2fs-modules-6.6.15-mips64r6el-di -pfat-modules-6.6.15-mips64r6el-di -pfb-modules-6.6.15-mips64r6el-di -pfirewire-core-modules-6.6.15-mips64r6el-di -pinput-modules-6.6.15-mips64r6el-di -pisofs-modules-6.6.15-mips64r6el-di -pjfs-modules-6.6.15-mips64r6el-di -pkernel-image-6.6.15-mips64r6el-di -ploop-modules-6.6.15-mips64r6el-di -pmd-modules-6.6.15-mips64r6el-di -pminix-modules-6.6.15-mips64r6el-di -pmmc-core-modules-6.6.15-mips64r6el-di -pmmc-modules-6.6.15-mips64r6el-di -pmouse-modules-6.6.15-mips64r6el-di -pmultipath-modules-6.6.15-mips64r6el-di -pnbd-modules-6.6.15-mips64r6el-di -pnfs-modules-6.6.15-mips64r6el-di -pnic-modules-6.6.15-mips64r6el-di -pnic-shared-modules-6.6.15-mips64r6el-di -pnic-usb-modules-6.6.15-mips64r6el-di -pnic-wireless-modules-6.6.15-mips64r6el-di -ppata-modules-6.6.15-mips64r6el-di -pppp-modules-6.6.15-mips64r6el-di -psata-modules-6.6.15-mips64r6el-di -pscsi-core-modules-6.6.15-mips64r6el-di -pscsi-modules-6.6.15-mips64r6el-di -pscsi-nic-modules-6.6.15-mips64r6el-di -psound-modules-6.6.15-mips64r6el-di -pspeakup-modules-6.6.15-mips64r6el-di -psquashfs-modules-6.6.15-mips64r6el-di -pudf-modules-6.6.15-mips64r6el-di -pusb-modules-6.6.15-mips64r6el-di -pusb-serial-modules-6.6.15-mips64r6el-di -pusb-storage-modules-6.6.15-mips64r6el-di -pxfs-modules-6.6.15-mips64r6el-di' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-mips64r6el-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-mips64r6el-di ata-modules-6.7.7-mips64r6el-di btrfs-modules-6.7.7-mips64r6el-di cdrom-core-modules-6.7.7-mips64r6el-di crc-modules-6.7.7-mips64r6el-di crypto-dm-modules-6.7.7-mips64r6el-di crypto-modules-6.7.7-mips64r6el-di event-modules-6.7.7-mips64r6el-di ext4-modules-6.7.7-mips64r6el-di f2fs-modules-6.7.7-mips64r6el-di fat-modules-6.7.7-mips64r6el-di fb-modules-6.7.7-mips64r6el-di firewire-core-modules-6.7.7-mips64r6el-di input-modules-6.7.7-mips64r6el-di isofs-modules-6.7.7-mips64r6el-di jfs-modules-6.7.7-mips64r6el-di kernel-image-6.7.7-mips64r6el-di loop-modules-6.7.7-mips64r6el-di md-modules-6.7.7-mips64r6el-di minix-modules-6.7.7-mips64r6el-di mmc-core-modules-6.7.7-mips64r6el-di mmc-modules-6.7.7-mips64r6el-di mouse-modules-6.7.7-mips64r6el-di multipath-modules-6.7.7-mips64r6el-di nbd-modules-6.7.7-mips64r6el-di nfs-modules-6.7.7-mips64r6el-di nic-modules-6.7.7-mips64r6el-di nic-shared-modules-6.7.7-mips64r6el-di nic-usb-modules-6.7.7-mips64r6el-di nic-wireless-modules-6.7.7-mips64r6el-di pata-modules-6.7.7-mips64r6el-di ppp-modules-6.7.7-mips64r6el-di sata-modules-6.7.7-mips64r6el-di scsi-core-modules-6.7.7-mips64r6el-di scsi-modules-6.7.7-mips64r6el-di scsi-nic-modules-6.7.7-mips64r6el-di sound-modules-6.7.7-mips64r6el-di speakup-modules-6.7.7-mips64r6el-di squashfs-modules-6.7.7-mips64r6el-di udf-modules-6.7.7-mips64r6el-di usb-modules-6.7.7-mips64r6el-di usb-serial-modules-6.7.7-mips64r6el-di usb-storage-modules-6.7.7-mips64r6el-di xfs-modules-6.7.7-mips64r6el-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.7.7' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-mips64r6el-di -pata-modules-6.7.7-mips64r6el-di -pbtrfs-modules-6.7.7-mips64r6el-di -pcdrom-core-modules-6.7.7-mips64r6el-di -pcrc-modules-6.7.7-mips64r6el-di -pcrypto-dm-modules-6.7.7-mips64r6el-di -pcrypto-modules-6.7.7-mips64r6el-di -pevent-modules-6.7.7-mips64r6el-di -pext4-modules-6.7.7-mips64r6el-di -pf2fs-modules-6.7.7-mips64r6el-di -pfat-modules-6.7.7-mips64r6el-di -pfb-modules-6.7.7-mips64r6el-di -pfirewire-core-modules-6.7.7-mips64r6el-di -pinput-modules-6.7.7-mips64r6el-di -pisofs-modules-6.7.7-mips64r6el-di -pjfs-modules-6.7.7-mips64r6el-di -pkernel-image-6.7.7-mips64r6el-di -ploop-modules-6.7.7-mips64r6el-di -pmd-modules-6.7.7-mips64r6el-di -pminix-modules-6.7.7-mips64r6el-di -pmmc-core-modules-6.7.7-mips64r6el-di -pmmc-modules-6.7.7-mips64r6el-di -pmouse-modules-6.7.7-mips64r6el-di -pmultipath-modules-6.7.7-mips64r6el-di -pnbd-modules-6.7.7-mips64r6el-di -pnfs-modules-6.7.7-mips64r6el-di -pnic-modules-6.7.7-mips64r6el-di -pnic-shared-modules-6.7.7-mips64r6el-di -pnic-usb-modules-6.7.7-mips64r6el-di -pnic-wireless-modules-6.7.7-mips64r6el-di -ppata-modules-6.7.7-mips64r6el-di -pppp-modules-6.7.7-mips64r6el-di -psata-modules-6.7.7-mips64r6el-di -pscsi-core-modules-6.7.7-mips64r6el-di -pscsi-modules-6.7.7-mips64r6el-di -pscsi-nic-modules-6.7.7-mips64r6el-di -psound-modules-6.7.7-mips64r6el-di -pspeakup-modules-6.7.7-mips64r6el-di -psquashfs-modules-6.7.7-mips64r6el-di -pudf-modules-6.7.7-mips64r6el-di -pusb-modules-6.7.7-mips64r6el-di -pusb-serial-modules-6.7.7-mips64r6el-di -pusb-storage-modules-6.7.7-mips64r6el-di -pxfs-modules-6.7.7-mips64r6el-di' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-mips64r6el-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64r6el_none_mips64r6el_meta: - $(call if_package, linux-image-mips64r6el, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips64r6el' DH_OPTIONS='-plinux-image-mips64r6el' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-mips64r6el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' PACKAGE_NAME='linux-image-mips64r6el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-mips64r6el, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-mips64r6el' DH_OPTIONS='-plinux-headers-mips64r6el' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-mips64r6el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' PACKAGE_NAME='linux-headers-mips64r6el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-mips64r6el-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips64r6el-dbg' DH_OPTIONS='-plinux-image-mips64r6el-dbg' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-mips64r6el-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' PACKAGE_NAME='linux-image-mips64r6el-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-mips64r6el, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips64r6el' DH_OPTIONS='-plinux-image-mips64r6el' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-mips64r6el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' PACKAGE_NAME='linux-image-mips64r6el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-mips64r6el, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-mips64r6el' DH_OPTIONS='-plinux-headers-mips64r6el' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-mips64r6el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' PACKAGE_NAME='linux-headers-mips64r6el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-mips64r6el-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips64r6el-dbg' DH_OPTIONS='-plinux-image-mips64r6el-dbg' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-mips64r6el-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' PACKAGE_NAME='linux-image-mips64r6el-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64r6el_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.6.15' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='mips' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.7.7' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='mips' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64r6el_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.6.15' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='mips' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.7.7' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='mips' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips64r6el_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.6.15' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='mips' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.7.7' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='mips' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.6.15' ARCH='mips' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='mips' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.7.7' ARCH='mips' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='mips' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real build_config ABINAME='6.6.15' ARCH='mips' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='mips' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real build_config ABINAME='6.7.7' ARCH='mips' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='mips' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.6.15' ARCH='mips' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='mips' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.7.7' ARCH='mips' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='mips' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.6.15' ARCH='mips' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='mips' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.7.7' ARCH='mips' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='mips' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.6.15' ARCH='mips' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='mips' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.7.7' ARCH='mips' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='mips' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips_none:build-arch_mips_none_4kc-malta build-arch_mips_none_mips32r2eb build-arch_mips_none_octeon build-arch_mips_none_4kc-malta:build-arch_mips_none_4kc-malta_headers build-arch_mips_none_4kc-malta_image build-arch_mips_none_4kc-malta_image-dbg build-arch_mips_none_4kc-malta_installer build-arch_mips_none_4kc-malta_meta build-arch_mips_none_4kc-malta_headers: - $(call if_package, linux-headers-6.6.15-4kc-malta, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-4kc-malta' DH_OPTIONS='-plinux-headers-6.6.15-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-headers-6.6.15-4kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-4kc-malta, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-4kc-malta' DH_OPTIONS='-plinux-headers-6.7.7-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-headers-6.7.7-4kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips_none_4kc-malta_image: - $(call if_package, linux-image-6.6.15-4kc-malta, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-4kc-malta' DH_OPTIONS='-plinux-image-6.6.15-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-6.6.15-4kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-4kc-malta, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-4kc-malta' DH_OPTIONS='-plinux-image-6.7.7-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-6.7.7-4kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips_none_4kc-malta_image-dbg: - $(call if_package, linux-image-6.6.15-4kc-malta-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-4kc-malta-dbg' DH_OPTIONS='-plinux-image-6.6.15-4kc-malta-dbg' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-6.6.15-4kc-malta-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-4kc-malta-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-4kc-malta-dbg' DH_OPTIONS='-plinux-image-6.7.7-4kc-malta-dbg' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-6.7.7-4kc-malta-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips_none_4kc-malta_installer: - $(call if_package, affs-modules-6.6.15-4kc-malta-di ata-modules-6.6.15-4kc-malta-di btrfs-modules-6.6.15-4kc-malta-di cdrom-core-modules-6.6.15-4kc-malta-di crc-modules-6.6.15-4kc-malta-di crypto-dm-modules-6.6.15-4kc-malta-di crypto-modules-6.6.15-4kc-malta-di event-modules-6.6.15-4kc-malta-di ext4-modules-6.6.15-4kc-malta-di f2fs-modules-6.6.15-4kc-malta-di fat-modules-6.6.15-4kc-malta-di fb-modules-6.6.15-4kc-malta-di firewire-core-modules-6.6.15-4kc-malta-di input-modules-6.6.15-4kc-malta-di isofs-modules-6.6.15-4kc-malta-di jfs-modules-6.6.15-4kc-malta-di kernel-image-6.6.15-4kc-malta-di loop-modules-6.6.15-4kc-malta-di md-modules-6.6.15-4kc-malta-di minix-modules-6.6.15-4kc-malta-di mmc-core-modules-6.6.15-4kc-malta-di mmc-modules-6.6.15-4kc-malta-di mouse-modules-6.6.15-4kc-malta-di multipath-modules-6.6.15-4kc-malta-di nbd-modules-6.6.15-4kc-malta-di nfs-modules-6.6.15-4kc-malta-di nic-modules-6.6.15-4kc-malta-di nic-shared-modules-6.6.15-4kc-malta-di nic-usb-modules-6.6.15-4kc-malta-di nic-wireless-modules-6.6.15-4kc-malta-di pata-modules-6.6.15-4kc-malta-di ppp-modules-6.6.15-4kc-malta-di sata-modules-6.6.15-4kc-malta-di scsi-core-modules-6.6.15-4kc-malta-di scsi-modules-6.6.15-4kc-malta-di scsi-nic-modules-6.6.15-4kc-malta-di sound-modules-6.6.15-4kc-malta-di speakup-modules-6.6.15-4kc-malta-di squashfs-modules-6.6.15-4kc-malta-di udf-modules-6.6.15-4kc-malta-di usb-modules-6.6.15-4kc-malta-di usb-serial-modules-6.6.15-4kc-malta-di usb-storage-modules-6.6.15-4kc-malta-di xfs-modules-6.6.15-4kc-malta-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-4kc-malta-di -pata-modules-6.6.15-4kc-malta-di -pbtrfs-modules-6.6.15-4kc-malta-di -pcdrom-core-modules-6.6.15-4kc-malta-di -pcrc-modules-6.6.15-4kc-malta-di -pcrypto-dm-modules-6.6.15-4kc-malta-di -pcrypto-modules-6.6.15-4kc-malta-di -pevent-modules-6.6.15-4kc-malta-di -pext4-modules-6.6.15-4kc-malta-di -pf2fs-modules-6.6.15-4kc-malta-di -pfat-modules-6.6.15-4kc-malta-di -pfb-modules-6.6.15-4kc-malta-di -pfirewire-core-modules-6.6.15-4kc-malta-di -pinput-modules-6.6.15-4kc-malta-di -pisofs-modules-6.6.15-4kc-malta-di -pjfs-modules-6.6.15-4kc-malta-di -pkernel-image-6.6.15-4kc-malta-di -ploop-modules-6.6.15-4kc-malta-di -pmd-modules-6.6.15-4kc-malta-di -pminix-modules-6.6.15-4kc-malta-di -pmmc-core-modules-6.6.15-4kc-malta-di -pmmc-modules-6.6.15-4kc-malta-di -pmouse-modules-6.6.15-4kc-malta-di -pmultipath-modules-6.6.15-4kc-malta-di -pnbd-modules-6.6.15-4kc-malta-di -pnfs-modules-6.6.15-4kc-malta-di -pnic-modules-6.6.15-4kc-malta-di -pnic-shared-modules-6.6.15-4kc-malta-di -pnic-usb-modules-6.6.15-4kc-malta-di -pnic-wireless-modules-6.6.15-4kc-malta-di -ppata-modules-6.6.15-4kc-malta-di -pppp-modules-6.6.15-4kc-malta-di -psata-modules-6.6.15-4kc-malta-di -pscsi-core-modules-6.6.15-4kc-malta-di -pscsi-modules-6.6.15-4kc-malta-di -pscsi-nic-modules-6.6.15-4kc-malta-di -psound-modules-6.6.15-4kc-malta-di -pspeakup-modules-6.6.15-4kc-malta-di -psquashfs-modules-6.6.15-4kc-malta-di -pudf-modules-6.6.15-4kc-malta-di -pusb-modules-6.6.15-4kc-malta-di -pusb-serial-modules-6.6.15-4kc-malta-di -pusb-storage-modules-6.6.15-4kc-malta-di -pxfs-modules-6.6.15-4kc-malta-di' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-4kc-malta-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-4kc-malta-di ata-modules-6.7.7-4kc-malta-di btrfs-modules-6.7.7-4kc-malta-di cdrom-core-modules-6.7.7-4kc-malta-di crc-modules-6.7.7-4kc-malta-di crypto-dm-modules-6.7.7-4kc-malta-di crypto-modules-6.7.7-4kc-malta-di event-modules-6.7.7-4kc-malta-di ext4-modules-6.7.7-4kc-malta-di f2fs-modules-6.7.7-4kc-malta-di fat-modules-6.7.7-4kc-malta-di fb-modules-6.7.7-4kc-malta-di firewire-core-modules-6.7.7-4kc-malta-di input-modules-6.7.7-4kc-malta-di isofs-modules-6.7.7-4kc-malta-di jfs-modules-6.7.7-4kc-malta-di kernel-image-6.7.7-4kc-malta-di loop-modules-6.7.7-4kc-malta-di md-modules-6.7.7-4kc-malta-di minix-modules-6.7.7-4kc-malta-di mmc-core-modules-6.7.7-4kc-malta-di mmc-modules-6.7.7-4kc-malta-di mouse-modules-6.7.7-4kc-malta-di multipath-modules-6.7.7-4kc-malta-di nbd-modules-6.7.7-4kc-malta-di nfs-modules-6.7.7-4kc-malta-di nic-modules-6.7.7-4kc-malta-di nic-shared-modules-6.7.7-4kc-malta-di nic-usb-modules-6.7.7-4kc-malta-di nic-wireless-modules-6.7.7-4kc-malta-di pata-modules-6.7.7-4kc-malta-di ppp-modules-6.7.7-4kc-malta-di sata-modules-6.7.7-4kc-malta-di scsi-core-modules-6.7.7-4kc-malta-di scsi-modules-6.7.7-4kc-malta-di scsi-nic-modules-6.7.7-4kc-malta-di sound-modules-6.7.7-4kc-malta-di speakup-modules-6.7.7-4kc-malta-di squashfs-modules-6.7.7-4kc-malta-di udf-modules-6.7.7-4kc-malta-di usb-modules-6.7.7-4kc-malta-di usb-serial-modules-6.7.7-4kc-malta-di usb-storage-modules-6.7.7-4kc-malta-di xfs-modules-6.7.7-4kc-malta-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-4kc-malta-di -pata-modules-6.7.7-4kc-malta-di -pbtrfs-modules-6.7.7-4kc-malta-di -pcdrom-core-modules-6.7.7-4kc-malta-di -pcrc-modules-6.7.7-4kc-malta-di -pcrypto-dm-modules-6.7.7-4kc-malta-di -pcrypto-modules-6.7.7-4kc-malta-di -pevent-modules-6.7.7-4kc-malta-di -pext4-modules-6.7.7-4kc-malta-di -pf2fs-modules-6.7.7-4kc-malta-di -pfat-modules-6.7.7-4kc-malta-di -pfb-modules-6.7.7-4kc-malta-di -pfirewire-core-modules-6.7.7-4kc-malta-di -pinput-modules-6.7.7-4kc-malta-di -pisofs-modules-6.7.7-4kc-malta-di -pjfs-modules-6.7.7-4kc-malta-di -pkernel-image-6.7.7-4kc-malta-di -ploop-modules-6.7.7-4kc-malta-di -pmd-modules-6.7.7-4kc-malta-di -pminix-modules-6.7.7-4kc-malta-di -pmmc-core-modules-6.7.7-4kc-malta-di -pmmc-modules-6.7.7-4kc-malta-di -pmouse-modules-6.7.7-4kc-malta-di -pmultipath-modules-6.7.7-4kc-malta-di -pnbd-modules-6.7.7-4kc-malta-di -pnfs-modules-6.7.7-4kc-malta-di -pnic-modules-6.7.7-4kc-malta-di -pnic-shared-modules-6.7.7-4kc-malta-di -pnic-usb-modules-6.7.7-4kc-malta-di -pnic-wireless-modules-6.7.7-4kc-malta-di -ppata-modules-6.7.7-4kc-malta-di -pppp-modules-6.7.7-4kc-malta-di -psata-modules-6.7.7-4kc-malta-di -pscsi-core-modules-6.7.7-4kc-malta-di -pscsi-modules-6.7.7-4kc-malta-di -pscsi-nic-modules-6.7.7-4kc-malta-di -psound-modules-6.7.7-4kc-malta-di -pspeakup-modules-6.7.7-4kc-malta-di -psquashfs-modules-6.7.7-4kc-malta-di -pudf-modules-6.7.7-4kc-malta-di -pusb-modules-6.7.7-4kc-malta-di -pusb-serial-modules-6.7.7-4kc-malta-di -pusb-storage-modules-6.7.7-4kc-malta-di -pxfs-modules-6.7.7-4kc-malta-di' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-4kc-malta-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips_none_4kc-malta_meta: - $(call if_package, linux-image-4kc-malta, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-4kc-malta' DH_OPTIONS='-plinux-image-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-4kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-4kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-4kc-malta, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-4kc-malta' DH_OPTIONS='-plinux-headers-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-4kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-headers-4kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-4kc-malta-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-4kc-malta-dbg' DH_OPTIONS='-plinux-image-4kc-malta-dbg' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-4kc-malta-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-4kc-malta-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-4kc-malta, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-4kc-malta' DH_OPTIONS='-plinux-image-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-4kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-4kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-4kc-malta, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-4kc-malta' DH_OPTIONS='-plinux-headers-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-4kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-headers-4kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-4kc-malta-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-4kc-malta-dbg' DH_OPTIONS='-plinux-image-4kc-malta-dbg' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-4kc-malta-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-4kc-malta-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips_none_mips32r2eb:build-arch_mips_none_mips32r2eb_headers build-arch_mips_none_mips32r2eb_image build-arch_mips_none_mips32r2eb_image-dbg build-arch_mips_none_mips32r2eb_installer build-arch_mips_none_mips32r2eb_meta build-arch_mips_none_mips32r2eb_headers: - $(call if_package, linux-headers-6.6.15-mips32r2eb, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-mips32r2eb' DH_OPTIONS='-plinux-headers-6.6.15-mips32r2eb' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' PACKAGE_NAME='linux-headers-6.6.15-mips32r2eb' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-mips32r2eb, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-mips32r2eb' DH_OPTIONS='-plinux-headers-6.7.7-mips32r2eb' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' PACKAGE_NAME='linux-headers-6.7.7-mips32r2eb' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips_none_mips32r2eb_image: - $(call if_package, linux-image-6.6.15-mips32r2eb, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-mips32r2eb' DH_OPTIONS='-plinux-image-6.6.15-mips32r2eb' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' PACKAGE_NAME='linux-image-6.6.15-mips32r2eb' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-mips32r2eb, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-mips32r2eb' DH_OPTIONS='-plinux-image-6.7.7-mips32r2eb' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' PACKAGE_NAME='linux-image-6.7.7-mips32r2eb' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips_none_mips32r2eb_image-dbg: - $(call if_package, linux-image-6.6.15-mips32r2eb-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-mips32r2eb-dbg' DH_OPTIONS='-plinux-image-6.6.15-mips32r2eb-dbg' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' PACKAGE_NAME='linux-image-6.6.15-mips32r2eb-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-mips32r2eb-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-mips32r2eb-dbg' DH_OPTIONS='-plinux-image-6.7.7-mips32r2eb-dbg' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' PACKAGE_NAME='linux-image-6.7.7-mips32r2eb-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips_none_mips32r2eb_installer: - $(call if_package, affs-modules-6.6.15-mips32r2eb-di ata-modules-6.6.15-mips32r2eb-di btrfs-modules-6.6.15-mips32r2eb-di cdrom-core-modules-6.6.15-mips32r2eb-di crc-modules-6.6.15-mips32r2eb-di crypto-dm-modules-6.6.15-mips32r2eb-di crypto-modules-6.6.15-mips32r2eb-di event-modules-6.6.15-mips32r2eb-di ext4-modules-6.6.15-mips32r2eb-di f2fs-modules-6.6.15-mips32r2eb-di fat-modules-6.6.15-mips32r2eb-di fb-modules-6.6.15-mips32r2eb-di firewire-core-modules-6.6.15-mips32r2eb-di input-modules-6.6.15-mips32r2eb-di isofs-modules-6.6.15-mips32r2eb-di jfs-modules-6.6.15-mips32r2eb-di kernel-image-6.6.15-mips32r2eb-di loop-modules-6.6.15-mips32r2eb-di md-modules-6.6.15-mips32r2eb-di minix-modules-6.6.15-mips32r2eb-di mmc-core-modules-6.6.15-mips32r2eb-di mmc-modules-6.6.15-mips32r2eb-di mouse-modules-6.6.15-mips32r2eb-di multipath-modules-6.6.15-mips32r2eb-di nbd-modules-6.6.15-mips32r2eb-di nfs-modules-6.6.15-mips32r2eb-di nic-modules-6.6.15-mips32r2eb-di nic-shared-modules-6.6.15-mips32r2eb-di nic-usb-modules-6.6.15-mips32r2eb-di nic-wireless-modules-6.6.15-mips32r2eb-di pata-modules-6.6.15-mips32r2eb-di ppp-modules-6.6.15-mips32r2eb-di sata-modules-6.6.15-mips32r2eb-di scsi-core-modules-6.6.15-mips32r2eb-di scsi-modules-6.6.15-mips32r2eb-di scsi-nic-modules-6.6.15-mips32r2eb-di sound-modules-6.6.15-mips32r2eb-di speakup-modules-6.6.15-mips32r2eb-di squashfs-modules-6.6.15-mips32r2eb-di udf-modules-6.6.15-mips32r2eb-di usb-modules-6.6.15-mips32r2eb-di usb-serial-modules-6.6.15-mips32r2eb-di usb-storage-modules-6.6.15-mips32r2eb-di xfs-modules-6.6.15-mips32r2eb-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-mips32r2eb-di -pata-modules-6.6.15-mips32r2eb-di -pbtrfs-modules-6.6.15-mips32r2eb-di -pcdrom-core-modules-6.6.15-mips32r2eb-di -pcrc-modules-6.6.15-mips32r2eb-di -pcrypto-dm-modules-6.6.15-mips32r2eb-di -pcrypto-modules-6.6.15-mips32r2eb-di -pevent-modules-6.6.15-mips32r2eb-di -pext4-modules-6.6.15-mips32r2eb-di -pf2fs-modules-6.6.15-mips32r2eb-di -pfat-modules-6.6.15-mips32r2eb-di -pfb-modules-6.6.15-mips32r2eb-di -pfirewire-core-modules-6.6.15-mips32r2eb-di -pinput-modules-6.6.15-mips32r2eb-di -pisofs-modules-6.6.15-mips32r2eb-di -pjfs-modules-6.6.15-mips32r2eb-di -pkernel-image-6.6.15-mips32r2eb-di -ploop-modules-6.6.15-mips32r2eb-di -pmd-modules-6.6.15-mips32r2eb-di -pminix-modules-6.6.15-mips32r2eb-di -pmmc-core-modules-6.6.15-mips32r2eb-di -pmmc-modules-6.6.15-mips32r2eb-di -pmouse-modules-6.6.15-mips32r2eb-di -pmultipath-modules-6.6.15-mips32r2eb-di -pnbd-modules-6.6.15-mips32r2eb-di -pnfs-modules-6.6.15-mips32r2eb-di -pnic-modules-6.6.15-mips32r2eb-di -pnic-shared-modules-6.6.15-mips32r2eb-di -pnic-usb-modules-6.6.15-mips32r2eb-di -pnic-wireless-modules-6.6.15-mips32r2eb-di -ppata-modules-6.6.15-mips32r2eb-di -pppp-modules-6.6.15-mips32r2eb-di -psata-modules-6.6.15-mips32r2eb-di -pscsi-core-modules-6.6.15-mips32r2eb-di -pscsi-modules-6.6.15-mips32r2eb-di -pscsi-nic-modules-6.6.15-mips32r2eb-di -psound-modules-6.6.15-mips32r2eb-di -pspeakup-modules-6.6.15-mips32r2eb-di -psquashfs-modules-6.6.15-mips32r2eb-di -pudf-modules-6.6.15-mips32r2eb-di -pusb-modules-6.6.15-mips32r2eb-di -pusb-serial-modules-6.6.15-mips32r2eb-di -pusb-storage-modules-6.6.15-mips32r2eb-di -pxfs-modules-6.6.15-mips32r2eb-di' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-mips32r2eb-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-mips32r2eb-di ata-modules-6.7.7-mips32r2eb-di btrfs-modules-6.7.7-mips32r2eb-di cdrom-core-modules-6.7.7-mips32r2eb-di crc-modules-6.7.7-mips32r2eb-di crypto-dm-modules-6.7.7-mips32r2eb-di crypto-modules-6.7.7-mips32r2eb-di event-modules-6.7.7-mips32r2eb-di ext4-modules-6.7.7-mips32r2eb-di f2fs-modules-6.7.7-mips32r2eb-di fat-modules-6.7.7-mips32r2eb-di fb-modules-6.7.7-mips32r2eb-di firewire-core-modules-6.7.7-mips32r2eb-di input-modules-6.7.7-mips32r2eb-di isofs-modules-6.7.7-mips32r2eb-di jfs-modules-6.7.7-mips32r2eb-di kernel-image-6.7.7-mips32r2eb-di loop-modules-6.7.7-mips32r2eb-di md-modules-6.7.7-mips32r2eb-di minix-modules-6.7.7-mips32r2eb-di mmc-core-modules-6.7.7-mips32r2eb-di mmc-modules-6.7.7-mips32r2eb-di mouse-modules-6.7.7-mips32r2eb-di multipath-modules-6.7.7-mips32r2eb-di nbd-modules-6.7.7-mips32r2eb-di nfs-modules-6.7.7-mips32r2eb-di nic-modules-6.7.7-mips32r2eb-di nic-shared-modules-6.7.7-mips32r2eb-di nic-usb-modules-6.7.7-mips32r2eb-di nic-wireless-modules-6.7.7-mips32r2eb-di pata-modules-6.7.7-mips32r2eb-di ppp-modules-6.7.7-mips32r2eb-di sata-modules-6.7.7-mips32r2eb-di scsi-core-modules-6.7.7-mips32r2eb-di scsi-modules-6.7.7-mips32r2eb-di scsi-nic-modules-6.7.7-mips32r2eb-di sound-modules-6.7.7-mips32r2eb-di speakup-modules-6.7.7-mips32r2eb-di squashfs-modules-6.7.7-mips32r2eb-di udf-modules-6.7.7-mips32r2eb-di usb-modules-6.7.7-mips32r2eb-di usb-serial-modules-6.7.7-mips32r2eb-di usb-storage-modules-6.7.7-mips32r2eb-di xfs-modules-6.7.7-mips32r2eb-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-mips32r2eb-di -pata-modules-6.7.7-mips32r2eb-di -pbtrfs-modules-6.7.7-mips32r2eb-di -pcdrom-core-modules-6.7.7-mips32r2eb-di -pcrc-modules-6.7.7-mips32r2eb-di -pcrypto-dm-modules-6.7.7-mips32r2eb-di -pcrypto-modules-6.7.7-mips32r2eb-di -pevent-modules-6.7.7-mips32r2eb-di -pext4-modules-6.7.7-mips32r2eb-di -pf2fs-modules-6.7.7-mips32r2eb-di -pfat-modules-6.7.7-mips32r2eb-di -pfb-modules-6.7.7-mips32r2eb-di -pfirewire-core-modules-6.7.7-mips32r2eb-di -pinput-modules-6.7.7-mips32r2eb-di -pisofs-modules-6.7.7-mips32r2eb-di -pjfs-modules-6.7.7-mips32r2eb-di -pkernel-image-6.7.7-mips32r2eb-di -ploop-modules-6.7.7-mips32r2eb-di -pmd-modules-6.7.7-mips32r2eb-di -pminix-modules-6.7.7-mips32r2eb-di -pmmc-core-modules-6.7.7-mips32r2eb-di -pmmc-modules-6.7.7-mips32r2eb-di -pmouse-modules-6.7.7-mips32r2eb-di -pmultipath-modules-6.7.7-mips32r2eb-di -pnbd-modules-6.7.7-mips32r2eb-di -pnfs-modules-6.7.7-mips32r2eb-di -pnic-modules-6.7.7-mips32r2eb-di -pnic-shared-modules-6.7.7-mips32r2eb-di -pnic-usb-modules-6.7.7-mips32r2eb-di -pnic-wireless-modules-6.7.7-mips32r2eb-di -ppata-modules-6.7.7-mips32r2eb-di -pppp-modules-6.7.7-mips32r2eb-di -psata-modules-6.7.7-mips32r2eb-di -pscsi-core-modules-6.7.7-mips32r2eb-di -pscsi-modules-6.7.7-mips32r2eb-di -pscsi-nic-modules-6.7.7-mips32r2eb-di -psound-modules-6.7.7-mips32r2eb-di -pspeakup-modules-6.7.7-mips32r2eb-di -psquashfs-modules-6.7.7-mips32r2eb-di -pudf-modules-6.7.7-mips32r2eb-di -pusb-modules-6.7.7-mips32r2eb-di -pusb-serial-modules-6.7.7-mips32r2eb-di -pusb-storage-modules-6.7.7-mips32r2eb-di -pxfs-modules-6.7.7-mips32r2eb-di' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-mips32r2eb-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips_none_mips32r2eb_meta: - $(call if_package, linux-image-mips32r2eb, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips32r2eb' DH_OPTIONS='-plinux-image-mips32r2eb' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-mips32r2eb' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' PACKAGE_NAME='linux-image-mips32r2eb' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-mips32r2eb, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-mips32r2eb' DH_OPTIONS='-plinux-headers-mips32r2eb' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-mips32r2eb' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' PACKAGE_NAME='linux-headers-mips32r2eb' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-mips32r2eb-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips32r2eb-dbg' DH_OPTIONS='-plinux-image-mips32r2eb-dbg' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-mips32r2eb-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' PACKAGE_NAME='linux-image-mips32r2eb-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-mips32r2eb, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips32r2eb' DH_OPTIONS='-plinux-image-mips32r2eb' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-mips32r2eb' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' PACKAGE_NAME='linux-image-mips32r2eb' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-mips32r2eb, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-mips32r2eb' DH_OPTIONS='-plinux-headers-mips32r2eb' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-mips32r2eb' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' PACKAGE_NAME='linux-headers-mips32r2eb' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-mips32r2eb-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips32r2eb-dbg' DH_OPTIONS='-plinux-image-mips32r2eb-dbg' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-mips32r2eb-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' PACKAGE_NAME='linux-image-mips32r2eb-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips_none_octeon:build-arch_mips_none_octeon_headers build-arch_mips_none_octeon_image build-arch_mips_none_octeon_image-dbg build-arch_mips_none_octeon_installer build-arch_mips_none_octeon_meta build-arch_mips_none_octeon_headers: - $(call if_package, linux-headers-6.6.15-octeon, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-octeon' DH_OPTIONS='-plinux-headers-6.6.15-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-6.6.15-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-octeon, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-octeon' DH_OPTIONS='-plinux-headers-6.7.7-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-6.7.7-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips_none_octeon_image: - $(call if_package, linux-image-6.6.15-octeon, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-octeon' DH_OPTIONS='-plinux-image-6.6.15-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.6.15-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-octeon, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-octeon' DH_OPTIONS='-plinux-image-6.7.7-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.7.7-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips_none_octeon_image-dbg: - $(call if_package, linux-image-6.6.15-octeon-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-octeon-dbg' DH_OPTIONS='-plinux-image-6.6.15-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.6.15-octeon-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-octeon-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-octeon-dbg' DH_OPTIONS='-plinux-image-6.7.7-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.7.7-octeon-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips_none_octeon_installer: - $(call if_package, affs-modules-6.6.15-octeon-di ata-modules-6.6.15-octeon-di btrfs-modules-6.6.15-octeon-di cdrom-core-modules-6.6.15-octeon-di crc-modules-6.6.15-octeon-di crypto-dm-modules-6.6.15-octeon-di crypto-modules-6.6.15-octeon-di event-modules-6.6.15-octeon-di ext4-modules-6.6.15-octeon-di f2fs-modules-6.6.15-octeon-di fat-modules-6.6.15-octeon-di fb-modules-6.6.15-octeon-di firewire-core-modules-6.6.15-octeon-di input-modules-6.6.15-octeon-di isofs-modules-6.6.15-octeon-di jfs-modules-6.6.15-octeon-di kernel-image-6.6.15-octeon-di loop-modules-6.6.15-octeon-di md-modules-6.6.15-octeon-di minix-modules-6.6.15-octeon-di mmc-core-modules-6.6.15-octeon-di mmc-modules-6.6.15-octeon-di mouse-modules-6.6.15-octeon-di multipath-modules-6.6.15-octeon-di nbd-modules-6.6.15-octeon-di nfs-modules-6.6.15-octeon-di nic-modules-6.6.15-octeon-di nic-shared-modules-6.6.15-octeon-di nic-usb-modules-6.6.15-octeon-di nic-wireless-modules-6.6.15-octeon-di pata-modules-6.6.15-octeon-di ppp-modules-6.6.15-octeon-di sata-modules-6.6.15-octeon-di scsi-core-modules-6.6.15-octeon-di scsi-modules-6.6.15-octeon-di scsi-nic-modules-6.6.15-octeon-di sound-modules-6.6.15-octeon-di speakup-modules-6.6.15-octeon-di squashfs-modules-6.6.15-octeon-di udf-modules-6.6.15-octeon-di usb-modules-6.6.15-octeon-di usb-serial-modules-6.6.15-octeon-di usb-storage-modules-6.6.15-octeon-di xfs-modules-6.6.15-octeon-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-octeon-di -pata-modules-6.6.15-octeon-di -pbtrfs-modules-6.6.15-octeon-di -pcdrom-core-modules-6.6.15-octeon-di -pcrc-modules-6.6.15-octeon-di -pcrypto-dm-modules-6.6.15-octeon-di -pcrypto-modules-6.6.15-octeon-di -pevent-modules-6.6.15-octeon-di -pext4-modules-6.6.15-octeon-di -pf2fs-modules-6.6.15-octeon-di -pfat-modules-6.6.15-octeon-di -pfb-modules-6.6.15-octeon-di -pfirewire-core-modules-6.6.15-octeon-di -pinput-modules-6.6.15-octeon-di -pisofs-modules-6.6.15-octeon-di -pjfs-modules-6.6.15-octeon-di -pkernel-image-6.6.15-octeon-di -ploop-modules-6.6.15-octeon-di -pmd-modules-6.6.15-octeon-di -pminix-modules-6.6.15-octeon-di -pmmc-core-modules-6.6.15-octeon-di -pmmc-modules-6.6.15-octeon-di -pmouse-modules-6.6.15-octeon-di -pmultipath-modules-6.6.15-octeon-di -pnbd-modules-6.6.15-octeon-di -pnfs-modules-6.6.15-octeon-di -pnic-modules-6.6.15-octeon-di -pnic-shared-modules-6.6.15-octeon-di -pnic-usb-modules-6.6.15-octeon-di -pnic-wireless-modules-6.6.15-octeon-di -ppata-modules-6.6.15-octeon-di -pppp-modules-6.6.15-octeon-di -psata-modules-6.6.15-octeon-di -pscsi-core-modules-6.6.15-octeon-di -pscsi-modules-6.6.15-octeon-di -pscsi-nic-modules-6.6.15-octeon-di -psound-modules-6.6.15-octeon-di -pspeakup-modules-6.6.15-octeon-di -psquashfs-modules-6.6.15-octeon-di -pudf-modules-6.6.15-octeon-di -pusb-modules-6.6.15-octeon-di -pusb-serial-modules-6.6.15-octeon-di -pusb-storage-modules-6.6.15-octeon-di -pxfs-modules-6.6.15-octeon-di' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-octeon-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-octeon-di ata-modules-6.7.7-octeon-di btrfs-modules-6.7.7-octeon-di cdrom-core-modules-6.7.7-octeon-di crc-modules-6.7.7-octeon-di crypto-dm-modules-6.7.7-octeon-di crypto-modules-6.7.7-octeon-di event-modules-6.7.7-octeon-di ext4-modules-6.7.7-octeon-di f2fs-modules-6.7.7-octeon-di fat-modules-6.7.7-octeon-di fb-modules-6.7.7-octeon-di firewire-core-modules-6.7.7-octeon-di input-modules-6.7.7-octeon-di isofs-modules-6.7.7-octeon-di jfs-modules-6.7.7-octeon-di kernel-image-6.7.7-octeon-di loop-modules-6.7.7-octeon-di md-modules-6.7.7-octeon-di minix-modules-6.7.7-octeon-di mmc-core-modules-6.7.7-octeon-di mmc-modules-6.7.7-octeon-di mouse-modules-6.7.7-octeon-di multipath-modules-6.7.7-octeon-di nbd-modules-6.7.7-octeon-di nfs-modules-6.7.7-octeon-di nic-modules-6.7.7-octeon-di nic-shared-modules-6.7.7-octeon-di nic-usb-modules-6.7.7-octeon-di nic-wireless-modules-6.7.7-octeon-di pata-modules-6.7.7-octeon-di ppp-modules-6.7.7-octeon-di sata-modules-6.7.7-octeon-di scsi-core-modules-6.7.7-octeon-di scsi-modules-6.7.7-octeon-di scsi-nic-modules-6.7.7-octeon-di sound-modules-6.7.7-octeon-di speakup-modules-6.7.7-octeon-di squashfs-modules-6.7.7-octeon-di udf-modules-6.7.7-octeon-di usb-modules-6.7.7-octeon-di usb-serial-modules-6.7.7-octeon-di usb-storage-modules-6.7.7-octeon-di xfs-modules-6.7.7-octeon-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-octeon-di -pata-modules-6.7.7-octeon-di -pbtrfs-modules-6.7.7-octeon-di -pcdrom-core-modules-6.7.7-octeon-di -pcrc-modules-6.7.7-octeon-di -pcrypto-dm-modules-6.7.7-octeon-di -pcrypto-modules-6.7.7-octeon-di -pevent-modules-6.7.7-octeon-di -pext4-modules-6.7.7-octeon-di -pf2fs-modules-6.7.7-octeon-di -pfat-modules-6.7.7-octeon-di -pfb-modules-6.7.7-octeon-di -pfirewire-core-modules-6.7.7-octeon-di -pinput-modules-6.7.7-octeon-di -pisofs-modules-6.7.7-octeon-di -pjfs-modules-6.7.7-octeon-di -pkernel-image-6.7.7-octeon-di -ploop-modules-6.7.7-octeon-di -pmd-modules-6.7.7-octeon-di -pminix-modules-6.7.7-octeon-di -pmmc-core-modules-6.7.7-octeon-di -pmmc-modules-6.7.7-octeon-di -pmouse-modules-6.7.7-octeon-di -pmultipath-modules-6.7.7-octeon-di -pnbd-modules-6.7.7-octeon-di -pnfs-modules-6.7.7-octeon-di -pnic-modules-6.7.7-octeon-di -pnic-shared-modules-6.7.7-octeon-di -pnic-usb-modules-6.7.7-octeon-di -pnic-wireless-modules-6.7.7-octeon-di -ppata-modules-6.7.7-octeon-di -pppp-modules-6.7.7-octeon-di -psata-modules-6.7.7-octeon-di -pscsi-core-modules-6.7.7-octeon-di -pscsi-modules-6.7.7-octeon-di -pscsi-nic-modules-6.7.7-octeon-di -psound-modules-6.7.7-octeon-di -pspeakup-modules-6.7.7-octeon-di -psquashfs-modules-6.7.7-octeon-di -pudf-modules-6.7.7-octeon-di -pusb-modules-6.7.7-octeon-di -pusb-serial-modules-6.7.7-octeon-di -pusb-storage-modules-6.7.7-octeon-di -pxfs-modules-6.7.7-octeon-di' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-octeon-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips_none_octeon_meta: - $(call if_package, linux-image-octeon, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon' DH_OPTIONS='-plinux-image-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-octeon, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-octeon' DH_OPTIONS='-plinux-headers-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-octeon-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon-dbg' DH_OPTIONS='-plinux-image-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-octeon-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-octeon, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon' DH_OPTIONS='-plinux-image-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-octeon, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-octeon' DH_OPTIONS='-plinux-headers-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-octeon-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon-dbg' DH_OPTIONS='-plinux-image-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-octeon-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.6.15' ARCH='mips' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='mips' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.7.7' ARCH='mips' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='mips' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.6.15' ARCH='mips' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='mips' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.7.7' ARCH='mips' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='mips' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mips_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.6.15' ARCH='mips' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='mips' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.7.7' ARCH='mips' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='mips' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mipsel:build-arch_mipsel_bpftool build-arch_mipsel_config build-arch_mipsel_cpupower build-arch_mipsel_hyperv-daemons build-arch_mipsel_kbuild build-arch_mipsel_none build-arch_mipsel_perf build-arch_mipsel_rtla build-arch_mipsel_usbip build-arch_mipsel_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.6.15' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='mips' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.7.7' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='mips' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mipsel_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real build_config ABINAME='6.6.15' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='mips' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real build_config ABINAME='6.7.7' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='mips' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mipsel_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.6.15' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='mips' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.7.7' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='mips' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mipsel_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.6.15' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='mips' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.7.7' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='mips' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mipsel_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.6.15' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='mips' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.7.7' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='mips' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mipsel_none:build-arch_mipsel_none_4kc-malta build-arch_mipsel_none_loongson-3 build-arch_mipsel_none_mips32r2el build-arch_mipsel_none_octeon build-arch_mipsel_none_4kc-malta:build-arch_mipsel_none_4kc-malta_headers build-arch_mipsel_none_4kc-malta_image build-arch_mipsel_none_4kc-malta_image-dbg build-arch_mipsel_none_4kc-malta_installer build-arch_mipsel_none_4kc-malta_meta build-arch_mipsel_none_4kc-malta_headers: - $(call if_package, linux-headers-6.6.15-4kc-malta, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-4kc-malta' DH_OPTIONS='-plinux-headers-6.6.15-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-headers-6.6.15-4kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-4kc-malta, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-4kc-malta' DH_OPTIONS='-plinux-headers-6.7.7-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-headers-6.7.7-4kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mipsel_none_4kc-malta_image: - $(call if_package, linux-image-6.6.15-4kc-malta, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-4kc-malta' DH_OPTIONS='-plinux-image-6.6.15-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-6.6.15-4kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-4kc-malta, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-4kc-malta' DH_OPTIONS='-plinux-image-6.7.7-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-6.7.7-4kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mipsel_none_4kc-malta_image-dbg: - $(call if_package, linux-image-6.6.15-4kc-malta-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-4kc-malta-dbg' DH_OPTIONS='-plinux-image-6.6.15-4kc-malta-dbg' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-6.6.15-4kc-malta-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-4kc-malta-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-4kc-malta-dbg' DH_OPTIONS='-plinux-image-6.7.7-4kc-malta-dbg' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-6.7.7-4kc-malta-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mipsel_none_4kc-malta_installer: - $(call if_package, affs-modules-6.6.15-4kc-malta-di ata-modules-6.6.15-4kc-malta-di btrfs-modules-6.6.15-4kc-malta-di cdrom-core-modules-6.6.15-4kc-malta-di crc-modules-6.6.15-4kc-malta-di crypto-dm-modules-6.6.15-4kc-malta-di crypto-modules-6.6.15-4kc-malta-di event-modules-6.6.15-4kc-malta-di ext4-modules-6.6.15-4kc-malta-di f2fs-modules-6.6.15-4kc-malta-di fat-modules-6.6.15-4kc-malta-di fb-modules-6.6.15-4kc-malta-di firewire-core-modules-6.6.15-4kc-malta-di input-modules-6.6.15-4kc-malta-di isofs-modules-6.6.15-4kc-malta-di jfs-modules-6.6.15-4kc-malta-di kernel-image-6.6.15-4kc-malta-di loop-modules-6.6.15-4kc-malta-di md-modules-6.6.15-4kc-malta-di minix-modules-6.6.15-4kc-malta-di mmc-core-modules-6.6.15-4kc-malta-di mmc-modules-6.6.15-4kc-malta-di mouse-modules-6.6.15-4kc-malta-di multipath-modules-6.6.15-4kc-malta-di nbd-modules-6.6.15-4kc-malta-di nfs-modules-6.6.15-4kc-malta-di nic-modules-6.6.15-4kc-malta-di nic-shared-modules-6.6.15-4kc-malta-di nic-usb-modules-6.6.15-4kc-malta-di nic-wireless-modules-6.6.15-4kc-malta-di pata-modules-6.6.15-4kc-malta-di ppp-modules-6.6.15-4kc-malta-di sata-modules-6.6.15-4kc-malta-di scsi-core-modules-6.6.15-4kc-malta-di scsi-modules-6.6.15-4kc-malta-di scsi-nic-modules-6.6.15-4kc-malta-di sound-modules-6.6.15-4kc-malta-di speakup-modules-6.6.15-4kc-malta-di squashfs-modules-6.6.15-4kc-malta-di udf-modules-6.6.15-4kc-malta-di usb-modules-6.6.15-4kc-malta-di usb-serial-modules-6.6.15-4kc-malta-di usb-storage-modules-6.6.15-4kc-malta-di xfs-modules-6.6.15-4kc-malta-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-4kc-malta-di -pata-modules-6.6.15-4kc-malta-di -pbtrfs-modules-6.6.15-4kc-malta-di -pcdrom-core-modules-6.6.15-4kc-malta-di -pcrc-modules-6.6.15-4kc-malta-di -pcrypto-dm-modules-6.6.15-4kc-malta-di -pcrypto-modules-6.6.15-4kc-malta-di -pevent-modules-6.6.15-4kc-malta-di -pext4-modules-6.6.15-4kc-malta-di -pf2fs-modules-6.6.15-4kc-malta-di -pfat-modules-6.6.15-4kc-malta-di -pfb-modules-6.6.15-4kc-malta-di -pfirewire-core-modules-6.6.15-4kc-malta-di -pinput-modules-6.6.15-4kc-malta-di -pisofs-modules-6.6.15-4kc-malta-di -pjfs-modules-6.6.15-4kc-malta-di -pkernel-image-6.6.15-4kc-malta-di -ploop-modules-6.6.15-4kc-malta-di -pmd-modules-6.6.15-4kc-malta-di -pminix-modules-6.6.15-4kc-malta-di -pmmc-core-modules-6.6.15-4kc-malta-di -pmmc-modules-6.6.15-4kc-malta-di -pmouse-modules-6.6.15-4kc-malta-di -pmultipath-modules-6.6.15-4kc-malta-di -pnbd-modules-6.6.15-4kc-malta-di -pnfs-modules-6.6.15-4kc-malta-di -pnic-modules-6.6.15-4kc-malta-di -pnic-shared-modules-6.6.15-4kc-malta-di -pnic-usb-modules-6.6.15-4kc-malta-di -pnic-wireless-modules-6.6.15-4kc-malta-di -ppata-modules-6.6.15-4kc-malta-di -pppp-modules-6.6.15-4kc-malta-di -psata-modules-6.6.15-4kc-malta-di -pscsi-core-modules-6.6.15-4kc-malta-di -pscsi-modules-6.6.15-4kc-malta-di -pscsi-nic-modules-6.6.15-4kc-malta-di -psound-modules-6.6.15-4kc-malta-di -pspeakup-modules-6.6.15-4kc-malta-di -psquashfs-modules-6.6.15-4kc-malta-di -pudf-modules-6.6.15-4kc-malta-di -pusb-modules-6.6.15-4kc-malta-di -pusb-serial-modules-6.6.15-4kc-malta-di -pusb-storage-modules-6.6.15-4kc-malta-di -pxfs-modules-6.6.15-4kc-malta-di' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-4kc-malta-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-4kc-malta-di ata-modules-6.7.7-4kc-malta-di btrfs-modules-6.7.7-4kc-malta-di cdrom-core-modules-6.7.7-4kc-malta-di crc-modules-6.7.7-4kc-malta-di crypto-dm-modules-6.7.7-4kc-malta-di crypto-modules-6.7.7-4kc-malta-di event-modules-6.7.7-4kc-malta-di ext4-modules-6.7.7-4kc-malta-di f2fs-modules-6.7.7-4kc-malta-di fat-modules-6.7.7-4kc-malta-di fb-modules-6.7.7-4kc-malta-di firewire-core-modules-6.7.7-4kc-malta-di input-modules-6.7.7-4kc-malta-di isofs-modules-6.7.7-4kc-malta-di jfs-modules-6.7.7-4kc-malta-di kernel-image-6.7.7-4kc-malta-di loop-modules-6.7.7-4kc-malta-di md-modules-6.7.7-4kc-malta-di minix-modules-6.7.7-4kc-malta-di mmc-core-modules-6.7.7-4kc-malta-di mmc-modules-6.7.7-4kc-malta-di mouse-modules-6.7.7-4kc-malta-di multipath-modules-6.7.7-4kc-malta-di nbd-modules-6.7.7-4kc-malta-di nfs-modules-6.7.7-4kc-malta-di nic-modules-6.7.7-4kc-malta-di nic-shared-modules-6.7.7-4kc-malta-di nic-usb-modules-6.7.7-4kc-malta-di nic-wireless-modules-6.7.7-4kc-malta-di pata-modules-6.7.7-4kc-malta-di ppp-modules-6.7.7-4kc-malta-di sata-modules-6.7.7-4kc-malta-di scsi-core-modules-6.7.7-4kc-malta-di scsi-modules-6.7.7-4kc-malta-di scsi-nic-modules-6.7.7-4kc-malta-di sound-modules-6.7.7-4kc-malta-di speakup-modules-6.7.7-4kc-malta-di squashfs-modules-6.7.7-4kc-malta-di udf-modules-6.7.7-4kc-malta-di usb-modules-6.7.7-4kc-malta-di usb-serial-modules-6.7.7-4kc-malta-di usb-storage-modules-6.7.7-4kc-malta-di xfs-modules-6.7.7-4kc-malta-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-4kc-malta-di -pata-modules-6.7.7-4kc-malta-di -pbtrfs-modules-6.7.7-4kc-malta-di -pcdrom-core-modules-6.7.7-4kc-malta-di -pcrc-modules-6.7.7-4kc-malta-di -pcrypto-dm-modules-6.7.7-4kc-malta-di -pcrypto-modules-6.7.7-4kc-malta-di -pevent-modules-6.7.7-4kc-malta-di -pext4-modules-6.7.7-4kc-malta-di -pf2fs-modules-6.7.7-4kc-malta-di -pfat-modules-6.7.7-4kc-malta-di -pfb-modules-6.7.7-4kc-malta-di -pfirewire-core-modules-6.7.7-4kc-malta-di -pinput-modules-6.7.7-4kc-malta-di -pisofs-modules-6.7.7-4kc-malta-di -pjfs-modules-6.7.7-4kc-malta-di -pkernel-image-6.7.7-4kc-malta-di -ploop-modules-6.7.7-4kc-malta-di -pmd-modules-6.7.7-4kc-malta-di -pminix-modules-6.7.7-4kc-malta-di -pmmc-core-modules-6.7.7-4kc-malta-di -pmmc-modules-6.7.7-4kc-malta-di -pmouse-modules-6.7.7-4kc-malta-di -pmultipath-modules-6.7.7-4kc-malta-di -pnbd-modules-6.7.7-4kc-malta-di -pnfs-modules-6.7.7-4kc-malta-di -pnic-modules-6.7.7-4kc-malta-di -pnic-shared-modules-6.7.7-4kc-malta-di -pnic-usb-modules-6.7.7-4kc-malta-di -pnic-wireless-modules-6.7.7-4kc-malta-di -ppata-modules-6.7.7-4kc-malta-di -pppp-modules-6.7.7-4kc-malta-di -psata-modules-6.7.7-4kc-malta-di -pscsi-core-modules-6.7.7-4kc-malta-di -pscsi-modules-6.7.7-4kc-malta-di -pscsi-nic-modules-6.7.7-4kc-malta-di -psound-modules-6.7.7-4kc-malta-di -pspeakup-modules-6.7.7-4kc-malta-di -psquashfs-modules-6.7.7-4kc-malta-di -pudf-modules-6.7.7-4kc-malta-di -pusb-modules-6.7.7-4kc-malta-di -pusb-serial-modules-6.7.7-4kc-malta-di -pusb-storage-modules-6.7.7-4kc-malta-di -pxfs-modules-6.7.7-4kc-malta-di' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-4kc-malta-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mipsel_none_4kc-malta_meta: - $(call if_package, linux-image-4kc-malta, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-4kc-malta' DH_OPTIONS='-plinux-image-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-4kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-4kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-4kc-malta, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-4kc-malta' DH_OPTIONS='-plinux-headers-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-4kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-headers-4kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-4kc-malta-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-4kc-malta-dbg' DH_OPTIONS='-plinux-image-4kc-malta-dbg' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-4kc-malta-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-4kc-malta-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-4kc-malta, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-4kc-malta' DH_OPTIONS='-plinux-image-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-4kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-4kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-4kc-malta, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-4kc-malta' DH_OPTIONS='-plinux-headers-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-4kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-headers-4kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-4kc-malta-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-4kc-malta-dbg' DH_OPTIONS='-plinux-image-4kc-malta-dbg' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-4kc-malta-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-4kc-malta-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mipsel_none_loongson-3:build-arch_mipsel_none_loongson-3_headers build-arch_mipsel_none_loongson-3_image build-arch_mipsel_none_loongson-3_image-dbg build-arch_mipsel_none_loongson-3_installer build-arch_mipsel_none_loongson-3_meta build-arch_mipsel_none_loongson-3_headers: - $(call if_package, linux-headers-6.6.15-loongson-3, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-loongson-3' DH_OPTIONS='-plinux-headers-6.6.15-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-headers-6.6.15-loongson-3' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-loongson-3, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-loongson-3' DH_OPTIONS='-plinux-headers-6.7.7-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-headers-6.7.7-loongson-3' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mipsel_none_loongson-3_image: - $(call if_package, linux-image-6.6.15-loongson-3, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-loongson-3' DH_OPTIONS='-plinux-image-6.6.15-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-6.6.15-loongson-3' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-loongson-3, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-loongson-3' DH_OPTIONS='-plinux-image-6.7.7-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-6.7.7-loongson-3' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mipsel_none_loongson-3_image-dbg: - $(call if_package, linux-image-6.6.15-loongson-3-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-loongson-3-dbg' DH_OPTIONS='-plinux-image-6.6.15-loongson-3-dbg' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-6.6.15-loongson-3-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-loongson-3-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-loongson-3-dbg' DH_OPTIONS='-plinux-image-6.7.7-loongson-3-dbg' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-6.7.7-loongson-3-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mipsel_none_loongson-3_installer: - $(call if_package, affs-modules-6.6.15-loongson-3-di ata-modules-6.6.15-loongson-3-di btrfs-modules-6.6.15-loongson-3-di cdrom-core-modules-6.6.15-loongson-3-di crc-modules-6.6.15-loongson-3-di crypto-dm-modules-6.6.15-loongson-3-di crypto-modules-6.6.15-loongson-3-di event-modules-6.6.15-loongson-3-di ext4-modules-6.6.15-loongson-3-di f2fs-modules-6.6.15-loongson-3-di fat-modules-6.6.15-loongson-3-di fb-modules-6.6.15-loongson-3-di firewire-core-modules-6.6.15-loongson-3-di input-modules-6.6.15-loongson-3-di isofs-modules-6.6.15-loongson-3-di jfs-modules-6.6.15-loongson-3-di kernel-image-6.6.15-loongson-3-di loop-modules-6.6.15-loongson-3-di md-modules-6.6.15-loongson-3-di minix-modules-6.6.15-loongson-3-di mmc-core-modules-6.6.15-loongson-3-di mmc-modules-6.6.15-loongson-3-di mouse-modules-6.6.15-loongson-3-di multipath-modules-6.6.15-loongson-3-di nbd-modules-6.6.15-loongson-3-di nfs-modules-6.6.15-loongson-3-di nic-modules-6.6.15-loongson-3-di nic-shared-modules-6.6.15-loongson-3-di nic-usb-modules-6.6.15-loongson-3-di nic-wireless-modules-6.6.15-loongson-3-di pata-modules-6.6.15-loongson-3-di ppp-modules-6.6.15-loongson-3-di sata-modules-6.6.15-loongson-3-di scsi-core-modules-6.6.15-loongson-3-di scsi-modules-6.6.15-loongson-3-di scsi-nic-modules-6.6.15-loongson-3-di sound-modules-6.6.15-loongson-3-di speakup-modules-6.6.15-loongson-3-di squashfs-modules-6.6.15-loongson-3-di udf-modules-6.6.15-loongson-3-di usb-modules-6.6.15-loongson-3-di usb-serial-modules-6.6.15-loongson-3-di usb-storage-modules-6.6.15-loongson-3-di xfs-modules-6.6.15-loongson-3-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-loongson-3-di -pata-modules-6.6.15-loongson-3-di -pbtrfs-modules-6.6.15-loongson-3-di -pcdrom-core-modules-6.6.15-loongson-3-di -pcrc-modules-6.6.15-loongson-3-di -pcrypto-dm-modules-6.6.15-loongson-3-di -pcrypto-modules-6.6.15-loongson-3-di -pevent-modules-6.6.15-loongson-3-di -pext4-modules-6.6.15-loongson-3-di -pf2fs-modules-6.6.15-loongson-3-di -pfat-modules-6.6.15-loongson-3-di -pfb-modules-6.6.15-loongson-3-di -pfirewire-core-modules-6.6.15-loongson-3-di -pinput-modules-6.6.15-loongson-3-di -pisofs-modules-6.6.15-loongson-3-di -pjfs-modules-6.6.15-loongson-3-di -pkernel-image-6.6.15-loongson-3-di -ploop-modules-6.6.15-loongson-3-di -pmd-modules-6.6.15-loongson-3-di -pminix-modules-6.6.15-loongson-3-di -pmmc-core-modules-6.6.15-loongson-3-di -pmmc-modules-6.6.15-loongson-3-di -pmouse-modules-6.6.15-loongson-3-di -pmultipath-modules-6.6.15-loongson-3-di -pnbd-modules-6.6.15-loongson-3-di -pnfs-modules-6.6.15-loongson-3-di -pnic-modules-6.6.15-loongson-3-di -pnic-shared-modules-6.6.15-loongson-3-di -pnic-usb-modules-6.6.15-loongson-3-di -pnic-wireless-modules-6.6.15-loongson-3-di -ppata-modules-6.6.15-loongson-3-di -pppp-modules-6.6.15-loongson-3-di -psata-modules-6.6.15-loongson-3-di -pscsi-core-modules-6.6.15-loongson-3-di -pscsi-modules-6.6.15-loongson-3-di -pscsi-nic-modules-6.6.15-loongson-3-di -psound-modules-6.6.15-loongson-3-di -pspeakup-modules-6.6.15-loongson-3-di -psquashfs-modules-6.6.15-loongson-3-di -pudf-modules-6.6.15-loongson-3-di -pusb-modules-6.6.15-loongson-3-di -pusb-serial-modules-6.6.15-loongson-3-di -pusb-storage-modules-6.6.15-loongson-3-di -pxfs-modules-6.6.15-loongson-3-di' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-loongson-3-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-loongson-3-di ata-modules-6.7.7-loongson-3-di btrfs-modules-6.7.7-loongson-3-di cdrom-core-modules-6.7.7-loongson-3-di crc-modules-6.7.7-loongson-3-di crypto-dm-modules-6.7.7-loongson-3-di crypto-modules-6.7.7-loongson-3-di event-modules-6.7.7-loongson-3-di ext4-modules-6.7.7-loongson-3-di f2fs-modules-6.7.7-loongson-3-di fat-modules-6.7.7-loongson-3-di fb-modules-6.7.7-loongson-3-di firewire-core-modules-6.7.7-loongson-3-di input-modules-6.7.7-loongson-3-di isofs-modules-6.7.7-loongson-3-di jfs-modules-6.7.7-loongson-3-di kernel-image-6.7.7-loongson-3-di loop-modules-6.7.7-loongson-3-di md-modules-6.7.7-loongson-3-di minix-modules-6.7.7-loongson-3-di mmc-core-modules-6.7.7-loongson-3-di mmc-modules-6.7.7-loongson-3-di mouse-modules-6.7.7-loongson-3-di multipath-modules-6.7.7-loongson-3-di nbd-modules-6.7.7-loongson-3-di nfs-modules-6.7.7-loongson-3-di nic-modules-6.7.7-loongson-3-di nic-shared-modules-6.7.7-loongson-3-di nic-usb-modules-6.7.7-loongson-3-di nic-wireless-modules-6.7.7-loongson-3-di pata-modules-6.7.7-loongson-3-di ppp-modules-6.7.7-loongson-3-di sata-modules-6.7.7-loongson-3-di scsi-core-modules-6.7.7-loongson-3-di scsi-modules-6.7.7-loongson-3-di scsi-nic-modules-6.7.7-loongson-3-di sound-modules-6.7.7-loongson-3-di speakup-modules-6.7.7-loongson-3-di squashfs-modules-6.7.7-loongson-3-di udf-modules-6.7.7-loongson-3-di usb-modules-6.7.7-loongson-3-di usb-serial-modules-6.7.7-loongson-3-di usb-storage-modules-6.7.7-loongson-3-di xfs-modules-6.7.7-loongson-3-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-loongson-3-di -pata-modules-6.7.7-loongson-3-di -pbtrfs-modules-6.7.7-loongson-3-di -pcdrom-core-modules-6.7.7-loongson-3-di -pcrc-modules-6.7.7-loongson-3-di -pcrypto-dm-modules-6.7.7-loongson-3-di -pcrypto-modules-6.7.7-loongson-3-di -pevent-modules-6.7.7-loongson-3-di -pext4-modules-6.7.7-loongson-3-di -pf2fs-modules-6.7.7-loongson-3-di -pfat-modules-6.7.7-loongson-3-di -pfb-modules-6.7.7-loongson-3-di -pfirewire-core-modules-6.7.7-loongson-3-di -pinput-modules-6.7.7-loongson-3-di -pisofs-modules-6.7.7-loongson-3-di -pjfs-modules-6.7.7-loongson-3-di -pkernel-image-6.7.7-loongson-3-di -ploop-modules-6.7.7-loongson-3-di -pmd-modules-6.7.7-loongson-3-di -pminix-modules-6.7.7-loongson-3-di -pmmc-core-modules-6.7.7-loongson-3-di -pmmc-modules-6.7.7-loongson-3-di -pmouse-modules-6.7.7-loongson-3-di -pmultipath-modules-6.7.7-loongson-3-di -pnbd-modules-6.7.7-loongson-3-di -pnfs-modules-6.7.7-loongson-3-di -pnic-modules-6.7.7-loongson-3-di -pnic-shared-modules-6.7.7-loongson-3-di -pnic-usb-modules-6.7.7-loongson-3-di -pnic-wireless-modules-6.7.7-loongson-3-di -ppata-modules-6.7.7-loongson-3-di -pppp-modules-6.7.7-loongson-3-di -psata-modules-6.7.7-loongson-3-di -pscsi-core-modules-6.7.7-loongson-3-di -pscsi-modules-6.7.7-loongson-3-di -pscsi-nic-modules-6.7.7-loongson-3-di -psound-modules-6.7.7-loongson-3-di -pspeakup-modules-6.7.7-loongson-3-di -psquashfs-modules-6.7.7-loongson-3-di -pudf-modules-6.7.7-loongson-3-di -pusb-modules-6.7.7-loongson-3-di -pusb-serial-modules-6.7.7-loongson-3-di -pusb-storage-modules-6.7.7-loongson-3-di -pxfs-modules-6.7.7-loongson-3-di' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-loongson-3-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mipsel_none_loongson-3_meta: - $(call if_package, linux-image-loongson-3, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-loongson-3' DH_OPTIONS='-plinux-image-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-loongson-3' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-loongson-3' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-loongson-3, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-loongson-3' DH_OPTIONS='-plinux-headers-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-loongson-3' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-headers-loongson-3' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-loongson-3-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-loongson-3-dbg' DH_OPTIONS='-plinux-image-loongson-3-dbg' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-loongson-3-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-loongson-3-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-loongson-3, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-loongson-3' DH_OPTIONS='-plinux-image-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-loongson-3' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-loongson-3' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-loongson-3, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-loongson-3' DH_OPTIONS='-plinux-headers-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-loongson-3' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-headers-loongson-3' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-loongson-3-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-loongson-3-dbg' DH_OPTIONS='-plinux-image-loongson-3-dbg' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-loongson-3-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-loongson-3-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mipsel_none_mips32r2el:build-arch_mipsel_none_mips32r2el_headers build-arch_mipsel_none_mips32r2el_image build-arch_mipsel_none_mips32r2el_image-dbg build-arch_mipsel_none_mips32r2el_installer build-arch_mipsel_none_mips32r2el_meta build-arch_mipsel_none_mips32r2el_headers: - $(call if_package, linux-headers-6.6.15-mips32r2el, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-mips32r2el' DH_OPTIONS='-plinux-headers-6.6.15-mips32r2el' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' PACKAGE_NAME='linux-headers-6.6.15-mips32r2el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-mips32r2el, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-mips32r2el' DH_OPTIONS='-plinux-headers-6.7.7-mips32r2el' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' PACKAGE_NAME='linux-headers-6.7.7-mips32r2el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mipsel_none_mips32r2el_image: - $(call if_package, linux-image-6.6.15-mips32r2el, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-mips32r2el' DH_OPTIONS='-plinux-image-6.6.15-mips32r2el' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' PACKAGE_NAME='linux-image-6.6.15-mips32r2el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-mips32r2el, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-mips32r2el' DH_OPTIONS='-plinux-image-6.7.7-mips32r2el' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' PACKAGE_NAME='linux-image-6.7.7-mips32r2el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mipsel_none_mips32r2el_image-dbg: - $(call if_package, linux-image-6.6.15-mips32r2el-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-mips32r2el-dbg' DH_OPTIONS='-plinux-image-6.6.15-mips32r2el-dbg' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' PACKAGE_NAME='linux-image-6.6.15-mips32r2el-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-mips32r2el-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-mips32r2el-dbg' DH_OPTIONS='-plinux-image-6.7.7-mips32r2el-dbg' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' PACKAGE_NAME='linux-image-6.7.7-mips32r2el-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mipsel_none_mips32r2el_installer: - $(call if_package, affs-modules-6.6.15-mips32r2el-di ata-modules-6.6.15-mips32r2el-di btrfs-modules-6.6.15-mips32r2el-di cdrom-core-modules-6.6.15-mips32r2el-di crc-modules-6.6.15-mips32r2el-di crypto-dm-modules-6.6.15-mips32r2el-di crypto-modules-6.6.15-mips32r2el-di event-modules-6.6.15-mips32r2el-di ext4-modules-6.6.15-mips32r2el-di f2fs-modules-6.6.15-mips32r2el-di fat-modules-6.6.15-mips32r2el-di fb-modules-6.6.15-mips32r2el-di firewire-core-modules-6.6.15-mips32r2el-di input-modules-6.6.15-mips32r2el-di isofs-modules-6.6.15-mips32r2el-di jfs-modules-6.6.15-mips32r2el-di kernel-image-6.6.15-mips32r2el-di loop-modules-6.6.15-mips32r2el-di md-modules-6.6.15-mips32r2el-di minix-modules-6.6.15-mips32r2el-di mmc-core-modules-6.6.15-mips32r2el-di mmc-modules-6.6.15-mips32r2el-di mouse-modules-6.6.15-mips32r2el-di multipath-modules-6.6.15-mips32r2el-di nbd-modules-6.6.15-mips32r2el-di nfs-modules-6.6.15-mips32r2el-di nic-modules-6.6.15-mips32r2el-di nic-shared-modules-6.6.15-mips32r2el-di nic-usb-modules-6.6.15-mips32r2el-di nic-wireless-modules-6.6.15-mips32r2el-di pata-modules-6.6.15-mips32r2el-di ppp-modules-6.6.15-mips32r2el-di sata-modules-6.6.15-mips32r2el-di scsi-core-modules-6.6.15-mips32r2el-di scsi-modules-6.6.15-mips32r2el-di scsi-nic-modules-6.6.15-mips32r2el-di sound-modules-6.6.15-mips32r2el-di speakup-modules-6.6.15-mips32r2el-di squashfs-modules-6.6.15-mips32r2el-di udf-modules-6.6.15-mips32r2el-di usb-modules-6.6.15-mips32r2el-di usb-serial-modules-6.6.15-mips32r2el-di usb-storage-modules-6.6.15-mips32r2el-di xfs-modules-6.6.15-mips32r2el-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-mips32r2el-di -pata-modules-6.6.15-mips32r2el-di -pbtrfs-modules-6.6.15-mips32r2el-di -pcdrom-core-modules-6.6.15-mips32r2el-di -pcrc-modules-6.6.15-mips32r2el-di -pcrypto-dm-modules-6.6.15-mips32r2el-di -pcrypto-modules-6.6.15-mips32r2el-di -pevent-modules-6.6.15-mips32r2el-di -pext4-modules-6.6.15-mips32r2el-di -pf2fs-modules-6.6.15-mips32r2el-di -pfat-modules-6.6.15-mips32r2el-di -pfb-modules-6.6.15-mips32r2el-di -pfirewire-core-modules-6.6.15-mips32r2el-di -pinput-modules-6.6.15-mips32r2el-di -pisofs-modules-6.6.15-mips32r2el-di -pjfs-modules-6.6.15-mips32r2el-di -pkernel-image-6.6.15-mips32r2el-di -ploop-modules-6.6.15-mips32r2el-di -pmd-modules-6.6.15-mips32r2el-di -pminix-modules-6.6.15-mips32r2el-di -pmmc-core-modules-6.6.15-mips32r2el-di -pmmc-modules-6.6.15-mips32r2el-di -pmouse-modules-6.6.15-mips32r2el-di -pmultipath-modules-6.6.15-mips32r2el-di -pnbd-modules-6.6.15-mips32r2el-di -pnfs-modules-6.6.15-mips32r2el-di -pnic-modules-6.6.15-mips32r2el-di -pnic-shared-modules-6.6.15-mips32r2el-di -pnic-usb-modules-6.6.15-mips32r2el-di -pnic-wireless-modules-6.6.15-mips32r2el-di -ppata-modules-6.6.15-mips32r2el-di -pppp-modules-6.6.15-mips32r2el-di -psata-modules-6.6.15-mips32r2el-di -pscsi-core-modules-6.6.15-mips32r2el-di -pscsi-modules-6.6.15-mips32r2el-di -pscsi-nic-modules-6.6.15-mips32r2el-di -psound-modules-6.6.15-mips32r2el-di -pspeakup-modules-6.6.15-mips32r2el-di -psquashfs-modules-6.6.15-mips32r2el-di -pudf-modules-6.6.15-mips32r2el-di -pusb-modules-6.6.15-mips32r2el-di -pusb-serial-modules-6.6.15-mips32r2el-di -pusb-storage-modules-6.6.15-mips32r2el-di -pxfs-modules-6.6.15-mips32r2el-di' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-mips32r2el-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-mips32r2el-di ata-modules-6.7.7-mips32r2el-di btrfs-modules-6.7.7-mips32r2el-di cdrom-core-modules-6.7.7-mips32r2el-di crc-modules-6.7.7-mips32r2el-di crypto-dm-modules-6.7.7-mips32r2el-di crypto-modules-6.7.7-mips32r2el-di event-modules-6.7.7-mips32r2el-di ext4-modules-6.7.7-mips32r2el-di f2fs-modules-6.7.7-mips32r2el-di fat-modules-6.7.7-mips32r2el-di fb-modules-6.7.7-mips32r2el-di firewire-core-modules-6.7.7-mips32r2el-di input-modules-6.7.7-mips32r2el-di isofs-modules-6.7.7-mips32r2el-di jfs-modules-6.7.7-mips32r2el-di kernel-image-6.7.7-mips32r2el-di loop-modules-6.7.7-mips32r2el-di md-modules-6.7.7-mips32r2el-di minix-modules-6.7.7-mips32r2el-di mmc-core-modules-6.7.7-mips32r2el-di mmc-modules-6.7.7-mips32r2el-di mouse-modules-6.7.7-mips32r2el-di multipath-modules-6.7.7-mips32r2el-di nbd-modules-6.7.7-mips32r2el-di nfs-modules-6.7.7-mips32r2el-di nic-modules-6.7.7-mips32r2el-di nic-shared-modules-6.7.7-mips32r2el-di nic-usb-modules-6.7.7-mips32r2el-di nic-wireless-modules-6.7.7-mips32r2el-di pata-modules-6.7.7-mips32r2el-di ppp-modules-6.7.7-mips32r2el-di sata-modules-6.7.7-mips32r2el-di scsi-core-modules-6.7.7-mips32r2el-di scsi-modules-6.7.7-mips32r2el-di scsi-nic-modules-6.7.7-mips32r2el-di sound-modules-6.7.7-mips32r2el-di speakup-modules-6.7.7-mips32r2el-di squashfs-modules-6.7.7-mips32r2el-di udf-modules-6.7.7-mips32r2el-di usb-modules-6.7.7-mips32r2el-di usb-serial-modules-6.7.7-mips32r2el-di usb-storage-modules-6.7.7-mips32r2el-di xfs-modules-6.7.7-mips32r2el-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-mips32r2el-di -pata-modules-6.7.7-mips32r2el-di -pbtrfs-modules-6.7.7-mips32r2el-di -pcdrom-core-modules-6.7.7-mips32r2el-di -pcrc-modules-6.7.7-mips32r2el-di -pcrypto-dm-modules-6.7.7-mips32r2el-di -pcrypto-modules-6.7.7-mips32r2el-di -pevent-modules-6.7.7-mips32r2el-di -pext4-modules-6.7.7-mips32r2el-di -pf2fs-modules-6.7.7-mips32r2el-di -pfat-modules-6.7.7-mips32r2el-di -pfb-modules-6.7.7-mips32r2el-di -pfirewire-core-modules-6.7.7-mips32r2el-di -pinput-modules-6.7.7-mips32r2el-di -pisofs-modules-6.7.7-mips32r2el-di -pjfs-modules-6.7.7-mips32r2el-di -pkernel-image-6.7.7-mips32r2el-di -ploop-modules-6.7.7-mips32r2el-di -pmd-modules-6.7.7-mips32r2el-di -pminix-modules-6.7.7-mips32r2el-di -pmmc-core-modules-6.7.7-mips32r2el-di -pmmc-modules-6.7.7-mips32r2el-di -pmouse-modules-6.7.7-mips32r2el-di -pmultipath-modules-6.7.7-mips32r2el-di -pnbd-modules-6.7.7-mips32r2el-di -pnfs-modules-6.7.7-mips32r2el-di -pnic-modules-6.7.7-mips32r2el-di -pnic-shared-modules-6.7.7-mips32r2el-di -pnic-usb-modules-6.7.7-mips32r2el-di -pnic-wireless-modules-6.7.7-mips32r2el-di -ppata-modules-6.7.7-mips32r2el-di -pppp-modules-6.7.7-mips32r2el-di -psata-modules-6.7.7-mips32r2el-di -pscsi-core-modules-6.7.7-mips32r2el-di -pscsi-modules-6.7.7-mips32r2el-di -pscsi-nic-modules-6.7.7-mips32r2el-di -psound-modules-6.7.7-mips32r2el-di -pspeakup-modules-6.7.7-mips32r2el-di -psquashfs-modules-6.7.7-mips32r2el-di -pudf-modules-6.7.7-mips32r2el-di -pusb-modules-6.7.7-mips32r2el-di -pusb-serial-modules-6.7.7-mips32r2el-di -pusb-storage-modules-6.7.7-mips32r2el-di -pxfs-modules-6.7.7-mips32r2el-di' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-mips32r2el-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mipsel_none_mips32r2el_meta: - $(call if_package, linux-image-mips32r2el, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips32r2el' DH_OPTIONS='-plinux-image-mips32r2el' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-mips32r2el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' PACKAGE_NAME='linux-image-mips32r2el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-mips32r2el, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-mips32r2el' DH_OPTIONS='-plinux-headers-mips32r2el' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-mips32r2el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' PACKAGE_NAME='linux-headers-mips32r2el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-mips32r2el-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips32r2el-dbg' DH_OPTIONS='-plinux-image-mips32r2el-dbg' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-mips32r2el-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' PACKAGE_NAME='linux-image-mips32r2el-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-mips32r2el, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips32r2el' DH_OPTIONS='-plinux-image-mips32r2el' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-mips32r2el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' PACKAGE_NAME='linux-image-mips32r2el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-mips32r2el, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-mips32r2el' DH_OPTIONS='-plinux-headers-mips32r2el' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-mips32r2el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' PACKAGE_NAME='linux-headers-mips32r2el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-mips32r2el-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips32r2el-dbg' DH_OPTIONS='-plinux-image-mips32r2el-dbg' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-mips32r2el-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' PACKAGE_NAME='linux-image-mips32r2el-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mipsel_none_octeon:build-arch_mipsel_none_octeon_headers build-arch_mipsel_none_octeon_image build-arch_mipsel_none_octeon_image-dbg build-arch_mipsel_none_octeon_installer build-arch_mipsel_none_octeon_meta build-arch_mipsel_none_octeon_headers: - $(call if_package, linux-headers-6.6.15-octeon, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-octeon' DH_OPTIONS='-plinux-headers-6.6.15-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-6.6.15-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-octeon, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-octeon' DH_OPTIONS='-plinux-headers-6.7.7-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-6.7.7-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mipsel_none_octeon_image: - $(call if_package, linux-image-6.6.15-octeon, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-octeon' DH_OPTIONS='-plinux-image-6.6.15-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.6.15-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-octeon, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-octeon' DH_OPTIONS='-plinux-image-6.7.7-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.7.7-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mipsel_none_octeon_image-dbg: - $(call if_package, linux-image-6.6.15-octeon-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-octeon-dbg' DH_OPTIONS='-plinux-image-6.6.15-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.6.15-octeon-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-octeon-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-octeon-dbg' DH_OPTIONS='-plinux-image-6.7.7-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.7.7-octeon-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mipsel_none_octeon_installer: - $(call if_package, affs-modules-6.6.15-octeon-di ata-modules-6.6.15-octeon-di btrfs-modules-6.6.15-octeon-di cdrom-core-modules-6.6.15-octeon-di crc-modules-6.6.15-octeon-di crypto-dm-modules-6.6.15-octeon-di crypto-modules-6.6.15-octeon-di event-modules-6.6.15-octeon-di ext4-modules-6.6.15-octeon-di f2fs-modules-6.6.15-octeon-di fat-modules-6.6.15-octeon-di fb-modules-6.6.15-octeon-di firewire-core-modules-6.6.15-octeon-di input-modules-6.6.15-octeon-di isofs-modules-6.6.15-octeon-di jfs-modules-6.6.15-octeon-di kernel-image-6.6.15-octeon-di loop-modules-6.6.15-octeon-di md-modules-6.6.15-octeon-di minix-modules-6.6.15-octeon-di mmc-core-modules-6.6.15-octeon-di mmc-modules-6.6.15-octeon-di mouse-modules-6.6.15-octeon-di multipath-modules-6.6.15-octeon-di nbd-modules-6.6.15-octeon-di nfs-modules-6.6.15-octeon-di nic-modules-6.6.15-octeon-di nic-shared-modules-6.6.15-octeon-di nic-usb-modules-6.6.15-octeon-di nic-wireless-modules-6.6.15-octeon-di pata-modules-6.6.15-octeon-di ppp-modules-6.6.15-octeon-di sata-modules-6.6.15-octeon-di scsi-core-modules-6.6.15-octeon-di scsi-modules-6.6.15-octeon-di scsi-nic-modules-6.6.15-octeon-di sound-modules-6.6.15-octeon-di speakup-modules-6.6.15-octeon-di squashfs-modules-6.6.15-octeon-di udf-modules-6.6.15-octeon-di usb-modules-6.6.15-octeon-di usb-serial-modules-6.6.15-octeon-di usb-storage-modules-6.6.15-octeon-di xfs-modules-6.6.15-octeon-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-octeon-di -pata-modules-6.6.15-octeon-di -pbtrfs-modules-6.6.15-octeon-di -pcdrom-core-modules-6.6.15-octeon-di -pcrc-modules-6.6.15-octeon-di -pcrypto-dm-modules-6.6.15-octeon-di -pcrypto-modules-6.6.15-octeon-di -pevent-modules-6.6.15-octeon-di -pext4-modules-6.6.15-octeon-di -pf2fs-modules-6.6.15-octeon-di -pfat-modules-6.6.15-octeon-di -pfb-modules-6.6.15-octeon-di -pfirewire-core-modules-6.6.15-octeon-di -pinput-modules-6.6.15-octeon-di -pisofs-modules-6.6.15-octeon-di -pjfs-modules-6.6.15-octeon-di -pkernel-image-6.6.15-octeon-di -ploop-modules-6.6.15-octeon-di -pmd-modules-6.6.15-octeon-di -pminix-modules-6.6.15-octeon-di -pmmc-core-modules-6.6.15-octeon-di -pmmc-modules-6.6.15-octeon-di -pmouse-modules-6.6.15-octeon-di -pmultipath-modules-6.6.15-octeon-di -pnbd-modules-6.6.15-octeon-di -pnfs-modules-6.6.15-octeon-di -pnic-modules-6.6.15-octeon-di -pnic-shared-modules-6.6.15-octeon-di -pnic-usb-modules-6.6.15-octeon-di -pnic-wireless-modules-6.6.15-octeon-di -ppata-modules-6.6.15-octeon-di -pppp-modules-6.6.15-octeon-di -psata-modules-6.6.15-octeon-di -pscsi-core-modules-6.6.15-octeon-di -pscsi-modules-6.6.15-octeon-di -pscsi-nic-modules-6.6.15-octeon-di -psound-modules-6.6.15-octeon-di -pspeakup-modules-6.6.15-octeon-di -psquashfs-modules-6.6.15-octeon-di -pudf-modules-6.6.15-octeon-di -pusb-modules-6.6.15-octeon-di -pusb-serial-modules-6.6.15-octeon-di -pusb-storage-modules-6.6.15-octeon-di -pxfs-modules-6.6.15-octeon-di' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-octeon-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-octeon-di ata-modules-6.7.7-octeon-di btrfs-modules-6.7.7-octeon-di cdrom-core-modules-6.7.7-octeon-di crc-modules-6.7.7-octeon-di crypto-dm-modules-6.7.7-octeon-di crypto-modules-6.7.7-octeon-di event-modules-6.7.7-octeon-di ext4-modules-6.7.7-octeon-di f2fs-modules-6.7.7-octeon-di fat-modules-6.7.7-octeon-di fb-modules-6.7.7-octeon-di firewire-core-modules-6.7.7-octeon-di input-modules-6.7.7-octeon-di isofs-modules-6.7.7-octeon-di jfs-modules-6.7.7-octeon-di kernel-image-6.7.7-octeon-di loop-modules-6.7.7-octeon-di md-modules-6.7.7-octeon-di minix-modules-6.7.7-octeon-di mmc-core-modules-6.7.7-octeon-di mmc-modules-6.7.7-octeon-di mouse-modules-6.7.7-octeon-di multipath-modules-6.7.7-octeon-di nbd-modules-6.7.7-octeon-di nfs-modules-6.7.7-octeon-di nic-modules-6.7.7-octeon-di nic-shared-modules-6.7.7-octeon-di nic-usb-modules-6.7.7-octeon-di nic-wireless-modules-6.7.7-octeon-di pata-modules-6.7.7-octeon-di ppp-modules-6.7.7-octeon-di sata-modules-6.7.7-octeon-di scsi-core-modules-6.7.7-octeon-di scsi-modules-6.7.7-octeon-di scsi-nic-modules-6.7.7-octeon-di sound-modules-6.7.7-octeon-di speakup-modules-6.7.7-octeon-di squashfs-modules-6.7.7-octeon-di udf-modules-6.7.7-octeon-di usb-modules-6.7.7-octeon-di usb-serial-modules-6.7.7-octeon-di usb-storage-modules-6.7.7-octeon-di xfs-modules-6.7.7-octeon-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-octeon-di -pata-modules-6.7.7-octeon-di -pbtrfs-modules-6.7.7-octeon-di -pcdrom-core-modules-6.7.7-octeon-di -pcrc-modules-6.7.7-octeon-di -pcrypto-dm-modules-6.7.7-octeon-di -pcrypto-modules-6.7.7-octeon-di -pevent-modules-6.7.7-octeon-di -pext4-modules-6.7.7-octeon-di -pf2fs-modules-6.7.7-octeon-di -pfat-modules-6.7.7-octeon-di -pfb-modules-6.7.7-octeon-di -pfirewire-core-modules-6.7.7-octeon-di -pinput-modules-6.7.7-octeon-di -pisofs-modules-6.7.7-octeon-di -pjfs-modules-6.7.7-octeon-di -pkernel-image-6.7.7-octeon-di -ploop-modules-6.7.7-octeon-di -pmd-modules-6.7.7-octeon-di -pminix-modules-6.7.7-octeon-di -pmmc-core-modules-6.7.7-octeon-di -pmmc-modules-6.7.7-octeon-di -pmouse-modules-6.7.7-octeon-di -pmultipath-modules-6.7.7-octeon-di -pnbd-modules-6.7.7-octeon-di -pnfs-modules-6.7.7-octeon-di -pnic-modules-6.7.7-octeon-di -pnic-shared-modules-6.7.7-octeon-di -pnic-usb-modules-6.7.7-octeon-di -pnic-wireless-modules-6.7.7-octeon-di -ppata-modules-6.7.7-octeon-di -pppp-modules-6.7.7-octeon-di -psata-modules-6.7.7-octeon-di -pscsi-core-modules-6.7.7-octeon-di -pscsi-modules-6.7.7-octeon-di -pscsi-nic-modules-6.7.7-octeon-di -psound-modules-6.7.7-octeon-di -pspeakup-modules-6.7.7-octeon-di -psquashfs-modules-6.7.7-octeon-di -pudf-modules-6.7.7-octeon-di -pusb-modules-6.7.7-octeon-di -pusb-serial-modules-6.7.7-octeon-di -pusb-storage-modules-6.7.7-octeon-di -pxfs-modules-6.7.7-octeon-di' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-octeon-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mipsel_none_octeon_meta: - $(call if_package, linux-image-octeon, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon' DH_OPTIONS='-plinux-image-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-octeon, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-octeon' DH_OPTIONS='-plinux-headers-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-octeon-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon-dbg' DH_OPTIONS='-plinux-image-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-octeon-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-octeon, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon' DH_OPTIONS='-plinux-image-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-octeon, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-octeon' DH_OPTIONS='-plinux-headers-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-octeon-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon-dbg' DH_OPTIONS='-plinux-image-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-octeon-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mipsel_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.6.15' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='mips' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.7.7' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='mips' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mipsel_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.6.15' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='mips' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.7.7' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='mips' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_mipsel_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.6.15' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='mips' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.7.7' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='mips' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_powerpc:build-arch_powerpc_bpftool build-arch_powerpc_config build-arch_powerpc_cpupower build-arch_powerpc_hyperv-daemons build-arch_powerpc_kbuild build-arch_powerpc_none build-arch_powerpc_perf build-arch_powerpc_rtla build-arch_powerpc_usbip build-arch_powerpc_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.6.15' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='powerpc' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.7.7' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='powerpc' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_powerpc_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real build_config ABINAME='6.6.15' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real build_config ABINAME='6.7.7' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_powerpc_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.6.15' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='powerpc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.7.7' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='powerpc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_powerpc_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.6.15' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='powerpc' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.7.7' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='powerpc' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_powerpc_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.6.15' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.7.7' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_powerpc_none:build-arch_powerpc_none_powerpc build-arch_powerpc_none_powerpc-smp build-arch_powerpc_none_powerpc64 build-arch_powerpc_none_powerpc:build-arch_powerpc_none_powerpc_headers build-arch_powerpc_none_powerpc_image build-arch_powerpc_none_powerpc_image-dbg build-arch_powerpc_none_powerpc_installer build-arch_powerpc_none_powerpc_meta build-arch_powerpc_none_powerpc-smp:build-arch_powerpc_none_powerpc-smp_headers build-arch_powerpc_none_powerpc-smp_image build-arch_powerpc_none_powerpc-smp_image-dbg build-arch_powerpc_none_powerpc-smp_meta build-arch_powerpc_none_powerpc-smp_headers: - $(call if_package, linux-headers-6.6.15-powerpc-smp, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-powerpc-smp' DH_OPTIONS='-plinux-headers-6.6.15-powerpc-smp' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc debian/config/powerpc/config.powerpc-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' PACKAGE_NAME='linux-headers-6.6.15-powerpc-smp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-powerpc-smp, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-powerpc-smp' DH_OPTIONS='-plinux-headers-6.7.7-powerpc-smp' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc debian/config/powerpc/config.powerpc-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' PACKAGE_NAME='linux-headers-6.7.7-powerpc-smp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_powerpc_none_powerpc-smp_image: - $(call if_package, linux-image-6.6.15-powerpc-smp, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-powerpc-smp' DH_OPTIONS='-plinux-image-6.6.15-powerpc-smp' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc debian/config/powerpc/config.powerpc-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' PACKAGE_NAME='linux-image-6.6.15-powerpc-smp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-powerpc-smp, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-powerpc-smp' DH_OPTIONS='-plinux-image-6.7.7-powerpc-smp' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc debian/config/powerpc/config.powerpc-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' PACKAGE_NAME='linux-image-6.7.7-powerpc-smp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_powerpc_none_powerpc-smp_image-dbg: - $(call if_package, linux-image-6.6.15-powerpc-smp-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-powerpc-smp-dbg' DH_OPTIONS='-plinux-image-6.6.15-powerpc-smp-dbg' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc debian/config/powerpc/config.powerpc-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' PACKAGE_NAME='linux-image-6.6.15-powerpc-smp-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-powerpc-smp-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-powerpc-smp-dbg' DH_OPTIONS='-plinux-image-6.7.7-powerpc-smp-dbg' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc debian/config/powerpc/config.powerpc-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' PACKAGE_NAME='linux-image-6.7.7-powerpc-smp-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_powerpc_none_powerpc-smp_meta: - $(call if_package, linux-image-powerpc-smp, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc-smp' DH_OPTIONS='-plinux-image-powerpc-smp' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-powerpc-smp' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc debian/config/powerpc/config.powerpc-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' PACKAGE_NAME='linux-image-powerpc-smp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-powerpc-smp, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-powerpc-smp' DH_OPTIONS='-plinux-headers-powerpc-smp' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-powerpc-smp' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc debian/config/powerpc/config.powerpc-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' PACKAGE_NAME='linux-headers-powerpc-smp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-powerpc-smp-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc-smp-dbg' DH_OPTIONS='-plinux-image-powerpc-smp-dbg' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-powerpc-smp-dbg' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc debian/config/powerpc/config.powerpc-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' PACKAGE_NAME='linux-image-powerpc-smp-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-powerpc-smp, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc-smp' DH_OPTIONS='-plinux-image-powerpc-smp' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-powerpc-smp' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc debian/config/powerpc/config.powerpc-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' PACKAGE_NAME='linux-image-powerpc-smp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-powerpc-smp, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-powerpc-smp' DH_OPTIONS='-plinux-headers-powerpc-smp' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-powerpc-smp' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc debian/config/powerpc/config.powerpc-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' PACKAGE_NAME='linux-headers-powerpc-smp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-powerpc-smp-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc-smp-dbg' DH_OPTIONS='-plinux-image-powerpc-smp-dbg' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-powerpc-smp-dbg' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc debian/config/powerpc/config.powerpc-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' PACKAGE_NAME='linux-image-powerpc-smp-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_powerpc_none_powerpc64:build-arch_powerpc_none_powerpc64_headers build-arch_powerpc_none_powerpc64_image build-arch_powerpc_none_powerpc64_image-dbg build-arch_powerpc_none_powerpc64_installer build-arch_powerpc_none_powerpc64_meta build-arch_powerpc_none_powerpc64_headers: - $(call if_package, linux-headers-6.6.15-powerpc64, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-powerpc64' DH_OPTIONS='-plinux-headers-6.6.15-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-headers-6.6.15-powerpc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-powerpc64, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-powerpc64' DH_OPTIONS='-plinux-headers-6.7.7-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-headers-6.7.7-powerpc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_powerpc_none_powerpc64_image: - $(call if_package, linux-image-6.6.15-powerpc64, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-powerpc64' DH_OPTIONS='-plinux-image-6.6.15-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-6.6.15-powerpc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-powerpc64, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-powerpc64' DH_OPTIONS='-plinux-image-6.7.7-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-6.7.7-powerpc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_powerpc_none_powerpc64_image-dbg: - $(call if_package, linux-image-6.6.15-powerpc64-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-powerpc64-dbg' DH_OPTIONS='-plinux-image-6.6.15-powerpc64-dbg' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-6.6.15-powerpc64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-powerpc64-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-powerpc64-dbg' DH_OPTIONS='-plinux-image-6.7.7-powerpc64-dbg' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-6.7.7-powerpc64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_powerpc_none_powerpc64_installer: - $(call if_package, affs-modules-6.6.15-powerpc64-di ata-modules-6.6.15-powerpc64-di btrfs-modules-6.6.15-powerpc64-di cdrom-core-modules-6.6.15-powerpc64-di crc-modules-6.6.15-powerpc64-di crypto-dm-modules-6.6.15-powerpc64-di crypto-modules-6.6.15-powerpc64-di event-modules-6.6.15-powerpc64-di ext4-modules-6.6.15-powerpc64-di f2fs-modules-6.6.15-powerpc64-di fancontrol-modules-6.6.15-powerpc64-di fat-modules-6.6.15-powerpc64-di fb-modules-6.6.15-powerpc64-di firewire-core-modules-6.6.15-powerpc64-di hfs-modules-6.6.15-powerpc64-di hypervisor-modules-6.6.15-powerpc64-di i2c-modules-6.6.15-powerpc64-di input-modules-6.6.15-powerpc64-di isofs-modules-6.6.15-powerpc64-di jfs-modules-6.6.15-powerpc64-di kernel-image-6.6.15-powerpc64-di loop-modules-6.6.15-powerpc64-di md-modules-6.6.15-powerpc64-di mmc-core-modules-6.6.15-powerpc64-di mouse-modules-6.6.15-powerpc64-di mtd-core-modules-6.6.15-powerpc64-di multipath-modules-6.6.15-powerpc64-di nbd-modules-6.6.15-powerpc64-di nic-modules-6.6.15-powerpc64-di nic-pcmcia-modules-6.6.15-powerpc64-di nic-shared-modules-6.6.15-powerpc64-di nic-usb-modules-6.6.15-powerpc64-di nic-wireless-modules-6.6.15-powerpc64-di pata-modules-6.6.15-powerpc64-di pcmcia-modules-6.6.15-powerpc64-di pcmcia-storage-modules-6.6.15-powerpc64-di ppp-modules-6.6.15-powerpc64-di sata-modules-6.6.15-powerpc64-di scsi-core-modules-6.6.15-powerpc64-di scsi-modules-6.6.15-powerpc64-di scsi-nic-modules-6.6.15-powerpc64-di serial-modules-6.6.15-powerpc64-di squashfs-modules-6.6.15-powerpc64-di udf-modules-6.6.15-powerpc64-di uinput-modules-6.6.15-powerpc64-di usb-modules-6.6.15-powerpc64-di usb-serial-modules-6.6.15-powerpc64-di usb-storage-modules-6.6.15-powerpc64-di xfs-modules-6.6.15-powerpc64-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-powerpc64-di -pata-modules-6.6.15-powerpc64-di -pbtrfs-modules-6.6.15-powerpc64-di -pcdrom-core-modules-6.6.15-powerpc64-di -pcrc-modules-6.6.15-powerpc64-di -pcrypto-dm-modules-6.6.15-powerpc64-di -pcrypto-modules-6.6.15-powerpc64-di -pevent-modules-6.6.15-powerpc64-di -pext4-modules-6.6.15-powerpc64-di -pf2fs-modules-6.6.15-powerpc64-di -pfancontrol-modules-6.6.15-powerpc64-di -pfat-modules-6.6.15-powerpc64-di -pfb-modules-6.6.15-powerpc64-di -pfirewire-core-modules-6.6.15-powerpc64-di -phfs-modules-6.6.15-powerpc64-di -phypervisor-modules-6.6.15-powerpc64-di -pi2c-modules-6.6.15-powerpc64-di -pinput-modules-6.6.15-powerpc64-di -pisofs-modules-6.6.15-powerpc64-di -pjfs-modules-6.6.15-powerpc64-di -pkernel-image-6.6.15-powerpc64-di -ploop-modules-6.6.15-powerpc64-di -pmd-modules-6.6.15-powerpc64-di -pmmc-core-modules-6.6.15-powerpc64-di -pmouse-modules-6.6.15-powerpc64-di -pmtd-core-modules-6.6.15-powerpc64-di -pmultipath-modules-6.6.15-powerpc64-di -pnbd-modules-6.6.15-powerpc64-di -pnic-modules-6.6.15-powerpc64-di -pnic-pcmcia-modules-6.6.15-powerpc64-di -pnic-shared-modules-6.6.15-powerpc64-di -pnic-usb-modules-6.6.15-powerpc64-di -pnic-wireless-modules-6.6.15-powerpc64-di -ppata-modules-6.6.15-powerpc64-di -ppcmcia-modules-6.6.15-powerpc64-di -ppcmcia-storage-modules-6.6.15-powerpc64-di -pppp-modules-6.6.15-powerpc64-di -psata-modules-6.6.15-powerpc64-di -pscsi-core-modules-6.6.15-powerpc64-di -pscsi-modules-6.6.15-powerpc64-di -pscsi-nic-modules-6.6.15-powerpc64-di -pserial-modules-6.6.15-powerpc64-di -psquashfs-modules-6.6.15-powerpc64-di -pudf-modules-6.6.15-powerpc64-di -puinput-modules-6.6.15-powerpc64-di -pusb-modules-6.6.15-powerpc64-di -pusb-serial-modules-6.6.15-powerpc64-di -pusb-storage-modules-6.6.15-powerpc64-di -pxfs-modules-6.6.15-powerpc64-di' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-powerpc64-di' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-powerpc64-di ata-modules-6.7.7-powerpc64-di btrfs-modules-6.7.7-powerpc64-di cdrom-core-modules-6.7.7-powerpc64-di crc-modules-6.7.7-powerpc64-di crypto-dm-modules-6.7.7-powerpc64-di crypto-modules-6.7.7-powerpc64-di event-modules-6.7.7-powerpc64-di ext4-modules-6.7.7-powerpc64-di f2fs-modules-6.7.7-powerpc64-di fancontrol-modules-6.7.7-powerpc64-di fat-modules-6.7.7-powerpc64-di fb-modules-6.7.7-powerpc64-di firewire-core-modules-6.7.7-powerpc64-di hfs-modules-6.7.7-powerpc64-di hypervisor-modules-6.7.7-powerpc64-di i2c-modules-6.7.7-powerpc64-di input-modules-6.7.7-powerpc64-di isofs-modules-6.7.7-powerpc64-di jfs-modules-6.7.7-powerpc64-di kernel-image-6.7.7-powerpc64-di loop-modules-6.7.7-powerpc64-di md-modules-6.7.7-powerpc64-di mmc-core-modules-6.7.7-powerpc64-di mouse-modules-6.7.7-powerpc64-di mtd-core-modules-6.7.7-powerpc64-di multipath-modules-6.7.7-powerpc64-di nbd-modules-6.7.7-powerpc64-di nic-modules-6.7.7-powerpc64-di nic-pcmcia-modules-6.7.7-powerpc64-di nic-shared-modules-6.7.7-powerpc64-di nic-usb-modules-6.7.7-powerpc64-di nic-wireless-modules-6.7.7-powerpc64-di pata-modules-6.7.7-powerpc64-di pcmcia-modules-6.7.7-powerpc64-di pcmcia-storage-modules-6.7.7-powerpc64-di ppp-modules-6.7.7-powerpc64-di sata-modules-6.7.7-powerpc64-di scsi-core-modules-6.7.7-powerpc64-di scsi-modules-6.7.7-powerpc64-di scsi-nic-modules-6.7.7-powerpc64-di serial-modules-6.7.7-powerpc64-di squashfs-modules-6.7.7-powerpc64-di udf-modules-6.7.7-powerpc64-di uinput-modules-6.7.7-powerpc64-di usb-modules-6.7.7-powerpc64-di usb-serial-modules-6.7.7-powerpc64-di usb-storage-modules-6.7.7-powerpc64-di xfs-modules-6.7.7-powerpc64-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-powerpc64-di -pata-modules-6.7.7-powerpc64-di -pbtrfs-modules-6.7.7-powerpc64-di -pcdrom-core-modules-6.7.7-powerpc64-di -pcrc-modules-6.7.7-powerpc64-di -pcrypto-dm-modules-6.7.7-powerpc64-di -pcrypto-modules-6.7.7-powerpc64-di -pevent-modules-6.7.7-powerpc64-di -pext4-modules-6.7.7-powerpc64-di -pf2fs-modules-6.7.7-powerpc64-di -pfancontrol-modules-6.7.7-powerpc64-di -pfat-modules-6.7.7-powerpc64-di -pfb-modules-6.7.7-powerpc64-di -pfirewire-core-modules-6.7.7-powerpc64-di -phfs-modules-6.7.7-powerpc64-di -phypervisor-modules-6.7.7-powerpc64-di -pi2c-modules-6.7.7-powerpc64-di -pinput-modules-6.7.7-powerpc64-di -pisofs-modules-6.7.7-powerpc64-di -pjfs-modules-6.7.7-powerpc64-di -pkernel-image-6.7.7-powerpc64-di -ploop-modules-6.7.7-powerpc64-di -pmd-modules-6.7.7-powerpc64-di -pmmc-core-modules-6.7.7-powerpc64-di -pmouse-modules-6.7.7-powerpc64-di -pmtd-core-modules-6.7.7-powerpc64-di -pmultipath-modules-6.7.7-powerpc64-di -pnbd-modules-6.7.7-powerpc64-di -pnic-modules-6.7.7-powerpc64-di -pnic-pcmcia-modules-6.7.7-powerpc64-di -pnic-shared-modules-6.7.7-powerpc64-di -pnic-usb-modules-6.7.7-powerpc64-di -pnic-wireless-modules-6.7.7-powerpc64-di -ppata-modules-6.7.7-powerpc64-di -ppcmcia-modules-6.7.7-powerpc64-di -ppcmcia-storage-modules-6.7.7-powerpc64-di -pppp-modules-6.7.7-powerpc64-di -psata-modules-6.7.7-powerpc64-di -pscsi-core-modules-6.7.7-powerpc64-di -pscsi-modules-6.7.7-powerpc64-di -pscsi-nic-modules-6.7.7-powerpc64-di -pserial-modules-6.7.7-powerpc64-di -psquashfs-modules-6.7.7-powerpc64-di -pudf-modules-6.7.7-powerpc64-di -puinput-modules-6.7.7-powerpc64-di -pusb-modules-6.7.7-powerpc64-di -pusb-serial-modules-6.7.7-powerpc64-di -pusb-storage-modules-6.7.7-powerpc64-di -pxfs-modules-6.7.7-powerpc64-di' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-powerpc64-di' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_powerpc_none_powerpc64_meta: - $(call if_package, linux-image-powerpc64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc64' DH_OPTIONS='-plinux-image-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-powerpc64' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-powerpc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-powerpc64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-powerpc64' DH_OPTIONS='-plinux-headers-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-powerpc64' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-headers-powerpc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-powerpc64-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc64-dbg' DH_OPTIONS='-plinux-image-powerpc64-dbg' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-powerpc64-dbg' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-powerpc64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-powerpc64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc64' DH_OPTIONS='-plinux-image-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-powerpc64' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-powerpc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-powerpc64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-powerpc64' DH_OPTIONS='-plinux-headers-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-powerpc64' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-headers-powerpc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-powerpc64-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc64-dbg' DH_OPTIONS='-plinux-image-powerpc64-dbg' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-powerpc64-dbg' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-powerpc64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_powerpc_none_powerpc_headers: - $(call if_package, linux-headers-6.6.15-powerpc, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-powerpc' DH_OPTIONS='-plinux-headers-6.6.15-powerpc' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' PACKAGE_NAME='linux-headers-6.6.15-powerpc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-powerpc, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-powerpc' DH_OPTIONS='-plinux-headers-6.7.7-powerpc' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' PACKAGE_NAME='linux-headers-6.7.7-powerpc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_powerpc_none_powerpc_image: - $(call if_package, linux-image-6.6.15-powerpc, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-powerpc' DH_OPTIONS='-plinux-image-6.6.15-powerpc' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' PACKAGE_NAME='linux-image-6.6.15-powerpc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-powerpc, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-powerpc' DH_OPTIONS='-plinux-image-6.7.7-powerpc' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' PACKAGE_NAME='linux-image-6.7.7-powerpc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_powerpc_none_powerpc_image-dbg: - $(call if_package, linux-image-6.6.15-powerpc-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-powerpc-dbg' DH_OPTIONS='-plinux-image-6.6.15-powerpc-dbg' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' PACKAGE_NAME='linux-image-6.6.15-powerpc-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-powerpc-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-powerpc-dbg' DH_OPTIONS='-plinux-image-6.7.7-powerpc-dbg' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' PACKAGE_NAME='linux-image-6.7.7-powerpc-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_powerpc_none_powerpc_installer: - $(call if_package, affs-modules-6.6.15-powerpc-di ata-modules-6.6.15-powerpc-di btrfs-modules-6.6.15-powerpc-di cdrom-core-modules-6.6.15-powerpc-di crc-modules-6.6.15-powerpc-di crypto-dm-modules-6.6.15-powerpc-di crypto-modules-6.6.15-powerpc-di event-modules-6.6.15-powerpc-di ext4-modules-6.6.15-powerpc-di f2fs-modules-6.6.15-powerpc-di fat-modules-6.6.15-powerpc-di fb-modules-6.6.15-powerpc-di firewire-core-modules-6.6.15-powerpc-di hfs-modules-6.6.15-powerpc-di input-modules-6.6.15-powerpc-di isofs-modules-6.6.15-powerpc-di jfs-modules-6.6.15-powerpc-di kernel-image-6.6.15-powerpc-di loop-modules-6.6.15-powerpc-di md-modules-6.6.15-powerpc-di mmc-core-modules-6.6.15-powerpc-di mouse-modules-6.6.15-powerpc-di multipath-modules-6.6.15-powerpc-di nbd-modules-6.6.15-powerpc-di nic-modules-6.6.15-powerpc-di nic-pcmcia-modules-6.6.15-powerpc-di nic-shared-modules-6.6.15-powerpc-di nic-usb-modules-6.6.15-powerpc-di nic-wireless-modules-6.6.15-powerpc-di pata-modules-6.6.15-powerpc-di pcmcia-modules-6.6.15-powerpc-di pcmcia-storage-modules-6.6.15-powerpc-di ppp-modules-6.6.15-powerpc-di sata-modules-6.6.15-powerpc-di scsi-core-modules-6.6.15-powerpc-di scsi-modules-6.6.15-powerpc-di scsi-nic-modules-6.6.15-powerpc-di serial-modules-6.6.15-powerpc-di squashfs-modules-6.6.15-powerpc-di udf-modules-6.6.15-powerpc-di uinput-modules-6.6.15-powerpc-di usb-modules-6.6.15-powerpc-di usb-serial-modules-6.6.15-powerpc-di usb-storage-modules-6.6.15-powerpc-di xfs-modules-6.6.15-powerpc-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-powerpc-di -pata-modules-6.6.15-powerpc-di -pbtrfs-modules-6.6.15-powerpc-di -pcdrom-core-modules-6.6.15-powerpc-di -pcrc-modules-6.6.15-powerpc-di -pcrypto-dm-modules-6.6.15-powerpc-di -pcrypto-modules-6.6.15-powerpc-di -pevent-modules-6.6.15-powerpc-di -pext4-modules-6.6.15-powerpc-di -pf2fs-modules-6.6.15-powerpc-di -pfat-modules-6.6.15-powerpc-di -pfb-modules-6.6.15-powerpc-di -pfirewire-core-modules-6.6.15-powerpc-di -phfs-modules-6.6.15-powerpc-di -pinput-modules-6.6.15-powerpc-di -pisofs-modules-6.6.15-powerpc-di -pjfs-modules-6.6.15-powerpc-di -pkernel-image-6.6.15-powerpc-di -ploop-modules-6.6.15-powerpc-di -pmd-modules-6.6.15-powerpc-di -pmmc-core-modules-6.6.15-powerpc-di -pmouse-modules-6.6.15-powerpc-di -pmultipath-modules-6.6.15-powerpc-di -pnbd-modules-6.6.15-powerpc-di -pnic-modules-6.6.15-powerpc-di -pnic-pcmcia-modules-6.6.15-powerpc-di -pnic-shared-modules-6.6.15-powerpc-di -pnic-usb-modules-6.6.15-powerpc-di -pnic-wireless-modules-6.6.15-powerpc-di -ppata-modules-6.6.15-powerpc-di -ppcmcia-modules-6.6.15-powerpc-di -ppcmcia-storage-modules-6.6.15-powerpc-di -pppp-modules-6.6.15-powerpc-di -psata-modules-6.6.15-powerpc-di -pscsi-core-modules-6.6.15-powerpc-di -pscsi-modules-6.6.15-powerpc-di -pscsi-nic-modules-6.6.15-powerpc-di -pserial-modules-6.6.15-powerpc-di -psquashfs-modules-6.6.15-powerpc-di -pudf-modules-6.6.15-powerpc-di -puinput-modules-6.6.15-powerpc-di -pusb-modules-6.6.15-powerpc-di -pusb-serial-modules-6.6.15-powerpc-di -pusb-storage-modules-6.6.15-powerpc-di -pxfs-modules-6.6.15-powerpc-di' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-powerpc-di' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-powerpc-di ata-modules-6.7.7-powerpc-di btrfs-modules-6.7.7-powerpc-di cdrom-core-modules-6.7.7-powerpc-di crc-modules-6.7.7-powerpc-di crypto-dm-modules-6.7.7-powerpc-di crypto-modules-6.7.7-powerpc-di event-modules-6.7.7-powerpc-di ext4-modules-6.7.7-powerpc-di f2fs-modules-6.7.7-powerpc-di fat-modules-6.7.7-powerpc-di fb-modules-6.7.7-powerpc-di firewire-core-modules-6.7.7-powerpc-di hfs-modules-6.7.7-powerpc-di input-modules-6.7.7-powerpc-di isofs-modules-6.7.7-powerpc-di jfs-modules-6.7.7-powerpc-di kernel-image-6.7.7-powerpc-di loop-modules-6.7.7-powerpc-di md-modules-6.7.7-powerpc-di mmc-core-modules-6.7.7-powerpc-di mouse-modules-6.7.7-powerpc-di multipath-modules-6.7.7-powerpc-di nbd-modules-6.7.7-powerpc-di nic-modules-6.7.7-powerpc-di nic-pcmcia-modules-6.7.7-powerpc-di nic-shared-modules-6.7.7-powerpc-di nic-usb-modules-6.7.7-powerpc-di nic-wireless-modules-6.7.7-powerpc-di pata-modules-6.7.7-powerpc-di pcmcia-modules-6.7.7-powerpc-di pcmcia-storage-modules-6.7.7-powerpc-di ppp-modules-6.7.7-powerpc-di sata-modules-6.7.7-powerpc-di scsi-core-modules-6.7.7-powerpc-di scsi-modules-6.7.7-powerpc-di scsi-nic-modules-6.7.7-powerpc-di serial-modules-6.7.7-powerpc-di squashfs-modules-6.7.7-powerpc-di udf-modules-6.7.7-powerpc-di uinput-modules-6.7.7-powerpc-di usb-modules-6.7.7-powerpc-di usb-serial-modules-6.7.7-powerpc-di usb-storage-modules-6.7.7-powerpc-di xfs-modules-6.7.7-powerpc-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-powerpc-di -pata-modules-6.7.7-powerpc-di -pbtrfs-modules-6.7.7-powerpc-di -pcdrom-core-modules-6.7.7-powerpc-di -pcrc-modules-6.7.7-powerpc-di -pcrypto-dm-modules-6.7.7-powerpc-di -pcrypto-modules-6.7.7-powerpc-di -pevent-modules-6.7.7-powerpc-di -pext4-modules-6.7.7-powerpc-di -pf2fs-modules-6.7.7-powerpc-di -pfat-modules-6.7.7-powerpc-di -pfb-modules-6.7.7-powerpc-di -pfirewire-core-modules-6.7.7-powerpc-di -phfs-modules-6.7.7-powerpc-di -pinput-modules-6.7.7-powerpc-di -pisofs-modules-6.7.7-powerpc-di -pjfs-modules-6.7.7-powerpc-di -pkernel-image-6.7.7-powerpc-di -ploop-modules-6.7.7-powerpc-di -pmd-modules-6.7.7-powerpc-di -pmmc-core-modules-6.7.7-powerpc-di -pmouse-modules-6.7.7-powerpc-di -pmultipath-modules-6.7.7-powerpc-di -pnbd-modules-6.7.7-powerpc-di -pnic-modules-6.7.7-powerpc-di -pnic-pcmcia-modules-6.7.7-powerpc-di -pnic-shared-modules-6.7.7-powerpc-di -pnic-usb-modules-6.7.7-powerpc-di -pnic-wireless-modules-6.7.7-powerpc-di -ppata-modules-6.7.7-powerpc-di -ppcmcia-modules-6.7.7-powerpc-di -ppcmcia-storage-modules-6.7.7-powerpc-di -pppp-modules-6.7.7-powerpc-di -psata-modules-6.7.7-powerpc-di -pscsi-core-modules-6.7.7-powerpc-di -pscsi-modules-6.7.7-powerpc-di -pscsi-nic-modules-6.7.7-powerpc-di -pserial-modules-6.7.7-powerpc-di -psquashfs-modules-6.7.7-powerpc-di -pudf-modules-6.7.7-powerpc-di -puinput-modules-6.7.7-powerpc-di -pusb-modules-6.7.7-powerpc-di -pusb-serial-modules-6.7.7-powerpc-di -pusb-storage-modules-6.7.7-powerpc-di -pxfs-modules-6.7.7-powerpc-di' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-powerpc-di' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_powerpc_none_powerpc_meta: - $(call if_package, linux-image-powerpc, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc' DH_OPTIONS='-plinux-image-powerpc' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-powerpc' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' PACKAGE_NAME='linux-image-powerpc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-powerpc, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-powerpc' DH_OPTIONS='-plinux-headers-powerpc' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-powerpc' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' PACKAGE_NAME='linux-headers-powerpc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-powerpc-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc-dbg' DH_OPTIONS='-plinux-image-powerpc-dbg' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-powerpc-dbg' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' PACKAGE_NAME='linux-image-powerpc-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-powerpc, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc' DH_OPTIONS='-plinux-image-powerpc' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-powerpc' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' PACKAGE_NAME='linux-image-powerpc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-powerpc, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-powerpc' DH_OPTIONS='-plinux-headers-powerpc' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-powerpc' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' PACKAGE_NAME='linux-headers-powerpc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-powerpc-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc-dbg' DH_OPTIONS='-plinux-image-powerpc-dbg' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-powerpc-dbg' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' PACKAGE_NAME='linux-image-powerpc-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_powerpc_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.6.15' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.7.7' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_powerpc_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.6.15' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='powerpc' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.7.7' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='powerpc' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_powerpc_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.6.15' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='powerpc' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.7.7' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='powerpc' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_ppc64:build-arch_ppc64_bpftool build-arch_ppc64_config build-arch_ppc64_cpupower build-arch_ppc64_hyperv-daemons build-arch_ppc64_kbuild build-arch_ppc64_none build-arch_ppc64_perf build-arch_ppc64_rtla build-arch_ppc64_usbip build-arch_ppc64_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.6.15' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='powerpc' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.7.7' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='powerpc' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_ppc64_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real build_config ABINAME='6.6.15' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real build_config ABINAME='6.7.7' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_ppc64_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.6.15' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='powerpc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.7.7' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='powerpc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_ppc64_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.6.15' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='powerpc' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.7.7' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='powerpc' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_ppc64_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.6.15' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.7.7' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_ppc64_none:build-arch_ppc64_none_powerpc64 build-arch_ppc64_none_powerpc64:build-arch_ppc64_none_powerpc64_headers build-arch_ppc64_none_powerpc64_image build-arch_ppc64_none_powerpc64_image-dbg build-arch_ppc64_none_powerpc64_installer build-arch_ppc64_none_powerpc64_meta build-arch_ppc64_none_powerpc64_headers: - $(call if_package, linux-headers-6.6.15-powerpc64, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-powerpc64' DH_OPTIONS='-plinux-headers-6.6.15-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-headers-6.6.15-powerpc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-powerpc64, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-powerpc64' DH_OPTIONS='-plinux-headers-6.7.7-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-headers-6.7.7-powerpc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_ppc64_none_powerpc64_image: - $(call if_package, linux-image-6.6.15-powerpc64, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-powerpc64' DH_OPTIONS='-plinux-image-6.6.15-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-6.6.15-powerpc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-powerpc64, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-powerpc64' DH_OPTIONS='-plinux-image-6.7.7-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-6.7.7-powerpc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_ppc64_none_powerpc64_image-dbg: - $(call if_package, linux-image-6.6.15-powerpc64-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-powerpc64-dbg' DH_OPTIONS='-plinux-image-6.6.15-powerpc64-dbg' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-6.6.15-powerpc64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-powerpc64-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-powerpc64-dbg' DH_OPTIONS='-plinux-image-6.7.7-powerpc64-dbg' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-6.7.7-powerpc64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_ppc64_none_powerpc64_installer: - $(call if_package, affs-modules-6.6.15-powerpc64-di ata-modules-6.6.15-powerpc64-di btrfs-modules-6.6.15-powerpc64-di cdrom-core-modules-6.6.15-powerpc64-di crc-modules-6.6.15-powerpc64-di crypto-dm-modules-6.6.15-powerpc64-di crypto-modules-6.6.15-powerpc64-di event-modules-6.6.15-powerpc64-di ext4-modules-6.6.15-powerpc64-di f2fs-modules-6.6.15-powerpc64-di fancontrol-modules-6.6.15-powerpc64-di fat-modules-6.6.15-powerpc64-di fb-modules-6.6.15-powerpc64-di firewire-core-modules-6.6.15-powerpc64-di hfs-modules-6.6.15-powerpc64-di hypervisor-modules-6.6.15-powerpc64-di i2c-modules-6.6.15-powerpc64-di input-modules-6.6.15-powerpc64-di isofs-modules-6.6.15-powerpc64-di jfs-modules-6.6.15-powerpc64-di kernel-image-6.6.15-powerpc64-di loop-modules-6.6.15-powerpc64-di md-modules-6.6.15-powerpc64-di mmc-core-modules-6.6.15-powerpc64-di mouse-modules-6.6.15-powerpc64-di mtd-core-modules-6.6.15-powerpc64-di multipath-modules-6.6.15-powerpc64-di nbd-modules-6.6.15-powerpc64-di nic-modules-6.6.15-powerpc64-di nic-pcmcia-modules-6.6.15-powerpc64-di nic-shared-modules-6.6.15-powerpc64-di nic-usb-modules-6.6.15-powerpc64-di nic-wireless-modules-6.6.15-powerpc64-di pata-modules-6.6.15-powerpc64-di pcmcia-modules-6.6.15-powerpc64-di pcmcia-storage-modules-6.6.15-powerpc64-di ppp-modules-6.6.15-powerpc64-di sata-modules-6.6.15-powerpc64-di scsi-core-modules-6.6.15-powerpc64-di scsi-modules-6.6.15-powerpc64-di scsi-nic-modules-6.6.15-powerpc64-di serial-modules-6.6.15-powerpc64-di squashfs-modules-6.6.15-powerpc64-di udf-modules-6.6.15-powerpc64-di uinput-modules-6.6.15-powerpc64-di usb-modules-6.6.15-powerpc64-di usb-serial-modules-6.6.15-powerpc64-di usb-storage-modules-6.6.15-powerpc64-di xfs-modules-6.6.15-powerpc64-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.6.15' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-powerpc64-di -pata-modules-6.6.15-powerpc64-di -pbtrfs-modules-6.6.15-powerpc64-di -pcdrom-core-modules-6.6.15-powerpc64-di -pcrc-modules-6.6.15-powerpc64-di -pcrypto-dm-modules-6.6.15-powerpc64-di -pcrypto-modules-6.6.15-powerpc64-di -pevent-modules-6.6.15-powerpc64-di -pext4-modules-6.6.15-powerpc64-di -pf2fs-modules-6.6.15-powerpc64-di -pfancontrol-modules-6.6.15-powerpc64-di -pfat-modules-6.6.15-powerpc64-di -pfb-modules-6.6.15-powerpc64-di -pfirewire-core-modules-6.6.15-powerpc64-di -phfs-modules-6.6.15-powerpc64-di -phypervisor-modules-6.6.15-powerpc64-di -pi2c-modules-6.6.15-powerpc64-di -pinput-modules-6.6.15-powerpc64-di -pisofs-modules-6.6.15-powerpc64-di -pjfs-modules-6.6.15-powerpc64-di -pkernel-image-6.6.15-powerpc64-di -ploop-modules-6.6.15-powerpc64-di -pmd-modules-6.6.15-powerpc64-di -pmmc-core-modules-6.6.15-powerpc64-di -pmouse-modules-6.6.15-powerpc64-di -pmtd-core-modules-6.6.15-powerpc64-di -pmultipath-modules-6.6.15-powerpc64-di -pnbd-modules-6.6.15-powerpc64-di -pnic-modules-6.6.15-powerpc64-di -pnic-pcmcia-modules-6.6.15-powerpc64-di -pnic-shared-modules-6.6.15-powerpc64-di -pnic-usb-modules-6.6.15-powerpc64-di -pnic-wireless-modules-6.6.15-powerpc64-di -ppata-modules-6.6.15-powerpc64-di -ppcmcia-modules-6.6.15-powerpc64-di -ppcmcia-storage-modules-6.6.15-powerpc64-di -pppp-modules-6.6.15-powerpc64-di -psata-modules-6.6.15-powerpc64-di -pscsi-core-modules-6.6.15-powerpc64-di -pscsi-modules-6.6.15-powerpc64-di -pscsi-nic-modules-6.6.15-powerpc64-di -pserial-modules-6.6.15-powerpc64-di -psquashfs-modules-6.6.15-powerpc64-di -pudf-modules-6.6.15-powerpc64-di -puinput-modules-6.6.15-powerpc64-di -pusb-modules-6.6.15-powerpc64-di -pusb-serial-modules-6.6.15-powerpc64-di -pusb-storage-modules-6.6.15-powerpc64-di -pxfs-modules-6.6.15-powerpc64-di' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-powerpc64-di' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-powerpc64-di ata-modules-6.7.7-powerpc64-di btrfs-modules-6.7.7-powerpc64-di cdrom-core-modules-6.7.7-powerpc64-di crc-modules-6.7.7-powerpc64-di crypto-dm-modules-6.7.7-powerpc64-di crypto-modules-6.7.7-powerpc64-di event-modules-6.7.7-powerpc64-di ext4-modules-6.7.7-powerpc64-di f2fs-modules-6.7.7-powerpc64-di fancontrol-modules-6.7.7-powerpc64-di fat-modules-6.7.7-powerpc64-di fb-modules-6.7.7-powerpc64-di firewire-core-modules-6.7.7-powerpc64-di hfs-modules-6.7.7-powerpc64-di hypervisor-modules-6.7.7-powerpc64-di i2c-modules-6.7.7-powerpc64-di input-modules-6.7.7-powerpc64-di isofs-modules-6.7.7-powerpc64-di jfs-modules-6.7.7-powerpc64-di kernel-image-6.7.7-powerpc64-di loop-modules-6.7.7-powerpc64-di md-modules-6.7.7-powerpc64-di mmc-core-modules-6.7.7-powerpc64-di mouse-modules-6.7.7-powerpc64-di mtd-core-modules-6.7.7-powerpc64-di multipath-modules-6.7.7-powerpc64-di nbd-modules-6.7.7-powerpc64-di nic-modules-6.7.7-powerpc64-di nic-pcmcia-modules-6.7.7-powerpc64-di nic-shared-modules-6.7.7-powerpc64-di nic-usb-modules-6.7.7-powerpc64-di nic-wireless-modules-6.7.7-powerpc64-di pata-modules-6.7.7-powerpc64-di pcmcia-modules-6.7.7-powerpc64-di pcmcia-storage-modules-6.7.7-powerpc64-di ppp-modules-6.7.7-powerpc64-di sata-modules-6.7.7-powerpc64-di scsi-core-modules-6.7.7-powerpc64-di scsi-modules-6.7.7-powerpc64-di scsi-nic-modules-6.7.7-powerpc64-di serial-modules-6.7.7-powerpc64-di squashfs-modules-6.7.7-powerpc64-di udf-modules-6.7.7-powerpc64-di uinput-modules-6.7.7-powerpc64-di usb-modules-6.7.7-powerpc64-di usb-serial-modules-6.7.7-powerpc64-di usb-storage-modules-6.7.7-powerpc64-di xfs-modules-6.7.7-powerpc64-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.7.7' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-powerpc64-di -pata-modules-6.7.7-powerpc64-di -pbtrfs-modules-6.7.7-powerpc64-di -pcdrom-core-modules-6.7.7-powerpc64-di -pcrc-modules-6.7.7-powerpc64-di -pcrypto-dm-modules-6.7.7-powerpc64-di -pcrypto-modules-6.7.7-powerpc64-di -pevent-modules-6.7.7-powerpc64-di -pext4-modules-6.7.7-powerpc64-di -pf2fs-modules-6.7.7-powerpc64-di -pfancontrol-modules-6.7.7-powerpc64-di -pfat-modules-6.7.7-powerpc64-di -pfb-modules-6.7.7-powerpc64-di -pfirewire-core-modules-6.7.7-powerpc64-di -phfs-modules-6.7.7-powerpc64-di -phypervisor-modules-6.7.7-powerpc64-di -pi2c-modules-6.7.7-powerpc64-di -pinput-modules-6.7.7-powerpc64-di -pisofs-modules-6.7.7-powerpc64-di -pjfs-modules-6.7.7-powerpc64-di -pkernel-image-6.7.7-powerpc64-di -ploop-modules-6.7.7-powerpc64-di -pmd-modules-6.7.7-powerpc64-di -pmmc-core-modules-6.7.7-powerpc64-di -pmouse-modules-6.7.7-powerpc64-di -pmtd-core-modules-6.7.7-powerpc64-di -pmultipath-modules-6.7.7-powerpc64-di -pnbd-modules-6.7.7-powerpc64-di -pnic-modules-6.7.7-powerpc64-di -pnic-pcmcia-modules-6.7.7-powerpc64-di -pnic-shared-modules-6.7.7-powerpc64-di -pnic-usb-modules-6.7.7-powerpc64-di -pnic-wireless-modules-6.7.7-powerpc64-di -ppata-modules-6.7.7-powerpc64-di -ppcmcia-modules-6.7.7-powerpc64-di -ppcmcia-storage-modules-6.7.7-powerpc64-di -pppp-modules-6.7.7-powerpc64-di -psata-modules-6.7.7-powerpc64-di -pscsi-core-modules-6.7.7-powerpc64-di -pscsi-modules-6.7.7-powerpc64-di -pscsi-nic-modules-6.7.7-powerpc64-di -pserial-modules-6.7.7-powerpc64-di -psquashfs-modules-6.7.7-powerpc64-di -pudf-modules-6.7.7-powerpc64-di -puinput-modules-6.7.7-powerpc64-di -pusb-modules-6.7.7-powerpc64-di -pusb-serial-modules-6.7.7-powerpc64-di -pusb-storage-modules-6.7.7-powerpc64-di -pxfs-modules-6.7.7-powerpc64-di' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-powerpc64-di' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_ppc64_none_powerpc64_meta: - $(call if_package, linux-image-powerpc64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc64' DH_OPTIONS='-plinux-image-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-powerpc64' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-powerpc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-powerpc64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-powerpc64' DH_OPTIONS='-plinux-headers-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-powerpc64' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-headers-powerpc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-powerpc64-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc64-dbg' DH_OPTIONS='-plinux-image-powerpc64-dbg' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-powerpc64-dbg' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-powerpc64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-powerpc64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc64' DH_OPTIONS='-plinux-image-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-powerpc64' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-powerpc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-powerpc64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-powerpc64' DH_OPTIONS='-plinux-headers-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-powerpc64' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-headers-powerpc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-powerpc64-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc64-dbg' DH_OPTIONS='-plinux-image-powerpc64-dbg' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-powerpc64-dbg' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-powerpc64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_ppc64_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.6.15' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.7.7' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_ppc64_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.6.15' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='powerpc' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.7.7' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='powerpc' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_ppc64_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.6.15' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='powerpc' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.7.7' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='powerpc' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_ppc64el:build-arch_ppc64el_bpftool build-arch_ppc64el_config build-arch_ppc64el_cpupower build-arch_ppc64el_hyperv-daemons build-arch_ppc64el_kbuild build-arch_ppc64el_none build-arch_ppc64el_perf build-arch_ppc64el_rtla build-arch_ppc64el_usbip build-arch_ppc64el_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.6.15' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='powerpc' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.7.7' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='powerpc' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_ppc64el_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real build_config ABINAME='6.6.15' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real build_config ABINAME='6.7.7' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_ppc64el_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.6.15' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='powerpc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.7.7' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='powerpc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_ppc64el_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.6.15' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='powerpc' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.7.7' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='powerpc' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_ppc64el_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.6.15' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.7.7' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_ppc64el_none:build-arch_ppc64el_none_powerpc64le build-arch_ppc64el_none_powerpc64le:build-arch_ppc64el_none_powerpc64le_headers build-arch_ppc64el_none_powerpc64le_image build-arch_ppc64el_none_powerpc64le_image-dbg build-arch_ppc64el_none_powerpc64le_installer build-arch_ppc64el_none_powerpc64le_meta build-arch_ppc64el_none_powerpc64le_headers: - $(call if_package, linux-headers-6.6.15-powerpc64le, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-powerpc64le' DH_OPTIONS='-plinux-headers-6.6.15-powerpc64le' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' PACKAGE_NAME='linux-headers-6.6.15-powerpc64le' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-powerpc64le, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-powerpc64le' DH_OPTIONS='-plinux-headers-6.7.7-powerpc64le' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' PACKAGE_NAME='linux-headers-6.7.7-powerpc64le' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_ppc64el_none_powerpc64le_image: - $(call if_package, linux-image-6.6.15-powerpc64le, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-powerpc64le' DH_OPTIONS='-plinux-image-6.6.15-powerpc64le' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' PACKAGE_NAME='linux-image-6.6.15-powerpc64le' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-powerpc64le, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-powerpc64le' DH_OPTIONS='-plinux-image-6.7.7-powerpc64le' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' PACKAGE_NAME='linux-image-6.7.7-powerpc64le' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_ppc64el_none_powerpc64le_image-dbg: - $(call if_package, linux-image-6.6.15-powerpc64le-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-powerpc64le-dbg' DH_OPTIONS='-plinux-image-6.6.15-powerpc64le-dbg' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' PACKAGE_NAME='linux-image-6.6.15-powerpc64le-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-powerpc64le-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-powerpc64le-dbg' DH_OPTIONS='-plinux-image-6.7.7-powerpc64le-dbg' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' PACKAGE_NAME='linux-image-6.7.7-powerpc64le-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_ppc64el_none_powerpc64le_installer: - $(call if_package, ata-modules-6.6.15-powerpc64le-di btrfs-modules-6.6.15-powerpc64le-di cdrom-core-modules-6.6.15-powerpc64le-di crc-modules-6.6.15-powerpc64le-di crypto-dm-modules-6.6.15-powerpc64le-di crypto-modules-6.6.15-powerpc64le-di event-modules-6.6.15-powerpc64le-di ext4-modules-6.6.15-powerpc64le-di f2fs-modules-6.6.15-powerpc64le-di fancontrol-modules-6.6.15-powerpc64le-di fat-modules-6.6.15-powerpc64le-di fb-modules-6.6.15-powerpc64le-di firewire-core-modules-6.6.15-powerpc64le-di hypervisor-modules-6.6.15-powerpc64le-di i2c-modules-6.6.15-powerpc64le-di input-modules-6.6.15-powerpc64le-di isofs-modules-6.6.15-powerpc64le-di jfs-modules-6.6.15-powerpc64le-di kernel-image-6.6.15-powerpc64le-di loop-modules-6.6.15-powerpc64le-di md-modules-6.6.15-powerpc64le-di mouse-modules-6.6.15-powerpc64le-di mtd-core-modules-6.6.15-powerpc64le-di multipath-modules-6.6.15-powerpc64le-di nbd-modules-6.6.15-powerpc64le-di nic-modules-6.6.15-powerpc64le-di nic-shared-modules-6.6.15-powerpc64le-di nic-usb-modules-6.6.15-powerpc64le-di nic-wireless-modules-6.6.15-powerpc64le-di ppp-modules-6.6.15-powerpc64le-di sata-modules-6.6.15-powerpc64le-di scsi-core-modules-6.6.15-powerpc64le-di scsi-modules-6.6.15-powerpc64le-di scsi-nic-modules-6.6.15-powerpc64le-di serial-modules-6.6.15-powerpc64le-di squashfs-modules-6.6.15-powerpc64le-di udf-modules-6.6.15-powerpc64le-di uinput-modules-6.6.15-powerpc64le-di usb-modules-6.6.15-powerpc64le-di usb-serial-modules-6.6.15-powerpc64le-di usb-storage-modules-6.6.15-powerpc64le-di xfs-modules-6.6.15-powerpc64le-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.6.15' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.6.15-powerpc64le-di -pbtrfs-modules-6.6.15-powerpc64le-di -pcdrom-core-modules-6.6.15-powerpc64le-di -pcrc-modules-6.6.15-powerpc64le-di -pcrypto-dm-modules-6.6.15-powerpc64le-di -pcrypto-modules-6.6.15-powerpc64le-di -pevent-modules-6.6.15-powerpc64le-di -pext4-modules-6.6.15-powerpc64le-di -pf2fs-modules-6.6.15-powerpc64le-di -pfancontrol-modules-6.6.15-powerpc64le-di -pfat-modules-6.6.15-powerpc64le-di -pfb-modules-6.6.15-powerpc64le-di -pfirewire-core-modules-6.6.15-powerpc64le-di -phypervisor-modules-6.6.15-powerpc64le-di -pi2c-modules-6.6.15-powerpc64le-di -pinput-modules-6.6.15-powerpc64le-di -pisofs-modules-6.6.15-powerpc64le-di -pjfs-modules-6.6.15-powerpc64le-di -pkernel-image-6.6.15-powerpc64le-di -ploop-modules-6.6.15-powerpc64le-di -pmd-modules-6.6.15-powerpc64le-di -pmouse-modules-6.6.15-powerpc64le-di -pmtd-core-modules-6.6.15-powerpc64le-di -pmultipath-modules-6.6.15-powerpc64le-di -pnbd-modules-6.6.15-powerpc64le-di -pnic-modules-6.6.15-powerpc64le-di -pnic-shared-modules-6.6.15-powerpc64le-di -pnic-usb-modules-6.6.15-powerpc64le-di -pnic-wireless-modules-6.6.15-powerpc64le-di -pppp-modules-6.6.15-powerpc64le-di -psata-modules-6.6.15-powerpc64le-di -pscsi-core-modules-6.6.15-powerpc64le-di -pscsi-modules-6.6.15-powerpc64le-di -pscsi-nic-modules-6.6.15-powerpc64le-di -pserial-modules-6.6.15-powerpc64le-di -psquashfs-modules-6.6.15-powerpc64le-di -pudf-modules-6.6.15-powerpc64le-di -puinput-modules-6.6.15-powerpc64le-di -pusb-modules-6.6.15-powerpc64le-di -pusb-serial-modules-6.6.15-powerpc64le-di -pusb-storage-modules-6.6.15-powerpc64le-di -pxfs-modules-6.6.15-powerpc64le-di' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-powerpc64le-di' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, ata-modules-6.7.7-powerpc64le-di btrfs-modules-6.7.7-powerpc64le-di cdrom-core-modules-6.7.7-powerpc64le-di crc-modules-6.7.7-powerpc64le-di crypto-dm-modules-6.7.7-powerpc64le-di crypto-modules-6.7.7-powerpc64le-di event-modules-6.7.7-powerpc64le-di ext4-modules-6.7.7-powerpc64le-di f2fs-modules-6.7.7-powerpc64le-di fancontrol-modules-6.7.7-powerpc64le-di fat-modules-6.7.7-powerpc64le-di fb-modules-6.7.7-powerpc64le-di firewire-core-modules-6.7.7-powerpc64le-di hypervisor-modules-6.7.7-powerpc64le-di i2c-modules-6.7.7-powerpc64le-di input-modules-6.7.7-powerpc64le-di isofs-modules-6.7.7-powerpc64le-di jfs-modules-6.7.7-powerpc64le-di kernel-image-6.7.7-powerpc64le-di loop-modules-6.7.7-powerpc64le-di md-modules-6.7.7-powerpc64le-di mouse-modules-6.7.7-powerpc64le-di mtd-core-modules-6.7.7-powerpc64le-di multipath-modules-6.7.7-powerpc64le-di nbd-modules-6.7.7-powerpc64le-di nic-modules-6.7.7-powerpc64le-di nic-shared-modules-6.7.7-powerpc64le-di nic-usb-modules-6.7.7-powerpc64le-di nic-wireless-modules-6.7.7-powerpc64le-di ppp-modules-6.7.7-powerpc64le-di sata-modules-6.7.7-powerpc64le-di scsi-core-modules-6.7.7-powerpc64le-di scsi-modules-6.7.7-powerpc64le-di scsi-nic-modules-6.7.7-powerpc64le-di serial-modules-6.7.7-powerpc64le-di squashfs-modules-6.7.7-powerpc64le-di udf-modules-6.7.7-powerpc64le-di uinput-modules-6.7.7-powerpc64le-di usb-modules-6.7.7-powerpc64le-di usb-serial-modules-6.7.7-powerpc64le-di usb-storage-modules-6.7.7-powerpc64le-di xfs-modules-6.7.7-powerpc64le-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.7.7' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.7.7-powerpc64le-di -pbtrfs-modules-6.7.7-powerpc64le-di -pcdrom-core-modules-6.7.7-powerpc64le-di -pcrc-modules-6.7.7-powerpc64le-di -pcrypto-dm-modules-6.7.7-powerpc64le-di -pcrypto-modules-6.7.7-powerpc64le-di -pevent-modules-6.7.7-powerpc64le-di -pext4-modules-6.7.7-powerpc64le-di -pf2fs-modules-6.7.7-powerpc64le-di -pfancontrol-modules-6.7.7-powerpc64le-di -pfat-modules-6.7.7-powerpc64le-di -pfb-modules-6.7.7-powerpc64le-di -pfirewire-core-modules-6.7.7-powerpc64le-di -phypervisor-modules-6.7.7-powerpc64le-di -pi2c-modules-6.7.7-powerpc64le-di -pinput-modules-6.7.7-powerpc64le-di -pisofs-modules-6.7.7-powerpc64le-di -pjfs-modules-6.7.7-powerpc64le-di -pkernel-image-6.7.7-powerpc64le-di -ploop-modules-6.7.7-powerpc64le-di -pmd-modules-6.7.7-powerpc64le-di -pmouse-modules-6.7.7-powerpc64le-di -pmtd-core-modules-6.7.7-powerpc64le-di -pmultipath-modules-6.7.7-powerpc64le-di -pnbd-modules-6.7.7-powerpc64le-di -pnic-modules-6.7.7-powerpc64le-di -pnic-shared-modules-6.7.7-powerpc64le-di -pnic-usb-modules-6.7.7-powerpc64le-di -pnic-wireless-modules-6.7.7-powerpc64le-di -pppp-modules-6.7.7-powerpc64le-di -psata-modules-6.7.7-powerpc64le-di -pscsi-core-modules-6.7.7-powerpc64le-di -pscsi-modules-6.7.7-powerpc64le-di -pscsi-nic-modules-6.7.7-powerpc64le-di -pserial-modules-6.7.7-powerpc64le-di -psquashfs-modules-6.7.7-powerpc64le-di -pudf-modules-6.7.7-powerpc64le-di -puinput-modules-6.7.7-powerpc64le-di -pusb-modules-6.7.7-powerpc64le-di -pusb-serial-modules-6.7.7-powerpc64le-di -pusb-storage-modules-6.7.7-powerpc64le-di -pxfs-modules-6.7.7-powerpc64le-di' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-powerpc64le-di' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_ppc64el_none_powerpc64le_meta: - $(call if_package, linux-image-powerpc64le, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc64le' DH_OPTIONS='-plinux-image-powerpc64le' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-powerpc64le' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' PACKAGE_NAME='linux-image-powerpc64le' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-powerpc64le, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-powerpc64le' DH_OPTIONS='-plinux-headers-powerpc64le' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-powerpc64le' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' PACKAGE_NAME='linux-headers-powerpc64le' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-powerpc64le-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc64le-dbg' DH_OPTIONS='-plinux-image-powerpc64le-dbg' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-powerpc64le-dbg' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' PACKAGE_NAME='linux-image-powerpc64le-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-powerpc64le, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc64le' DH_OPTIONS='-plinux-image-powerpc64le' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-powerpc64le' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' PACKAGE_NAME='linux-image-powerpc64le' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-powerpc64le, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-powerpc64le' DH_OPTIONS='-plinux-headers-powerpc64le' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-powerpc64le' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' PACKAGE_NAME='linux-headers-powerpc64le' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-powerpc64le-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc64le-dbg' DH_OPTIONS='-plinux-image-powerpc64le-dbg' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-powerpc64le-dbg' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' PACKAGE_NAME='linux-image-powerpc64le-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_ppc64el_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.6.15' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.7.7' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_ppc64el_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.6.15' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='powerpc' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.7.7' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='powerpc' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_ppc64el_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.6.15' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='powerpc' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.7.7' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='powerpc' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_riscv64:build-arch_riscv64_bpftool build-arch_riscv64_config build-arch_riscv64_cpupower build-arch_riscv64_hyperv-daemons build-arch_riscv64_kbuild build-arch_riscv64_none build-arch_riscv64_perf build-arch_riscv64_rtla build-arch_riscv64_usbip build-arch_riscv64_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.6.15' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='riscv' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.7.7' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='riscv' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_riscv64_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real build_config ABINAME='6.6.15' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='riscv' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real build_config ABINAME='6.7.7' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='riscv' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_riscv64_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.6.15' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='riscv' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.7.7' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='riscv' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_riscv64_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.6.15' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='riscv' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.7.7' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='riscv' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_riscv64_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.6.15' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='riscv' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.7.7' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='riscv' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_riscv64_none:build-arch_riscv64_none_riscv64 build-arch_riscv64_none_riscv64:build-arch_riscv64_none_riscv64_headers build-arch_riscv64_none_riscv64_image build-arch_riscv64_none_riscv64_image-dbg build-arch_riscv64_none_riscv64_installer build-arch_riscv64_none_riscv64_meta build-arch_riscv64_none_riscv64_headers: - $(call if_package, linux-headers-6.6.15-riscv64, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-riscv64' DH_OPTIONS='-plinux-headers-6.6.15-riscv64' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' PACKAGE_NAME='linux-headers-6.6.15-riscv64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-riscv64, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-riscv64' DH_OPTIONS='-plinux-headers-6.7.7-riscv64' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' PACKAGE_NAME='linux-headers-6.7.7-riscv64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_riscv64_none_riscv64_image: - $(call if_package, linux-image-6.6.15-riscv64, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-riscv64' DH_OPTIONS='-plinux-image-6.6.15-riscv64' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' PACKAGE_NAME='linux-image-6.6.15-riscv64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-riscv64, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-riscv64' DH_OPTIONS='-plinux-image-6.7.7-riscv64' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' PACKAGE_NAME='linux-image-6.7.7-riscv64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_riscv64_none_riscv64_image-dbg: - $(call if_package, linux-image-6.6.15-riscv64-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-riscv64-dbg' DH_OPTIONS='-plinux-image-6.6.15-riscv64-dbg' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' PACKAGE_NAME='linux-image-6.6.15-riscv64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-riscv64-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-riscv64-dbg' DH_OPTIONS='-plinux-image-6.7.7-riscv64-dbg' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' PACKAGE_NAME='linux-image-6.7.7-riscv64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_riscv64_none_riscv64_installer: - $(call if_package, ata-modules-6.6.15-riscv64-di btrfs-modules-6.6.15-riscv64-di cdrom-core-modules-6.6.15-riscv64-di crc-modules-6.6.15-riscv64-di crypto-dm-modules-6.6.15-riscv64-di crypto-modules-6.6.15-riscv64-di event-modules-6.6.15-riscv64-di ext4-modules-6.6.15-riscv64-di f2fs-modules-6.6.15-riscv64-di fat-modules-6.6.15-riscv64-di fb-modules-6.6.15-riscv64-di i2c-modules-6.6.15-riscv64-di input-modules-6.6.15-riscv64-di isofs-modules-6.6.15-riscv64-di jfs-modules-6.6.15-riscv64-di kernel-image-6.6.15-riscv64-di loop-modules-6.6.15-riscv64-di md-modules-6.6.15-riscv64-di mmc-core-modules-6.6.15-riscv64-di mmc-modules-6.6.15-riscv64-di mtd-core-modules-6.6.15-riscv64-di mtd-modules-6.6.15-riscv64-di multipath-modules-6.6.15-riscv64-di nbd-modules-6.6.15-riscv64-di nic-modules-6.6.15-riscv64-di nic-shared-modules-6.6.15-riscv64-di nic-usb-modules-6.6.15-riscv64-di nic-wireless-modules-6.6.15-riscv64-di pata-modules-6.6.15-riscv64-di ppp-modules-6.6.15-riscv64-di sata-modules-6.6.15-riscv64-di scsi-core-modules-6.6.15-riscv64-di scsi-modules-6.6.15-riscv64-di scsi-nic-modules-6.6.15-riscv64-di squashfs-modules-6.6.15-riscv64-di udf-modules-6.6.15-riscv64-di usb-modules-6.6.15-riscv64-di usb-serial-modules-6.6.15-riscv64-di usb-storage-modules-6.6.15-riscv64-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.6.15' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.6.15-riscv64-di -pbtrfs-modules-6.6.15-riscv64-di -pcdrom-core-modules-6.6.15-riscv64-di -pcrc-modules-6.6.15-riscv64-di -pcrypto-dm-modules-6.6.15-riscv64-di -pcrypto-modules-6.6.15-riscv64-di -pevent-modules-6.6.15-riscv64-di -pext4-modules-6.6.15-riscv64-di -pf2fs-modules-6.6.15-riscv64-di -pfat-modules-6.6.15-riscv64-di -pfb-modules-6.6.15-riscv64-di -pi2c-modules-6.6.15-riscv64-di -pinput-modules-6.6.15-riscv64-di -pisofs-modules-6.6.15-riscv64-di -pjfs-modules-6.6.15-riscv64-di -pkernel-image-6.6.15-riscv64-di -ploop-modules-6.6.15-riscv64-di -pmd-modules-6.6.15-riscv64-di -pmmc-core-modules-6.6.15-riscv64-di -pmmc-modules-6.6.15-riscv64-di -pmtd-core-modules-6.6.15-riscv64-di -pmtd-modules-6.6.15-riscv64-di -pmultipath-modules-6.6.15-riscv64-di -pnbd-modules-6.6.15-riscv64-di -pnic-modules-6.6.15-riscv64-di -pnic-shared-modules-6.6.15-riscv64-di -pnic-usb-modules-6.6.15-riscv64-di -pnic-wireless-modules-6.6.15-riscv64-di -ppata-modules-6.6.15-riscv64-di -pppp-modules-6.6.15-riscv64-di -psata-modules-6.6.15-riscv64-di -pscsi-core-modules-6.6.15-riscv64-di -pscsi-modules-6.6.15-riscv64-di -pscsi-nic-modules-6.6.15-riscv64-di -psquashfs-modules-6.6.15-riscv64-di -pudf-modules-6.6.15-riscv64-di -pusb-modules-6.6.15-riscv64-di -pusb-serial-modules-6.6.15-riscv64-di -pusb-storage-modules-6.6.15-riscv64-di' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-riscv64-di' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, ata-modules-6.7.7-riscv64-di btrfs-modules-6.7.7-riscv64-di cdrom-core-modules-6.7.7-riscv64-di crc-modules-6.7.7-riscv64-di crypto-dm-modules-6.7.7-riscv64-di crypto-modules-6.7.7-riscv64-di efi-modules-6.7.7-riscv64-di event-modules-6.7.7-riscv64-di ext4-modules-6.7.7-riscv64-di f2fs-modules-6.7.7-riscv64-di fat-modules-6.7.7-riscv64-di fb-modules-6.7.7-riscv64-di i2c-modules-6.7.7-riscv64-di input-modules-6.7.7-riscv64-di isofs-modules-6.7.7-riscv64-di jfs-modules-6.7.7-riscv64-di kernel-image-6.7.7-riscv64-di loop-modules-6.7.7-riscv64-di md-modules-6.7.7-riscv64-di mmc-core-modules-6.7.7-riscv64-di mmc-modules-6.7.7-riscv64-di mtd-core-modules-6.7.7-riscv64-di mtd-modules-6.7.7-riscv64-di multipath-modules-6.7.7-riscv64-di nbd-modules-6.7.7-riscv64-di nic-modules-6.7.7-riscv64-di nic-shared-modules-6.7.7-riscv64-di nic-usb-modules-6.7.7-riscv64-di nic-wireless-modules-6.7.7-riscv64-di pata-modules-6.7.7-riscv64-di ppp-modules-6.7.7-riscv64-di sata-modules-6.7.7-riscv64-di scsi-core-modules-6.7.7-riscv64-di scsi-modules-6.7.7-riscv64-di scsi-nic-modules-6.7.7-riscv64-di squashfs-modules-6.7.7-riscv64-di udf-modules-6.7.7-riscv64-di usb-modules-6.7.7-riscv64-di usb-serial-modules-6.7.7-riscv64-di usb-storage-modules-6.7.7-riscv64-di xfs-modules-6.7.7-riscv64-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.7.7' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.7.7-riscv64-di -pbtrfs-modules-6.7.7-riscv64-di -pcdrom-core-modules-6.7.7-riscv64-di -pcrc-modules-6.7.7-riscv64-di -pcrypto-dm-modules-6.7.7-riscv64-di -pcrypto-modules-6.7.7-riscv64-di -pefi-modules-6.7.7-riscv64-di -pevent-modules-6.7.7-riscv64-di -pext4-modules-6.7.7-riscv64-di -pf2fs-modules-6.7.7-riscv64-di -pfat-modules-6.7.7-riscv64-di -pfb-modules-6.7.7-riscv64-di -pi2c-modules-6.7.7-riscv64-di -pinput-modules-6.7.7-riscv64-di -pisofs-modules-6.7.7-riscv64-di -pjfs-modules-6.7.7-riscv64-di -pkernel-image-6.7.7-riscv64-di -ploop-modules-6.7.7-riscv64-di -pmd-modules-6.7.7-riscv64-di -pmmc-core-modules-6.7.7-riscv64-di -pmmc-modules-6.7.7-riscv64-di -pmtd-core-modules-6.7.7-riscv64-di -pmtd-modules-6.7.7-riscv64-di -pmultipath-modules-6.7.7-riscv64-di -pnbd-modules-6.7.7-riscv64-di -pnic-modules-6.7.7-riscv64-di -pnic-shared-modules-6.7.7-riscv64-di -pnic-usb-modules-6.7.7-riscv64-di -pnic-wireless-modules-6.7.7-riscv64-di -ppata-modules-6.7.7-riscv64-di -pppp-modules-6.7.7-riscv64-di -psata-modules-6.7.7-riscv64-di -pscsi-core-modules-6.7.7-riscv64-di -pscsi-modules-6.7.7-riscv64-di -pscsi-nic-modules-6.7.7-riscv64-di -psquashfs-modules-6.7.7-riscv64-di -pudf-modules-6.7.7-riscv64-di -pusb-modules-6.7.7-riscv64-di -pusb-serial-modules-6.7.7-riscv64-di -pusb-storage-modules-6.7.7-riscv64-di -pxfs-modules-6.7.7-riscv64-di' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-riscv64-di' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_riscv64_none_riscv64_meta: - $(call if_package, linux-image-riscv64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-riscv64' DH_OPTIONS='-plinux-image-riscv64' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-riscv64' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' PACKAGE_NAME='linux-image-riscv64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-riscv64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-riscv64' DH_OPTIONS='-plinux-headers-riscv64' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-riscv64' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' PACKAGE_NAME='linux-headers-riscv64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-image-riscv64-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-riscv64-dbg' DH_OPTIONS='-plinux-image-riscv64-dbg' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-riscv64-dbg' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' PACKAGE_NAME='linux-image-riscv64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-riscv64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-riscv64' DH_OPTIONS='-plinux-image-riscv64' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-riscv64' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' PACKAGE_NAME='linux-image-riscv64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-riscv64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-riscv64' DH_OPTIONS='-plinux-headers-riscv64' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-riscv64' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' PACKAGE_NAME='linux-headers-riscv64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-image-riscv64-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-riscv64-dbg' DH_OPTIONS='-plinux-image-riscv64-dbg' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-riscv64-dbg' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' PACKAGE_NAME='linux-image-riscv64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_riscv64_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.6.15' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='riscv' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.7.7' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='riscv' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_riscv64_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.6.15' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='riscv' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.7.7' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='riscv' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_riscv64_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.6.15' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='riscv' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.7.7' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='riscv' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_s390x:build-arch_s390x_bpftool build-arch_s390x_config build-arch_s390x_cpupower build-arch_s390x_hyperv-daemons build-arch_s390x_kbuild build-arch_s390x_none build-arch_s390x_perf build-arch_s390x_rtla build-arch_s390x_usbip build-arch_s390x_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.6.15' ARCH='s390x' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='s390' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.7.7' ARCH='s390x' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='s390' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_s390x_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real build_config ABINAME='6.6.15' ARCH='s390x' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='s390' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real build_config ABINAME='6.7.7' ARCH='s390x' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='s390' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_s390x_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.6.15' ARCH='s390x' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='s390' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.7.7' ARCH='s390x' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='s390' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_s390x_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.6.15' ARCH='s390x' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='s390' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.7.7' ARCH='s390x' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='s390' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_s390x_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.6.15' ARCH='s390x' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='s390' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.7.7' ARCH='s390x' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='s390' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_s390x_none:build-arch_s390x_none_s390x build-arch_s390x_none_s390x:build-arch_s390x_none_s390x_headers build-arch_s390x_none_s390x_image build-arch_s390x_none_s390x_image-dbg build-arch_s390x_none_s390x_installer build-arch_s390x_none_s390x_meta build-arch_s390x_none_s390x_headers: - $(call if_package, linux-headers-6.6.15-s390x, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-s390x' DH_OPTIONS='-plinux-headers-6.6.15-s390x' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' PACKAGE_NAME='linux-headers-6.6.15-s390x' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-s390x, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-s390x' DH_OPTIONS='-plinux-headers-6.7.7-s390x' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' PACKAGE_NAME='linux-headers-6.7.7-s390x' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_s390x_none_s390x_image: - $(call if_package, linux-image-6.6.15-s390x, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-s390x' DH_OPTIONS='-plinux-image-6.6.15-s390x' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' PACKAGE_NAME='linux-image-6.6.15-s390x' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-s390x, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-s390x' DH_OPTIONS='-plinux-image-6.7.7-s390x' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' PACKAGE_NAME='linux-image-6.7.7-s390x' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_s390x_none_s390x_image-dbg: - $(call if_package, linux-image-6.6.15-s390x-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-s390x-dbg' DH_OPTIONS='-plinux-image-6.6.15-s390x-dbg' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' PACKAGE_NAME='linux-image-6.6.15-s390x-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-s390x-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-s390x-dbg' DH_OPTIONS='-plinux-image-6.7.7-s390x-dbg' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' PACKAGE_NAME='linux-image-6.7.7-s390x-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_s390x_none_s390x_installer: - $(call if_package, btrfs-modules-6.6.15-s390x-di cdrom-core-modules-6.6.15-s390x-di crc-modules-6.6.15-s390x-di crypto-dm-modules-6.6.15-s390x-di crypto-modules-6.6.15-s390x-di dasd-extra-modules-6.6.15-s390x-di dasd-modules-6.6.15-s390x-di ext4-modules-6.6.15-s390x-di f2fs-modules-6.6.15-s390x-di fat-modules-6.6.15-s390x-di isofs-modules-6.6.15-s390x-di kernel-image-6.6.15-s390x-di loop-modules-6.6.15-s390x-di md-modules-6.6.15-s390x-di mtd-core-modules-6.6.15-s390x-di multipath-modules-6.6.15-s390x-di nbd-modules-6.6.15-s390x-di nic-modules-6.6.15-s390x-di scsi-core-modules-6.6.15-s390x-di scsi-modules-6.6.15-s390x-di udf-modules-6.6.15-s390x-di xfs-modules-6.6.15-s390x-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.6.15' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pbtrfs-modules-6.6.15-s390x-di -pcdrom-core-modules-6.6.15-s390x-di -pcrc-modules-6.6.15-s390x-di -pcrypto-dm-modules-6.6.15-s390x-di -pcrypto-modules-6.6.15-s390x-di -pdasd-extra-modules-6.6.15-s390x-di -pdasd-modules-6.6.15-s390x-di -pext4-modules-6.6.15-s390x-di -pf2fs-modules-6.6.15-s390x-di -pfat-modules-6.6.15-s390x-di -pisofs-modules-6.6.15-s390x-di -pkernel-image-6.6.15-s390x-di -ploop-modules-6.6.15-s390x-di -pmd-modules-6.6.15-s390x-di -pmtd-core-modules-6.6.15-s390x-di -pmultipath-modules-6.6.15-s390x-di -pnbd-modules-6.6.15-s390x-di -pnic-modules-6.6.15-s390x-di -pscsi-core-modules-6.6.15-s390x-di -pscsi-modules-6.6.15-s390x-di -pudf-modules-6.6.15-s390x-di -pxfs-modules-6.6.15-s390x-di' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-s390x-di' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, btrfs-modules-6.7.7-s390x-di cdrom-core-modules-6.7.7-s390x-di crc-modules-6.7.7-s390x-di crypto-dm-modules-6.7.7-s390x-di crypto-modules-6.7.7-s390x-di dasd-extra-modules-6.7.7-s390x-di dasd-modules-6.7.7-s390x-di ext4-modules-6.7.7-s390x-di f2fs-modules-6.7.7-s390x-di fat-modules-6.7.7-s390x-di isofs-modules-6.7.7-s390x-di kernel-image-6.7.7-s390x-di loop-modules-6.7.7-s390x-di md-modules-6.7.7-s390x-di mtd-core-modules-6.7.7-s390x-di multipath-modules-6.7.7-s390x-di nbd-modules-6.7.7-s390x-di nic-modules-6.7.7-s390x-di scsi-core-modules-6.7.7-s390x-di scsi-modules-6.7.7-s390x-di udf-modules-6.7.7-s390x-di xfs-modules-6.7.7-s390x-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.7.7' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pbtrfs-modules-6.7.7-s390x-di -pcdrom-core-modules-6.7.7-s390x-di -pcrc-modules-6.7.7-s390x-di -pcrypto-dm-modules-6.7.7-s390x-di -pcrypto-modules-6.7.7-s390x-di -pdasd-extra-modules-6.7.7-s390x-di -pdasd-modules-6.7.7-s390x-di -pext4-modules-6.7.7-s390x-di -pf2fs-modules-6.7.7-s390x-di -pfat-modules-6.7.7-s390x-di -pisofs-modules-6.7.7-s390x-di -pkernel-image-6.7.7-s390x-di -ploop-modules-6.7.7-s390x-di -pmd-modules-6.7.7-s390x-di -pmtd-core-modules-6.7.7-s390x-di -pmultipath-modules-6.7.7-s390x-di -pnbd-modules-6.7.7-s390x-di -pnic-modules-6.7.7-s390x-di -pscsi-core-modules-6.7.7-s390x-di -pscsi-modules-6.7.7-s390x-di -pudf-modules-6.7.7-s390x-di -pxfs-modules-6.7.7-s390x-di' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-s390x-di' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_s390x_none_s390x_meta: - $(call if_package, linux-image-s390x, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-s390x' DH_OPTIONS='-plinux-image-s390x' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-s390x' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' PACKAGE_NAME='linux-image-s390x' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-s390x, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-s390x' DH_OPTIONS='-plinux-headers-s390x' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-s390x' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' PACKAGE_NAME='linux-headers-s390x' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-image-s390x-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-s390x-dbg' DH_OPTIONS='-plinux-image-s390x-dbg' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-s390x-dbg' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' PACKAGE_NAME='linux-image-s390x-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-s390x, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-s390x' DH_OPTIONS='-plinux-image-s390x' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-s390x' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' PACKAGE_NAME='linux-image-s390x' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-s390x, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-s390x' DH_OPTIONS='-plinux-headers-s390x' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-s390x' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' PACKAGE_NAME='linux-headers-s390x' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-image-s390x-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-s390x-dbg' DH_OPTIONS='-plinux-image-s390x-dbg' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-s390x-dbg' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' PACKAGE_NAME='linux-image-s390x-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') build-arch_s390x_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.6.15' ARCH='s390x' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='s390' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.7.7' ARCH='s390x' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='s390' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_s390x_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.6.15' ARCH='s390x' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='s390' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.7.7' ARCH='s390x' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='s390' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_s390x_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.6.15' ARCH='s390x' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='s390' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.7.7' ARCH='s390x' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='s390' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_sh4:build-arch_sh4_bpftool build-arch_sh4_config build-arch_sh4_cpupower build-arch_sh4_hyperv-daemons build-arch_sh4_kbuild build-arch_sh4_none build-arch_sh4_perf build-arch_sh4_rtla build-arch_sh4_usbip build-arch_sh4_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.6.15' ARCH='sh4' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='sh' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.7.7' ARCH='sh4' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='sh' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_sh4_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real build_config ABINAME='6.6.15' ARCH='sh4' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='sh' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real build_config ABINAME='6.7.7' ARCH='sh4' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='sh' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_sh4_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.6.15' ARCH='sh4' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='sh' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.7.7' ARCH='sh4' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='sh' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_sh4_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.6.15' ARCH='sh4' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='sh' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.7.7' ARCH='sh4' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='sh' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_sh4_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.6.15' ARCH='sh4' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='sh' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.7.7' ARCH='sh4' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='sh' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_sh4_none:build-arch_sh4_none_sh7751r build-arch_sh4_none_sh7785lcr build-arch_sh4_none_sh7751r:build-arch_sh4_none_sh7751r_headers build-arch_sh4_none_sh7751r_image build-arch_sh4_none_sh7751r_image-dbg build-arch_sh4_none_sh7751r_installer build-arch_sh4_none_sh7751r_meta build-arch_sh4_none_sh7751r_headers: - $(call if_package, linux-headers-6.6.15-sh7751r, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-sh7751r' DH_OPTIONS='-plinux-headers-6.6.15-sh7751r' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' PACKAGE_NAME='linux-headers-6.6.15-sh7751r' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-sh7751r, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-sh7751r' DH_OPTIONS='-plinux-headers-6.7.7-sh7751r' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' PACKAGE_NAME='linux-headers-6.7.7-sh7751r' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_sh4_none_sh7751r_image: - $(call if_package, linux-image-6.6.15-sh7751r, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-sh7751r' DH_OPTIONS='-plinux-image-6.6.15-sh7751r' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' PACKAGE_NAME='linux-image-6.6.15-sh7751r' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-sh7751r, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-sh7751r' DH_OPTIONS='-plinux-image-6.7.7-sh7751r' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' PACKAGE_NAME='linux-image-6.7.7-sh7751r' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_sh4_none_sh7751r_image-dbg: - $(call if_package, linux-image-6.6.15-sh7751r-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-sh7751r-dbg' DH_OPTIONS='-plinux-image-6.6.15-sh7751r-dbg' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' PACKAGE_NAME='linux-image-6.6.15-sh7751r-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-sh7751r-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-sh7751r-dbg' DH_OPTIONS='-plinux-image-6.7.7-sh7751r-dbg' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' PACKAGE_NAME='linux-image-6.7.7-sh7751r-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_sh4_none_sh7751r_installer: - $(call if_package, btrfs-modules-6.6.15-sh7751r-di cdrom-core-modules-6.6.15-sh7751r-di crc-modules-6.6.15-sh7751r-di crypto-dm-modules-6.6.15-sh7751r-di crypto-modules-6.6.15-sh7751r-di ext4-modules-6.6.15-sh7751r-di f2fs-modules-6.6.15-sh7751r-di fat-modules-6.6.15-sh7751r-di firewire-core-modules-6.6.15-sh7751r-di i2c-modules-6.6.15-sh7751r-di isofs-modules-6.6.15-sh7751r-di jfs-modules-6.6.15-sh7751r-di kernel-image-6.6.15-sh7751r-di loop-modules-6.6.15-sh7751r-di md-modules-6.6.15-sh7751r-di minix-modules-6.6.15-sh7751r-di multipath-modules-6.6.15-sh7751r-di nbd-modules-6.6.15-sh7751r-di nic-modules-6.6.15-sh7751r-di nic-shared-modules-6.6.15-sh7751r-di nic-usb-modules-6.6.15-sh7751r-di pata-modules-6.6.15-sh7751r-di ppp-modules-6.6.15-sh7751r-di sata-modules-6.6.15-sh7751r-di sound-modules-6.6.15-sh7751r-di speakup-modules-6.6.15-sh7751r-di squashfs-modules-6.6.15-sh7751r-di udf-modules-6.6.15-sh7751r-di usb-serial-modules-6.6.15-sh7751r-di usb-storage-modules-6.6.15-sh7751r-di xfs-modules-6.6.15-sh7751r-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pbtrfs-modules-6.6.15-sh7751r-di -pcdrom-core-modules-6.6.15-sh7751r-di -pcrc-modules-6.6.15-sh7751r-di -pcrypto-dm-modules-6.6.15-sh7751r-di -pcrypto-modules-6.6.15-sh7751r-di -pext4-modules-6.6.15-sh7751r-di -pf2fs-modules-6.6.15-sh7751r-di -pfat-modules-6.6.15-sh7751r-di -pfirewire-core-modules-6.6.15-sh7751r-di -pi2c-modules-6.6.15-sh7751r-di -pisofs-modules-6.6.15-sh7751r-di -pjfs-modules-6.6.15-sh7751r-di -pkernel-image-6.6.15-sh7751r-di -ploop-modules-6.6.15-sh7751r-di -pmd-modules-6.6.15-sh7751r-di -pminix-modules-6.6.15-sh7751r-di -pmultipath-modules-6.6.15-sh7751r-di -pnbd-modules-6.6.15-sh7751r-di -pnic-modules-6.6.15-sh7751r-di -pnic-shared-modules-6.6.15-sh7751r-di -pnic-usb-modules-6.6.15-sh7751r-di -ppata-modules-6.6.15-sh7751r-di -pppp-modules-6.6.15-sh7751r-di -psata-modules-6.6.15-sh7751r-di -psound-modules-6.6.15-sh7751r-di -pspeakup-modules-6.6.15-sh7751r-di -psquashfs-modules-6.6.15-sh7751r-di -pudf-modules-6.6.15-sh7751r-di -pusb-serial-modules-6.6.15-sh7751r-di -pusb-storage-modules-6.6.15-sh7751r-di -pxfs-modules-6.6.15-sh7751r-di' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-sh7751r-di' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, btrfs-modules-6.7.7-sh7751r-di cdrom-core-modules-6.7.7-sh7751r-di crc-modules-6.7.7-sh7751r-di crypto-dm-modules-6.7.7-sh7751r-di crypto-modules-6.7.7-sh7751r-di ext4-modules-6.7.7-sh7751r-di f2fs-modules-6.7.7-sh7751r-di fat-modules-6.7.7-sh7751r-di firewire-core-modules-6.7.7-sh7751r-di i2c-modules-6.7.7-sh7751r-di isofs-modules-6.7.7-sh7751r-di jfs-modules-6.7.7-sh7751r-di kernel-image-6.7.7-sh7751r-di loop-modules-6.7.7-sh7751r-di md-modules-6.7.7-sh7751r-di minix-modules-6.7.7-sh7751r-di multipath-modules-6.7.7-sh7751r-di nbd-modules-6.7.7-sh7751r-di nic-modules-6.7.7-sh7751r-di nic-shared-modules-6.7.7-sh7751r-di nic-usb-modules-6.7.7-sh7751r-di pata-modules-6.7.7-sh7751r-di ppp-modules-6.7.7-sh7751r-di sata-modules-6.7.7-sh7751r-di sound-modules-6.7.7-sh7751r-di speakup-modules-6.7.7-sh7751r-di squashfs-modules-6.7.7-sh7751r-di udf-modules-6.7.7-sh7751r-di usb-serial-modules-6.7.7-sh7751r-di usb-storage-modules-6.7.7-sh7751r-di xfs-modules-6.7.7-sh7751r-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pbtrfs-modules-6.7.7-sh7751r-di -pcdrom-core-modules-6.7.7-sh7751r-di -pcrc-modules-6.7.7-sh7751r-di -pcrypto-dm-modules-6.7.7-sh7751r-di -pcrypto-modules-6.7.7-sh7751r-di -pext4-modules-6.7.7-sh7751r-di -pf2fs-modules-6.7.7-sh7751r-di -pfat-modules-6.7.7-sh7751r-di -pfirewire-core-modules-6.7.7-sh7751r-di -pi2c-modules-6.7.7-sh7751r-di -pisofs-modules-6.7.7-sh7751r-di -pjfs-modules-6.7.7-sh7751r-di -pkernel-image-6.7.7-sh7751r-di -ploop-modules-6.7.7-sh7751r-di -pmd-modules-6.7.7-sh7751r-di -pminix-modules-6.7.7-sh7751r-di -pmultipath-modules-6.7.7-sh7751r-di -pnbd-modules-6.7.7-sh7751r-di -pnic-modules-6.7.7-sh7751r-di -pnic-shared-modules-6.7.7-sh7751r-di -pnic-usb-modules-6.7.7-sh7751r-di -ppata-modules-6.7.7-sh7751r-di -pppp-modules-6.7.7-sh7751r-di -psata-modules-6.7.7-sh7751r-di -psound-modules-6.7.7-sh7751r-di -pspeakup-modules-6.7.7-sh7751r-di -psquashfs-modules-6.7.7-sh7751r-di -pudf-modules-6.7.7-sh7751r-di -pusb-serial-modules-6.7.7-sh7751r-di -pusb-storage-modules-6.7.7-sh7751r-di -pxfs-modules-6.7.7-sh7751r-di' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-sh7751r-di' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_sh4_none_sh7751r_meta: - $(call if_package, linux-image-sh7751r, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sh7751r' DH_OPTIONS='-plinux-image-sh7751r' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-sh7751r' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' PACKAGE_NAME='linux-image-sh7751r' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-sh7751r, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-sh7751r' DH_OPTIONS='-plinux-headers-sh7751r' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-sh7751r' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' PACKAGE_NAME='linux-headers-sh7751r' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-sh7751r-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sh7751r-dbg' DH_OPTIONS='-plinux-image-sh7751r-dbg' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-sh7751r-dbg' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' PACKAGE_NAME='linux-image-sh7751r-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-sh7751r, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sh7751r' DH_OPTIONS='-plinux-image-sh7751r' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-sh7751r' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' PACKAGE_NAME='linux-image-sh7751r' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-sh7751r, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-sh7751r' DH_OPTIONS='-plinux-headers-sh7751r' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-sh7751r' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' PACKAGE_NAME='linux-headers-sh7751r' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-sh7751r-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sh7751r-dbg' DH_OPTIONS='-plinux-image-sh7751r-dbg' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-sh7751r-dbg' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' PACKAGE_NAME='linux-image-sh7751r-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_sh4_none_sh7785lcr:build-arch_sh4_none_sh7785lcr_headers build-arch_sh4_none_sh7785lcr_image build-arch_sh4_none_sh7785lcr_image-dbg build-arch_sh4_none_sh7785lcr_installer build-arch_sh4_none_sh7785lcr_meta build-arch_sh4_none_sh7785lcr_headers: - $(call if_package, linux-headers-6.6.15-sh7785lcr, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-sh7785lcr' DH_OPTIONS='-plinux-headers-6.6.15-sh7785lcr' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' PACKAGE_NAME='linux-headers-6.6.15-sh7785lcr' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-sh7785lcr, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-sh7785lcr' DH_OPTIONS='-plinux-headers-6.7.7-sh7785lcr' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' PACKAGE_NAME='linux-headers-6.7.7-sh7785lcr' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_sh4_none_sh7785lcr_image: - $(call if_package, linux-image-6.6.15-sh7785lcr, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-sh7785lcr' DH_OPTIONS='-plinux-image-6.6.15-sh7785lcr' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' PACKAGE_NAME='linux-image-6.6.15-sh7785lcr' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-sh7785lcr, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-sh7785lcr' DH_OPTIONS='-plinux-image-6.7.7-sh7785lcr' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' PACKAGE_NAME='linux-image-6.7.7-sh7785lcr' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_sh4_none_sh7785lcr_image-dbg: - $(call if_package, linux-image-6.6.15-sh7785lcr-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-sh7785lcr-dbg' DH_OPTIONS='-plinux-image-6.6.15-sh7785lcr-dbg' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' PACKAGE_NAME='linux-image-6.6.15-sh7785lcr-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-sh7785lcr-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-sh7785lcr-dbg' DH_OPTIONS='-plinux-image-6.7.7-sh7785lcr-dbg' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' PACKAGE_NAME='linux-image-6.7.7-sh7785lcr-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_sh4_none_sh7785lcr_installer: - $(call if_package, ata-modules-6.6.15-sh7785lcr-di btrfs-modules-6.6.15-sh7785lcr-di cdrom-core-modules-6.6.15-sh7785lcr-di crc-modules-6.6.15-sh7785lcr-di crypto-dm-modules-6.6.15-sh7785lcr-di crypto-modules-6.6.15-sh7785lcr-di ext4-modules-6.6.15-sh7785lcr-di f2fs-modules-6.6.15-sh7785lcr-di fat-modules-6.6.15-sh7785lcr-di firewire-core-modules-6.6.15-sh7785lcr-di i2c-modules-6.6.15-sh7785lcr-di isofs-modules-6.6.15-sh7785lcr-di jfs-modules-6.6.15-sh7785lcr-di kernel-image-6.6.15-sh7785lcr-di loop-modules-6.6.15-sh7785lcr-di md-modules-6.6.15-sh7785lcr-di minix-modules-6.6.15-sh7785lcr-di multipath-modules-6.6.15-sh7785lcr-di nbd-modules-6.6.15-sh7785lcr-di nic-modules-6.6.15-sh7785lcr-di nic-shared-modules-6.6.15-sh7785lcr-di nic-usb-modules-6.6.15-sh7785lcr-di pata-modules-6.6.15-sh7785lcr-di ppp-modules-6.6.15-sh7785lcr-di sata-modules-6.6.15-sh7785lcr-di scsi-core-modules-6.6.15-sh7785lcr-di sound-modules-6.6.15-sh7785lcr-di speakup-modules-6.6.15-sh7785lcr-di squashfs-modules-6.6.15-sh7785lcr-di udf-modules-6.6.15-sh7785lcr-di usb-modules-6.6.15-sh7785lcr-di usb-serial-modules-6.6.15-sh7785lcr-di xfs-modules-6.6.15-sh7785lcr-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.6.15-sh7785lcr-di -pbtrfs-modules-6.6.15-sh7785lcr-di -pcdrom-core-modules-6.6.15-sh7785lcr-di -pcrc-modules-6.6.15-sh7785lcr-di -pcrypto-dm-modules-6.6.15-sh7785lcr-di -pcrypto-modules-6.6.15-sh7785lcr-di -pext4-modules-6.6.15-sh7785lcr-di -pf2fs-modules-6.6.15-sh7785lcr-di -pfat-modules-6.6.15-sh7785lcr-di -pfirewire-core-modules-6.6.15-sh7785lcr-di -pi2c-modules-6.6.15-sh7785lcr-di -pisofs-modules-6.6.15-sh7785lcr-di -pjfs-modules-6.6.15-sh7785lcr-di -pkernel-image-6.6.15-sh7785lcr-di -ploop-modules-6.6.15-sh7785lcr-di -pmd-modules-6.6.15-sh7785lcr-di -pminix-modules-6.6.15-sh7785lcr-di -pmultipath-modules-6.6.15-sh7785lcr-di -pnbd-modules-6.6.15-sh7785lcr-di -pnic-modules-6.6.15-sh7785lcr-di -pnic-shared-modules-6.6.15-sh7785lcr-di -pnic-usb-modules-6.6.15-sh7785lcr-di -ppata-modules-6.6.15-sh7785lcr-di -pppp-modules-6.6.15-sh7785lcr-di -psata-modules-6.6.15-sh7785lcr-di -pscsi-core-modules-6.6.15-sh7785lcr-di -psound-modules-6.6.15-sh7785lcr-di -pspeakup-modules-6.6.15-sh7785lcr-di -psquashfs-modules-6.6.15-sh7785lcr-di -pudf-modules-6.6.15-sh7785lcr-di -pusb-modules-6.6.15-sh7785lcr-di -pusb-serial-modules-6.6.15-sh7785lcr-di -pxfs-modules-6.6.15-sh7785lcr-di' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-sh7785lcr-di' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, ata-modules-6.7.7-sh7785lcr-di btrfs-modules-6.7.7-sh7785lcr-di cdrom-core-modules-6.7.7-sh7785lcr-di crc-modules-6.7.7-sh7785lcr-di crypto-dm-modules-6.7.7-sh7785lcr-di crypto-modules-6.7.7-sh7785lcr-di ext4-modules-6.7.7-sh7785lcr-di f2fs-modules-6.7.7-sh7785lcr-di fat-modules-6.7.7-sh7785lcr-di firewire-core-modules-6.7.7-sh7785lcr-di i2c-modules-6.7.7-sh7785lcr-di isofs-modules-6.7.7-sh7785lcr-di jfs-modules-6.7.7-sh7785lcr-di kernel-image-6.7.7-sh7785lcr-di loop-modules-6.7.7-sh7785lcr-di md-modules-6.7.7-sh7785lcr-di minix-modules-6.7.7-sh7785lcr-di multipath-modules-6.7.7-sh7785lcr-di nbd-modules-6.7.7-sh7785lcr-di nic-modules-6.7.7-sh7785lcr-di nic-shared-modules-6.7.7-sh7785lcr-di nic-usb-modules-6.7.7-sh7785lcr-di pata-modules-6.7.7-sh7785lcr-di ppp-modules-6.7.7-sh7785lcr-di sata-modules-6.7.7-sh7785lcr-di scsi-core-modules-6.7.7-sh7785lcr-di sound-modules-6.7.7-sh7785lcr-di speakup-modules-6.7.7-sh7785lcr-di squashfs-modules-6.7.7-sh7785lcr-di udf-modules-6.7.7-sh7785lcr-di usb-modules-6.7.7-sh7785lcr-di usb-serial-modules-6.7.7-sh7785lcr-di xfs-modules-6.7.7-sh7785lcr-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.7.7-sh7785lcr-di -pbtrfs-modules-6.7.7-sh7785lcr-di -pcdrom-core-modules-6.7.7-sh7785lcr-di -pcrc-modules-6.7.7-sh7785lcr-di -pcrypto-dm-modules-6.7.7-sh7785lcr-di -pcrypto-modules-6.7.7-sh7785lcr-di -pext4-modules-6.7.7-sh7785lcr-di -pf2fs-modules-6.7.7-sh7785lcr-di -pfat-modules-6.7.7-sh7785lcr-di -pfirewire-core-modules-6.7.7-sh7785lcr-di -pi2c-modules-6.7.7-sh7785lcr-di -pisofs-modules-6.7.7-sh7785lcr-di -pjfs-modules-6.7.7-sh7785lcr-di -pkernel-image-6.7.7-sh7785lcr-di -ploop-modules-6.7.7-sh7785lcr-di -pmd-modules-6.7.7-sh7785lcr-di -pminix-modules-6.7.7-sh7785lcr-di -pmultipath-modules-6.7.7-sh7785lcr-di -pnbd-modules-6.7.7-sh7785lcr-di -pnic-modules-6.7.7-sh7785lcr-di -pnic-shared-modules-6.7.7-sh7785lcr-di -pnic-usb-modules-6.7.7-sh7785lcr-di -ppata-modules-6.7.7-sh7785lcr-di -pppp-modules-6.7.7-sh7785lcr-di -psata-modules-6.7.7-sh7785lcr-di -pscsi-core-modules-6.7.7-sh7785lcr-di -psound-modules-6.7.7-sh7785lcr-di -pspeakup-modules-6.7.7-sh7785lcr-di -psquashfs-modules-6.7.7-sh7785lcr-di -pudf-modules-6.7.7-sh7785lcr-di -pusb-modules-6.7.7-sh7785lcr-di -pusb-serial-modules-6.7.7-sh7785lcr-di -pxfs-modules-6.7.7-sh7785lcr-di' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-sh7785lcr-di' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_sh4_none_sh7785lcr_meta: - $(call if_package, linux-image-sh7785lcr, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sh7785lcr' DH_OPTIONS='-plinux-image-sh7785lcr' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-sh7785lcr' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' PACKAGE_NAME='linux-image-sh7785lcr' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-sh7785lcr, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-sh7785lcr' DH_OPTIONS='-plinux-headers-sh7785lcr' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-sh7785lcr' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' PACKAGE_NAME='linux-headers-sh7785lcr' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-sh7785lcr-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sh7785lcr-dbg' DH_OPTIONS='-plinux-image-sh7785lcr-dbg' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-sh7785lcr-dbg' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' PACKAGE_NAME='linux-image-sh7785lcr-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-sh7785lcr, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sh7785lcr' DH_OPTIONS='-plinux-image-sh7785lcr' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-sh7785lcr' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' PACKAGE_NAME='linux-image-sh7785lcr' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-sh7785lcr, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-sh7785lcr' DH_OPTIONS='-plinux-headers-sh7785lcr' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-sh7785lcr' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' PACKAGE_NAME='linux-headers-sh7785lcr' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-sh7785lcr-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sh7785lcr-dbg' DH_OPTIONS='-plinux-image-sh7785lcr-dbg' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-sh7785lcr-dbg' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' PACKAGE_NAME='linux-image-sh7785lcr-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_sh4_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.6.15' ARCH='sh4' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='sh' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.7.7' ARCH='sh4' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='sh' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_sh4_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.6.15' ARCH='sh4' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='sh' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.7.7' ARCH='sh4' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='sh' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_sh4_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.6.15' ARCH='sh4' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='sh' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.7.7' ARCH='sh4' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='sh' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_sparc64:build-arch_sparc64_bpftool build-arch_sparc64_config build-arch_sparc64_cpupower build-arch_sparc64_hyperv-daemons build-arch_sparc64_kbuild build-arch_sparc64_none build-arch_sparc64_perf build-arch_sparc64_rtla build-arch_sparc64_usbip build-arch_sparc64_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.6.15' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='sparc' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.7.7' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='sparc' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_sparc64_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real build_config ABINAME='6.6.15' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='sparc' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real build_config ABINAME='6.7.7' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='sparc' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_sparc64_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.6.15' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='sparc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.7.7' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='sparc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_sparc64_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.6.15' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='sparc' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.7.7' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='sparc' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_sparc64_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.6.15' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='sparc' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.7.7' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='sparc' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_sparc64_none:build-arch_sparc64_none_sparc64 build-arch_sparc64_none_sparc64-smp build-arch_sparc64_none_sparc64:build-arch_sparc64_none_sparc64_headers build-arch_sparc64_none_sparc64_image build-arch_sparc64_none_sparc64_image-dbg build-arch_sparc64_none_sparc64_installer build-arch_sparc64_none_sparc64_meta build-arch_sparc64_none_sparc64-smp:build-arch_sparc64_none_sparc64-smp_headers build-arch_sparc64_none_sparc64-smp_image build-arch_sparc64_none_sparc64-smp_image-dbg build-arch_sparc64_none_sparc64-smp_meta build-arch_sparc64_none_sparc64-smp_headers: - $(call if_package, linux-headers-6.6.15-sparc64-smp, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-sparc64-smp' DH_OPTIONS='-plinux-headers-6.6.15-sparc64-smp' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' PACKAGE_NAME='linux-headers-6.6.15-sparc64-smp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-sparc64-smp, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-sparc64-smp' DH_OPTIONS='-plinux-headers-6.7.7-sparc64-smp' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' PACKAGE_NAME='linux-headers-6.7.7-sparc64-smp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_sparc64_none_sparc64-smp_image: - $(call if_package, linux-image-6.6.15-sparc64-smp, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-sparc64-smp' DH_OPTIONS='-plinux-image-6.6.15-sparc64-smp' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' PACKAGE_NAME='linux-image-6.6.15-sparc64-smp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-sparc64-smp, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-sparc64-smp' DH_OPTIONS='-plinux-image-6.7.7-sparc64-smp' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' PACKAGE_NAME='linux-image-6.7.7-sparc64-smp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_sparc64_none_sparc64-smp_image-dbg: - $(call if_package, linux-image-6.6.15-sparc64-smp-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-sparc64-smp-dbg' DH_OPTIONS='-plinux-image-6.6.15-sparc64-smp-dbg' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' PACKAGE_NAME='linux-image-6.6.15-sparc64-smp-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-sparc64-smp-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-sparc64-smp-dbg' DH_OPTIONS='-plinux-image-6.7.7-sparc64-smp-dbg' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' PACKAGE_NAME='linux-image-6.7.7-sparc64-smp-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_sparc64_none_sparc64-smp_meta: - $(call if_package, linux-image-sparc64-smp, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sparc64-smp' DH_OPTIONS='-plinux-image-sparc64-smp' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-sparc64-smp' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' PACKAGE_NAME='linux-image-sparc64-smp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-sparc64-smp, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-sparc64-smp' DH_OPTIONS='-plinux-headers-sparc64-smp' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-sparc64-smp' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' PACKAGE_NAME='linux-headers-sparc64-smp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-sparc64-smp-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sparc64-smp-dbg' DH_OPTIONS='-plinux-image-sparc64-smp-dbg' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-sparc64-smp-dbg' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' PACKAGE_NAME='linux-image-sparc64-smp-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-sparc64-smp, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sparc64-smp' DH_OPTIONS='-plinux-image-sparc64-smp' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-sparc64-smp' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' PACKAGE_NAME='linux-image-sparc64-smp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-sparc64-smp, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-sparc64-smp' DH_OPTIONS='-plinux-headers-sparc64-smp' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-sparc64-smp' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' PACKAGE_NAME='linux-headers-sparc64-smp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-sparc64-smp-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sparc64-smp-dbg' DH_OPTIONS='-plinux-image-sparc64-smp-dbg' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-sparc64-smp-dbg' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' PACKAGE_NAME='linux-image-sparc64-smp-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_sparc64_none_sparc64_headers: - $(call if_package, linux-headers-6.6.15-sparc64, $(MAKE) -f debian/rules.real build_headers ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-sparc64' DH_OPTIONS='-plinux-headers-6.6.15-sparc64' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' PACKAGE_NAME='linux-headers-6.6.15-sparc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-sparc64, $(MAKE) -f debian/rules.real build_headers ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-sparc64' DH_OPTIONS='-plinux-headers-6.7.7-sparc64' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' PACKAGE_NAME='linux-headers-6.7.7-sparc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_sparc64_none_sparc64_image: - $(call if_package, linux-image-6.6.15-sparc64, $(MAKE) -f debian/rules.real build_image ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-sparc64' DH_OPTIONS='-plinux-image-6.6.15-sparc64' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' PACKAGE_NAME='linux-image-6.6.15-sparc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-sparc64, $(MAKE) -f debian/rules.real build_image ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-sparc64' DH_OPTIONS='-plinux-image-6.7.7-sparc64' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' PACKAGE_NAME='linux-image-6.7.7-sparc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_sparc64_none_sparc64_image-dbg: - $(call if_package, linux-image-6.6.15-sparc64-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-sparc64-dbg' DH_OPTIONS='-plinux-image-6.6.15-sparc64-dbg' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' PACKAGE_NAME='linux-image-6.6.15-sparc64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-sparc64-dbg, $(MAKE) -f debian/rules.real build_image-dbg ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-sparc64-dbg' DH_OPTIONS='-plinux-image-6.7.7-sparc64-dbg' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' PACKAGE_NAME='linux-image-6.7.7-sparc64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_sparc64_none_sparc64_installer: - $(call if_package, ata-modules-6.6.15-sparc64-di btrfs-modules-6.6.15-sparc64-di cdrom-core-modules-6.6.15-sparc64-di crc-modules-6.6.15-sparc64-di crypto-dm-modules-6.6.15-sparc64-di crypto-modules-6.6.15-sparc64-di ext4-modules-6.6.15-sparc64-di f2fs-modules-6.6.15-sparc64-di fat-modules-6.6.15-sparc64-di fb-modules-6.6.15-sparc64-di i2c-modules-6.6.15-sparc64-di input-modules-6.6.15-sparc64-di isofs-modules-6.6.15-sparc64-di jfs-modules-6.6.15-sparc64-di kernel-image-6.6.15-sparc64-di md-modules-6.6.15-sparc64-di multipath-modules-6.6.15-sparc64-di nbd-modules-6.6.15-sparc64-di nic-modules-6.6.15-sparc64-di nic-shared-modules-6.6.15-sparc64-di nic-usb-modules-6.6.15-sparc64-di pata-modules-6.6.15-sparc64-di ppp-modules-6.6.15-sparc64-di sata-modules-6.6.15-sparc64-di scsi-core-modules-6.6.15-sparc64-di scsi-modules-6.6.15-sparc64-di squashfs-modules-6.6.15-sparc64-di udf-modules-6.6.15-sparc64-di ufs-modules-6.6.15-sparc64-di usb-modules-6.6.15-sparc64-di usb-serial-modules-6.6.15-sparc64-di usb-storage-modules-6.6.15-sparc64-di xfs-modules-6.6.15-sparc64-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.6.15-sparc64-di -pbtrfs-modules-6.6.15-sparc64-di -pcdrom-core-modules-6.6.15-sparc64-di -pcrc-modules-6.6.15-sparc64-di -pcrypto-dm-modules-6.6.15-sparc64-di -pcrypto-modules-6.6.15-sparc64-di -pext4-modules-6.6.15-sparc64-di -pf2fs-modules-6.6.15-sparc64-di -pfat-modules-6.6.15-sparc64-di -pfb-modules-6.6.15-sparc64-di -pi2c-modules-6.6.15-sparc64-di -pinput-modules-6.6.15-sparc64-di -pisofs-modules-6.6.15-sparc64-di -pjfs-modules-6.6.15-sparc64-di -pkernel-image-6.6.15-sparc64-di -pmd-modules-6.6.15-sparc64-di -pmultipath-modules-6.6.15-sparc64-di -pnbd-modules-6.6.15-sparc64-di -pnic-modules-6.6.15-sparc64-di -pnic-shared-modules-6.6.15-sparc64-di -pnic-usb-modules-6.6.15-sparc64-di -ppata-modules-6.6.15-sparc64-di -pppp-modules-6.6.15-sparc64-di -psata-modules-6.6.15-sparc64-di -pscsi-core-modules-6.6.15-sparc64-di -pscsi-modules-6.6.15-sparc64-di -psquashfs-modules-6.6.15-sparc64-di -pudf-modules-6.6.15-sparc64-di -pufs-modules-6.6.15-sparc64-di -pusb-modules-6.6.15-sparc64-di -pusb-serial-modules-6.6.15-sparc64-di -pusb-storage-modules-6.6.15-sparc64-di -pxfs-modules-6.6.15-sparc64-di' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-sparc64-di' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, ata-modules-6.7.7-sparc64-di btrfs-modules-6.7.7-sparc64-di cdrom-core-modules-6.7.7-sparc64-di crc-modules-6.7.7-sparc64-di crypto-dm-modules-6.7.7-sparc64-di crypto-modules-6.7.7-sparc64-di ext4-modules-6.7.7-sparc64-di f2fs-modules-6.7.7-sparc64-di fat-modules-6.7.7-sparc64-di fb-modules-6.7.7-sparc64-di i2c-modules-6.7.7-sparc64-di input-modules-6.7.7-sparc64-di isofs-modules-6.7.7-sparc64-di jfs-modules-6.7.7-sparc64-di kernel-image-6.7.7-sparc64-di md-modules-6.7.7-sparc64-di multipath-modules-6.7.7-sparc64-di nbd-modules-6.7.7-sparc64-di nic-modules-6.7.7-sparc64-di nic-shared-modules-6.7.7-sparc64-di nic-usb-modules-6.7.7-sparc64-di pata-modules-6.7.7-sparc64-di ppp-modules-6.7.7-sparc64-di sata-modules-6.7.7-sparc64-di scsi-core-modules-6.7.7-sparc64-di scsi-modules-6.7.7-sparc64-di squashfs-modules-6.7.7-sparc64-di udf-modules-6.7.7-sparc64-di ufs-modules-6.7.7-sparc64-di usb-modules-6.7.7-sparc64-di usb-serial-modules-6.7.7-sparc64-di usb-storage-modules-6.7.7-sparc64-di xfs-modules-6.7.7-sparc64-di, $(MAKE) -f debian/rules.real build_installer ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.7.7-sparc64-di -pbtrfs-modules-6.7.7-sparc64-di -pcdrom-core-modules-6.7.7-sparc64-di -pcrc-modules-6.7.7-sparc64-di -pcrypto-dm-modules-6.7.7-sparc64-di -pcrypto-modules-6.7.7-sparc64-di -pext4-modules-6.7.7-sparc64-di -pf2fs-modules-6.7.7-sparc64-di -pfat-modules-6.7.7-sparc64-di -pfb-modules-6.7.7-sparc64-di -pi2c-modules-6.7.7-sparc64-di -pinput-modules-6.7.7-sparc64-di -pisofs-modules-6.7.7-sparc64-di -pjfs-modules-6.7.7-sparc64-di -pkernel-image-6.7.7-sparc64-di -pmd-modules-6.7.7-sparc64-di -pmultipath-modules-6.7.7-sparc64-di -pnbd-modules-6.7.7-sparc64-di -pnic-modules-6.7.7-sparc64-di -pnic-shared-modules-6.7.7-sparc64-di -pnic-usb-modules-6.7.7-sparc64-di -ppata-modules-6.7.7-sparc64-di -pppp-modules-6.7.7-sparc64-di -psata-modules-6.7.7-sparc64-di -pscsi-core-modules-6.7.7-sparc64-di -pscsi-modules-6.7.7-sparc64-di -psquashfs-modules-6.7.7-sparc64-di -pudf-modules-6.7.7-sparc64-di -pufs-modules-6.7.7-sparc64-di -pusb-modules-6.7.7-sparc64-di -pusb-serial-modules-6.7.7-sparc64-di -pusb-storage-modules-6.7.7-sparc64-di -pxfs-modules-6.7.7-sparc64-di' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-sparc64-di' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_sparc64_none_sparc64_meta: - $(call if_package, linux-image-sparc64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sparc64' DH_OPTIONS='-plinux-image-sparc64' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-sparc64' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' PACKAGE_NAME='linux-image-sparc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-sparc64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-sparc64' DH_OPTIONS='-plinux-headers-sparc64' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-sparc64' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' PACKAGE_NAME='linux-headers-sparc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-sparc64-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sparc64-dbg' DH_OPTIONS='-plinux-image-sparc64-dbg' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-sparc64-dbg' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' PACKAGE_NAME='linux-image-sparc64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-sparc64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sparc64' DH_OPTIONS='-plinux-image-sparc64' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-sparc64' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' PACKAGE_NAME='linux-image-sparc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-sparc64, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-sparc64' DH_OPTIONS='-plinux-headers-sparc64' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-sparc64' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' PACKAGE_NAME='linux-headers-sparc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-sparc64-dbg, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sparc64-dbg' DH_OPTIONS='-plinux-image-sparc64-dbg' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-sparc64-dbg' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' PACKAGE_NAME='linux-image-sparc64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_sparc64_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.6.15' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='sparc' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.7.7' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='sparc' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_sparc64_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.6.15' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='sparc' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.7.7' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='sparc' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_sparc64_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.6.15' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='sparc' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.7.7' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='sparc' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_x32:build-arch_x32_bpftool build-arch_x32_cpupower build-arch_x32_hyperv-daemons build-arch_x32_kbuild build-arch_x32_perf build-arch_x32_rtla build-arch_x32_usbip build-arch_x32_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.6.15' ARCH='x32' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='x86' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real build_bpftool ABINAME='6.7.7' ARCH='x32' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='x86' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_x32_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.6.15' ARCH='x32' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='x86' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real build_cpupower ABINAME='6.7.7' ARCH='x32' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='x86' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_x32_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.6.15' ARCH='x32' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='x86' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real build_hyperv-daemons ABINAME='6.7.7' ARCH='x32' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='x86' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_x32_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.6.15' ARCH='x32' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='x86' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real build_kbuild ABINAME='6.7.7' ARCH='x32' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='x86' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_x32_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.6.15' ARCH='x32' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='x86' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real build_perf ABINAME='6.7.7' ARCH='x32' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='x86' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_x32_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.6.15' ARCH='x32' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='x86' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real build_rtla ABINAME='6.7.7' ARCH='x32' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='x86' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-arch_x32_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.6.15' ARCH='x32' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='x86' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real build_usbip ABINAME='6.7.7' ARCH='x32' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='x86' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-indep:build-indep_doc build-indep_libc-dev build-indep_meta build-indep_none build-indep_rt build-indep_source build-indep_support build-indep_doc: - $(call if_package, linux-doc-6.6, $(MAKE) -f debian/rules.real build_doc ABINAME='6.6.15' DESTDIR='$(CURDIR)/debian/linux-doc-6.6' DH_OPTIONS='-plinux-doc-6.6' PACKAGE_NAME='linux-doc-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-doc-6.7, $(MAKE) -f debian/rules.real build_doc ABINAME='6.7.7' DESTDIR='$(CURDIR)/debian/linux-doc-6.7' DH_OPTIONS='-plinux-doc-6.7' PACKAGE_NAME='linux-doc-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-indep_libc-dev: - $(call if_package, linux-libc-dev, $(MAKE) -f debian/rules.real build_libc-dev ABINAME='6.6.15' ALL_LIBCDEV_KERNELARCHES='alpha arm arm64 ia64 m68k mips parisc powerpc riscv s390 sh sparc x86' ALL_LIBCDEV_MULTIARCHES='aarch64-linux-gnu:arm64 alpha-linux-gnu:alpha arm-linux-gnueabi:arm arm-linux-gnueabihf:arm hppa-linux-gnu:parisc i386-linux-gnu:x86 ia64-linux-gnu:ia64 m68k-linux-gnu:m68k mips-linux-gnu:mips mips64-linux-gnuabi64:mips mips64el-linux-gnuabi64:mips mipsel-linux-gnu:mips mipsisa64r6el-linux-gnuabi64:mips powerpc-linux-gnu:powerpc powerpc64-linux-gnu:powerpc powerpc64le-linux-gnu:powerpc riscv64-linux-gnu:riscv s390x-linux-gnu:s390 sh4-linux-gnu:sh sparc64-linux-gnu:sparc x86_64-linux-gnu:x86 x86_64-linux-gnux32:x86' DESTDIR='$(CURDIR)/debian/linux-libc-dev' DH_OPTIONS='-plinux-libc-dev' PACKAGE_NAME='linux-libc-dev' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-libc-dev, $(MAKE) -f debian/rules.real build_libc-dev ABINAME='6.7.7' ALL_LIBCDEV_KERNELARCHES='alpha arm arm64 loongarch m68k mips parisc powerpc riscv s390 sh sparc x86' ALL_LIBCDEV_MULTIARCHES='aarch64-linux-gnu:arm64 alpha-linux-gnu:alpha arm-linux-gnueabi:arm arm-linux-gnueabihf:arm hppa-linux-gnu:parisc i386-linux-gnu:x86 loongarch64-linux-gnu:loongarch m68k-linux-gnu:m68k mips-linux-gnu:mips mips64-linux-gnuabi64:mips mips64el-linux-gnuabi64:mips mipsel-linux-gnu:mips mipsisa64r6el-linux-gnuabi64:mips powerpc-linux-gnu:powerpc powerpc64-linux-gnu:powerpc powerpc64le-linux-gnu:powerpc riscv64-linux-gnu:riscv s390x-linux-gnu:s390 sh4-linux-gnu:sh sparc64-linux-gnu:sparc x86_64-linux-gnu:x86 x86_64-linux-gnux32:x86' DESTDIR='$(CURDIR)/debian/linux-libc-dev' DH_OPTIONS='-plinux-libc-dev' PACKAGE_NAME='linux-libc-dev' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-indep_meta: - $(call if_package, linux-doc, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' DESTDIR='$(CURDIR)/debian/linux-doc' DH_OPTIONS='-plinux-doc' INSTALLDOCS_LINK_DOC='linux-doc-6.6' PACKAGE_NAME='linux-doc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-source, $(MAKE) -f debian/rules.real build_meta ABINAME='6.6.15' DESTDIR='$(CURDIR)/debian/linux-source' DH_OPTIONS='-plinux-source' INSTALLDOCS_LINK_DOC='linux-source-6.6' PACKAGE_NAME='linux-source' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-doc, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' DESTDIR='$(CURDIR)/debian/linux-doc' DH_OPTIONS='-plinux-doc' INSTALLDOCS_LINK_DOC='linux-doc-6.7' PACKAGE_NAME='linux-doc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-source, $(MAKE) -f debian/rules.real build_meta ABINAME='6.7.7' DESTDIR='$(CURDIR)/debian/linux-source' DH_OPTIONS='-plinux-source' INSTALLDOCS_LINK_DOC='linux-source-6.7' PACKAGE_NAME='linux-source' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-indep_none:build-indep_none_headers-common build-indep_none_headers-common: - $(call if_package, linux-headers-6.6.15-common, $(MAKE) -f debian/rules.real build_headers-common ABINAME='6.6.15' ALL_KERNEL_ARCHES='alpha arm arm64 ia64 m68k mips parisc powerpc riscv s390 sh sparc x86' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-common' DH_OPTIONS='-plinux-headers-6.6.15-common' FEATURESET='none' LOCALVERSION='' PACKAGE_NAME='linux-headers-6.6.15-common' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-common, $(MAKE) -f debian/rules.real build_headers-common ABINAME='6.7.7' ALL_KERNEL_ARCHES='alpha arm arm64 loongarch m68k mips parisc powerpc riscv s390 sh sparc x86' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-common' DH_OPTIONS='-plinux-headers-6.7.7-common' FEATURESET='none' LOCALVERSION='' PACKAGE_NAME='linux-headers-6.7.7-common' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-indep_rt:build-indep_rt_headers-common build-indep_rt_headers-common: - $(call if_package, linux-headers-6.6.15-common-rt, $(MAKE) -f debian/rules.real build_headers-common ABINAME='6.6.15' ALL_KERNEL_ARCHES='arm arm64 x86' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-common-rt' DH_OPTIONS='-plinux-headers-6.6.15-common-rt' FEATURESET='rt' LOCALVERSION='-rt' PACKAGE_NAME='linux-headers-6.6.15-common-rt' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-common-rt, $(MAKE) -f debian/rules.real build_headers-common ABINAME='6.7.7' ALL_KERNEL_ARCHES='arm arm64 x86' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-common-rt' DH_OPTIONS='-plinux-headers-6.7.7-common-rt' FEATURESET='rt' LOCALVERSION='-rt' PACKAGE_NAME='linux-headers-6.7.7-common-rt' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-indep_source: - $(call if_package, linux-source-6.6, $(MAKE) -f debian/rules.real build_source ABINAME='6.6.15' DESTDIR='$(CURDIR)/debian/linux-source-6.6' DH_OPTIONS='-plinux-source-6.6' PACKAGE_NAME='linux-source-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-source-6.7, $(MAKE) -f debian/rules.real build_source ABINAME='6.7.7' DESTDIR='$(CURDIR)/debian/linux-source-6.7' DH_OPTIONS='-plinux-source-6.7' PACKAGE_NAME='linux-source-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') build-indep_support: - $(call if_package, linux-support-6.6.15, $(MAKE) -f debian/rules.real build_support ABINAME='6.6.15' DESTDIR='$(CURDIR)/debian/linux-support-6.6.15' DH_OPTIONS='-plinux-support-6.6.15' PACKAGE_NAME='linux-support-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-support-6.7.7, $(MAKE) -f debian/rules.real build_support ABINAME='6.7.7' DESTDIR='$(CURDIR)/debian/linux-support-6.7.7' DH_OPTIONS='-plinux-support-6.7.7' PACKAGE_NAME='linux-support-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') debian/build/config.alpha_none_alpha-generic: - $(MAKE) -f debian/rules.real debian/build/config.alpha_none_alpha-generic ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.alpha_none_alpha-generic ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7' debian/build/config.alpha_none_alpha-smp: - $(MAKE) -f debian/rules.real debian/build/config.alpha_none_alpha-smp ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.alpha_none_alpha-smp ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7' debian/build/config.amd64_none_amd64: - $(MAKE) -f debian/rules.real debian/build/config.amd64_none_amd64 ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.amd64_none_amd64 ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7' debian/build/config.amd64_none_cloud-amd64: - $(MAKE) -f debian/rules.real debian/build/config.amd64_none_cloud-amd64 ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/amd64/config.cloud-amd64 debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.amd64_none_cloud-amd64 ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7' debian/build/config.amd64_rt_amd64: - $(MAKE) -f debian/rules.real debian/build/config.amd64_rt_amd64 ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.amd64_rt_amd64 ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7' debian/build/config.arm64_none_arm64: - $(MAKE) -f debian/rules.real debian/build/config.arm64_none_arm64 ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.arm64_none_arm64 ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7' debian/build/config.arm64_none_cloud-arm64: - $(MAKE) -f debian/rules.real debian/build/config.arm64_none_cloud-arm64 ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/arm64/config.cloud-arm64 debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.arm64_none_cloud-arm64 ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7' debian/build/config.arm64_rt_arm64: - $(MAKE) -f debian/rules.real debian/build/config.arm64_rt_arm64 ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.arm64_rt_arm64 ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7' debian/build/config.armel_none_rpi: - $(MAKE) -f debian/rules.real debian/build/config.armel_none_rpi ABINAME='6.6.15' ARCH='armel' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.armel_none_rpi ABINAME='6.7.7' ARCH='armel' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7' debian/build/config.armhf_none_armmp: - $(MAKE) -f debian/rules.real debian/build/config.armhf_none_armmp ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.armhf_none_armmp ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7' debian/build/config.armhf_none_armmp-lpae: - $(MAKE) -f debian/rules.real debian/build/config.armhf_none_armmp-lpae ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.armhf_none_armmp-lpae ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7' debian/build/config.armhf_rt_armmp: - $(MAKE) -f debian/rules.real debian/build/config.armhf_rt_armmp ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.armhf_rt_armmp ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7' debian/build/config.hppa_none_parisc: - $(MAKE) -f debian/rules.real debian/build/config.hppa_none_parisc ABINAME='6.6.15' ARCH='hppa' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.hppa_none_parisc ABINAME='6.7.7' ARCH='hppa' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7' debian/build/config.hppa_none_parisc64: - $(MAKE) -f debian/rules.real debian/build/config.hppa_none_parisc64 ABINAME='6.6.15' ARCH='hppa' COMPAT_DEB_ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCFLAGS='-fno-cse-follow-jumps' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc64\""' KERNEL_ARCH='parisc' KERNEL_DEB_ARCH='undefined' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.hppa_none_parisc64 ABINAME='6.7.7' ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc64\""' KERNEL_ARCH='parisc' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7' debian/build/config.i386_none_686: - $(MAKE) -f debian/rules.real debian/build/config.i386_none_686 ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.i386_none_686 ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7' debian/build/config.i386_none_686-pae: - $(MAKE) -f debian/rules.real debian/build/config.i386_none_686-pae ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.i386_none_686-pae ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7' debian/build/config.i386_rt_686-pae: - $(MAKE) -f debian/rules.real debian/build/config.i386_rt_686-pae ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6' -debian/build/config.ia64_none_itanium: - $(MAKE) -f debian/rules.real debian/build/config.ia64_none_itanium ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' FEATURESET='none' FLAVOUR='itanium' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.itanium' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-itanium\""' KERNEL_ARCH='ia64' LOCALVERSION='-itanium' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-itanium' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6' -debian/build/config.ia64_none_mckinley: - $(MAKE) -f debian/rules.real debian/build/config.ia64_none_mckinley ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' FEATURESET='none' FLAVOUR='mckinley' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.mckinley' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mckinley\""' KERNEL_ARCH='ia64' LOCALVERSION='-mckinley' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mckinley' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.i386_rt_686-pae ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7' +debian/build/config.loong64_none_loong64: + $(MAKE) -f debian/rules.real debian/build/config.loong64_none_loong64 ABINAME='6.7.7' ARCH='loong64' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='loong64' IMAGE_FILE='arch/loongarch/boot/vmlinuz.efi' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/loong64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loong64\""' KERNEL_ARCH='loongarch' LOCALVERSION='-loong64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loong64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7' debian/build/config.m68k_none_m68k: - $(MAKE) -f debian/rules.real debian/build/config.m68k_none_m68k ABINAME='6.6.15' ARCH='m68k' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCFLAGS='-ffreestanding' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.m68k_none_m68k ABINAME='6.7.7' ARCH='m68k' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7' debian/build/config.mips64_none_5kc-malta: - $(MAKE) -f debian/rules.real debian/build/config.mips64_none_5kc-malta ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.mips64_none_5kc-malta ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7' debian/build/config.mips64_none_mips64r2eb: - $(MAKE) -f debian/rules.real debian/build/config.mips64_none_mips64r2eb ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.mips64_none_mips64r2eb ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7' debian/build/config.mips64_none_octeon: - $(MAKE) -f debian/rules.real debian/build/config.mips64_none_octeon ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.mips64_none_octeon ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7' debian/build/config.mips64el_none_5kc-malta: - $(MAKE) -f debian/rules.real debian/build/config.mips64el_none_5kc-malta ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.mips64el_none_5kc-malta ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7' debian/build/config.mips64el_none_loongson-3: - $(MAKE) -f debian/rules.real debian/build/config.mips64el_none_loongson-3 ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.mips64el_none_loongson-3 ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7' debian/build/config.mips64el_none_mips64r2el: - $(MAKE) -f debian/rules.real debian/build/config.mips64el_none_mips64r2el ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.mips64el_none_mips64r2el ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7' debian/build/config.mips64el_none_octeon: - $(MAKE) -f debian/rules.real debian/build/config.mips64el_none_octeon ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.mips64el_none_octeon ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7' debian/build/config.mips64r6el_none_mips64r6el: - $(MAKE) -f debian/rules.real debian/build/config.mips64r6el_none_mips64r6el ABINAME='6.6.15' ARCH='mips64r6el' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.mips64r6el_none_mips64r6el ABINAME='6.7.7' ARCH='mips64r6el' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7' debian/build/config.mips_none_4kc-malta: - $(MAKE) -f debian/rules.real debian/build/config.mips_none_4kc-malta ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.mips_none_4kc-malta ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7' debian/build/config.mips_none_mips32r2eb: - $(MAKE) -f debian/rules.real debian/build/config.mips_none_mips32r2eb ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.mips_none_mips32r2eb ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7' debian/build/config.mips_none_octeon: - $(MAKE) -f debian/rules.real debian/build/config.mips_none_octeon ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.mips_none_octeon ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7' debian/build/config.mipsel_none_4kc-malta: - $(MAKE) -f debian/rules.real debian/build/config.mipsel_none_4kc-malta ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.mipsel_none_4kc-malta ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7' debian/build/config.mipsel_none_loongson-3: - $(MAKE) -f debian/rules.real debian/build/config.mipsel_none_loongson-3 ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.mipsel_none_loongson-3 ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7' debian/build/config.mipsel_none_mips32r2el: - $(MAKE) -f debian/rules.real debian/build/config.mipsel_none_mips32r2el ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.mipsel_none_mips32r2el ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7' debian/build/config.mipsel_none_octeon: - $(MAKE) -f debian/rules.real debian/build/config.mipsel_none_octeon ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.mipsel_none_octeon ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7' debian/build/config.powerpc_none_powerpc: - $(MAKE) -f debian/rules.real debian/build/config.powerpc_none_powerpc ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.powerpc_none_powerpc ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7' debian/build/config.powerpc_none_powerpc-smp: - $(MAKE) -f debian/rules.real debian/build/config.powerpc_none_powerpc-smp ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc debian/config/powerpc/config.powerpc-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.powerpc_none_powerpc-smp ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc debian/config/powerpc/config.powerpc-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7' debian/build/config.powerpc_none_powerpc64: - $(MAKE) -f debian/rules.real debian/build/config.powerpc_none_powerpc64 ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.powerpc_none_powerpc64 ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7' debian/build/config.ppc64_none_powerpc64: - $(MAKE) -f debian/rules.real debian/build/config.ppc64_none_powerpc64 ABINAME='6.6.15' ARCH='ppc64' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.ppc64_none_powerpc64 ABINAME='6.7.7' ARCH='ppc64' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7' debian/build/config.ppc64el_none_powerpc64le: - $(MAKE) -f debian/rules.real debian/build/config.ppc64el_none_powerpc64le ABINAME='6.6.15' ARCH='ppc64el' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.ppc64el_none_powerpc64le ABINAME='6.7.7' ARCH='ppc64el' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7' debian/build/config.riscv64_none_riscv64: - $(MAKE) -f debian/rules.real debian/build/config.riscv64_none_riscv64 ABINAME='6.6.15' ARCH='riscv64' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.riscv64_none_riscv64 ABINAME='6.7.7' ARCH='riscv64' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7' debian/build/config.s390x_none_s390x: - $(MAKE) -f debian/rules.real debian/build/config.s390x_none_s390x ABINAME='6.6.15' ARCH='s390x' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.s390x_none_s390x ABINAME='6.7.7' ARCH='s390x' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7' debian/build/config.sh4_none_sh7751r: - $(MAKE) -f debian/rules.real debian/build/config.sh4_none_sh7751r ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.sh4_none_sh7751r ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7' debian/build/config.sh4_none_sh7785lcr: - $(MAKE) -f debian/rules.real debian/build/config.sh4_none_sh7785lcr ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.sh4_none_sh7785lcr ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7' debian/build/config.sparc64_none_sparc64: - $(MAKE) -f debian/rules.real debian/build/config.sparc64_none_sparc64 ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6' + $(MAKE) -f debian/rules.real debian/build/config.sparc64_none_sparc64 ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7' debian/build/config.sparc64_none_sparc64-smp: - $(MAKE) -f debian/rules.real debian/build/config.sparc64_none_sparc64-smp ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6' -setup:setup_alpha setup_amd64 setup_arm64 setup_armel setup_armhf setup_doc setup_hppa setup_i386 setup_ia64 setup_libc-dev setup_m68k setup_meta setup_mips setup_mips64 setup_mips64el setup_mips64r6el setup_mipsel setup_none setup_powerpc setup_ppc64 setup_ppc64el setup_riscv64 setup_rt setup_s390x setup_sh4 setup_source setup_sparc64 setup_support setup_x32 + $(MAKE) -f debian/rules.real debian/build/config.sparc64_none_sparc64-smp ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7' +setup:setup_alpha setup_amd64 setup_arm64 setup_armel setup_armhf setup_doc setup_hppa setup_i386 setup_libc-dev setup_loong64 setup_m68k setup_meta setup_mips setup_mips64 setup_mips64el setup_mips64r6el setup_mipsel setup_none setup_powerpc setup_ppc64 setup_ppc64el setup_riscv64 setup_rt setup_s390x setup_sh4 setup_source setup_sparc64 setup_support setup_x32 setup_alpha:setup_alpha_bpftool setup_alpha_config setup_alpha_cpupower setup_alpha_hyperv-daemons setup_alpha_kbuild setup_alpha_none setup_alpha_perf setup_alpha_rtla setup_alpha_usbip setup_alpha_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.6.15' ARCH='alpha' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='alpha' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.7.7' ARCH='alpha' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='alpha' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_alpha_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real setup_config ABINAME='6.6.15' ARCH='alpha' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='alpha' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real setup_config ABINAME='6.7.7' ARCH='alpha' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='alpha' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_alpha_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.6.15' ARCH='alpha' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='alpha' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.7.7' ARCH='alpha' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='alpha' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_alpha_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.6.15' ARCH='alpha' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='alpha' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.7.7' ARCH='alpha' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='alpha' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_alpha_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.6.15' ARCH='alpha' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='alpha' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.7.7' ARCH='alpha' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='alpha' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_alpha_none:setup_alpha_none_alpha-generic setup_alpha_none_alpha-smp setup_alpha_none_alpha-generic:setup_alpha_none_alpha-generic_headers setup_alpha_none_alpha-generic_image setup_alpha_none_alpha-generic_image-dbg setup_alpha_none_alpha-generic_installer setup_alpha_none_alpha-generic_meta setup_alpha_none_alpha-generic_headers: - $(call if_package, linux-headers-6.6.15-alpha-generic, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-alpha-generic' DH_OPTIONS='-plinux-headers-6.6.15-alpha-generic' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' PACKAGE_NAME='linux-headers-6.6.15-alpha-generic' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-alpha-generic, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-alpha-generic' DH_OPTIONS='-plinux-headers-6.7.7-alpha-generic' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' PACKAGE_NAME='linux-headers-6.7.7-alpha-generic' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_alpha_none_alpha-generic_image: - $(call if_package, linux-image-6.6.15-alpha-generic, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-alpha-generic' DH_OPTIONS='-plinux-image-6.6.15-alpha-generic' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' PACKAGE_NAME='linux-image-6.6.15-alpha-generic' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-alpha-generic, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-alpha-generic' DH_OPTIONS='-plinux-image-6.7.7-alpha-generic' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' PACKAGE_NAME='linux-image-6.7.7-alpha-generic' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_alpha_none_alpha-generic_image-dbg: - $(call if_package, linux-image-6.6.15-alpha-generic-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-alpha-generic-dbg' DH_OPTIONS='-plinux-image-6.6.15-alpha-generic-dbg' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' PACKAGE_NAME='linux-image-6.6.15-alpha-generic-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-alpha-generic-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-alpha-generic-dbg' DH_OPTIONS='-plinux-image-6.7.7-alpha-generic-dbg' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' PACKAGE_NAME='linux-image-6.7.7-alpha-generic-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_alpha_none_alpha-generic_installer: - $(call if_package, ata-modules-6.6.15-alpha-generic-di btrfs-modules-6.6.15-alpha-generic-di cdrom-core-modules-6.6.15-alpha-generic-di crc-modules-6.6.15-alpha-generic-di crypto-dm-modules-6.6.15-alpha-generic-di crypto-modules-6.6.15-alpha-generic-di event-modules-6.6.15-alpha-generic-di ext4-modules-6.6.15-alpha-generic-di f2fs-modules-6.6.15-alpha-generic-di fat-modules-6.6.15-alpha-generic-di fb-modules-6.6.15-alpha-generic-di i2c-modules-6.6.15-alpha-generic-di input-modules-6.6.15-alpha-generic-di isofs-modules-6.6.15-alpha-generic-di jfs-modules-6.6.15-alpha-generic-di kernel-image-6.6.15-alpha-generic-di loop-modules-6.6.15-alpha-generic-di md-modules-6.6.15-alpha-generic-di mouse-modules-6.6.15-alpha-generic-di multipath-modules-6.6.15-alpha-generic-di nbd-modules-6.6.15-alpha-generic-di nic-modules-6.6.15-alpha-generic-di nic-pcmcia-modules-6.6.15-alpha-generic-di nic-shared-modules-6.6.15-alpha-generic-di nic-usb-modules-6.6.15-alpha-generic-di nic-wireless-modules-6.6.15-alpha-generic-di pata-modules-6.6.15-alpha-generic-di pcmcia-modules-6.6.15-alpha-generic-di ppp-modules-6.6.15-alpha-generic-di sata-modules-6.6.15-alpha-generic-di scsi-core-modules-6.6.15-alpha-generic-di scsi-modules-6.6.15-alpha-generic-di scsi-nic-modules-6.6.15-alpha-generic-di serial-modules-6.6.15-alpha-generic-di squashfs-modules-6.6.15-alpha-generic-di srm-modules-6.6.15-alpha-generic-di usb-modules-6.6.15-alpha-generic-di usb-serial-modules-6.6.15-alpha-generic-di usb-storage-modules-6.6.15-alpha-generic-di xfs-modules-6.6.15-alpha-generic-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.6.15-alpha-generic-di -pbtrfs-modules-6.6.15-alpha-generic-di -pcdrom-core-modules-6.6.15-alpha-generic-di -pcrc-modules-6.6.15-alpha-generic-di -pcrypto-dm-modules-6.6.15-alpha-generic-di -pcrypto-modules-6.6.15-alpha-generic-di -pevent-modules-6.6.15-alpha-generic-di -pext4-modules-6.6.15-alpha-generic-di -pf2fs-modules-6.6.15-alpha-generic-di -pfat-modules-6.6.15-alpha-generic-di -pfb-modules-6.6.15-alpha-generic-di -pi2c-modules-6.6.15-alpha-generic-di -pinput-modules-6.6.15-alpha-generic-di -pisofs-modules-6.6.15-alpha-generic-di -pjfs-modules-6.6.15-alpha-generic-di -pkernel-image-6.6.15-alpha-generic-di -ploop-modules-6.6.15-alpha-generic-di -pmd-modules-6.6.15-alpha-generic-di -pmouse-modules-6.6.15-alpha-generic-di -pmultipath-modules-6.6.15-alpha-generic-di -pnbd-modules-6.6.15-alpha-generic-di -pnic-modules-6.6.15-alpha-generic-di -pnic-pcmcia-modules-6.6.15-alpha-generic-di -pnic-shared-modules-6.6.15-alpha-generic-di -pnic-usb-modules-6.6.15-alpha-generic-di -pnic-wireless-modules-6.6.15-alpha-generic-di -ppata-modules-6.6.15-alpha-generic-di -ppcmcia-modules-6.6.15-alpha-generic-di -pppp-modules-6.6.15-alpha-generic-di -psata-modules-6.6.15-alpha-generic-di -pscsi-core-modules-6.6.15-alpha-generic-di -pscsi-modules-6.6.15-alpha-generic-di -pscsi-nic-modules-6.6.15-alpha-generic-di -pserial-modules-6.6.15-alpha-generic-di -psquashfs-modules-6.6.15-alpha-generic-di -psrm-modules-6.6.15-alpha-generic-di -pusb-modules-6.6.15-alpha-generic-di -pusb-serial-modules-6.6.15-alpha-generic-di -pusb-storage-modules-6.6.15-alpha-generic-di -pxfs-modules-6.6.15-alpha-generic-di' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-alpha-generic-di' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, ata-modules-6.7.7-alpha-generic-di btrfs-modules-6.7.7-alpha-generic-di cdrom-core-modules-6.7.7-alpha-generic-di crc-modules-6.7.7-alpha-generic-di crypto-dm-modules-6.7.7-alpha-generic-di crypto-modules-6.7.7-alpha-generic-di event-modules-6.7.7-alpha-generic-di ext4-modules-6.7.7-alpha-generic-di f2fs-modules-6.7.7-alpha-generic-di fat-modules-6.7.7-alpha-generic-di fb-modules-6.7.7-alpha-generic-di i2c-modules-6.7.7-alpha-generic-di input-modules-6.7.7-alpha-generic-di isofs-modules-6.7.7-alpha-generic-di jfs-modules-6.7.7-alpha-generic-di kernel-image-6.7.7-alpha-generic-di loop-modules-6.7.7-alpha-generic-di md-modules-6.7.7-alpha-generic-di mouse-modules-6.7.7-alpha-generic-di multipath-modules-6.7.7-alpha-generic-di nbd-modules-6.7.7-alpha-generic-di nic-modules-6.7.7-alpha-generic-di nic-pcmcia-modules-6.7.7-alpha-generic-di nic-shared-modules-6.7.7-alpha-generic-di nic-usb-modules-6.7.7-alpha-generic-di nic-wireless-modules-6.7.7-alpha-generic-di pata-modules-6.7.7-alpha-generic-di pcmcia-modules-6.7.7-alpha-generic-di ppp-modules-6.7.7-alpha-generic-di sata-modules-6.7.7-alpha-generic-di scsi-core-modules-6.7.7-alpha-generic-di scsi-modules-6.7.7-alpha-generic-di scsi-nic-modules-6.7.7-alpha-generic-di serial-modules-6.7.7-alpha-generic-di squashfs-modules-6.7.7-alpha-generic-di srm-modules-6.7.7-alpha-generic-di usb-modules-6.7.7-alpha-generic-di usb-serial-modules-6.7.7-alpha-generic-di usb-storage-modules-6.7.7-alpha-generic-di xfs-modules-6.7.7-alpha-generic-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.7.7-alpha-generic-di -pbtrfs-modules-6.7.7-alpha-generic-di -pcdrom-core-modules-6.7.7-alpha-generic-di -pcrc-modules-6.7.7-alpha-generic-di -pcrypto-dm-modules-6.7.7-alpha-generic-di -pcrypto-modules-6.7.7-alpha-generic-di -pevent-modules-6.7.7-alpha-generic-di -pext4-modules-6.7.7-alpha-generic-di -pf2fs-modules-6.7.7-alpha-generic-di -pfat-modules-6.7.7-alpha-generic-di -pfb-modules-6.7.7-alpha-generic-di -pi2c-modules-6.7.7-alpha-generic-di -pinput-modules-6.7.7-alpha-generic-di -pisofs-modules-6.7.7-alpha-generic-di -pjfs-modules-6.7.7-alpha-generic-di -pkernel-image-6.7.7-alpha-generic-di -ploop-modules-6.7.7-alpha-generic-di -pmd-modules-6.7.7-alpha-generic-di -pmouse-modules-6.7.7-alpha-generic-di -pmultipath-modules-6.7.7-alpha-generic-di -pnbd-modules-6.7.7-alpha-generic-di -pnic-modules-6.7.7-alpha-generic-di -pnic-pcmcia-modules-6.7.7-alpha-generic-di -pnic-shared-modules-6.7.7-alpha-generic-di -pnic-usb-modules-6.7.7-alpha-generic-di -pnic-wireless-modules-6.7.7-alpha-generic-di -ppata-modules-6.7.7-alpha-generic-di -ppcmcia-modules-6.7.7-alpha-generic-di -pppp-modules-6.7.7-alpha-generic-di -psata-modules-6.7.7-alpha-generic-di -pscsi-core-modules-6.7.7-alpha-generic-di -pscsi-modules-6.7.7-alpha-generic-di -pscsi-nic-modules-6.7.7-alpha-generic-di -pserial-modules-6.7.7-alpha-generic-di -psquashfs-modules-6.7.7-alpha-generic-di -psrm-modules-6.7.7-alpha-generic-di -pusb-modules-6.7.7-alpha-generic-di -pusb-serial-modules-6.7.7-alpha-generic-di -pusb-storage-modules-6.7.7-alpha-generic-di -pxfs-modules-6.7.7-alpha-generic-di' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-alpha-generic-di' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_alpha_none_alpha-generic_meta: - $(call if_package, linux-image-alpha-generic, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-alpha-generic' DH_OPTIONS='-plinux-image-alpha-generic' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-alpha-generic' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' PACKAGE_NAME='linux-image-alpha-generic' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-alpha-generic, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-alpha-generic' DH_OPTIONS='-plinux-headers-alpha-generic' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-alpha-generic' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' PACKAGE_NAME='linux-headers-alpha-generic' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-alpha-generic-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-alpha-generic-dbg' DH_OPTIONS='-plinux-image-alpha-generic-dbg' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-alpha-generic-dbg' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' PACKAGE_NAME='linux-image-alpha-generic-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-alpha-generic, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-alpha-generic' DH_OPTIONS='-plinux-image-alpha-generic' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-alpha-generic' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' PACKAGE_NAME='linux-image-alpha-generic' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-alpha-generic, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-alpha-generic' DH_OPTIONS='-plinux-headers-alpha-generic' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-alpha-generic' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' PACKAGE_NAME='linux-headers-alpha-generic' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-alpha-generic-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-alpha-generic-dbg' DH_OPTIONS='-plinux-image-alpha-generic-dbg' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-alpha-generic-dbg' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' PACKAGE_NAME='linux-image-alpha-generic-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_alpha_none_alpha-smp:setup_alpha_none_alpha-smp_headers setup_alpha_none_alpha-smp_image setup_alpha_none_alpha-smp_image-dbg setup_alpha_none_alpha-smp_meta setup_alpha_none_alpha-smp_headers: - $(call if_package, linux-headers-6.6.15-alpha-smp, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-alpha-smp' DH_OPTIONS='-plinux-headers-6.6.15-alpha-smp' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' PACKAGE_NAME='linux-headers-6.6.15-alpha-smp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-alpha-smp, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-alpha-smp' DH_OPTIONS='-plinux-headers-6.7.7-alpha-smp' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' PACKAGE_NAME='linux-headers-6.7.7-alpha-smp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_alpha_none_alpha-smp_image: - $(call if_package, linux-image-6.6.15-alpha-smp, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-alpha-smp' DH_OPTIONS='-plinux-image-6.6.15-alpha-smp' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' PACKAGE_NAME='linux-image-6.6.15-alpha-smp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-alpha-smp, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-alpha-smp' DH_OPTIONS='-plinux-image-6.7.7-alpha-smp' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' PACKAGE_NAME='linux-image-6.7.7-alpha-smp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_alpha_none_alpha-smp_image-dbg: - $(call if_package, linux-image-6.6.15-alpha-smp-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-alpha-smp-dbg' DH_OPTIONS='-plinux-image-6.6.15-alpha-smp-dbg' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' PACKAGE_NAME='linux-image-6.6.15-alpha-smp-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-alpha-smp-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-alpha-smp-dbg' DH_OPTIONS='-plinux-image-6.7.7-alpha-smp-dbg' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' PACKAGE_NAME='linux-image-6.7.7-alpha-smp-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_alpha_none_alpha-smp_meta: - $(call if_package, linux-image-alpha-smp, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-alpha-smp' DH_OPTIONS='-plinux-image-alpha-smp' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-alpha-smp' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' PACKAGE_NAME='linux-image-alpha-smp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-alpha-smp, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-alpha-smp' DH_OPTIONS='-plinux-headers-alpha-smp' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-alpha-smp' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' PACKAGE_NAME='linux-headers-alpha-smp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-alpha-smp-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-alpha-smp-dbg' DH_OPTIONS='-plinux-image-alpha-smp-dbg' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-alpha-smp-dbg' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' PACKAGE_NAME='linux-image-alpha-smp-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-alpha-smp, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-alpha-smp' DH_OPTIONS='-plinux-image-alpha-smp' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-alpha-smp' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' PACKAGE_NAME='linux-image-alpha-smp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-alpha-smp, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-alpha-smp' DH_OPTIONS='-plinux-headers-alpha-smp' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-alpha-smp' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' PACKAGE_NAME='linux-headers-alpha-smp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-alpha-smp-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='alpha' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-alpha-smp-dbg' DH_OPTIONS='-plinux-image-alpha-smp-dbg' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-alpha-smp-dbg' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' PACKAGE_NAME='linux-image-alpha-smp-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_alpha_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.6.15' ARCH='alpha' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='alpha' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.7.7' ARCH='alpha' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='alpha' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_alpha_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.6.15' ARCH='alpha' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='alpha' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.7.7' ARCH='alpha' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='alpha' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_alpha_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.6.15' ARCH='alpha' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='alpha' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.7.7' ARCH='alpha' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='alpha' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_amd64:setup_amd64_bpftool setup_amd64_config setup_amd64_cpupower setup_amd64_hyperv-daemons setup_amd64_kbuild setup_amd64_none setup_amd64_perf setup_amd64_rt setup_amd64_rtla setup_amd64_signed-template setup_amd64_usbip setup_amd64_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.6.15' ARCH='amd64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='x86' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.7.7' ARCH='amd64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='x86' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_amd64_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real setup_config ABINAME='6.6.15' ARCH='amd64' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='x86' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real setup_config ABINAME='6.7.7' ARCH='amd64' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='x86' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_amd64_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.6.15' ARCH='amd64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='x86' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.7.7' ARCH='amd64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='x86' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_amd64_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.6.15' ARCH='amd64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='x86' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.7.7' ARCH='amd64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='x86' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_amd64_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.6.15' ARCH='amd64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='x86' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.7.7' ARCH='amd64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='x86' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_amd64_none:setup_amd64_none_amd64 setup_amd64_none_cloud-amd64 setup_amd64_none_amd64:setup_amd64_none_amd64_headers setup_amd64_none_amd64_image setup_amd64_none_amd64_image-dbg setup_amd64_none_amd64_installer-test setup_amd64_none_amd64_meta setup_amd64_none_amd64_headers: - $(call if_package, linux-headers-6.6.15-amd64, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-amd64' DH_OPTIONS='-plinux-headers-6.6.15-amd64' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-headers-6.6.15-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-amd64, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-amd64' DH_OPTIONS='-plinux-headers-6.7.7-amd64' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-headers-6.7.7-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_amd64_none_amd64_image: - $(call if_package, linux-image-6.6.15-amd64-unsigned, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-amd64-unsigned' DH_OPTIONS='-plinux-image-6.6.15-amd64-unsigned' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-image-6.6.15-amd64-unsigned' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-amd64-unsigned, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-amd64-unsigned' DH_OPTIONS='-plinux-image-6.7.7-amd64-unsigned' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-image-6.7.7-amd64-unsigned' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_amd64_none_amd64_image-dbg: - $(call if_package, linux-image-6.6.15-amd64-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-amd64-dbg' DH_OPTIONS='-plinux-image-6.6.15-amd64-dbg' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-image-6.6.15-amd64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-amd64-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-amd64-dbg' DH_OPTIONS='-plinux-image-6.7.7-amd64-dbg' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-image-6.7.7-amd64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_amd64_none_amd64_installer-test: - $(MAKE) -f debian/rules.real setup_installer-test ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pacpi-modules-6.6.15-amd64-di -pata-modules-6.6.15-amd64-di -pbtrfs-modules-6.6.15-amd64-di -pcdrom-core-modules-6.6.15-amd64-di -pcrc-modules-6.6.15-amd64-di -pcrypto-dm-modules-6.6.15-amd64-di -pcrypto-modules-6.6.15-amd64-di -pefi-modules-6.6.15-amd64-di -pevent-modules-6.6.15-amd64-di -pext4-modules-6.6.15-amd64-di -pf2fs-modules-6.6.15-amd64-di -pfat-modules-6.6.15-amd64-di -pfb-modules-6.6.15-amd64-di -pfirewire-core-modules-6.6.15-amd64-di -pi2c-modules-6.6.15-amd64-di -pinput-modules-6.6.15-amd64-di -pisofs-modules-6.6.15-amd64-di -pjfs-modules-6.6.15-amd64-di -pkernel-image-6.6.15-amd64-di -ploop-modules-6.6.15-amd64-di -pmd-modules-6.6.15-amd64-di -pmmc-core-modules-6.6.15-amd64-di -pmmc-modules-6.6.15-amd64-di -pmouse-modules-6.6.15-amd64-di -pmtd-core-modules-6.6.15-amd64-di -pmultipath-modules-6.6.15-amd64-di -pnbd-modules-6.6.15-amd64-di -pnic-modules-6.6.15-amd64-di -pnic-pcmcia-modules-6.6.15-amd64-di -pnic-shared-modules-6.6.15-amd64-di -pnic-usb-modules-6.6.15-amd64-di -pnic-wireless-modules-6.6.15-amd64-di -ppata-modules-6.6.15-amd64-di -ppcmcia-modules-6.6.15-amd64-di -ppcmcia-storage-modules-6.6.15-amd64-di -pppp-modules-6.6.15-amd64-di -prfkill-modules-6.6.15-amd64-di -psata-modules-6.6.15-amd64-di -pscsi-core-modules-6.6.15-amd64-di -pscsi-modules-6.6.15-amd64-di -pscsi-nic-modules-6.6.15-amd64-di -pserial-modules-6.6.15-amd64-di -psound-modules-6.6.15-amd64-di -pspeakup-modules-6.6.15-amd64-di -psquashfs-modules-6.6.15-amd64-di -pudf-modules-6.6.15-amd64-di -puinput-modules-6.6.15-amd64-di -pusb-modules-6.6.15-amd64-di -pusb-serial-modules-6.6.15-amd64-di -pusb-storage-modules-6.6.15-amd64-di -pxfs-modules-6.6.15-amd64-di' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6' + $(MAKE) -f debian/rules.real setup_installer-test ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pacpi-modules-6.7.7-amd64-di -pata-modules-6.7.7-amd64-di -pbtrfs-modules-6.7.7-amd64-di -pcdrom-core-modules-6.7.7-amd64-di -pcrc-modules-6.7.7-amd64-di -pcrypto-dm-modules-6.7.7-amd64-di -pcrypto-modules-6.7.7-amd64-di -pefi-modules-6.7.7-amd64-di -pevent-modules-6.7.7-amd64-di -pext4-modules-6.7.7-amd64-di -pf2fs-modules-6.7.7-amd64-di -pfat-modules-6.7.7-amd64-di -pfb-modules-6.7.7-amd64-di -pfirewire-core-modules-6.7.7-amd64-di -pi2c-modules-6.7.7-amd64-di -pinput-modules-6.7.7-amd64-di -pisofs-modules-6.7.7-amd64-di -pjfs-modules-6.7.7-amd64-di -pkernel-image-6.7.7-amd64-di -ploop-modules-6.7.7-amd64-di -pmd-modules-6.7.7-amd64-di -pmmc-core-modules-6.7.7-amd64-di -pmmc-modules-6.7.7-amd64-di -pmouse-modules-6.7.7-amd64-di -pmtd-core-modules-6.7.7-amd64-di -pmultipath-modules-6.7.7-amd64-di -pnbd-modules-6.7.7-amd64-di -pnic-modules-6.7.7-amd64-di -pnic-pcmcia-modules-6.7.7-amd64-di -pnic-shared-modules-6.7.7-amd64-di -pnic-usb-modules-6.7.7-amd64-di -pnic-wireless-modules-6.7.7-amd64-di -ppata-modules-6.7.7-amd64-di -ppcmcia-modules-6.7.7-amd64-di -ppcmcia-storage-modules-6.7.7-amd64-di -pppp-modules-6.7.7-amd64-di -prfkill-modules-6.7.7-amd64-di -psata-modules-6.7.7-amd64-di -pscsi-core-modules-6.7.7-amd64-di -pscsi-modules-6.7.7-amd64-di -pscsi-nic-modules-6.7.7-amd64-di -pserial-modules-6.7.7-amd64-di -psound-modules-6.7.7-amd64-di -pspeakup-modules-6.7.7-amd64-di -psquashfs-modules-6.7.7-amd64-di -pudf-modules-6.7.7-amd64-di -puinput-modules-6.7.7-amd64-di -pusb-modules-6.7.7-amd64-di -pusb-serial-modules-6.7.7-amd64-di -pusb-storage-modules-6.7.7-amd64-di -pxfs-modules-6.7.7-amd64-di' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7' setup_amd64_none_amd64_meta: - $(call if_package, linux-image-amd64-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-amd64-dbg' DH_OPTIONS='-plinux-image-amd64-dbg' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-amd64-dbg' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-image-amd64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-amd64-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-amd64-dbg' DH_OPTIONS='-plinux-image-amd64-dbg' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-amd64-dbg' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' PACKAGE_NAME='linux-image-amd64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_amd64_none_cloud-amd64:setup_amd64_none_cloud-amd64_headers setup_amd64_none_cloud-amd64_image setup_amd64_none_cloud-amd64_image-dbg setup_amd64_none_cloud-amd64_meta setup_amd64_none_cloud-amd64_headers: - $(call if_package, linux-headers-6.6.15-cloud-amd64, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-cloud-amd64' DH_OPTIONS='-plinux-headers-6.6.15-cloud-amd64' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/amd64/config.cloud-amd64 debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-headers-6.6.15-cloud-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-cloud-amd64, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-cloud-amd64' DH_OPTIONS='-plinux-headers-6.7.7-cloud-amd64' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-headers-6.7.7-cloud-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_amd64_none_cloud-amd64_image: - $(call if_package, linux-image-6.6.15-cloud-amd64-unsigned, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-cloud-amd64-unsigned' DH_OPTIONS='-plinux-image-6.6.15-cloud-amd64-unsigned' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/amd64/config.cloud-amd64 debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-image-6.6.15-cloud-amd64-unsigned' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-cloud-amd64-unsigned, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-cloud-amd64-unsigned' DH_OPTIONS='-plinux-image-6.7.7-cloud-amd64-unsigned' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-image-6.7.7-cloud-amd64-unsigned' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_amd64_none_cloud-amd64_image-dbg: - $(call if_package, linux-image-6.6.15-cloud-amd64-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-cloud-amd64-dbg' DH_OPTIONS='-plinux-image-6.6.15-cloud-amd64-dbg' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/amd64/config.cloud-amd64 debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-image-6.6.15-cloud-amd64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-cloud-amd64-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-cloud-amd64-dbg' DH_OPTIONS='-plinux-image-6.7.7-cloud-amd64-dbg' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-image-6.7.7-cloud-amd64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_amd64_none_cloud-amd64_meta: - $(call if_package, linux-image-cloud-amd64-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-cloud-amd64-dbg' DH_OPTIONS='-plinux-image-cloud-amd64-dbg' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-cloud-amd64-dbg' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/amd64/config.cloud-amd64 debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-image-cloud-amd64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-cloud-amd64-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-cloud-amd64-dbg' DH_OPTIONS='-plinux-image-cloud-amd64-dbg' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-cloud-amd64-dbg' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/config.cloud debian/config/amd64/config.cloud-amd64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' PACKAGE_NAME='linux-image-cloud-amd64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_amd64_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.6.15' ARCH='amd64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='x86' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.7.7' ARCH='amd64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='x86' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_amd64_rt:setup_amd64_rt_amd64 setup_amd64_rt_amd64:setup_amd64_rt_amd64_headers setup_amd64_rt_amd64_image setup_amd64_rt_amd64_image-dbg setup_amd64_rt_amd64_meta setup_amd64_rt_amd64_headers: - $(call if_package, linux-headers-6.6.15-rt-amd64, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-rt-amd64' DH_OPTIONS='-plinux-headers-6.6.15-rt-amd64' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-headers-6.6.15-rt-amd64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-rt-amd64, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-rt-amd64' DH_OPTIONS='-plinux-headers-6.7.7-rt-amd64' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-headers-6.7.7-rt-amd64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_amd64_rt_amd64_image: - $(call if_package, linux-image-6.6.15-rt-amd64-unsigned, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-rt-amd64-unsigned' DH_OPTIONS='-plinux-image-6.6.15-rt-amd64-unsigned' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-image-6.6.15-rt-amd64-unsigned' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-rt-amd64-unsigned, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-rt-amd64-unsigned' DH_OPTIONS='-plinux-image-6.7.7-rt-amd64-unsigned' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-image-6.7.7-rt-amd64-unsigned' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_amd64_rt_amd64_image-dbg: - $(call if_package, linux-image-6.6.15-rt-amd64-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-rt-amd64-dbg' DH_OPTIONS='-plinux-image-6.6.15-rt-amd64-dbg' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-image-6.6.15-rt-amd64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-rt-amd64-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-rt-amd64-dbg' DH_OPTIONS='-plinux-image-6.7.7-rt-amd64-dbg' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-image-6.7.7-rt-amd64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_amd64_rt_amd64_meta: - $(call if_package, linux-image-rt-amd64-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-amd64-dbg' DH_OPTIONS='-plinux-image-rt-amd64-dbg' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-rt-amd64-dbg' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-image-rt-amd64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-rt-amd64-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='amd64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-amd64-dbg' DH_OPTIONS='-plinux-image-rt-amd64-dbg' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-rt-amd64-dbg' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' PACKAGE_NAME='linux-image-rt-amd64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_amd64_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.6.15' ARCH='amd64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='x86' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.7.7' ARCH='amd64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='x86' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_amd64_signed-template: - $(call if_package, linux-image-amd64-signed-template, $(MAKE) -f debian/rules.real setup_signed-template ABINAME='6.6.15' ARCH='amd64' DESTDIR='$(CURDIR)/debian/linux-image-amd64-signed-template' DH_OPTIONS='-plinux-image-amd64-signed-template' KERNEL_ARCH='x86' PACKAGE_NAME='linux-image-amd64-signed-template' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-amd64-signed-template, $(MAKE) -f debian/rules.real setup_signed-template ABINAME='6.7.7' ARCH='amd64' DESTDIR='$(CURDIR)/debian/linux-image-amd64-signed-template' DH_OPTIONS='-plinux-image-amd64-signed-template' KERNEL_ARCH='x86' PACKAGE_NAME='linux-image-amd64-signed-template' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_amd64_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.6.15' ARCH='amd64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='x86' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.7.7' ARCH='amd64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='x86' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_arm64:setup_arm64_bpftool setup_arm64_config setup_arm64_cpupower setup_arm64_hyperv-daemons setup_arm64_kbuild setup_arm64_none setup_arm64_perf setup_arm64_rt setup_arm64_rtla setup_arm64_signed-template setup_arm64_usbip setup_arm64_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.6.15' ARCH='arm64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='arm64' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.7.7' ARCH='arm64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='arm64' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_arm64_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real setup_config ABINAME='6.6.15' ARCH='arm64' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='arm64' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real setup_config ABINAME='6.7.7' ARCH='arm64' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='arm64' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_arm64_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.6.15' ARCH='arm64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.7.7' ARCH='arm64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_arm64_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.6.15' ARCH='arm64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='arm64' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.7.7' ARCH='arm64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='arm64' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_arm64_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.6.15' ARCH='arm64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='arm64' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.7.7' ARCH='arm64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='arm64' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_arm64_none:setup_arm64_none_arm64 setup_arm64_none_cloud-arm64 setup_arm64_none_arm64:setup_arm64_none_arm64_headers setup_arm64_none_arm64_image setup_arm64_none_arm64_image-dbg setup_arm64_none_arm64_installer-test setup_arm64_none_arm64_meta setup_arm64_none_arm64_headers: - $(call if_package, linux-headers-6.6.15-arm64, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-arm64' DH_OPTIONS='-plinux-headers-6.6.15-arm64' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-headers-6.6.15-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-arm64, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-arm64' DH_OPTIONS='-plinux-headers-6.7.7-arm64' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-headers-6.7.7-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_arm64_none_arm64_image: - $(call if_package, linux-image-6.6.15-arm64-unsigned, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-arm64-unsigned' DH_OPTIONS='-plinux-image-6.6.15-arm64-unsigned' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-image-6.6.15-arm64-unsigned' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-arm64-unsigned, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-arm64-unsigned' DH_OPTIONS='-plinux-image-6.7.7-arm64-unsigned' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-image-6.7.7-arm64-unsigned' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_arm64_none_arm64_image-dbg: - $(call if_package, linux-image-6.6.15-arm64-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-arm64-dbg' DH_OPTIONS='-plinux-image-6.6.15-arm64-dbg' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-image-6.6.15-arm64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-arm64-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-arm64-dbg' DH_OPTIONS='-plinux-image-6.7.7-arm64-dbg' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-image-6.7.7-arm64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_arm64_none_arm64_installer-test: - $(MAKE) -f debian/rules.real setup_installer-test ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.6.15-arm64-di -pbtrfs-modules-6.6.15-arm64-di -pcdrom-core-modules-6.6.15-arm64-di -pcrc-modules-6.6.15-arm64-di -pcrypto-dm-modules-6.6.15-arm64-di -pcrypto-modules-6.6.15-arm64-di -pefi-modules-6.6.15-arm64-di -pevent-modules-6.6.15-arm64-di -pext4-modules-6.6.15-arm64-di -pf2fs-modules-6.6.15-arm64-di -pfat-modules-6.6.15-arm64-di -pfb-modules-6.6.15-arm64-di -pi2c-modules-6.6.15-arm64-di -pinput-modules-6.6.15-arm64-di -pisofs-modules-6.6.15-arm64-di -pjfs-modules-6.6.15-arm64-di -pkernel-image-6.6.15-arm64-di -pleds-modules-6.6.15-arm64-di -ploop-modules-6.6.15-arm64-di -pmd-modules-6.6.15-arm64-di -pmmc-modules-6.6.15-arm64-di -pmtd-core-modules-6.6.15-arm64-di -pmultipath-modules-6.6.15-arm64-di -pnbd-modules-6.6.15-arm64-di -pnic-modules-6.6.15-arm64-di -pnic-shared-modules-6.6.15-arm64-di -pnic-usb-modules-6.6.15-arm64-di -pnic-wireless-modules-6.6.15-arm64-di -pppp-modules-6.6.15-arm64-di -psata-modules-6.6.15-arm64-di -pscsi-core-modules-6.6.15-arm64-di -pscsi-modules-6.6.15-arm64-di -pscsi-nic-modules-6.6.15-arm64-di -psound-modules-6.6.15-arm64-di -pspeakup-modules-6.6.15-arm64-di -psquashfs-modules-6.6.15-arm64-di -pudf-modules-6.6.15-arm64-di -puinput-modules-6.6.15-arm64-di -pusb-modules-6.6.15-arm64-di -pusb-serial-modules-6.6.15-arm64-di -pusb-storage-modules-6.6.15-arm64-di -pxfs-modules-6.6.15-arm64-di' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6' + $(MAKE) -f debian/rules.real setup_installer-test ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.7.7-arm64-di -pbtrfs-modules-6.7.7-arm64-di -pcdrom-core-modules-6.7.7-arm64-di -pcrc-modules-6.7.7-arm64-di -pcrypto-dm-modules-6.7.7-arm64-di -pcrypto-modules-6.7.7-arm64-di -pefi-modules-6.7.7-arm64-di -pevent-modules-6.7.7-arm64-di -pext4-modules-6.7.7-arm64-di -pf2fs-modules-6.7.7-arm64-di -pfat-modules-6.7.7-arm64-di -pfb-modules-6.7.7-arm64-di -pi2c-modules-6.7.7-arm64-di -pinput-modules-6.7.7-arm64-di -pisofs-modules-6.7.7-arm64-di -pjfs-modules-6.7.7-arm64-di -pkernel-image-6.7.7-arm64-di -pleds-modules-6.7.7-arm64-di -ploop-modules-6.7.7-arm64-di -pmd-modules-6.7.7-arm64-di -pmmc-modules-6.7.7-arm64-di -pmtd-core-modules-6.7.7-arm64-di -pmultipath-modules-6.7.7-arm64-di -pnbd-modules-6.7.7-arm64-di -pnic-modules-6.7.7-arm64-di -pnic-shared-modules-6.7.7-arm64-di -pnic-usb-modules-6.7.7-arm64-di -pnic-wireless-modules-6.7.7-arm64-di -pppp-modules-6.7.7-arm64-di -psata-modules-6.7.7-arm64-di -pscsi-core-modules-6.7.7-arm64-di -pscsi-modules-6.7.7-arm64-di -pscsi-nic-modules-6.7.7-arm64-di -psound-modules-6.7.7-arm64-di -pspeakup-modules-6.7.7-arm64-di -psquashfs-modules-6.7.7-arm64-di -pudf-modules-6.7.7-arm64-di -puinput-modules-6.7.7-arm64-di -pusb-modules-6.7.7-arm64-di -pusb-serial-modules-6.7.7-arm64-di -pusb-storage-modules-6.7.7-arm64-di -pxfs-modules-6.7.7-arm64-di' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7' setup_arm64_none_arm64_meta: - $(call if_package, linux-image-arm64-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-arm64-dbg' DH_OPTIONS='-plinux-image-arm64-dbg' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-arm64-dbg' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-image-arm64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-arm64-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-arm64-dbg' DH_OPTIONS='-plinux-image-arm64-dbg' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-arm64-dbg' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' PACKAGE_NAME='linux-image-arm64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_arm64_none_cloud-arm64:setup_arm64_none_cloud-arm64_headers setup_arm64_none_cloud-arm64_image setup_arm64_none_cloud-arm64_image-dbg setup_arm64_none_cloud-arm64_meta setup_arm64_none_cloud-arm64_headers: - $(call if_package, linux-headers-6.6.15-cloud-arm64, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-cloud-arm64' DH_OPTIONS='-plinux-headers-6.6.15-cloud-arm64' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/arm64/config.cloud-arm64 debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-headers-6.6.15-cloud-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-cloud-arm64, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-cloud-arm64' DH_OPTIONS='-plinux-headers-6.7.7-cloud-arm64' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-headers-6.7.7-cloud-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_arm64_none_cloud-arm64_image: - $(call if_package, linux-image-6.6.15-cloud-arm64-unsigned, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-cloud-arm64-unsigned' DH_OPTIONS='-plinux-image-6.6.15-cloud-arm64-unsigned' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/arm64/config.cloud-arm64 debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-image-6.6.15-cloud-arm64-unsigned' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-cloud-arm64-unsigned, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-cloud-arm64-unsigned' DH_OPTIONS='-plinux-image-6.7.7-cloud-arm64-unsigned' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-image-6.7.7-cloud-arm64-unsigned' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_arm64_none_cloud-arm64_image-dbg: - $(call if_package, linux-image-6.6.15-cloud-arm64-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-cloud-arm64-dbg' DH_OPTIONS='-plinux-image-6.6.15-cloud-arm64-dbg' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/arm64/config.cloud-arm64 debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-image-6.6.15-cloud-arm64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-cloud-arm64-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-cloud-arm64-dbg' DH_OPTIONS='-plinux-image-6.7.7-cloud-arm64-dbg' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-image-6.7.7-cloud-arm64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_arm64_none_cloud-arm64_meta: - $(call if_package, linux-image-cloud-arm64-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-cloud-arm64-dbg' DH_OPTIONS='-plinux-image-cloud-arm64-dbg' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-cloud-arm64-dbg' KCONFIG='debian/config/config debian/config/arm64/config debian/config/arm64/config.cloud-arm64 debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-image-cloud-arm64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-cloud-arm64-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-cloud-arm64-dbg' DH_OPTIONS='-plinux-image-cloud-arm64-dbg' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-cloud-arm64-dbg' KCONFIG='debian/config/config debian/config/arm64/config debian/config/config.cloud debian/config/arm64/config.cloud-arm64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' PACKAGE_NAME='linux-image-cloud-arm64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_arm64_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.6.15' ARCH='arm64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='arm64' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.7.7' ARCH='arm64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='arm64' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_arm64_rt:setup_arm64_rt_arm64 setup_arm64_rt_arm64:setup_arm64_rt_arm64_headers setup_arm64_rt_arm64_image setup_arm64_rt_arm64_image-dbg setup_arm64_rt_arm64_meta setup_arm64_rt_arm64_headers: - $(call if_package, linux-headers-6.6.15-rt-arm64, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-rt-arm64' DH_OPTIONS='-plinux-headers-6.6.15-rt-arm64' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-headers-6.6.15-rt-arm64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-rt-arm64, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-rt-arm64' DH_OPTIONS='-plinux-headers-6.7.7-rt-arm64' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-headers-6.7.7-rt-arm64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_arm64_rt_arm64_image: - $(call if_package, linux-image-6.6.15-rt-arm64-unsigned, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-rt-arm64-unsigned' DH_OPTIONS='-plinux-image-6.6.15-rt-arm64-unsigned' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-image-6.6.15-rt-arm64-unsigned' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-rt-arm64-unsigned, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-rt-arm64-unsigned' DH_OPTIONS='-plinux-image-6.7.7-rt-arm64-unsigned' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-image-6.7.7-rt-arm64-unsigned' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_arm64_rt_arm64_image-dbg: - $(call if_package, linux-image-6.6.15-rt-arm64-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-rt-arm64-dbg' DH_OPTIONS='-plinux-image-6.6.15-rt-arm64-dbg' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-image-6.6.15-rt-arm64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-rt-arm64-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-rt-arm64-dbg' DH_OPTIONS='-plinux-image-6.7.7-rt-arm64-dbg' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-image-6.7.7-rt-arm64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_arm64_rt_arm64_meta: - $(call if_package, linux-image-rt-arm64-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='arm64' COMPAT_DEB_ARCH='armhf' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-arm64-dbg' DH_OPTIONS='-plinux-image-rt-arm64-dbg' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-rt-arm64-dbg' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-image-rt-arm64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-rt-arm64-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='arm64' COMPAT_GNU_TYPE='arm-linux-gnueabihf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-arm64-dbg' DH_OPTIONS='-plinux-image-rt-arm64-dbg' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-rt-arm64-dbg' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' PACKAGE_NAME='linux-image-rt-arm64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_arm64_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.6.15' ARCH='arm64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='arm64' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.7.7' ARCH='arm64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='arm64' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_arm64_signed-template: - $(call if_package, linux-image-arm64-signed-template, $(MAKE) -f debian/rules.real setup_signed-template ABINAME='6.6.15' ARCH='arm64' DESTDIR='$(CURDIR)/debian/linux-image-arm64-signed-template' DH_OPTIONS='-plinux-image-arm64-signed-template' KERNEL_ARCH='arm64' PACKAGE_NAME='linux-image-arm64-signed-template' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-arm64-signed-template, $(MAKE) -f debian/rules.real setup_signed-template ABINAME='6.7.7' ARCH='arm64' DESTDIR='$(CURDIR)/debian/linux-image-arm64-signed-template' DH_OPTIONS='-plinux-image-arm64-signed-template' KERNEL_ARCH='arm64' PACKAGE_NAME='linux-image-arm64-signed-template' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_arm64_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.6.15' ARCH='arm64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='arm64' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.7.7' ARCH='arm64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='arm64' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_armel:setup_armel_bpftool setup_armel_config setup_armel_cpupower setup_armel_hyperv-daemons setup_armel_kbuild setup_armel_none setup_armel_perf setup_armel_rtla setup_armel_usbip setup_armel_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.6.15' ARCH='armel' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='arm' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.7.7' ARCH='armel' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='arm' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_armel_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real setup_config ABINAME='6.6.15' ARCH='armel' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='arm' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real setup_config ABINAME='6.7.7' ARCH='armel' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='arm' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_armel_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.6.15' ARCH='armel' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='arm' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.7.7' ARCH='armel' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='arm' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_armel_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.6.15' ARCH='armel' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='arm' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.7.7' ARCH='armel' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='arm' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_armel_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.6.15' ARCH='armel' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='arm' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.7.7' ARCH='armel' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='arm' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_armel_none:setup_armel_none_rpi setup_armel_none_rpi:setup_armel_none_rpi_headers setup_armel_none_rpi_image setup_armel_none_rpi_image-dbg setup_armel_none_rpi_meta setup_armel_none_rpi_headers: - $(call if_package, linux-headers-6.6.15-rpi, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='armel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-rpi' DH_OPTIONS='-plinux-headers-6.6.15-rpi' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' PACKAGE_NAME='linux-headers-6.6.15-rpi' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-rpi, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='armel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-rpi' DH_OPTIONS='-plinux-headers-6.7.7-rpi' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' PACKAGE_NAME='linux-headers-6.7.7-rpi' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_armel_none_rpi_image: - $(call if_package, linux-image-6.6.15-rpi, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='armel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-rpi' DH_OPTIONS='-plinux-image-6.6.15-rpi' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' PACKAGE_NAME='linux-image-6.6.15-rpi' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-rpi, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='armel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-rpi' DH_OPTIONS='-plinux-image-6.7.7-rpi' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' PACKAGE_NAME='linux-image-6.7.7-rpi' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_armel_none_rpi_image-dbg: - $(call if_package, linux-image-6.6.15-rpi-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='armel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-rpi-dbg' DH_OPTIONS='-plinux-image-6.6.15-rpi-dbg' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' PACKAGE_NAME='linux-image-6.6.15-rpi-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-rpi-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='armel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-rpi-dbg' DH_OPTIONS='-plinux-image-6.7.7-rpi-dbg' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' PACKAGE_NAME='linux-image-6.7.7-rpi-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_armel_none_rpi_meta: - $(call if_package, linux-image-rpi, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='armel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rpi' DH_OPTIONS='-plinux-image-rpi' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-rpi' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' PACKAGE_NAME='linux-image-rpi' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-rpi, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='armel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-rpi' DH_OPTIONS='-plinux-headers-rpi' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-rpi' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' PACKAGE_NAME='linux-headers-rpi' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-rpi-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='armel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rpi-dbg' DH_OPTIONS='-plinux-image-rpi-dbg' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-rpi-dbg' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' PACKAGE_NAME='linux-image-rpi-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-rpi, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='armel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rpi' DH_OPTIONS='-plinux-image-rpi' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-rpi' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' PACKAGE_NAME='linux-image-rpi' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-rpi, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='armel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-rpi' DH_OPTIONS='-plinux-headers-rpi' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-rpi' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' PACKAGE_NAME='linux-headers-rpi' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-rpi-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='armel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rpi-dbg' DH_OPTIONS='-plinux-image-rpi-dbg' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-rpi-dbg' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' PACKAGE_NAME='linux-image-rpi-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_armel_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.6.15' ARCH='armel' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='arm' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.7.7' ARCH='armel' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='arm' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_armel_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.6.15' ARCH='armel' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='arm' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.7.7' ARCH='armel' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='arm' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_armel_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.6.15' ARCH='armel' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='arm' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.7.7' ARCH='armel' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='arm' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_armhf:setup_armhf_bpftool setup_armhf_config setup_armhf_cpupower setup_armhf_hyperv-daemons setup_armhf_kbuild setup_armhf_none setup_armhf_perf setup_armhf_rt setup_armhf_rtla setup_armhf_usbip setup_armhf_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.6.15' ARCH='armhf' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='arm' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.7.7' ARCH='armhf' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='arm' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_armhf_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real setup_config ABINAME='6.6.15' ARCH='armhf' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='arm' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real setup_config ABINAME='6.7.7' ARCH='armhf' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='arm' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_armhf_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.6.15' ARCH='armhf' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='arm' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.7.7' ARCH='armhf' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='arm' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_armhf_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.6.15' ARCH='armhf' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='arm' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.7.7' ARCH='armhf' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='arm' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_armhf_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.6.15' ARCH='armhf' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='arm' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.7.7' ARCH='armhf' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='arm' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_armhf_none:setup_armhf_none_armmp setup_armhf_none_armmp-lpae setup_armhf_none_armmp:setup_armhf_none_armmp_headers setup_armhf_none_armmp_image setup_armhf_none_armmp_image-dbg setup_armhf_none_armmp_installer setup_armhf_none_armmp_meta setup_armhf_none_armmp-lpae:setup_armhf_none_armmp-lpae_headers setup_armhf_none_armmp-lpae_image setup_armhf_none_armmp-lpae_image-dbg setup_armhf_none_armmp-lpae_meta setup_armhf_none_armmp-lpae_headers: - $(call if_package, linux-headers-6.6.15-armmp-lpae, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-armmp-lpae' DH_OPTIONS='-plinux-headers-6.6.15-armmp-lpae' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' PACKAGE_NAME='linux-headers-6.6.15-armmp-lpae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-armmp-lpae, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-armmp-lpae' DH_OPTIONS='-plinux-headers-6.7.7-armmp-lpae' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' PACKAGE_NAME='linux-headers-6.7.7-armmp-lpae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_armhf_none_armmp-lpae_image: - $(call if_package, linux-image-6.6.15-armmp-lpae, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-armmp-lpae' DH_OPTIONS='-plinux-image-6.6.15-armmp-lpae' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' PACKAGE_NAME='linux-image-6.6.15-armmp-lpae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-armmp-lpae, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-armmp-lpae' DH_OPTIONS='-plinux-image-6.7.7-armmp-lpae' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' PACKAGE_NAME='linux-image-6.7.7-armmp-lpae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_armhf_none_armmp-lpae_image-dbg: - $(call if_package, linux-image-6.6.15-armmp-lpae-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-armmp-lpae-dbg' DH_OPTIONS='-plinux-image-6.6.15-armmp-lpae-dbg' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' PACKAGE_NAME='linux-image-6.6.15-armmp-lpae-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-armmp-lpae-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-armmp-lpae-dbg' DH_OPTIONS='-plinux-image-6.7.7-armmp-lpae-dbg' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' PACKAGE_NAME='linux-image-6.7.7-armmp-lpae-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_armhf_none_armmp-lpae_meta: - $(call if_package, linux-image-armmp-lpae, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-armmp-lpae' DH_OPTIONS='-plinux-image-armmp-lpae' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-armmp-lpae' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' PACKAGE_NAME='linux-image-armmp-lpae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-armmp-lpae, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-armmp-lpae' DH_OPTIONS='-plinux-headers-armmp-lpae' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-armmp-lpae' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' PACKAGE_NAME='linux-headers-armmp-lpae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-image-armmp-lpae-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-armmp-lpae-dbg' DH_OPTIONS='-plinux-image-armmp-lpae-dbg' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-armmp-lpae-dbg' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' PACKAGE_NAME='linux-image-armmp-lpae-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-armmp-lpae, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-armmp-lpae' DH_OPTIONS='-plinux-image-armmp-lpae' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-armmp-lpae' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' PACKAGE_NAME='linux-image-armmp-lpae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-armmp-lpae, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-armmp-lpae' DH_OPTIONS='-plinux-headers-armmp-lpae' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-armmp-lpae' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' PACKAGE_NAME='linux-headers-armmp-lpae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-image-armmp-lpae-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-armmp-lpae-dbg' DH_OPTIONS='-plinux-image-armmp-lpae-dbg' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-armmp-lpae-dbg' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' PACKAGE_NAME='linux-image-armmp-lpae-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_armhf_none_armmp_headers: - $(call if_package, linux-headers-6.6.15-armmp, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-armmp' DH_OPTIONS='-plinux-headers-6.6.15-armmp' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' PACKAGE_NAME='linux-headers-6.6.15-armmp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-armmp, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-armmp' DH_OPTIONS='-plinux-headers-6.7.7-armmp' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' PACKAGE_NAME='linux-headers-6.7.7-armmp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_armhf_none_armmp_image: - $(call if_package, linux-image-6.6.15-armmp, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-armmp' DH_OPTIONS='-plinux-image-6.6.15-armmp' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' PACKAGE_NAME='linux-image-6.6.15-armmp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-armmp, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-armmp' DH_OPTIONS='-plinux-image-6.7.7-armmp' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' PACKAGE_NAME='linux-image-6.7.7-armmp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_armhf_none_armmp_image-dbg: - $(call if_package, linux-image-6.6.15-armmp-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-armmp-dbg' DH_OPTIONS='-plinux-image-6.6.15-armmp-dbg' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' PACKAGE_NAME='linux-image-6.6.15-armmp-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-armmp-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-armmp-dbg' DH_OPTIONS='-plinux-image-6.7.7-armmp-dbg' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' PACKAGE_NAME='linux-image-6.7.7-armmp-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_armhf_none_armmp_installer: - $(call if_package, ata-modules-6.6.15-armmp-di btrfs-modules-6.6.15-armmp-di cdrom-core-modules-6.6.15-armmp-di crc-modules-6.6.15-armmp-di crypto-dm-modules-6.6.15-armmp-di crypto-modules-6.6.15-armmp-di efi-modules-6.6.15-armmp-di event-modules-6.6.15-armmp-di ext4-modules-6.6.15-armmp-di f2fs-modules-6.6.15-armmp-di fat-modules-6.6.15-armmp-di fb-modules-6.6.15-armmp-di i2c-modules-6.6.15-armmp-di input-modules-6.6.15-armmp-di isofs-modules-6.6.15-armmp-di jfs-modules-6.6.15-armmp-di kernel-image-6.6.15-armmp-di leds-modules-6.6.15-armmp-di loop-modules-6.6.15-armmp-di md-modules-6.6.15-armmp-di mmc-modules-6.6.15-armmp-di mtd-modules-6.6.15-armmp-di multipath-modules-6.6.15-armmp-di nbd-modules-6.6.15-armmp-di nic-modules-6.6.15-armmp-di nic-shared-modules-6.6.15-armmp-di nic-usb-modules-6.6.15-armmp-di nic-wireless-modules-6.6.15-armmp-di pata-modules-6.6.15-armmp-di ppp-modules-6.6.15-armmp-di sata-modules-6.6.15-armmp-di scsi-core-modules-6.6.15-armmp-di scsi-modules-6.6.15-armmp-di scsi-nic-modules-6.6.15-armmp-di sound-modules-6.6.15-armmp-di speakup-modules-6.6.15-armmp-di squashfs-modules-6.6.15-armmp-di udf-modules-6.6.15-armmp-di uinput-modules-6.6.15-armmp-di usb-modules-6.6.15-armmp-di usb-serial-modules-6.6.15-armmp-di usb-storage-modules-6.6.15-armmp-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.6.15-armmp-di -pbtrfs-modules-6.6.15-armmp-di -pcdrom-core-modules-6.6.15-armmp-di -pcrc-modules-6.6.15-armmp-di -pcrypto-dm-modules-6.6.15-armmp-di -pcrypto-modules-6.6.15-armmp-di -pefi-modules-6.6.15-armmp-di -pevent-modules-6.6.15-armmp-di -pext4-modules-6.6.15-armmp-di -pf2fs-modules-6.6.15-armmp-di -pfat-modules-6.6.15-armmp-di -pfb-modules-6.6.15-armmp-di -pi2c-modules-6.6.15-armmp-di -pinput-modules-6.6.15-armmp-di -pisofs-modules-6.6.15-armmp-di -pjfs-modules-6.6.15-armmp-di -pkernel-image-6.6.15-armmp-di -pleds-modules-6.6.15-armmp-di -ploop-modules-6.6.15-armmp-di -pmd-modules-6.6.15-armmp-di -pmmc-modules-6.6.15-armmp-di -pmtd-modules-6.6.15-armmp-di -pmultipath-modules-6.6.15-armmp-di -pnbd-modules-6.6.15-armmp-di -pnic-modules-6.6.15-armmp-di -pnic-shared-modules-6.6.15-armmp-di -pnic-usb-modules-6.6.15-armmp-di -pnic-wireless-modules-6.6.15-armmp-di -ppata-modules-6.6.15-armmp-di -pppp-modules-6.6.15-armmp-di -psata-modules-6.6.15-armmp-di -pscsi-core-modules-6.6.15-armmp-di -pscsi-modules-6.6.15-armmp-di -pscsi-nic-modules-6.6.15-armmp-di -psound-modules-6.6.15-armmp-di -pspeakup-modules-6.6.15-armmp-di -psquashfs-modules-6.6.15-armmp-di -pudf-modules-6.6.15-armmp-di -puinput-modules-6.6.15-armmp-di -pusb-modules-6.6.15-armmp-di -pusb-serial-modules-6.6.15-armmp-di -pusb-storage-modules-6.6.15-armmp-di' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-armmp-di' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, ata-modules-6.7.7-armmp-di btrfs-modules-6.7.7-armmp-di cdrom-core-modules-6.7.7-armmp-di crc-modules-6.7.7-armmp-di crypto-dm-modules-6.7.7-armmp-di crypto-modules-6.7.7-armmp-di efi-modules-6.7.7-armmp-di event-modules-6.7.7-armmp-di ext4-modules-6.7.7-armmp-di f2fs-modules-6.7.7-armmp-di fat-modules-6.7.7-armmp-di fb-modules-6.7.7-armmp-di i2c-modules-6.7.7-armmp-di input-modules-6.7.7-armmp-di isofs-modules-6.7.7-armmp-di jfs-modules-6.7.7-armmp-di kernel-image-6.7.7-armmp-di leds-modules-6.7.7-armmp-di loop-modules-6.7.7-armmp-di md-modules-6.7.7-armmp-di mmc-modules-6.7.7-armmp-di mtd-modules-6.7.7-armmp-di multipath-modules-6.7.7-armmp-di nbd-modules-6.7.7-armmp-di nic-modules-6.7.7-armmp-di nic-shared-modules-6.7.7-armmp-di nic-usb-modules-6.7.7-armmp-di nic-wireless-modules-6.7.7-armmp-di pata-modules-6.7.7-armmp-di ppp-modules-6.7.7-armmp-di sata-modules-6.7.7-armmp-di scsi-core-modules-6.7.7-armmp-di scsi-modules-6.7.7-armmp-di scsi-nic-modules-6.7.7-armmp-di sound-modules-6.7.7-armmp-di speakup-modules-6.7.7-armmp-di squashfs-modules-6.7.7-armmp-di udf-modules-6.7.7-armmp-di uinput-modules-6.7.7-armmp-di usb-modules-6.7.7-armmp-di usb-serial-modules-6.7.7-armmp-di usb-storage-modules-6.7.7-armmp-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.7.7-armmp-di -pbtrfs-modules-6.7.7-armmp-di -pcdrom-core-modules-6.7.7-armmp-di -pcrc-modules-6.7.7-armmp-di -pcrypto-dm-modules-6.7.7-armmp-di -pcrypto-modules-6.7.7-armmp-di -pefi-modules-6.7.7-armmp-di -pevent-modules-6.7.7-armmp-di -pext4-modules-6.7.7-armmp-di -pf2fs-modules-6.7.7-armmp-di -pfat-modules-6.7.7-armmp-di -pfb-modules-6.7.7-armmp-di -pi2c-modules-6.7.7-armmp-di -pinput-modules-6.7.7-armmp-di -pisofs-modules-6.7.7-armmp-di -pjfs-modules-6.7.7-armmp-di -pkernel-image-6.7.7-armmp-di -pleds-modules-6.7.7-armmp-di -ploop-modules-6.7.7-armmp-di -pmd-modules-6.7.7-armmp-di -pmmc-modules-6.7.7-armmp-di -pmtd-modules-6.7.7-armmp-di -pmultipath-modules-6.7.7-armmp-di -pnbd-modules-6.7.7-armmp-di -pnic-modules-6.7.7-armmp-di -pnic-shared-modules-6.7.7-armmp-di -pnic-usb-modules-6.7.7-armmp-di -pnic-wireless-modules-6.7.7-armmp-di -ppata-modules-6.7.7-armmp-di -pppp-modules-6.7.7-armmp-di -psata-modules-6.7.7-armmp-di -pscsi-core-modules-6.7.7-armmp-di -pscsi-modules-6.7.7-armmp-di -pscsi-nic-modules-6.7.7-armmp-di -psound-modules-6.7.7-armmp-di -pspeakup-modules-6.7.7-armmp-di -psquashfs-modules-6.7.7-armmp-di -pudf-modules-6.7.7-armmp-di -puinput-modules-6.7.7-armmp-di -pusb-modules-6.7.7-armmp-di -pusb-serial-modules-6.7.7-armmp-di -pusb-storage-modules-6.7.7-armmp-di' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-armmp-di' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_armhf_none_armmp_meta: - $(call if_package, linux-image-armmp, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-armmp' DH_OPTIONS='-plinux-image-armmp' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-armmp' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' PACKAGE_NAME='linux-image-armmp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-armmp, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-armmp' DH_OPTIONS='-plinux-headers-armmp' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-armmp' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' PACKAGE_NAME='linux-headers-armmp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-image-armmp-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-armmp-dbg' DH_OPTIONS='-plinux-image-armmp-dbg' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-armmp-dbg' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' PACKAGE_NAME='linux-image-armmp-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-armmp, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-armmp' DH_OPTIONS='-plinux-image-armmp' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-armmp' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' PACKAGE_NAME='linux-image-armmp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-armmp, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-armmp' DH_OPTIONS='-plinux-headers-armmp' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-armmp' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' PACKAGE_NAME='linux-headers-armmp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-image-armmp-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-armmp-dbg' DH_OPTIONS='-plinux-image-armmp-dbg' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-armmp-dbg' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' PACKAGE_NAME='linux-image-armmp-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_armhf_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.6.15' ARCH='armhf' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='arm' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.7.7' ARCH='armhf' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='arm' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_armhf_rt:setup_armhf_rt_armmp setup_armhf_rt_armmp:setup_armhf_rt_armmp_headers setup_armhf_rt_armmp_image setup_armhf_rt_armmp_image-dbg setup_armhf_rt_armmp_meta setup_armhf_rt_armmp_headers: - $(call if_package, linux-headers-6.6.15-rt-armmp, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-rt-armmp' DH_OPTIONS='-plinux-headers-6.6.15-rt-armmp' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' PACKAGE_NAME='linux-headers-6.6.15-rt-armmp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-rt-armmp, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-rt-armmp' DH_OPTIONS='-plinux-headers-6.7.7-rt-armmp' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' PACKAGE_NAME='linux-headers-6.7.7-rt-armmp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_armhf_rt_armmp_image: - $(call if_package, linux-image-6.6.15-rt-armmp, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-rt-armmp' DH_OPTIONS='-plinux-image-6.6.15-rt-armmp' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' PACKAGE_NAME='linux-image-6.6.15-rt-armmp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-rt-armmp, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-rt-armmp' DH_OPTIONS='-plinux-image-6.7.7-rt-armmp' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' PACKAGE_NAME='linux-image-6.7.7-rt-armmp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_armhf_rt_armmp_image-dbg: - $(call if_package, linux-image-6.6.15-rt-armmp-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-rt-armmp-dbg' DH_OPTIONS='-plinux-image-6.6.15-rt-armmp-dbg' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' PACKAGE_NAME='linux-image-6.6.15-rt-armmp-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-rt-armmp-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-rt-armmp-dbg' DH_OPTIONS='-plinux-image-6.7.7-rt-armmp-dbg' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' PACKAGE_NAME='linux-image-6.7.7-rt-armmp-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_armhf_rt_armmp_meta: - $(call if_package, linux-image-rt-armmp, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-armmp' DH_OPTIONS='-plinux-image-rt-armmp' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-rt-armmp' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' PACKAGE_NAME='linux-image-rt-armmp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-rt-armmp, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-rt-armmp' DH_OPTIONS='-plinux-headers-rt-armmp' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-rt-armmp' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' PACKAGE_NAME='linux-headers-rt-armmp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-image-rt-armmp-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-armmp-dbg' DH_OPTIONS='-plinux-image-rt-armmp-dbg' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-rt-armmp-dbg' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' PACKAGE_NAME='linux-image-rt-armmp-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-rt-armmp, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-armmp' DH_OPTIONS='-plinux-image-rt-armmp' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-rt-armmp' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' PACKAGE_NAME='linux-image-rt-armmp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-rt-armmp, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-rt-armmp' DH_OPTIONS='-plinux-headers-rt-armmp' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-rt-armmp' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' PACKAGE_NAME='linux-headers-rt-armmp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-image-rt-armmp-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='armhf' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-armmp-dbg' DH_OPTIONS='-plinux-image-rt-armmp-dbg' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-rt-armmp-dbg' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' PACKAGE_NAME='linux-image-rt-armmp-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_armhf_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.6.15' ARCH='armhf' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='arm' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.7.7' ARCH='armhf' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='arm' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_armhf_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.6.15' ARCH='armhf' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='arm' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.7.7' ARCH='armhf' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='arm' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_doc: - $(call if_package, linux-doc-6.6, $(MAKE) -f debian/rules.real setup_doc ABINAME='6.6.15' DESTDIR='$(CURDIR)/debian/linux-doc-6.6' DH_OPTIONS='-plinux-doc-6.6' PACKAGE_NAME='linux-doc-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-doc-6.7, $(MAKE) -f debian/rules.real setup_doc ABINAME='6.7.7' DESTDIR='$(CURDIR)/debian/linux-doc-6.7' DH_OPTIONS='-plinux-doc-6.7' PACKAGE_NAME='linux-doc-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_hppa:setup_hppa_bpftool setup_hppa_config setup_hppa_cpupower setup_hppa_hyperv-daemons setup_hppa_kbuild setup_hppa_none setup_hppa_perf setup_hppa_rtla setup_hppa_usbip setup_hppa_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.6.15' ARCH='hppa' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='parisc' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.7.7' ARCH='hppa' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='parisc' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_hppa_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real setup_config ABINAME='6.6.15' ARCH='hppa' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='parisc' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real setup_config ABINAME='6.7.7' ARCH='hppa' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='parisc' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_hppa_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.6.15' ARCH='hppa' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='parisc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.7.7' ARCH='hppa' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='parisc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_hppa_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.6.15' ARCH='hppa' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='parisc' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.7.7' ARCH='hppa' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='parisc' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_hppa_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.6.15' ARCH='hppa' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='parisc' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.7.7' ARCH='hppa' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='parisc' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_hppa_none:setup_hppa_none_parisc setup_hppa_none_parisc64 setup_hppa_none_parisc:setup_hppa_none_parisc_headers setup_hppa_none_parisc_image setup_hppa_none_parisc_image-dbg setup_hppa_none_parisc_installer setup_hppa_none_parisc_meta setup_hppa_none_parisc64:setup_hppa_none_parisc64_headers setup_hppa_none_parisc64_image setup_hppa_none_parisc64_image-dbg setup_hppa_none_parisc64_installer setup_hppa_none_parisc64_meta setup_hppa_none_parisc64_headers: - $(call if_package, linux-headers-6.6.15-parisc64, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='hppa' COMPAT_DEB_ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-parisc64' DH_OPTIONS='-plinux-headers-6.6.15-parisc64' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCFLAGS='-fno-cse-follow-jumps' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc64\""' KERNEL_ARCH='parisc' KERNEL_DEB_ARCH='undefined' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' PACKAGE_NAME='linux-headers-6.6.15-parisc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-parisc64, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-parisc64' DH_OPTIONS='-plinux-headers-6.7.7-parisc64' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc64\""' KERNEL_ARCH='parisc' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' PACKAGE_NAME='linux-headers-6.7.7-parisc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_hppa_none_parisc64_image: - $(call if_package, linux-image-6.6.15-parisc64, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='hppa' COMPAT_DEB_ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-parisc64' DH_OPTIONS='-plinux-image-6.6.15-parisc64' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCFLAGS='-fno-cse-follow-jumps' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc64\""' KERNEL_ARCH='parisc' KERNEL_DEB_ARCH='undefined' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' PACKAGE_NAME='linux-image-6.6.15-parisc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-parisc64, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-parisc64' DH_OPTIONS='-plinux-image-6.7.7-parisc64' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc64\""' KERNEL_ARCH='parisc' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' PACKAGE_NAME='linux-image-6.7.7-parisc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_hppa_none_parisc64_image-dbg: - $(call if_package, linux-image-6.6.15-parisc64-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='hppa' COMPAT_DEB_ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-parisc64-dbg' DH_OPTIONS='-plinux-image-6.6.15-parisc64-dbg' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCFLAGS='-fno-cse-follow-jumps' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc64\""' KERNEL_ARCH='parisc' KERNEL_DEB_ARCH='undefined' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' PACKAGE_NAME='linux-image-6.6.15-parisc64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-parisc64-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-parisc64-dbg' DH_OPTIONS='-plinux-image-6.7.7-parisc64-dbg' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc64\""' KERNEL_ARCH='parisc' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' PACKAGE_NAME='linux-image-6.7.7-parisc64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_hppa_none_parisc64_installer: - $(call if_package, ata-modules-6.6.15-parisc64-di btrfs-modules-6.6.15-parisc64-di cdrom-core-modules-6.6.15-parisc64-di crc-modules-6.6.15-parisc64-di crypto-dm-modules-6.6.15-parisc64-di crypto-modules-6.6.15-parisc64-di event-modules-6.6.15-parisc64-di ext4-modules-6.6.15-parisc64-di f2fs-modules-6.6.15-parisc64-di fat-modules-6.6.15-parisc64-di fb-modules-6.6.15-parisc64-di input-modules-6.6.15-parisc64-di isofs-modules-6.6.15-parisc64-di jfs-modules-6.6.15-parisc64-di kernel-image-6.6.15-parisc64-di loop-modules-6.6.15-parisc64-di md-modules-6.6.15-parisc64-di mouse-modules-6.6.15-parisc64-di multipath-modules-6.6.15-parisc64-di nbd-modules-6.6.15-parisc64-di nic-modules-6.6.15-parisc64-di nic-shared-modules-6.6.15-parisc64-di nic-usb-modules-6.6.15-parisc64-di pata-modules-6.6.15-parisc64-di ppp-modules-6.6.15-parisc64-di sata-modules-6.6.15-parisc64-di scsi-core-modules-6.6.15-parisc64-di scsi-modules-6.6.15-parisc64-di serial-modules-6.6.15-parisc64-di squashfs-modules-6.6.15-parisc64-di usb-modules-6.6.15-parisc64-di usb-serial-modules-6.6.15-parisc64-di usb-storage-modules-6.6.15-parisc64-di xfs-modules-6.6.15-parisc64-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.6.15' ARCH='hppa' COMPAT_DEB_ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.6.15-parisc64-di -pbtrfs-modules-6.6.15-parisc64-di -pcdrom-core-modules-6.6.15-parisc64-di -pcrc-modules-6.6.15-parisc64-di -pcrypto-dm-modules-6.6.15-parisc64-di -pcrypto-modules-6.6.15-parisc64-di -pevent-modules-6.6.15-parisc64-di -pext4-modules-6.6.15-parisc64-di -pf2fs-modules-6.6.15-parisc64-di -pfat-modules-6.6.15-parisc64-di -pfb-modules-6.6.15-parisc64-di -pinput-modules-6.6.15-parisc64-di -pisofs-modules-6.6.15-parisc64-di -pjfs-modules-6.6.15-parisc64-di -pkernel-image-6.6.15-parisc64-di -ploop-modules-6.6.15-parisc64-di -pmd-modules-6.6.15-parisc64-di -pmouse-modules-6.6.15-parisc64-di -pmultipath-modules-6.6.15-parisc64-di -pnbd-modules-6.6.15-parisc64-di -pnic-modules-6.6.15-parisc64-di -pnic-shared-modules-6.6.15-parisc64-di -pnic-usb-modules-6.6.15-parisc64-di -ppata-modules-6.6.15-parisc64-di -pppp-modules-6.6.15-parisc64-di -psata-modules-6.6.15-parisc64-di -pscsi-core-modules-6.6.15-parisc64-di -pscsi-modules-6.6.15-parisc64-di -pserial-modules-6.6.15-parisc64-di -psquashfs-modules-6.6.15-parisc64-di -pusb-modules-6.6.15-parisc64-di -pusb-serial-modules-6.6.15-parisc64-di -pusb-storage-modules-6.6.15-parisc64-di -pxfs-modules-6.6.15-parisc64-di' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-parisc64-di' KCFLAGS='-fno-cse-follow-jumps' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc64\""' KERNEL_ARCH='parisc' KERNEL_DEB_ARCH='undefined' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, ata-modules-6.7.7-parisc64-di btrfs-modules-6.7.7-parisc64-di cdrom-core-modules-6.7.7-parisc64-di crc-modules-6.7.7-parisc64-di crypto-dm-modules-6.7.7-parisc64-di crypto-modules-6.7.7-parisc64-di event-modules-6.7.7-parisc64-di ext4-modules-6.7.7-parisc64-di f2fs-modules-6.7.7-parisc64-di fat-modules-6.7.7-parisc64-di fb-modules-6.7.7-parisc64-di input-modules-6.7.7-parisc64-di isofs-modules-6.7.7-parisc64-di jfs-modules-6.7.7-parisc64-di kernel-image-6.7.7-parisc64-di loop-modules-6.7.7-parisc64-di md-modules-6.7.7-parisc64-di mouse-modules-6.7.7-parisc64-di multipath-modules-6.7.7-parisc64-di nbd-modules-6.7.7-parisc64-di nic-modules-6.7.7-parisc64-di nic-shared-modules-6.7.7-parisc64-di nic-usb-modules-6.7.7-parisc64-di pata-modules-6.7.7-parisc64-di ppp-modules-6.7.7-parisc64-di sata-modules-6.7.7-parisc64-di scsi-core-modules-6.7.7-parisc64-di scsi-modules-6.7.7-parisc64-di serial-modules-6.7.7-parisc64-di squashfs-modules-6.7.7-parisc64-di usb-modules-6.7.7-parisc64-di usb-serial-modules-6.7.7-parisc64-di usb-storage-modules-6.7.7-parisc64-di xfs-modules-6.7.7-parisc64-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.7.7' ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.7.7-parisc64-di -pbtrfs-modules-6.7.7-parisc64-di -pcdrom-core-modules-6.7.7-parisc64-di -pcrc-modules-6.7.7-parisc64-di -pcrypto-dm-modules-6.7.7-parisc64-di -pcrypto-modules-6.7.7-parisc64-di -pevent-modules-6.7.7-parisc64-di -pext4-modules-6.7.7-parisc64-di -pf2fs-modules-6.7.7-parisc64-di -pfat-modules-6.7.7-parisc64-di -pfb-modules-6.7.7-parisc64-di -pinput-modules-6.7.7-parisc64-di -pisofs-modules-6.7.7-parisc64-di -pjfs-modules-6.7.7-parisc64-di -pkernel-image-6.7.7-parisc64-di -ploop-modules-6.7.7-parisc64-di -pmd-modules-6.7.7-parisc64-di -pmouse-modules-6.7.7-parisc64-di -pmultipath-modules-6.7.7-parisc64-di -pnbd-modules-6.7.7-parisc64-di -pnic-modules-6.7.7-parisc64-di -pnic-shared-modules-6.7.7-parisc64-di -pnic-usb-modules-6.7.7-parisc64-di -ppata-modules-6.7.7-parisc64-di -pppp-modules-6.7.7-parisc64-di -psata-modules-6.7.7-parisc64-di -pscsi-core-modules-6.7.7-parisc64-di -pscsi-modules-6.7.7-parisc64-di -pserial-modules-6.7.7-parisc64-di -psquashfs-modules-6.7.7-parisc64-di -pusb-modules-6.7.7-parisc64-di -pusb-serial-modules-6.7.7-parisc64-di -pusb-storage-modules-6.7.7-parisc64-di -pxfs-modules-6.7.7-parisc64-di' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-parisc64-di' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc64\""' KERNEL_ARCH='parisc' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_hppa_none_parisc64_meta: - $(call if_package, linux-image-parisc64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='hppa' COMPAT_DEB_ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-parisc64' DH_OPTIONS='-plinux-image-parisc64' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-parisc64' KCFLAGS='-fno-cse-follow-jumps' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc64\""' KERNEL_ARCH='parisc' KERNEL_DEB_ARCH='undefined' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' PACKAGE_NAME='linux-image-parisc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-parisc64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='hppa' COMPAT_DEB_ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-parisc64' DH_OPTIONS='-plinux-headers-parisc64' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-parisc64' KCFLAGS='-fno-cse-follow-jumps' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc64\""' KERNEL_ARCH='parisc' KERNEL_DEB_ARCH='undefined' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' PACKAGE_NAME='linux-headers-parisc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-parisc64-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='hppa' COMPAT_DEB_ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-parisc64-dbg' DH_OPTIONS='-plinux-image-parisc64-dbg' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-parisc64-dbg' KCFLAGS='-fno-cse-follow-jumps' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc64\""' KERNEL_ARCH='parisc' KERNEL_DEB_ARCH='undefined' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' PACKAGE_NAME='linux-image-parisc64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-parisc64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-parisc64' DH_OPTIONS='-plinux-image-parisc64' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-parisc64' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc64\""' KERNEL_ARCH='parisc' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' PACKAGE_NAME='linux-image-parisc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-parisc64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-parisc64' DH_OPTIONS='-plinux-headers-parisc64' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-parisc64' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc64\""' KERNEL_ARCH='parisc' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' PACKAGE_NAME='linux-headers-parisc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-parisc64-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='hppa' COMPAT_GNU_TYPE='hppa-linux-gnu' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-parisc64-dbg' DH_OPTIONS='-plinux-image-parisc64-dbg' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-parisc64-dbg' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc64\""' KERNEL_ARCH='parisc' KERNEL_GNU_TYPE='hppa64-linux-gnu' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' PACKAGE_NAME='linux-image-parisc64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_hppa_none_parisc_headers: - $(call if_package, linux-headers-6.6.15-parisc, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-parisc' DH_OPTIONS='-plinux-headers-6.6.15-parisc' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' PACKAGE_NAME='linux-headers-6.6.15-parisc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-parisc, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-parisc' DH_OPTIONS='-plinux-headers-6.7.7-parisc' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' PACKAGE_NAME='linux-headers-6.7.7-parisc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_hppa_none_parisc_image: - $(call if_package, linux-image-6.6.15-parisc, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-parisc' DH_OPTIONS='-plinux-image-6.6.15-parisc' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' PACKAGE_NAME='linux-image-6.6.15-parisc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-parisc, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-parisc' DH_OPTIONS='-plinux-image-6.7.7-parisc' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' PACKAGE_NAME='linux-image-6.7.7-parisc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_hppa_none_parisc_image-dbg: - $(call if_package, linux-image-6.6.15-parisc-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-parisc-dbg' DH_OPTIONS='-plinux-image-6.6.15-parisc-dbg' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' PACKAGE_NAME='linux-image-6.6.15-parisc-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-parisc-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-parisc-dbg' DH_OPTIONS='-plinux-image-6.7.7-parisc-dbg' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' PACKAGE_NAME='linux-image-6.7.7-parisc-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_hppa_none_parisc_installer: - $(call if_package, ata-modules-6.6.15-parisc-di btrfs-modules-6.6.15-parisc-di cdrom-core-modules-6.6.15-parisc-di crc-modules-6.6.15-parisc-di crypto-dm-modules-6.6.15-parisc-di crypto-modules-6.6.15-parisc-di event-modules-6.6.15-parisc-di ext4-modules-6.6.15-parisc-di f2fs-modules-6.6.15-parisc-di fat-modules-6.6.15-parisc-di i2c-modules-6.6.15-parisc-di input-modules-6.6.15-parisc-di isofs-modules-6.6.15-parisc-di jfs-modules-6.6.15-parisc-di kernel-image-6.6.15-parisc-di loop-modules-6.6.15-parisc-di md-modules-6.6.15-parisc-di mouse-modules-6.6.15-parisc-di multipath-modules-6.6.15-parisc-di nbd-modules-6.6.15-parisc-di nic-modules-6.6.15-parisc-di nic-shared-modules-6.6.15-parisc-di nic-usb-modules-6.6.15-parisc-di pata-modules-6.6.15-parisc-di ppp-modules-6.6.15-parisc-di sata-modules-6.6.15-parisc-di scsi-core-modules-6.6.15-parisc-di scsi-modules-6.6.15-parisc-di serial-modules-6.6.15-parisc-di squashfs-modules-6.6.15-parisc-di usb-modules-6.6.15-parisc-di usb-serial-modules-6.6.15-parisc-di usb-storage-modules-6.6.15-parisc-di xfs-modules-6.6.15-parisc-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.6.15' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.6.15-parisc-di -pbtrfs-modules-6.6.15-parisc-di -pcdrom-core-modules-6.6.15-parisc-di -pcrc-modules-6.6.15-parisc-di -pcrypto-dm-modules-6.6.15-parisc-di -pcrypto-modules-6.6.15-parisc-di -pevent-modules-6.6.15-parisc-di -pext4-modules-6.6.15-parisc-di -pf2fs-modules-6.6.15-parisc-di -pfat-modules-6.6.15-parisc-di -pi2c-modules-6.6.15-parisc-di -pinput-modules-6.6.15-parisc-di -pisofs-modules-6.6.15-parisc-di -pjfs-modules-6.6.15-parisc-di -pkernel-image-6.6.15-parisc-di -ploop-modules-6.6.15-parisc-di -pmd-modules-6.6.15-parisc-di -pmouse-modules-6.6.15-parisc-di -pmultipath-modules-6.6.15-parisc-di -pnbd-modules-6.6.15-parisc-di -pnic-modules-6.6.15-parisc-di -pnic-shared-modules-6.6.15-parisc-di -pnic-usb-modules-6.6.15-parisc-di -ppata-modules-6.6.15-parisc-di -pppp-modules-6.6.15-parisc-di -psata-modules-6.6.15-parisc-di -pscsi-core-modules-6.6.15-parisc-di -pscsi-modules-6.6.15-parisc-di -pserial-modules-6.6.15-parisc-di -psquashfs-modules-6.6.15-parisc-di -pusb-modules-6.6.15-parisc-di -pusb-serial-modules-6.6.15-parisc-di -pusb-storage-modules-6.6.15-parisc-di -pxfs-modules-6.6.15-parisc-di' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-parisc-di' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, ata-modules-6.7.7-parisc-di btrfs-modules-6.7.7-parisc-di cdrom-core-modules-6.7.7-parisc-di crc-modules-6.7.7-parisc-di crypto-dm-modules-6.7.7-parisc-di crypto-modules-6.7.7-parisc-di event-modules-6.7.7-parisc-di ext4-modules-6.7.7-parisc-di f2fs-modules-6.7.7-parisc-di fat-modules-6.7.7-parisc-di i2c-modules-6.7.7-parisc-di input-modules-6.7.7-parisc-di isofs-modules-6.7.7-parisc-di jfs-modules-6.7.7-parisc-di kernel-image-6.7.7-parisc-di loop-modules-6.7.7-parisc-di md-modules-6.7.7-parisc-di mouse-modules-6.7.7-parisc-di multipath-modules-6.7.7-parisc-di nbd-modules-6.7.7-parisc-di nic-modules-6.7.7-parisc-di nic-shared-modules-6.7.7-parisc-di nic-usb-modules-6.7.7-parisc-di pata-modules-6.7.7-parisc-di ppp-modules-6.7.7-parisc-di sata-modules-6.7.7-parisc-di scsi-core-modules-6.7.7-parisc-di scsi-modules-6.7.7-parisc-di serial-modules-6.7.7-parisc-di squashfs-modules-6.7.7-parisc-di usb-modules-6.7.7-parisc-di usb-serial-modules-6.7.7-parisc-di usb-storage-modules-6.7.7-parisc-di xfs-modules-6.7.7-parisc-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.7.7' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.7.7-parisc-di -pbtrfs-modules-6.7.7-parisc-di -pcdrom-core-modules-6.7.7-parisc-di -pcrc-modules-6.7.7-parisc-di -pcrypto-dm-modules-6.7.7-parisc-di -pcrypto-modules-6.7.7-parisc-di -pevent-modules-6.7.7-parisc-di -pext4-modules-6.7.7-parisc-di -pf2fs-modules-6.7.7-parisc-di -pfat-modules-6.7.7-parisc-di -pi2c-modules-6.7.7-parisc-di -pinput-modules-6.7.7-parisc-di -pisofs-modules-6.7.7-parisc-di -pjfs-modules-6.7.7-parisc-di -pkernel-image-6.7.7-parisc-di -ploop-modules-6.7.7-parisc-di -pmd-modules-6.7.7-parisc-di -pmouse-modules-6.7.7-parisc-di -pmultipath-modules-6.7.7-parisc-di -pnbd-modules-6.7.7-parisc-di -pnic-modules-6.7.7-parisc-di -pnic-shared-modules-6.7.7-parisc-di -pnic-usb-modules-6.7.7-parisc-di -ppata-modules-6.7.7-parisc-di -pppp-modules-6.7.7-parisc-di -psata-modules-6.7.7-parisc-di -pscsi-core-modules-6.7.7-parisc-di -pscsi-modules-6.7.7-parisc-di -pserial-modules-6.7.7-parisc-di -psquashfs-modules-6.7.7-parisc-di -pusb-modules-6.7.7-parisc-di -pusb-serial-modules-6.7.7-parisc-di -pusb-storage-modules-6.7.7-parisc-di -pxfs-modules-6.7.7-parisc-di' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-parisc-di' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_hppa_none_parisc_meta: - $(call if_package, linux-image-parisc, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-parisc' DH_OPTIONS='-plinux-image-parisc' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-parisc' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' PACKAGE_NAME='linux-image-parisc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-parisc, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-parisc' DH_OPTIONS='-plinux-headers-parisc' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-parisc' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' PACKAGE_NAME='linux-headers-parisc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-parisc-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-parisc-dbg' DH_OPTIONS='-plinux-image-parisc-dbg' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-parisc-dbg' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' PACKAGE_NAME='linux-image-parisc-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-parisc, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-parisc' DH_OPTIONS='-plinux-image-parisc' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-parisc' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' PACKAGE_NAME='linux-image-parisc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-parisc, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-parisc' DH_OPTIONS='-plinux-headers-parisc' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-parisc' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' PACKAGE_NAME='linux-headers-parisc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-parisc-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='hppa' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-parisc-dbg' DH_OPTIONS='-plinux-image-parisc-dbg' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-parisc-dbg' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' PACKAGE_NAME='linux-image-parisc-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_hppa_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.6.15' ARCH='hppa' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='parisc' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.7.7' ARCH='hppa' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='parisc' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_hppa_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.6.15' ARCH='hppa' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='parisc' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.7.7' ARCH='hppa' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='parisc' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_hppa_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.6.15' ARCH='hppa' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='parisc' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.7.7' ARCH='hppa' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='parisc' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_i386:setup_i386_bpftool setup_i386_config setup_i386_cpupower setup_i386_hyperv-daemons setup_i386_kbuild setup_i386_none setup_i386_perf setup_i386_rt setup_i386_rtla setup_i386_usbip setup_i386_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.6.15' ARCH='i386' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='x86' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.7.7' ARCH='i386' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='x86' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_i386_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real setup_config ABINAME='6.6.15' ARCH='i386' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='x86' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real setup_config ABINAME='6.7.7' ARCH='i386' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='x86' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_i386_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.6.15' ARCH='i386' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='x86' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.7.7' ARCH='i386' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='x86' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_i386_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.6.15' ARCH='i386' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='x86' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.7.7' ARCH='i386' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='x86' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_i386_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.6.15' ARCH='i386' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='x86' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.7.7' ARCH='i386' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='x86' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_i386_none:setup_i386_none_686 setup_i386_none_686-pae setup_i386_none_686:setup_i386_none_686_headers setup_i386_none_686_image setup_i386_none_686_image-dbg setup_i386_none_686_installer setup_i386_none_686_meta setup_i386_none_686-pae:setup_i386_none_686-pae_headers setup_i386_none_686-pae_image setup_i386_none_686-pae_image-dbg setup_i386_none_686-pae_installer setup_i386_none_686-pae_meta setup_i386_none_686-pae_headers: - $(call if_package, linux-headers-6.6.15-686-pae, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-686-pae' DH_OPTIONS='-plinux-headers-6.6.15-686-pae' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' PACKAGE_NAME='linux-headers-6.6.15-686-pae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-686-pae, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-686-pae' DH_OPTIONS='-plinux-headers-6.7.7-686-pae' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' PACKAGE_NAME='linux-headers-6.7.7-686-pae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_i386_none_686-pae_image: - $(call if_package, linux-image-6.6.15-686-pae, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-686-pae' DH_OPTIONS='-plinux-image-6.6.15-686-pae' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' PACKAGE_NAME='linux-image-6.6.15-686-pae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-686-pae, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-686-pae' DH_OPTIONS='-plinux-image-6.7.7-686-pae' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' PACKAGE_NAME='linux-image-6.7.7-686-pae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_i386_none_686-pae_image-dbg: - $(call if_package, linux-image-6.6.15-686-pae-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-686-pae-dbg' DH_OPTIONS='-plinux-image-6.6.15-686-pae-dbg' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' PACKAGE_NAME='linux-image-6.6.15-686-pae-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-686-pae-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-686-pae-dbg' DH_OPTIONS='-plinux-image-6.7.7-686-pae-dbg' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' PACKAGE_NAME='linux-image-6.7.7-686-pae-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_i386_none_686-pae_installer: - $(call if_package, acpi-modules-6.6.15-686-pae-di ata-modules-6.6.15-686-pae-di btrfs-modules-6.6.15-686-pae-di cdrom-core-modules-6.6.15-686-pae-di crc-modules-6.6.15-686-pae-di crypto-dm-modules-6.6.15-686-pae-di crypto-modules-6.6.15-686-pae-di efi-modules-6.6.15-686-pae-di event-modules-6.6.15-686-pae-di ext4-modules-6.6.15-686-pae-di f2fs-modules-6.6.15-686-pae-di fat-modules-6.6.15-686-pae-di fb-modules-6.6.15-686-pae-di firewire-core-modules-6.6.15-686-pae-di i2c-modules-6.6.15-686-pae-di input-modules-6.6.15-686-pae-di isofs-modules-6.6.15-686-pae-di jfs-modules-6.6.15-686-pae-di kernel-image-6.6.15-686-pae-di loop-modules-6.6.15-686-pae-di md-modules-6.6.15-686-pae-di mmc-core-modules-6.6.15-686-pae-di mmc-modules-6.6.15-686-pae-di mouse-modules-6.6.15-686-pae-di mtd-core-modules-6.6.15-686-pae-di multipath-modules-6.6.15-686-pae-di nbd-modules-6.6.15-686-pae-di nic-modules-6.6.15-686-pae-di nic-pcmcia-modules-6.6.15-686-pae-di nic-shared-modules-6.6.15-686-pae-di nic-usb-modules-6.6.15-686-pae-di nic-wireless-modules-6.6.15-686-pae-di pata-modules-6.6.15-686-pae-di pcmcia-modules-6.6.15-686-pae-di pcmcia-storage-modules-6.6.15-686-pae-di ppp-modules-6.6.15-686-pae-di rfkill-modules-6.6.15-686-pae-di sata-modules-6.6.15-686-pae-di scsi-core-modules-6.6.15-686-pae-di scsi-modules-6.6.15-686-pae-di scsi-nic-modules-6.6.15-686-pae-di serial-modules-6.6.15-686-pae-di sound-modules-6.6.15-686-pae-di speakup-modules-6.6.15-686-pae-di squashfs-modules-6.6.15-686-pae-di udf-modules-6.6.15-686-pae-di uinput-modules-6.6.15-686-pae-di usb-modules-6.6.15-686-pae-di usb-serial-modules-6.6.15-686-pae-di usb-storage-modules-6.6.15-686-pae-di xfs-modules-6.6.15-686-pae-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pacpi-modules-6.6.15-686-pae-di -pata-modules-6.6.15-686-pae-di -pbtrfs-modules-6.6.15-686-pae-di -pcdrom-core-modules-6.6.15-686-pae-di -pcrc-modules-6.6.15-686-pae-di -pcrypto-dm-modules-6.6.15-686-pae-di -pcrypto-modules-6.6.15-686-pae-di -pefi-modules-6.6.15-686-pae-di -pevent-modules-6.6.15-686-pae-di -pext4-modules-6.6.15-686-pae-di -pf2fs-modules-6.6.15-686-pae-di -pfat-modules-6.6.15-686-pae-di -pfb-modules-6.6.15-686-pae-di -pfirewire-core-modules-6.6.15-686-pae-di -pi2c-modules-6.6.15-686-pae-di -pinput-modules-6.6.15-686-pae-di -pisofs-modules-6.6.15-686-pae-di -pjfs-modules-6.6.15-686-pae-di -pkernel-image-6.6.15-686-pae-di -ploop-modules-6.6.15-686-pae-di -pmd-modules-6.6.15-686-pae-di -pmmc-core-modules-6.6.15-686-pae-di -pmmc-modules-6.6.15-686-pae-di -pmouse-modules-6.6.15-686-pae-di -pmtd-core-modules-6.6.15-686-pae-di -pmultipath-modules-6.6.15-686-pae-di -pnbd-modules-6.6.15-686-pae-di -pnic-modules-6.6.15-686-pae-di -pnic-pcmcia-modules-6.6.15-686-pae-di -pnic-shared-modules-6.6.15-686-pae-di -pnic-usb-modules-6.6.15-686-pae-di -pnic-wireless-modules-6.6.15-686-pae-di -ppata-modules-6.6.15-686-pae-di -ppcmcia-modules-6.6.15-686-pae-di -ppcmcia-storage-modules-6.6.15-686-pae-di -pppp-modules-6.6.15-686-pae-di -prfkill-modules-6.6.15-686-pae-di -psata-modules-6.6.15-686-pae-di -pscsi-core-modules-6.6.15-686-pae-di -pscsi-modules-6.6.15-686-pae-di -pscsi-nic-modules-6.6.15-686-pae-di -pserial-modules-6.6.15-686-pae-di -psound-modules-6.6.15-686-pae-di -pspeakup-modules-6.6.15-686-pae-di -psquashfs-modules-6.6.15-686-pae-di -pudf-modules-6.6.15-686-pae-di -puinput-modules-6.6.15-686-pae-di -pusb-modules-6.6.15-686-pae-di -pusb-serial-modules-6.6.15-686-pae-di -pusb-storage-modules-6.6.15-686-pae-di -pxfs-modules-6.6.15-686-pae-di' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-686-pae-di' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, acpi-modules-6.7.7-686-pae-di ata-modules-6.7.7-686-pae-di btrfs-modules-6.7.7-686-pae-di cdrom-core-modules-6.7.7-686-pae-di crc-modules-6.7.7-686-pae-di crypto-dm-modules-6.7.7-686-pae-di crypto-modules-6.7.7-686-pae-di efi-modules-6.7.7-686-pae-di event-modules-6.7.7-686-pae-di ext4-modules-6.7.7-686-pae-di f2fs-modules-6.7.7-686-pae-di fat-modules-6.7.7-686-pae-di fb-modules-6.7.7-686-pae-di firewire-core-modules-6.7.7-686-pae-di i2c-modules-6.7.7-686-pae-di input-modules-6.7.7-686-pae-di isofs-modules-6.7.7-686-pae-di jfs-modules-6.7.7-686-pae-di kernel-image-6.7.7-686-pae-di loop-modules-6.7.7-686-pae-di md-modules-6.7.7-686-pae-di mmc-core-modules-6.7.7-686-pae-di mmc-modules-6.7.7-686-pae-di mouse-modules-6.7.7-686-pae-di mtd-core-modules-6.7.7-686-pae-di multipath-modules-6.7.7-686-pae-di nbd-modules-6.7.7-686-pae-di nic-modules-6.7.7-686-pae-di nic-pcmcia-modules-6.7.7-686-pae-di nic-shared-modules-6.7.7-686-pae-di nic-usb-modules-6.7.7-686-pae-di nic-wireless-modules-6.7.7-686-pae-di pata-modules-6.7.7-686-pae-di pcmcia-modules-6.7.7-686-pae-di pcmcia-storage-modules-6.7.7-686-pae-di ppp-modules-6.7.7-686-pae-di rfkill-modules-6.7.7-686-pae-di sata-modules-6.7.7-686-pae-di scsi-core-modules-6.7.7-686-pae-di scsi-modules-6.7.7-686-pae-di scsi-nic-modules-6.7.7-686-pae-di serial-modules-6.7.7-686-pae-di sound-modules-6.7.7-686-pae-di speakup-modules-6.7.7-686-pae-di squashfs-modules-6.7.7-686-pae-di udf-modules-6.7.7-686-pae-di uinput-modules-6.7.7-686-pae-di usb-modules-6.7.7-686-pae-di usb-serial-modules-6.7.7-686-pae-di usb-storage-modules-6.7.7-686-pae-di xfs-modules-6.7.7-686-pae-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pacpi-modules-6.7.7-686-pae-di -pata-modules-6.7.7-686-pae-di -pbtrfs-modules-6.7.7-686-pae-di -pcdrom-core-modules-6.7.7-686-pae-di -pcrc-modules-6.7.7-686-pae-di -pcrypto-dm-modules-6.7.7-686-pae-di -pcrypto-modules-6.7.7-686-pae-di -pefi-modules-6.7.7-686-pae-di -pevent-modules-6.7.7-686-pae-di -pext4-modules-6.7.7-686-pae-di -pf2fs-modules-6.7.7-686-pae-di -pfat-modules-6.7.7-686-pae-di -pfb-modules-6.7.7-686-pae-di -pfirewire-core-modules-6.7.7-686-pae-di -pi2c-modules-6.7.7-686-pae-di -pinput-modules-6.7.7-686-pae-di -pisofs-modules-6.7.7-686-pae-di -pjfs-modules-6.7.7-686-pae-di -pkernel-image-6.7.7-686-pae-di -ploop-modules-6.7.7-686-pae-di -pmd-modules-6.7.7-686-pae-di -pmmc-core-modules-6.7.7-686-pae-di -pmmc-modules-6.7.7-686-pae-di -pmouse-modules-6.7.7-686-pae-di -pmtd-core-modules-6.7.7-686-pae-di -pmultipath-modules-6.7.7-686-pae-di -pnbd-modules-6.7.7-686-pae-di -pnic-modules-6.7.7-686-pae-di -pnic-pcmcia-modules-6.7.7-686-pae-di -pnic-shared-modules-6.7.7-686-pae-di -pnic-usb-modules-6.7.7-686-pae-di -pnic-wireless-modules-6.7.7-686-pae-di -ppata-modules-6.7.7-686-pae-di -ppcmcia-modules-6.7.7-686-pae-di -ppcmcia-storage-modules-6.7.7-686-pae-di -pppp-modules-6.7.7-686-pae-di -prfkill-modules-6.7.7-686-pae-di -psata-modules-6.7.7-686-pae-di -pscsi-core-modules-6.7.7-686-pae-di -pscsi-modules-6.7.7-686-pae-di -pscsi-nic-modules-6.7.7-686-pae-di -pserial-modules-6.7.7-686-pae-di -psound-modules-6.7.7-686-pae-di -pspeakup-modules-6.7.7-686-pae-di -psquashfs-modules-6.7.7-686-pae-di -pudf-modules-6.7.7-686-pae-di -puinput-modules-6.7.7-686-pae-di -pusb-modules-6.7.7-686-pae-di -pusb-serial-modules-6.7.7-686-pae-di -pusb-storage-modules-6.7.7-686-pae-di -pxfs-modules-6.7.7-686-pae-di' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-686-pae-di' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_i386_none_686-pae_meta: - $(call if_package, linux-image-686-pae, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-686-pae' DH_OPTIONS='-plinux-image-686-pae' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-686-pae' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' PACKAGE_NAME='linux-image-686-pae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-686-pae, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-686-pae' DH_OPTIONS='-plinux-headers-686-pae' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-686-pae' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' PACKAGE_NAME='linux-headers-686-pae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-image-686-pae-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-686-pae-dbg' DH_OPTIONS='-plinux-image-686-pae-dbg' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-686-pae-dbg' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' PACKAGE_NAME='linux-image-686-pae-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-686-pae, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-686-pae' DH_OPTIONS='-plinux-image-686-pae' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-686-pae' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' PACKAGE_NAME='linux-image-686-pae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-686-pae, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-686-pae' DH_OPTIONS='-plinux-headers-686-pae' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-686-pae' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' PACKAGE_NAME='linux-headers-686-pae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-image-686-pae-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-686-pae-dbg' DH_OPTIONS='-plinux-image-686-pae-dbg' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-686-pae-dbg' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' PACKAGE_NAME='linux-image-686-pae-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_i386_none_686_headers: - $(call if_package, linux-headers-6.6.15-686, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-686' DH_OPTIONS='-plinux-headers-6.6.15-686' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' PACKAGE_NAME='linux-headers-6.6.15-686' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-686, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-686' DH_OPTIONS='-plinux-headers-6.7.7-686' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' PACKAGE_NAME='linux-headers-6.7.7-686' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_i386_none_686_image: - $(call if_package, linux-image-6.6.15-686, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-686' DH_OPTIONS='-plinux-image-6.6.15-686' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' PACKAGE_NAME='linux-image-6.6.15-686' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-686, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-686' DH_OPTIONS='-plinux-image-6.7.7-686' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' PACKAGE_NAME='linux-image-6.7.7-686' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_i386_none_686_image-dbg: - $(call if_package, linux-image-6.6.15-686-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-686-dbg' DH_OPTIONS='-plinux-image-6.6.15-686-dbg' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' PACKAGE_NAME='linux-image-6.6.15-686-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-686-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-686-dbg' DH_OPTIONS='-plinux-image-6.7.7-686-dbg' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' PACKAGE_NAME='linux-image-6.7.7-686-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_i386_none_686_installer: - $(call if_package, acpi-modules-6.6.15-686-di ata-modules-6.6.15-686-di btrfs-modules-6.6.15-686-di cdrom-core-modules-6.6.15-686-di crc-modules-6.6.15-686-di crypto-dm-modules-6.6.15-686-di crypto-modules-6.6.15-686-di efi-modules-6.6.15-686-di event-modules-6.6.15-686-di ext4-modules-6.6.15-686-di f2fs-modules-6.6.15-686-di fat-modules-6.6.15-686-di fb-modules-6.6.15-686-di firewire-core-modules-6.6.15-686-di i2c-modules-6.6.15-686-di input-modules-6.6.15-686-di isofs-modules-6.6.15-686-di jfs-modules-6.6.15-686-di kernel-image-6.6.15-686-di loop-modules-6.6.15-686-di md-modules-6.6.15-686-di mmc-core-modules-6.6.15-686-di mmc-modules-6.6.15-686-di mouse-modules-6.6.15-686-di mtd-core-modules-6.6.15-686-di multipath-modules-6.6.15-686-di nbd-modules-6.6.15-686-di nic-modules-6.6.15-686-di nic-pcmcia-modules-6.6.15-686-di nic-shared-modules-6.6.15-686-di nic-usb-modules-6.6.15-686-di nic-wireless-modules-6.6.15-686-di pata-modules-6.6.15-686-di pcmcia-modules-6.6.15-686-di pcmcia-storage-modules-6.6.15-686-di ppp-modules-6.6.15-686-di rfkill-modules-6.6.15-686-di sata-modules-6.6.15-686-di scsi-core-modules-6.6.15-686-di scsi-modules-6.6.15-686-di scsi-nic-modules-6.6.15-686-di serial-modules-6.6.15-686-di sound-modules-6.6.15-686-di speakup-modules-6.6.15-686-di squashfs-modules-6.6.15-686-di udf-modules-6.6.15-686-di uinput-modules-6.6.15-686-di usb-modules-6.6.15-686-di usb-serial-modules-6.6.15-686-di usb-storage-modules-6.6.15-686-di xfs-modules-6.6.15-686-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pacpi-modules-6.6.15-686-di -pata-modules-6.6.15-686-di -pbtrfs-modules-6.6.15-686-di -pcdrom-core-modules-6.6.15-686-di -pcrc-modules-6.6.15-686-di -pcrypto-dm-modules-6.6.15-686-di -pcrypto-modules-6.6.15-686-di -pefi-modules-6.6.15-686-di -pevent-modules-6.6.15-686-di -pext4-modules-6.6.15-686-di -pf2fs-modules-6.6.15-686-di -pfat-modules-6.6.15-686-di -pfb-modules-6.6.15-686-di -pfirewire-core-modules-6.6.15-686-di -pi2c-modules-6.6.15-686-di -pinput-modules-6.6.15-686-di -pisofs-modules-6.6.15-686-di -pjfs-modules-6.6.15-686-di -pkernel-image-6.6.15-686-di -ploop-modules-6.6.15-686-di -pmd-modules-6.6.15-686-di -pmmc-core-modules-6.6.15-686-di -pmmc-modules-6.6.15-686-di -pmouse-modules-6.6.15-686-di -pmtd-core-modules-6.6.15-686-di -pmultipath-modules-6.6.15-686-di -pnbd-modules-6.6.15-686-di -pnic-modules-6.6.15-686-di -pnic-pcmcia-modules-6.6.15-686-di -pnic-shared-modules-6.6.15-686-di -pnic-usb-modules-6.6.15-686-di -pnic-wireless-modules-6.6.15-686-di -ppata-modules-6.6.15-686-di -ppcmcia-modules-6.6.15-686-di -ppcmcia-storage-modules-6.6.15-686-di -pppp-modules-6.6.15-686-di -prfkill-modules-6.6.15-686-di -psata-modules-6.6.15-686-di -pscsi-core-modules-6.6.15-686-di -pscsi-modules-6.6.15-686-di -pscsi-nic-modules-6.6.15-686-di -pserial-modules-6.6.15-686-di -psound-modules-6.6.15-686-di -pspeakup-modules-6.6.15-686-di -psquashfs-modules-6.6.15-686-di -pudf-modules-6.6.15-686-di -puinput-modules-6.6.15-686-di -pusb-modules-6.6.15-686-di -pusb-serial-modules-6.6.15-686-di -pusb-storage-modules-6.6.15-686-di -pxfs-modules-6.6.15-686-di' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-686-di' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, acpi-modules-6.7.7-686-di ata-modules-6.7.7-686-di btrfs-modules-6.7.7-686-di cdrom-core-modules-6.7.7-686-di crc-modules-6.7.7-686-di crypto-dm-modules-6.7.7-686-di crypto-modules-6.7.7-686-di efi-modules-6.7.7-686-di event-modules-6.7.7-686-di ext4-modules-6.7.7-686-di f2fs-modules-6.7.7-686-di fat-modules-6.7.7-686-di fb-modules-6.7.7-686-di firewire-core-modules-6.7.7-686-di i2c-modules-6.7.7-686-di input-modules-6.7.7-686-di isofs-modules-6.7.7-686-di jfs-modules-6.7.7-686-di kernel-image-6.7.7-686-di loop-modules-6.7.7-686-di md-modules-6.7.7-686-di mmc-core-modules-6.7.7-686-di mmc-modules-6.7.7-686-di mouse-modules-6.7.7-686-di mtd-core-modules-6.7.7-686-di multipath-modules-6.7.7-686-di nbd-modules-6.7.7-686-di nic-modules-6.7.7-686-di nic-pcmcia-modules-6.7.7-686-di nic-shared-modules-6.7.7-686-di nic-usb-modules-6.7.7-686-di nic-wireless-modules-6.7.7-686-di pata-modules-6.7.7-686-di pcmcia-modules-6.7.7-686-di pcmcia-storage-modules-6.7.7-686-di ppp-modules-6.7.7-686-di rfkill-modules-6.7.7-686-di sata-modules-6.7.7-686-di scsi-core-modules-6.7.7-686-di scsi-modules-6.7.7-686-di scsi-nic-modules-6.7.7-686-di serial-modules-6.7.7-686-di sound-modules-6.7.7-686-di speakup-modules-6.7.7-686-di squashfs-modules-6.7.7-686-di udf-modules-6.7.7-686-di uinput-modules-6.7.7-686-di usb-modules-6.7.7-686-di usb-serial-modules-6.7.7-686-di usb-storage-modules-6.7.7-686-di xfs-modules-6.7.7-686-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pacpi-modules-6.7.7-686-di -pata-modules-6.7.7-686-di -pbtrfs-modules-6.7.7-686-di -pcdrom-core-modules-6.7.7-686-di -pcrc-modules-6.7.7-686-di -pcrypto-dm-modules-6.7.7-686-di -pcrypto-modules-6.7.7-686-di -pefi-modules-6.7.7-686-di -pevent-modules-6.7.7-686-di -pext4-modules-6.7.7-686-di -pf2fs-modules-6.7.7-686-di -pfat-modules-6.7.7-686-di -pfb-modules-6.7.7-686-di -pfirewire-core-modules-6.7.7-686-di -pi2c-modules-6.7.7-686-di -pinput-modules-6.7.7-686-di -pisofs-modules-6.7.7-686-di -pjfs-modules-6.7.7-686-di -pkernel-image-6.7.7-686-di -ploop-modules-6.7.7-686-di -pmd-modules-6.7.7-686-di -pmmc-core-modules-6.7.7-686-di -pmmc-modules-6.7.7-686-di -pmouse-modules-6.7.7-686-di -pmtd-core-modules-6.7.7-686-di -pmultipath-modules-6.7.7-686-di -pnbd-modules-6.7.7-686-di -pnic-modules-6.7.7-686-di -pnic-pcmcia-modules-6.7.7-686-di -pnic-shared-modules-6.7.7-686-di -pnic-usb-modules-6.7.7-686-di -pnic-wireless-modules-6.7.7-686-di -ppata-modules-6.7.7-686-di -ppcmcia-modules-6.7.7-686-di -ppcmcia-storage-modules-6.7.7-686-di -pppp-modules-6.7.7-686-di -prfkill-modules-6.7.7-686-di -psata-modules-6.7.7-686-di -pscsi-core-modules-6.7.7-686-di -pscsi-modules-6.7.7-686-di -pscsi-nic-modules-6.7.7-686-di -pserial-modules-6.7.7-686-di -psound-modules-6.7.7-686-di -pspeakup-modules-6.7.7-686-di -psquashfs-modules-6.7.7-686-di -pudf-modules-6.7.7-686-di -puinput-modules-6.7.7-686-di -pusb-modules-6.7.7-686-di -pusb-serial-modules-6.7.7-686-di -pusb-storage-modules-6.7.7-686-di -pxfs-modules-6.7.7-686-di' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-686-di' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_i386_none_686_meta: - $(call if_package, linux-image-686, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-686' DH_OPTIONS='-plinux-image-686' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-686' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' PACKAGE_NAME='linux-image-686' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-686, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-686' DH_OPTIONS='-plinux-headers-686' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-686' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' PACKAGE_NAME='linux-headers-686' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-image-686-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-686-dbg' DH_OPTIONS='-plinux-image-686-dbg' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-686-dbg' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' PACKAGE_NAME='linux-image-686-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-686, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-686' DH_OPTIONS='-plinux-image-686' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-686' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' PACKAGE_NAME='linux-image-686' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-686, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-686' DH_OPTIONS='-plinux-headers-686' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-686' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' PACKAGE_NAME='linux-headers-686' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-image-686-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-686-dbg' DH_OPTIONS='-plinux-image-686-dbg' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-686-dbg' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' PACKAGE_NAME='linux-image-686-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_i386_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.6.15' ARCH='i386' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='x86' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.7.7' ARCH='i386' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='x86' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_i386_rt:setup_i386_rt_686-pae setup_i386_rt_686-pae:setup_i386_rt_686-pae_headers setup_i386_rt_686-pae_image setup_i386_rt_686-pae_image-dbg setup_i386_rt_686-pae_meta setup_i386_rt_686-pae_headers: - $(call if_package, linux-headers-6.6.15-rt-686-pae, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-rt-686-pae' DH_OPTIONS='-plinux-headers-6.6.15-rt-686-pae' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' PACKAGE_NAME='linux-headers-6.6.15-rt-686-pae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-rt-686-pae, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-rt-686-pae' DH_OPTIONS='-plinux-headers-6.7.7-rt-686-pae' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' PACKAGE_NAME='linux-headers-6.7.7-rt-686-pae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_i386_rt_686-pae_image: - $(call if_package, linux-image-6.6.15-rt-686-pae, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-rt-686-pae' DH_OPTIONS='-plinux-image-6.6.15-rt-686-pae' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' PACKAGE_NAME='linux-image-6.6.15-rt-686-pae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-rt-686-pae, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-rt-686-pae' DH_OPTIONS='-plinux-image-6.7.7-rt-686-pae' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' PACKAGE_NAME='linux-image-6.7.7-rt-686-pae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_i386_rt_686-pae_image-dbg: - $(call if_package, linux-image-6.6.15-rt-686-pae-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-rt-686-pae-dbg' DH_OPTIONS='-plinux-image-6.6.15-rt-686-pae-dbg' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' PACKAGE_NAME='linux-image-6.6.15-rt-686-pae-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-rt-686-pae-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-rt-686-pae-dbg' DH_OPTIONS='-plinux-image-6.7.7-rt-686-pae-dbg' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' PACKAGE_NAME='linux-image-6.7.7-rt-686-pae-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_i386_rt_686-pae_meta: - $(call if_package, linux-image-rt-686-pae, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-686-pae' DH_OPTIONS='-plinux-image-rt-686-pae' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-rt-686-pae' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' PACKAGE_NAME='linux-image-rt-686-pae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-rt-686-pae, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-rt-686-pae' DH_OPTIONS='-plinux-headers-rt-686-pae' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-rt-686-pae' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' PACKAGE_NAME='linux-headers-rt-686-pae' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-image-rt-686-pae-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-686-pae-dbg' DH_OPTIONS='-plinux-image-rt-686-pae-dbg' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-rt-686-pae-dbg' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' PACKAGE_NAME='linux-image-rt-686-pae-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-rt-686-pae, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-686-pae' DH_OPTIONS='-plinux-image-rt-686-pae' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-rt-686-pae' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' PACKAGE_NAME='linux-image-rt-686-pae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-rt-686-pae, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-rt-686-pae' DH_OPTIONS='-plinux-headers-rt-686-pae' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-rt-686-pae' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' PACKAGE_NAME='linux-headers-rt-686-pae' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-image-rt-686-pae-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='i386' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-rt-686-pae-dbg' DH_OPTIONS='-plinux-image-rt-686-pae-dbg' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-rt-686-pae-dbg' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' PACKAGE_NAME='linux-image-rt-686-pae-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_i386_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.6.15' ARCH='i386' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='x86' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.7.7' ARCH='i386' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='x86' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_i386_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.6.15' ARCH='i386' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='x86' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -setup_ia64:setup_ia64_bpftool setup_ia64_config setup_ia64_cpupower setup_ia64_hyperv-daemons setup_ia64_kbuild setup_ia64_none setup_ia64_perf setup_ia64_rtla setup_ia64_usbip -setup_ia64_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.6.15' ARCH='ia64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='ia64' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -setup_ia64_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real setup_config ABINAME='6.6.15' ARCH='ia64' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='ia64' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -setup_ia64_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.6.15' ARCH='ia64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='ia64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -setup_ia64_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.6.15' ARCH='ia64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='ia64' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -setup_ia64_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.6.15' ARCH='ia64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='ia64' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -setup_ia64_none:setup_ia64_none_itanium setup_ia64_none_mckinley -setup_ia64_none_itanium:setup_ia64_none_itanium_headers setup_ia64_none_itanium_image setup_ia64_none_itanium_image-dbg setup_ia64_none_itanium_installer setup_ia64_none_itanium_meta -setup_ia64_none_itanium_headers: - $(call if_package, linux-headers-6.6.15-itanium, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-itanium' DH_OPTIONS='-plinux-headers-6.6.15-itanium' FEATURESET='none' FLAVOUR='itanium' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.itanium' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-itanium\""' KERNEL_ARCH='ia64' LOCALVERSION='-itanium' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-itanium' PACKAGE_NAME='linux-headers-6.6.15-itanium' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -setup_ia64_none_itanium_image: - $(call if_package, linux-image-6.6.15-itanium, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-itanium' DH_OPTIONS='-plinux-image-6.6.15-itanium' FEATURESET='none' FLAVOUR='itanium' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.itanium' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-itanium\""' KERNEL_ARCH='ia64' LOCALVERSION='-itanium' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-itanium' PACKAGE_NAME='linux-image-6.6.15-itanium' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -setup_ia64_none_itanium_image-dbg: - $(call if_package, linux-image-6.6.15-itanium-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-itanium-dbg' DH_OPTIONS='-plinux-image-6.6.15-itanium-dbg' FEATURESET='none' FLAVOUR='itanium' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.itanium' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-itanium\""' KERNEL_ARCH='ia64' LOCALVERSION='-itanium' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-itanium' PACKAGE_NAME='linux-image-6.6.15-itanium-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -setup_ia64_none_itanium_installer: - $(call if_package, ata-modules-6.6.15-itanium-di btrfs-modules-6.6.15-itanium-di cdrom-core-modules-6.6.15-itanium-di crc-modules-6.6.15-itanium-di crypto-dm-modules-6.6.15-itanium-di crypto-modules-6.6.15-itanium-di event-modules-6.6.15-itanium-di ext4-modules-6.6.15-itanium-di f2fs-modules-6.6.15-itanium-di fat-modules-6.6.15-itanium-di fb-modules-6.6.15-itanium-di firewire-core-modules-6.6.15-itanium-di i2c-modules-6.6.15-itanium-di input-modules-6.6.15-itanium-di isofs-modules-6.6.15-itanium-di jfs-modules-6.6.15-itanium-di kernel-image-6.6.15-itanium-di loop-modules-6.6.15-itanium-di md-modules-6.6.15-itanium-di mouse-modules-6.6.15-itanium-di mtd-core-modules-6.6.15-itanium-di multipath-modules-6.6.15-itanium-di nbd-modules-6.6.15-itanium-di nic-modules-6.6.15-itanium-di nic-shared-modules-6.6.15-itanium-di nic-usb-modules-6.6.15-itanium-di pata-modules-6.6.15-itanium-di pcmcia-modules-6.6.15-itanium-di ppp-modules-6.6.15-itanium-di sata-modules-6.6.15-itanium-di scsi-core-modules-6.6.15-itanium-di scsi-modules-6.6.15-itanium-di scsi-nic-modules-6.6.15-itanium-di serial-modules-6.6.15-itanium-di squashfs-modules-6.6.15-itanium-di udf-modules-6.6.15-itanium-di uinput-modules-6.6.15-itanium-di usb-modules-6.6.15-itanium-di usb-serial-modules-6.6.15-itanium-di usb-storage-modules-6.6.15-itanium-di xfs-modules-6.6.15-itanium-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.6.15-itanium-di -pbtrfs-modules-6.6.15-itanium-di -pcdrom-core-modules-6.6.15-itanium-di -pcrc-modules-6.6.15-itanium-di -pcrypto-dm-modules-6.6.15-itanium-di -pcrypto-modules-6.6.15-itanium-di -pevent-modules-6.6.15-itanium-di -pext4-modules-6.6.15-itanium-di -pf2fs-modules-6.6.15-itanium-di -pfat-modules-6.6.15-itanium-di -pfb-modules-6.6.15-itanium-di -pfirewire-core-modules-6.6.15-itanium-di -pi2c-modules-6.6.15-itanium-di -pinput-modules-6.6.15-itanium-di -pisofs-modules-6.6.15-itanium-di -pjfs-modules-6.6.15-itanium-di -pkernel-image-6.6.15-itanium-di -ploop-modules-6.6.15-itanium-di -pmd-modules-6.6.15-itanium-di -pmouse-modules-6.6.15-itanium-di -pmtd-core-modules-6.6.15-itanium-di -pmultipath-modules-6.6.15-itanium-di -pnbd-modules-6.6.15-itanium-di -pnic-modules-6.6.15-itanium-di -pnic-shared-modules-6.6.15-itanium-di -pnic-usb-modules-6.6.15-itanium-di -ppata-modules-6.6.15-itanium-di -ppcmcia-modules-6.6.15-itanium-di -pppp-modules-6.6.15-itanium-di -psata-modules-6.6.15-itanium-di -pscsi-core-modules-6.6.15-itanium-di -pscsi-modules-6.6.15-itanium-di -pscsi-nic-modules-6.6.15-itanium-di -pserial-modules-6.6.15-itanium-di -psquashfs-modules-6.6.15-itanium-di -pudf-modules-6.6.15-itanium-di -puinput-modules-6.6.15-itanium-di -pusb-modules-6.6.15-itanium-di -pusb-serial-modules-6.6.15-itanium-di -pusb-storage-modules-6.6.15-itanium-di -pxfs-modules-6.6.15-itanium-di' FEATURESET='none' FLAVOUR='itanium' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-itanium-di' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.itanium' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-itanium\""' KERNEL_ARCH='ia64' LOCALVERSION='-itanium' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-itanium' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -setup_ia64_none_itanium_meta: - $(call if_package, linux-image-itanium, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' DESTDIR='$(CURDIR)/debian/linux-image-itanium' DH_OPTIONS='-plinux-image-itanium' FEATURESET='none' FLAVOUR='itanium' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-itanium' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.itanium' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-itanium\""' KERNEL_ARCH='ia64' LOCALVERSION='-itanium' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-itanium' PACKAGE_NAME='linux-image-itanium' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-itanium, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' DESTDIR='$(CURDIR)/debian/linux-headers-itanium' DH_OPTIONS='-plinux-headers-itanium' FEATURESET='none' FLAVOUR='itanium' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-itanium' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.itanium' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-itanium\""' KERNEL_ARCH='ia64' LOCALVERSION='-itanium' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-itanium' PACKAGE_NAME='linux-headers-itanium' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-itanium-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' DESTDIR='$(CURDIR)/debian/linux-image-itanium-dbg' DH_OPTIONS='-plinux-image-itanium-dbg' FEATURESET='none' FLAVOUR='itanium' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-itanium-dbg' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.itanium' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-itanium\""' KERNEL_ARCH='ia64' LOCALVERSION='-itanium' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-itanium' PACKAGE_NAME='linux-image-itanium-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -setup_ia64_none_mckinley:setup_ia64_none_mckinley_headers setup_ia64_none_mckinley_image setup_ia64_none_mckinley_image-dbg setup_ia64_none_mckinley_meta -setup_ia64_none_mckinley_headers: - $(call if_package, linux-headers-6.6.15-mckinley, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-mckinley' DH_OPTIONS='-plinux-headers-6.6.15-mckinley' FEATURESET='none' FLAVOUR='mckinley' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.mckinley' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mckinley\""' KERNEL_ARCH='ia64' LOCALVERSION='-mckinley' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mckinley' PACKAGE_NAME='linux-headers-6.6.15-mckinley' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -setup_ia64_none_mckinley_image: - $(call if_package, linux-image-6.6.15-mckinley, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-mckinley' DH_OPTIONS='-plinux-image-6.6.15-mckinley' FEATURESET='none' FLAVOUR='mckinley' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.mckinley' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mckinley\""' KERNEL_ARCH='ia64' LOCALVERSION='-mckinley' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mckinley' PACKAGE_NAME='linux-image-6.6.15-mckinley' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -setup_ia64_none_mckinley_image-dbg: - $(call if_package, linux-image-6.6.15-mckinley-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-mckinley-dbg' DH_OPTIONS='-plinux-image-6.6.15-mckinley-dbg' FEATURESET='none' FLAVOUR='mckinley' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.mckinley' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mckinley\""' KERNEL_ARCH='ia64' LOCALVERSION='-mckinley' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mckinley' PACKAGE_NAME='linux-image-6.6.15-mckinley-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -setup_ia64_none_mckinley_meta: - $(call if_package, linux-image-mckinley, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' DESTDIR='$(CURDIR)/debian/linux-image-mckinley' DH_OPTIONS='-plinux-image-mckinley' FEATURESET='none' FLAVOUR='mckinley' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-mckinley' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.mckinley' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mckinley\""' KERNEL_ARCH='ia64' LOCALVERSION='-mckinley' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mckinley' PACKAGE_NAME='linux-image-mckinley' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-mckinley, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' DESTDIR='$(CURDIR)/debian/linux-headers-mckinley' DH_OPTIONS='-plinux-headers-mckinley' FEATURESET='none' FLAVOUR='mckinley' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-mckinley' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.mckinley' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mckinley\""' KERNEL_ARCH='ia64' LOCALVERSION='-mckinley' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mckinley' PACKAGE_NAME='linux-headers-mckinley' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-mckinley-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='ia64' COMPILER='gcc-12' DESTDIR='$(CURDIR)/debian/linux-image-mckinley-dbg' DH_OPTIONS='-plinux-image-mckinley-dbg' FEATURESET='none' FLAVOUR='mckinley' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-mckinley-dbg' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.mckinley' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mckinley\""' KERNEL_ARCH='ia64' LOCALVERSION='-mckinley' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mckinley' PACKAGE_NAME='linux-image-mckinley-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -setup_ia64_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.6.15' ARCH='ia64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='ia64' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -setup_ia64_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.6.15' ARCH='ia64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='ia64' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') -setup_ia64_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.6.15' ARCH='ia64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='ia64' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.7.7' ARCH='i386' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='x86' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_libc-dev: - $(call if_package, linux-libc-dev, $(MAKE) -f debian/rules.real setup_libc-dev ABINAME='6.6.15' ALL_LIBCDEV_KERNELARCHES='alpha arm arm64 ia64 m68k mips parisc powerpc riscv s390 sh sparc x86' ALL_LIBCDEV_MULTIARCHES='aarch64-linux-gnu:arm64 alpha-linux-gnu:alpha arm-linux-gnueabi:arm arm-linux-gnueabihf:arm hppa-linux-gnu:parisc i386-linux-gnu:x86 ia64-linux-gnu:ia64 m68k-linux-gnu:m68k mips-linux-gnu:mips mips64-linux-gnuabi64:mips mips64el-linux-gnuabi64:mips mipsel-linux-gnu:mips mipsisa64r6el-linux-gnuabi64:mips powerpc-linux-gnu:powerpc powerpc64-linux-gnu:powerpc powerpc64le-linux-gnu:powerpc riscv64-linux-gnu:riscv s390x-linux-gnu:s390 sh4-linux-gnu:sh sparc64-linux-gnu:sparc x86_64-linux-gnu:x86 x86_64-linux-gnux32:x86' DESTDIR='$(CURDIR)/debian/linux-libc-dev' DH_OPTIONS='-plinux-libc-dev' PACKAGE_NAME='linux-libc-dev' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-libc-dev, $(MAKE) -f debian/rules.real setup_libc-dev ABINAME='6.7.7' ALL_LIBCDEV_KERNELARCHES='alpha arm arm64 loongarch m68k mips parisc powerpc riscv s390 sh sparc x86' ALL_LIBCDEV_MULTIARCHES='aarch64-linux-gnu:arm64 alpha-linux-gnu:alpha arm-linux-gnueabi:arm arm-linux-gnueabihf:arm hppa-linux-gnu:parisc i386-linux-gnu:x86 loongarch64-linux-gnu:loongarch m68k-linux-gnu:m68k mips-linux-gnu:mips mips64-linux-gnuabi64:mips mips64el-linux-gnuabi64:mips mipsel-linux-gnu:mips mipsisa64r6el-linux-gnuabi64:mips powerpc-linux-gnu:powerpc powerpc64-linux-gnu:powerpc powerpc64le-linux-gnu:powerpc riscv64-linux-gnu:riscv s390x-linux-gnu:s390 sh4-linux-gnu:sh sparc64-linux-gnu:sparc x86_64-linux-gnu:x86 x86_64-linux-gnux32:x86' DESTDIR='$(CURDIR)/debian/linux-libc-dev' DH_OPTIONS='-plinux-libc-dev' PACKAGE_NAME='linux-libc-dev' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') +setup_loong64:setup_loong64_bpftool setup_loong64_config setup_loong64_cpupower setup_loong64_hyperv-daemons setup_loong64_kbuild setup_loong64_none setup_loong64_perf setup_loong64_rtla setup_loong64_usbip +setup_loong64_bpftool: + $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.7.7' ARCH='loong64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='loongarch' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') +setup_loong64_config: + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real setup_config ABINAME='6.7.7' ARCH='loong64' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='loongarch' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') +setup_loong64_cpupower: + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.7.7' ARCH='loong64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='loongarch' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') +setup_loong64_hyperv-daemons: + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.7.7' ARCH='loong64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='loongarch' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') +setup_loong64_kbuild: + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.7.7' ARCH='loong64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='loongarch' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') +setup_loong64_none:setup_loong64_none_loong64 +setup_loong64_none_loong64:setup_loong64_none_loong64_headers setup_loong64_none_loong64_image setup_loong64_none_loong64_image-dbg setup_loong64_none_loong64_installer setup_loong64_none_loong64_meta +setup_loong64_none_loong64_headers: + $(call if_package, linux-headers-6.7.7-loong64, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='loong64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-loong64' DH_OPTIONS='-plinux-headers-6.7.7-loong64' FEATURESET='none' FLAVOUR='loong64' IMAGE_FILE='arch/loongarch/boot/vmlinuz.efi' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/loong64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loong64\""' KERNEL_ARCH='loongarch' LOCALVERSION='-loong64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loong64' PACKAGE_NAME='linux-headers-6.7.7-loong64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') +setup_loong64_none_loong64_image: + $(call if_package, linux-image-6.7.7-loong64, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='loong64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-loong64' DH_OPTIONS='-plinux-image-6.7.7-loong64' FEATURESET='none' FLAVOUR='loong64' IMAGE_FILE='arch/loongarch/boot/vmlinuz.efi' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/loong64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loong64\""' KERNEL_ARCH='loongarch' LOCALVERSION='-loong64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loong64' PACKAGE_NAME='linux-image-6.7.7-loong64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') +setup_loong64_none_loong64_image-dbg: + $(call if_package, linux-image-6.7.7-loong64-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='loong64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-loong64-dbg' DH_OPTIONS='-plinux-image-6.7.7-loong64-dbg' FEATURESET='none' FLAVOUR='loong64' IMAGE_FILE='arch/loongarch/boot/vmlinuz.efi' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/loong64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loong64\""' KERNEL_ARCH='loongarch' LOCALVERSION='-loong64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loong64' PACKAGE_NAME='linux-image-6.7.7-loong64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') +setup_loong64_none_loong64_installer: + $(call if_package, ata-modules-6.7.7-loong64-di btrfs-modules-6.7.7-loong64-di cdrom-core-modules-6.7.7-loong64-di crc-modules-6.7.7-loong64-di crypto-dm-modules-6.7.7-loong64-di crypto-modules-6.7.7-loong64-di efi-modules-6.7.7-loong64-di event-modules-6.7.7-loong64-di ext4-modules-6.7.7-loong64-di f2fs-modules-6.7.7-loong64-di fat-modules-6.7.7-loong64-di fb-modules-6.7.7-loong64-di firewire-core-modules-6.7.7-loong64-di i2c-modules-6.7.7-loong64-di input-modules-6.7.7-loong64-di isofs-modules-6.7.7-loong64-di jfs-modules-6.7.7-loong64-di kernel-image-6.7.7-loong64-di loop-modules-6.7.7-loong64-di md-modules-6.7.7-loong64-di mouse-modules-6.7.7-loong64-di mtd-core-modules-6.7.7-loong64-di mtd-modules-6.7.7-loong64-di multipath-modules-6.7.7-loong64-di nbd-modules-6.7.7-loong64-di nic-modules-6.7.7-loong64-di nic-shared-modules-6.7.7-loong64-di nic-usb-modules-6.7.7-loong64-di nic-wireless-modules-6.7.7-loong64-di pata-modules-6.7.7-loong64-di ppp-modules-6.7.7-loong64-di rfkill-modules-6.7.7-loong64-di sata-modules-6.7.7-loong64-di scsi-core-modules-6.7.7-loong64-di scsi-modules-6.7.7-loong64-di scsi-nic-modules-6.7.7-loong64-di serial-modules-6.7.7-loong64-di sound-modules-6.7.7-loong64-di speakup-modules-6.7.7-loong64-di squashfs-modules-6.7.7-loong64-di udf-modules-6.7.7-loong64-di uinput-modules-6.7.7-loong64-di usb-modules-6.7.7-loong64-di usb-serial-modules-6.7.7-loong64-di usb-storage-modules-6.7.7-loong64-di xfs-modules-6.7.7-loong64-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.7.7' ARCH='loong64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.7.7-loong64-di -pbtrfs-modules-6.7.7-loong64-di -pcdrom-core-modules-6.7.7-loong64-di -pcrc-modules-6.7.7-loong64-di -pcrypto-dm-modules-6.7.7-loong64-di -pcrypto-modules-6.7.7-loong64-di -pefi-modules-6.7.7-loong64-di -pevent-modules-6.7.7-loong64-di -pext4-modules-6.7.7-loong64-di -pf2fs-modules-6.7.7-loong64-di -pfat-modules-6.7.7-loong64-di -pfb-modules-6.7.7-loong64-di -pfirewire-core-modules-6.7.7-loong64-di -pi2c-modules-6.7.7-loong64-di -pinput-modules-6.7.7-loong64-di -pisofs-modules-6.7.7-loong64-di -pjfs-modules-6.7.7-loong64-di -pkernel-image-6.7.7-loong64-di -ploop-modules-6.7.7-loong64-di -pmd-modules-6.7.7-loong64-di -pmouse-modules-6.7.7-loong64-di -pmtd-core-modules-6.7.7-loong64-di -pmtd-modules-6.7.7-loong64-di -pmultipath-modules-6.7.7-loong64-di -pnbd-modules-6.7.7-loong64-di -pnic-modules-6.7.7-loong64-di -pnic-shared-modules-6.7.7-loong64-di -pnic-usb-modules-6.7.7-loong64-di -pnic-wireless-modules-6.7.7-loong64-di -ppata-modules-6.7.7-loong64-di -pppp-modules-6.7.7-loong64-di -prfkill-modules-6.7.7-loong64-di -psata-modules-6.7.7-loong64-di -pscsi-core-modules-6.7.7-loong64-di -pscsi-modules-6.7.7-loong64-di -pscsi-nic-modules-6.7.7-loong64-di -pserial-modules-6.7.7-loong64-di -psound-modules-6.7.7-loong64-di -pspeakup-modules-6.7.7-loong64-di -psquashfs-modules-6.7.7-loong64-di -pudf-modules-6.7.7-loong64-di -puinput-modules-6.7.7-loong64-di -pusb-modules-6.7.7-loong64-di -pusb-serial-modules-6.7.7-loong64-di -pusb-storage-modules-6.7.7-loong64-di -pxfs-modules-6.7.7-loong64-di' FEATURESET='none' FLAVOUR='loong64' IMAGE_FILE='arch/loongarch/boot/vmlinuz.efi' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-loong64-di' KCONFIG='debian/config/config debian/config/loong64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loong64\""' KERNEL_ARCH='loongarch' LOCALVERSION='-loong64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loong64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') +setup_loong64_none_loong64_meta: + $(call if_package, linux-image-loong64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='loong64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-loong64' DH_OPTIONS='-plinux-image-loong64' FEATURESET='none' FLAVOUR='loong64' IMAGE_FILE='arch/loongarch/boot/vmlinuz.efi' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-loong64' KCONFIG='debian/config/config debian/config/loong64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loong64\""' KERNEL_ARCH='loongarch' LOCALVERSION='-loong64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loong64' PACKAGE_NAME='linux-image-loong64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-loong64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='loong64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-loong64' DH_OPTIONS='-plinux-headers-loong64' FEATURESET='none' FLAVOUR='loong64' IMAGE_FILE='arch/loongarch/boot/vmlinuz.efi' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-loong64' KCONFIG='debian/config/config debian/config/loong64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loong64\""' KERNEL_ARCH='loongarch' LOCALVERSION='-loong64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loong64' PACKAGE_NAME='linux-headers-loong64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-image-loong64-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='loong64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-loong64-dbg' DH_OPTIONS='-plinux-image-loong64-dbg' FEATURESET='none' FLAVOUR='loong64' IMAGE_FILE='arch/loongarch/boot/vmlinuz.efi' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-loong64-dbg' KCONFIG='debian/config/config debian/config/loong64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loong64\""' KERNEL_ARCH='loongarch' LOCALVERSION='-loong64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loong64' PACKAGE_NAME='linux-image-loong64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') +setup_loong64_perf: + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.7.7' ARCH='loong64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='loongarch' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') +setup_loong64_rtla: + $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.7.7' ARCH='loong64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='loongarch' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') +setup_loong64_usbip: + $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.7.7' ARCH='loong64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='loongarch' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_m68k:setup_m68k_bpftool setup_m68k_config setup_m68k_cpupower setup_m68k_hyperv-daemons setup_m68k_kbuild setup_m68k_none setup_m68k_perf setup_m68k_rtla setup_m68k_usbip setup_m68k_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.6.15' ARCH='m68k' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='m68k' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.7.7' ARCH='m68k' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='m68k' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_m68k_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real setup_config ABINAME='6.6.15' ARCH='m68k' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='m68k' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real setup_config ABINAME='6.7.7' ARCH='m68k' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='m68k' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_m68k_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.6.15' ARCH='m68k' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='m68k' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.7.7' ARCH='m68k' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='m68k' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_m68k_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.6.15' ARCH='m68k' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='m68k' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.7.7' ARCH='m68k' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='m68k' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_m68k_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.6.15' ARCH='m68k' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='m68k' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.7.7' ARCH='m68k' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='m68k' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_m68k_none:setup_m68k_none_m68k setup_m68k_none_m68k:setup_m68k_none_m68k_headers setup_m68k_none_m68k_image setup_m68k_none_m68k_image-dbg setup_m68k_none_m68k_installer setup_m68k_none_m68k_meta setup_m68k_none_m68k_headers: - $(call if_package, linux-headers-6.6.15-m68k, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-m68k' DH_OPTIONS='-plinux-headers-6.6.15-m68k' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCFLAGS='-ffreestanding' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' PACKAGE_NAME='linux-headers-6.6.15-m68k' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-m68k, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-m68k' DH_OPTIONS='-plinux-headers-6.7.7-m68k' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' PACKAGE_NAME='linux-headers-6.7.7-m68k' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_m68k_none_m68k_image: - $(call if_package, linux-image-6.6.15-m68k, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-m68k' DH_OPTIONS='-plinux-image-6.6.15-m68k' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCFLAGS='-ffreestanding' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' PACKAGE_NAME='linux-image-6.6.15-m68k' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-m68k, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-m68k' DH_OPTIONS='-plinux-image-6.7.7-m68k' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' PACKAGE_NAME='linux-image-6.7.7-m68k' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_m68k_none_m68k_image-dbg: - $(call if_package, linux-image-6.6.15-m68k-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-m68k-dbg' DH_OPTIONS='-plinux-image-6.6.15-m68k-dbg' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCFLAGS='-ffreestanding' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' PACKAGE_NAME='linux-image-6.6.15-m68k-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-m68k-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-m68k-dbg' DH_OPTIONS='-plinux-image-6.7.7-m68k-dbg' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' PACKAGE_NAME='linux-image-6.7.7-m68k-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_m68k_none_m68k_installer: - $(call if_package, affs-modules-6.6.15-m68k-di ata-modules-6.6.15-m68k-di btrfs-modules-6.6.15-m68k-di cdrom-core-modules-6.6.15-m68k-di crc-modules-6.6.15-m68k-di crypto-modules-6.6.15-m68k-di ext4-modules-6.6.15-m68k-di fat-modules-6.6.15-m68k-di hfs-modules-6.6.15-m68k-di isofs-modules-6.6.15-m68k-di kernel-image-6.6.15-m68k-di loop-modules-6.6.15-m68k-di md-modules-6.6.15-m68k-di nbd-modules-6.6.15-m68k-di nic-modules-6.6.15-m68k-di nic-shared-modules-6.6.15-m68k-di pata-modules-6.6.15-m68k-di ppp-modules-6.6.15-m68k-di scsi-core-modules-6.6.15-m68k-di scsi-modules-6.6.15-m68k-di squashfs-modules-6.6.15-m68k-di udf-modules-6.6.15-m68k-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.6.15' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-m68k-di -pata-modules-6.6.15-m68k-di -pbtrfs-modules-6.6.15-m68k-di -pcdrom-core-modules-6.6.15-m68k-di -pcrc-modules-6.6.15-m68k-di -pcrypto-modules-6.6.15-m68k-di -pext4-modules-6.6.15-m68k-di -pfat-modules-6.6.15-m68k-di -phfs-modules-6.6.15-m68k-di -pisofs-modules-6.6.15-m68k-di -pkernel-image-6.6.15-m68k-di -ploop-modules-6.6.15-m68k-di -pmd-modules-6.6.15-m68k-di -pnbd-modules-6.6.15-m68k-di -pnic-modules-6.6.15-m68k-di -pnic-shared-modules-6.6.15-m68k-di -ppata-modules-6.6.15-m68k-di -pppp-modules-6.6.15-m68k-di -pscsi-core-modules-6.6.15-m68k-di -pscsi-modules-6.6.15-m68k-di -psquashfs-modules-6.6.15-m68k-di -pudf-modules-6.6.15-m68k-di' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-m68k-di' KCFLAGS='-ffreestanding' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-m68k-di ata-modules-6.7.7-m68k-di btrfs-modules-6.7.7-m68k-di cdrom-core-modules-6.7.7-m68k-di crc-modules-6.7.7-m68k-di crypto-modules-6.7.7-m68k-di ext4-modules-6.7.7-m68k-di fat-modules-6.7.7-m68k-di hfs-modules-6.7.7-m68k-di isofs-modules-6.7.7-m68k-di kernel-image-6.7.7-m68k-di loop-modules-6.7.7-m68k-di md-modules-6.7.7-m68k-di nbd-modules-6.7.7-m68k-di nic-modules-6.7.7-m68k-di nic-shared-modules-6.7.7-m68k-di pata-modules-6.7.7-m68k-di ppp-modules-6.7.7-m68k-di scsi-core-modules-6.7.7-m68k-di scsi-modules-6.7.7-m68k-di squashfs-modules-6.7.7-m68k-di udf-modules-6.7.7-m68k-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.7.7' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-m68k-di -pata-modules-6.7.7-m68k-di -pbtrfs-modules-6.7.7-m68k-di -pcdrom-core-modules-6.7.7-m68k-di -pcrc-modules-6.7.7-m68k-di -pcrypto-modules-6.7.7-m68k-di -pext4-modules-6.7.7-m68k-di -pfat-modules-6.7.7-m68k-di -phfs-modules-6.7.7-m68k-di -pisofs-modules-6.7.7-m68k-di -pkernel-image-6.7.7-m68k-di -ploop-modules-6.7.7-m68k-di -pmd-modules-6.7.7-m68k-di -pnbd-modules-6.7.7-m68k-di -pnic-modules-6.7.7-m68k-di -pnic-shared-modules-6.7.7-m68k-di -ppata-modules-6.7.7-m68k-di -pppp-modules-6.7.7-m68k-di -pscsi-core-modules-6.7.7-m68k-di -pscsi-modules-6.7.7-m68k-di -psquashfs-modules-6.7.7-m68k-di -pudf-modules-6.7.7-m68k-di' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-m68k-di' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_m68k_none_m68k_meta: - $(call if_package, linux-image-m68k, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-m68k' DH_OPTIONS='-plinux-image-m68k' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-m68k' KCFLAGS='-ffreestanding' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' PACKAGE_NAME='linux-image-m68k' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-m68k, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-m68k' DH_OPTIONS='-plinux-headers-m68k' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-m68k' KCFLAGS='-ffreestanding' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' PACKAGE_NAME='linux-headers-m68k' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-m68k-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-m68k-dbg' DH_OPTIONS='-plinux-image-m68k-dbg' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-m68k-dbg' KCFLAGS='-ffreestanding' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' PACKAGE_NAME='linux-image-m68k-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-m68k, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-m68k' DH_OPTIONS='-plinux-image-m68k' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-m68k' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' PACKAGE_NAME='linux-image-m68k' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-m68k, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-m68k' DH_OPTIONS='-plinux-headers-m68k' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-m68k' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' PACKAGE_NAME='linux-headers-m68k' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-m68k-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='m68k' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-m68k-dbg' DH_OPTIONS='-plinux-image-m68k-dbg' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-m68k-dbg' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' PACKAGE_NAME='linux-image-m68k-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_m68k_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.6.15' ARCH='m68k' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='m68k' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.7.7' ARCH='m68k' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='m68k' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_m68k_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.6.15' ARCH='m68k' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='m68k' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.7.7' ARCH='m68k' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='m68k' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_m68k_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.6.15' ARCH='m68k' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='m68k' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.7.7' ARCH='m68k' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='m68k' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_meta: - $(call if_package, linux-doc, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' DESTDIR='$(CURDIR)/debian/linux-doc' DH_OPTIONS='-plinux-doc' INSTALLDOCS_LINK_DOC='linux-doc-6.6' PACKAGE_NAME='linux-doc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-source, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' DESTDIR='$(CURDIR)/debian/linux-source' DH_OPTIONS='-plinux-source' INSTALLDOCS_LINK_DOC='linux-source-6.6' PACKAGE_NAME='linux-source' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-doc, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' DESTDIR='$(CURDIR)/debian/linux-doc' DH_OPTIONS='-plinux-doc' INSTALLDOCS_LINK_DOC='linux-doc-6.7' PACKAGE_NAME='linux-doc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-source, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' DESTDIR='$(CURDIR)/debian/linux-source' DH_OPTIONS='-plinux-source' INSTALLDOCS_LINK_DOC='linux-source-6.7' PACKAGE_NAME='linux-source' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips:setup_mips_bpftool setup_mips_config setup_mips_cpupower setup_mips_hyperv-daemons setup_mips_kbuild setup_mips_none setup_mips_perf setup_mips_rtla setup_mips_usbip setup_mips64:setup_mips64_bpftool setup_mips64_config setup_mips64_cpupower setup_mips64_hyperv-daemons setup_mips64_kbuild setup_mips64_none setup_mips64_perf setup_mips64_rtla setup_mips64_usbip setup_mips64_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.6.15' ARCH='mips64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='mips' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.7.7' ARCH='mips64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='mips' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real setup_config ABINAME='6.6.15' ARCH='mips64' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='mips' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real setup_config ABINAME='6.7.7' ARCH='mips64' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='mips' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.6.15' ARCH='mips64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='mips' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.7.7' ARCH='mips64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='mips' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.6.15' ARCH='mips64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='mips' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.7.7' ARCH='mips64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='mips' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.6.15' ARCH='mips64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='mips' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.7.7' ARCH='mips64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='mips' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64_none:setup_mips64_none_5kc-malta setup_mips64_none_mips64r2eb setup_mips64_none_octeon setup_mips64_none_5kc-malta:setup_mips64_none_5kc-malta_headers setup_mips64_none_5kc-malta_image setup_mips64_none_5kc-malta_image-dbg setup_mips64_none_5kc-malta_installer setup_mips64_none_5kc-malta_meta setup_mips64_none_5kc-malta_headers: - $(call if_package, linux-headers-6.6.15-5kc-malta, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-5kc-malta' DH_OPTIONS='-plinux-headers-6.6.15-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-headers-6.6.15-5kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-5kc-malta, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-5kc-malta' DH_OPTIONS='-plinux-headers-6.7.7-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-headers-6.7.7-5kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64_none_5kc-malta_image: - $(call if_package, linux-image-6.6.15-5kc-malta, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-5kc-malta' DH_OPTIONS='-plinux-image-6.6.15-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-6.6.15-5kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-5kc-malta, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-5kc-malta' DH_OPTIONS='-plinux-image-6.7.7-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-6.7.7-5kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64_none_5kc-malta_image-dbg: - $(call if_package, linux-image-6.6.15-5kc-malta-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-5kc-malta-dbg' DH_OPTIONS='-plinux-image-6.6.15-5kc-malta-dbg' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-6.6.15-5kc-malta-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-5kc-malta-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-5kc-malta-dbg' DH_OPTIONS='-plinux-image-6.7.7-5kc-malta-dbg' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-6.7.7-5kc-malta-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64_none_5kc-malta_installer: - $(call if_package, affs-modules-6.6.15-5kc-malta-di ata-modules-6.6.15-5kc-malta-di btrfs-modules-6.6.15-5kc-malta-di cdrom-core-modules-6.6.15-5kc-malta-di crc-modules-6.6.15-5kc-malta-di crypto-dm-modules-6.6.15-5kc-malta-di crypto-modules-6.6.15-5kc-malta-di event-modules-6.6.15-5kc-malta-di ext4-modules-6.6.15-5kc-malta-di f2fs-modules-6.6.15-5kc-malta-di fat-modules-6.6.15-5kc-malta-di fb-modules-6.6.15-5kc-malta-di firewire-core-modules-6.6.15-5kc-malta-di input-modules-6.6.15-5kc-malta-di isofs-modules-6.6.15-5kc-malta-di jfs-modules-6.6.15-5kc-malta-di kernel-image-6.6.15-5kc-malta-di loop-modules-6.6.15-5kc-malta-di md-modules-6.6.15-5kc-malta-di minix-modules-6.6.15-5kc-malta-di mmc-core-modules-6.6.15-5kc-malta-di mmc-modules-6.6.15-5kc-malta-di mouse-modules-6.6.15-5kc-malta-di multipath-modules-6.6.15-5kc-malta-di nbd-modules-6.6.15-5kc-malta-di nfs-modules-6.6.15-5kc-malta-di nic-modules-6.6.15-5kc-malta-di nic-shared-modules-6.6.15-5kc-malta-di nic-usb-modules-6.6.15-5kc-malta-di nic-wireless-modules-6.6.15-5kc-malta-di pata-modules-6.6.15-5kc-malta-di ppp-modules-6.6.15-5kc-malta-di sata-modules-6.6.15-5kc-malta-di scsi-core-modules-6.6.15-5kc-malta-di scsi-modules-6.6.15-5kc-malta-di scsi-nic-modules-6.6.15-5kc-malta-di sound-modules-6.6.15-5kc-malta-di speakup-modules-6.6.15-5kc-malta-di squashfs-modules-6.6.15-5kc-malta-di udf-modules-6.6.15-5kc-malta-di usb-modules-6.6.15-5kc-malta-di usb-serial-modules-6.6.15-5kc-malta-di usb-storage-modules-6.6.15-5kc-malta-di xfs-modules-6.6.15-5kc-malta-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-5kc-malta-di -pata-modules-6.6.15-5kc-malta-di -pbtrfs-modules-6.6.15-5kc-malta-di -pcdrom-core-modules-6.6.15-5kc-malta-di -pcrc-modules-6.6.15-5kc-malta-di -pcrypto-dm-modules-6.6.15-5kc-malta-di -pcrypto-modules-6.6.15-5kc-malta-di -pevent-modules-6.6.15-5kc-malta-di -pext4-modules-6.6.15-5kc-malta-di -pf2fs-modules-6.6.15-5kc-malta-di -pfat-modules-6.6.15-5kc-malta-di -pfb-modules-6.6.15-5kc-malta-di -pfirewire-core-modules-6.6.15-5kc-malta-di -pinput-modules-6.6.15-5kc-malta-di -pisofs-modules-6.6.15-5kc-malta-di -pjfs-modules-6.6.15-5kc-malta-di -pkernel-image-6.6.15-5kc-malta-di -ploop-modules-6.6.15-5kc-malta-di -pmd-modules-6.6.15-5kc-malta-di -pminix-modules-6.6.15-5kc-malta-di -pmmc-core-modules-6.6.15-5kc-malta-di -pmmc-modules-6.6.15-5kc-malta-di -pmouse-modules-6.6.15-5kc-malta-di -pmultipath-modules-6.6.15-5kc-malta-di -pnbd-modules-6.6.15-5kc-malta-di -pnfs-modules-6.6.15-5kc-malta-di -pnic-modules-6.6.15-5kc-malta-di -pnic-shared-modules-6.6.15-5kc-malta-di -pnic-usb-modules-6.6.15-5kc-malta-di -pnic-wireless-modules-6.6.15-5kc-malta-di -ppata-modules-6.6.15-5kc-malta-di -pppp-modules-6.6.15-5kc-malta-di -psata-modules-6.6.15-5kc-malta-di -pscsi-core-modules-6.6.15-5kc-malta-di -pscsi-modules-6.6.15-5kc-malta-di -pscsi-nic-modules-6.6.15-5kc-malta-di -psound-modules-6.6.15-5kc-malta-di -pspeakup-modules-6.6.15-5kc-malta-di -psquashfs-modules-6.6.15-5kc-malta-di -pudf-modules-6.6.15-5kc-malta-di -pusb-modules-6.6.15-5kc-malta-di -pusb-serial-modules-6.6.15-5kc-malta-di -pusb-storage-modules-6.6.15-5kc-malta-di -pxfs-modules-6.6.15-5kc-malta-di' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-5kc-malta-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-5kc-malta-di ata-modules-6.7.7-5kc-malta-di btrfs-modules-6.7.7-5kc-malta-di cdrom-core-modules-6.7.7-5kc-malta-di crc-modules-6.7.7-5kc-malta-di crypto-dm-modules-6.7.7-5kc-malta-di crypto-modules-6.7.7-5kc-malta-di event-modules-6.7.7-5kc-malta-di ext4-modules-6.7.7-5kc-malta-di f2fs-modules-6.7.7-5kc-malta-di fat-modules-6.7.7-5kc-malta-di fb-modules-6.7.7-5kc-malta-di firewire-core-modules-6.7.7-5kc-malta-di input-modules-6.7.7-5kc-malta-di isofs-modules-6.7.7-5kc-malta-di jfs-modules-6.7.7-5kc-malta-di kernel-image-6.7.7-5kc-malta-di loop-modules-6.7.7-5kc-malta-di md-modules-6.7.7-5kc-malta-di minix-modules-6.7.7-5kc-malta-di mmc-core-modules-6.7.7-5kc-malta-di mmc-modules-6.7.7-5kc-malta-di mouse-modules-6.7.7-5kc-malta-di multipath-modules-6.7.7-5kc-malta-di nbd-modules-6.7.7-5kc-malta-di nfs-modules-6.7.7-5kc-malta-di nic-modules-6.7.7-5kc-malta-di nic-shared-modules-6.7.7-5kc-malta-di nic-usb-modules-6.7.7-5kc-malta-di nic-wireless-modules-6.7.7-5kc-malta-di pata-modules-6.7.7-5kc-malta-di ppp-modules-6.7.7-5kc-malta-di sata-modules-6.7.7-5kc-malta-di scsi-core-modules-6.7.7-5kc-malta-di scsi-modules-6.7.7-5kc-malta-di scsi-nic-modules-6.7.7-5kc-malta-di sound-modules-6.7.7-5kc-malta-di speakup-modules-6.7.7-5kc-malta-di squashfs-modules-6.7.7-5kc-malta-di udf-modules-6.7.7-5kc-malta-di usb-modules-6.7.7-5kc-malta-di usb-serial-modules-6.7.7-5kc-malta-di usb-storage-modules-6.7.7-5kc-malta-di xfs-modules-6.7.7-5kc-malta-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-5kc-malta-di -pata-modules-6.7.7-5kc-malta-di -pbtrfs-modules-6.7.7-5kc-malta-di -pcdrom-core-modules-6.7.7-5kc-malta-di -pcrc-modules-6.7.7-5kc-malta-di -pcrypto-dm-modules-6.7.7-5kc-malta-di -pcrypto-modules-6.7.7-5kc-malta-di -pevent-modules-6.7.7-5kc-malta-di -pext4-modules-6.7.7-5kc-malta-di -pf2fs-modules-6.7.7-5kc-malta-di -pfat-modules-6.7.7-5kc-malta-di -pfb-modules-6.7.7-5kc-malta-di -pfirewire-core-modules-6.7.7-5kc-malta-di -pinput-modules-6.7.7-5kc-malta-di -pisofs-modules-6.7.7-5kc-malta-di -pjfs-modules-6.7.7-5kc-malta-di -pkernel-image-6.7.7-5kc-malta-di -ploop-modules-6.7.7-5kc-malta-di -pmd-modules-6.7.7-5kc-malta-di -pminix-modules-6.7.7-5kc-malta-di -pmmc-core-modules-6.7.7-5kc-malta-di -pmmc-modules-6.7.7-5kc-malta-di -pmouse-modules-6.7.7-5kc-malta-di -pmultipath-modules-6.7.7-5kc-malta-di -pnbd-modules-6.7.7-5kc-malta-di -pnfs-modules-6.7.7-5kc-malta-di -pnic-modules-6.7.7-5kc-malta-di -pnic-shared-modules-6.7.7-5kc-malta-di -pnic-usb-modules-6.7.7-5kc-malta-di -pnic-wireless-modules-6.7.7-5kc-malta-di -ppata-modules-6.7.7-5kc-malta-di -pppp-modules-6.7.7-5kc-malta-di -psata-modules-6.7.7-5kc-malta-di -pscsi-core-modules-6.7.7-5kc-malta-di -pscsi-modules-6.7.7-5kc-malta-di -pscsi-nic-modules-6.7.7-5kc-malta-di -psound-modules-6.7.7-5kc-malta-di -pspeakup-modules-6.7.7-5kc-malta-di -psquashfs-modules-6.7.7-5kc-malta-di -pudf-modules-6.7.7-5kc-malta-di -pusb-modules-6.7.7-5kc-malta-di -pusb-serial-modules-6.7.7-5kc-malta-di -pusb-storage-modules-6.7.7-5kc-malta-di -pxfs-modules-6.7.7-5kc-malta-di' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-5kc-malta-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64_none_5kc-malta_meta: - $(call if_package, linux-image-5kc-malta, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-5kc-malta' DH_OPTIONS='-plinux-image-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-5kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-5kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-5kc-malta, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-5kc-malta' DH_OPTIONS='-plinux-headers-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-5kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-headers-5kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-5kc-malta-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-5kc-malta-dbg' DH_OPTIONS='-plinux-image-5kc-malta-dbg' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-5kc-malta-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-5kc-malta-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-5kc-malta, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-5kc-malta' DH_OPTIONS='-plinux-image-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-5kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-5kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-5kc-malta, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-5kc-malta' DH_OPTIONS='-plinux-headers-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-5kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-headers-5kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-5kc-malta-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-5kc-malta-dbg' DH_OPTIONS='-plinux-image-5kc-malta-dbg' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-5kc-malta-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-5kc-malta-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64_none_mips64r2eb:setup_mips64_none_mips64r2eb_headers setup_mips64_none_mips64r2eb_image setup_mips64_none_mips64r2eb_image-dbg setup_mips64_none_mips64r2eb_installer setup_mips64_none_mips64r2eb_meta setup_mips64_none_mips64r2eb_headers: - $(call if_package, linux-headers-6.6.15-mips64r2eb, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-mips64r2eb' DH_OPTIONS='-plinux-headers-6.6.15-mips64r2eb' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' PACKAGE_NAME='linux-headers-6.6.15-mips64r2eb' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-mips64r2eb, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-mips64r2eb' DH_OPTIONS='-plinux-headers-6.7.7-mips64r2eb' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' PACKAGE_NAME='linux-headers-6.7.7-mips64r2eb' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64_none_mips64r2eb_image: - $(call if_package, linux-image-6.6.15-mips64r2eb, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-mips64r2eb' DH_OPTIONS='-plinux-image-6.6.15-mips64r2eb' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' PACKAGE_NAME='linux-image-6.6.15-mips64r2eb' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-mips64r2eb, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-mips64r2eb' DH_OPTIONS='-plinux-image-6.7.7-mips64r2eb' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' PACKAGE_NAME='linux-image-6.7.7-mips64r2eb' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64_none_mips64r2eb_image-dbg: - $(call if_package, linux-image-6.6.15-mips64r2eb-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-mips64r2eb-dbg' DH_OPTIONS='-plinux-image-6.6.15-mips64r2eb-dbg' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' PACKAGE_NAME='linux-image-6.6.15-mips64r2eb-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-mips64r2eb-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-mips64r2eb-dbg' DH_OPTIONS='-plinux-image-6.7.7-mips64r2eb-dbg' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' PACKAGE_NAME='linux-image-6.7.7-mips64r2eb-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64_none_mips64r2eb_installer: - $(call if_package, affs-modules-6.6.15-mips64r2eb-di ata-modules-6.6.15-mips64r2eb-di btrfs-modules-6.6.15-mips64r2eb-di cdrom-core-modules-6.6.15-mips64r2eb-di crc-modules-6.6.15-mips64r2eb-di crypto-dm-modules-6.6.15-mips64r2eb-di crypto-modules-6.6.15-mips64r2eb-di event-modules-6.6.15-mips64r2eb-di ext4-modules-6.6.15-mips64r2eb-di f2fs-modules-6.6.15-mips64r2eb-di fat-modules-6.6.15-mips64r2eb-di fb-modules-6.6.15-mips64r2eb-di firewire-core-modules-6.6.15-mips64r2eb-di input-modules-6.6.15-mips64r2eb-di isofs-modules-6.6.15-mips64r2eb-di jfs-modules-6.6.15-mips64r2eb-di kernel-image-6.6.15-mips64r2eb-di loop-modules-6.6.15-mips64r2eb-di md-modules-6.6.15-mips64r2eb-di minix-modules-6.6.15-mips64r2eb-di mmc-core-modules-6.6.15-mips64r2eb-di mmc-modules-6.6.15-mips64r2eb-di mouse-modules-6.6.15-mips64r2eb-di multipath-modules-6.6.15-mips64r2eb-di nbd-modules-6.6.15-mips64r2eb-di nfs-modules-6.6.15-mips64r2eb-di nic-modules-6.6.15-mips64r2eb-di nic-shared-modules-6.6.15-mips64r2eb-di nic-usb-modules-6.6.15-mips64r2eb-di nic-wireless-modules-6.6.15-mips64r2eb-di pata-modules-6.6.15-mips64r2eb-di ppp-modules-6.6.15-mips64r2eb-di sata-modules-6.6.15-mips64r2eb-di scsi-core-modules-6.6.15-mips64r2eb-di scsi-modules-6.6.15-mips64r2eb-di scsi-nic-modules-6.6.15-mips64r2eb-di sound-modules-6.6.15-mips64r2eb-di speakup-modules-6.6.15-mips64r2eb-di squashfs-modules-6.6.15-mips64r2eb-di udf-modules-6.6.15-mips64r2eb-di usb-modules-6.6.15-mips64r2eb-di usb-serial-modules-6.6.15-mips64r2eb-di usb-storage-modules-6.6.15-mips64r2eb-di xfs-modules-6.6.15-mips64r2eb-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-mips64r2eb-di -pata-modules-6.6.15-mips64r2eb-di -pbtrfs-modules-6.6.15-mips64r2eb-di -pcdrom-core-modules-6.6.15-mips64r2eb-di -pcrc-modules-6.6.15-mips64r2eb-di -pcrypto-dm-modules-6.6.15-mips64r2eb-di -pcrypto-modules-6.6.15-mips64r2eb-di -pevent-modules-6.6.15-mips64r2eb-di -pext4-modules-6.6.15-mips64r2eb-di -pf2fs-modules-6.6.15-mips64r2eb-di -pfat-modules-6.6.15-mips64r2eb-di -pfb-modules-6.6.15-mips64r2eb-di -pfirewire-core-modules-6.6.15-mips64r2eb-di -pinput-modules-6.6.15-mips64r2eb-di -pisofs-modules-6.6.15-mips64r2eb-di -pjfs-modules-6.6.15-mips64r2eb-di -pkernel-image-6.6.15-mips64r2eb-di -ploop-modules-6.6.15-mips64r2eb-di -pmd-modules-6.6.15-mips64r2eb-di -pminix-modules-6.6.15-mips64r2eb-di -pmmc-core-modules-6.6.15-mips64r2eb-di -pmmc-modules-6.6.15-mips64r2eb-di -pmouse-modules-6.6.15-mips64r2eb-di -pmultipath-modules-6.6.15-mips64r2eb-di -pnbd-modules-6.6.15-mips64r2eb-di -pnfs-modules-6.6.15-mips64r2eb-di -pnic-modules-6.6.15-mips64r2eb-di -pnic-shared-modules-6.6.15-mips64r2eb-di -pnic-usb-modules-6.6.15-mips64r2eb-di -pnic-wireless-modules-6.6.15-mips64r2eb-di -ppata-modules-6.6.15-mips64r2eb-di -pppp-modules-6.6.15-mips64r2eb-di -psata-modules-6.6.15-mips64r2eb-di -pscsi-core-modules-6.6.15-mips64r2eb-di -pscsi-modules-6.6.15-mips64r2eb-di -pscsi-nic-modules-6.6.15-mips64r2eb-di -psound-modules-6.6.15-mips64r2eb-di -pspeakup-modules-6.6.15-mips64r2eb-di -psquashfs-modules-6.6.15-mips64r2eb-di -pudf-modules-6.6.15-mips64r2eb-di -pusb-modules-6.6.15-mips64r2eb-di -pusb-serial-modules-6.6.15-mips64r2eb-di -pusb-storage-modules-6.6.15-mips64r2eb-di -pxfs-modules-6.6.15-mips64r2eb-di' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-mips64r2eb-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-mips64r2eb-di ata-modules-6.7.7-mips64r2eb-di btrfs-modules-6.7.7-mips64r2eb-di cdrom-core-modules-6.7.7-mips64r2eb-di crc-modules-6.7.7-mips64r2eb-di crypto-dm-modules-6.7.7-mips64r2eb-di crypto-modules-6.7.7-mips64r2eb-di event-modules-6.7.7-mips64r2eb-di ext4-modules-6.7.7-mips64r2eb-di f2fs-modules-6.7.7-mips64r2eb-di fat-modules-6.7.7-mips64r2eb-di fb-modules-6.7.7-mips64r2eb-di firewire-core-modules-6.7.7-mips64r2eb-di input-modules-6.7.7-mips64r2eb-di isofs-modules-6.7.7-mips64r2eb-di jfs-modules-6.7.7-mips64r2eb-di kernel-image-6.7.7-mips64r2eb-di loop-modules-6.7.7-mips64r2eb-di md-modules-6.7.7-mips64r2eb-di minix-modules-6.7.7-mips64r2eb-di mmc-core-modules-6.7.7-mips64r2eb-di mmc-modules-6.7.7-mips64r2eb-di mouse-modules-6.7.7-mips64r2eb-di multipath-modules-6.7.7-mips64r2eb-di nbd-modules-6.7.7-mips64r2eb-di nfs-modules-6.7.7-mips64r2eb-di nic-modules-6.7.7-mips64r2eb-di nic-shared-modules-6.7.7-mips64r2eb-di nic-usb-modules-6.7.7-mips64r2eb-di nic-wireless-modules-6.7.7-mips64r2eb-di pata-modules-6.7.7-mips64r2eb-di ppp-modules-6.7.7-mips64r2eb-di sata-modules-6.7.7-mips64r2eb-di scsi-core-modules-6.7.7-mips64r2eb-di scsi-modules-6.7.7-mips64r2eb-di scsi-nic-modules-6.7.7-mips64r2eb-di sound-modules-6.7.7-mips64r2eb-di speakup-modules-6.7.7-mips64r2eb-di squashfs-modules-6.7.7-mips64r2eb-di udf-modules-6.7.7-mips64r2eb-di usb-modules-6.7.7-mips64r2eb-di usb-serial-modules-6.7.7-mips64r2eb-di usb-storage-modules-6.7.7-mips64r2eb-di xfs-modules-6.7.7-mips64r2eb-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-mips64r2eb-di -pata-modules-6.7.7-mips64r2eb-di -pbtrfs-modules-6.7.7-mips64r2eb-di -pcdrom-core-modules-6.7.7-mips64r2eb-di -pcrc-modules-6.7.7-mips64r2eb-di -pcrypto-dm-modules-6.7.7-mips64r2eb-di -pcrypto-modules-6.7.7-mips64r2eb-di -pevent-modules-6.7.7-mips64r2eb-di -pext4-modules-6.7.7-mips64r2eb-di -pf2fs-modules-6.7.7-mips64r2eb-di -pfat-modules-6.7.7-mips64r2eb-di -pfb-modules-6.7.7-mips64r2eb-di -pfirewire-core-modules-6.7.7-mips64r2eb-di -pinput-modules-6.7.7-mips64r2eb-di -pisofs-modules-6.7.7-mips64r2eb-di -pjfs-modules-6.7.7-mips64r2eb-di -pkernel-image-6.7.7-mips64r2eb-di -ploop-modules-6.7.7-mips64r2eb-di -pmd-modules-6.7.7-mips64r2eb-di -pminix-modules-6.7.7-mips64r2eb-di -pmmc-core-modules-6.7.7-mips64r2eb-di -pmmc-modules-6.7.7-mips64r2eb-di -pmouse-modules-6.7.7-mips64r2eb-di -pmultipath-modules-6.7.7-mips64r2eb-di -pnbd-modules-6.7.7-mips64r2eb-di -pnfs-modules-6.7.7-mips64r2eb-di -pnic-modules-6.7.7-mips64r2eb-di -pnic-shared-modules-6.7.7-mips64r2eb-di -pnic-usb-modules-6.7.7-mips64r2eb-di -pnic-wireless-modules-6.7.7-mips64r2eb-di -ppata-modules-6.7.7-mips64r2eb-di -pppp-modules-6.7.7-mips64r2eb-di -psata-modules-6.7.7-mips64r2eb-di -pscsi-core-modules-6.7.7-mips64r2eb-di -pscsi-modules-6.7.7-mips64r2eb-di -pscsi-nic-modules-6.7.7-mips64r2eb-di -psound-modules-6.7.7-mips64r2eb-di -pspeakup-modules-6.7.7-mips64r2eb-di -psquashfs-modules-6.7.7-mips64r2eb-di -pudf-modules-6.7.7-mips64r2eb-di -pusb-modules-6.7.7-mips64r2eb-di -pusb-serial-modules-6.7.7-mips64r2eb-di -pusb-storage-modules-6.7.7-mips64r2eb-di -pxfs-modules-6.7.7-mips64r2eb-di' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-mips64r2eb-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64_none_mips64r2eb_meta: - $(call if_package, linux-image-mips64r2eb, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips64r2eb' DH_OPTIONS='-plinux-image-mips64r2eb' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-mips64r2eb' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' PACKAGE_NAME='linux-image-mips64r2eb' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-mips64r2eb, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-mips64r2eb' DH_OPTIONS='-plinux-headers-mips64r2eb' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-mips64r2eb' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' PACKAGE_NAME='linux-headers-mips64r2eb' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-mips64r2eb-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips64r2eb-dbg' DH_OPTIONS='-plinux-image-mips64r2eb-dbg' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-mips64r2eb-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' PACKAGE_NAME='linux-image-mips64r2eb-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-mips64r2eb, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips64r2eb' DH_OPTIONS='-plinux-image-mips64r2eb' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-mips64r2eb' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' PACKAGE_NAME='linux-image-mips64r2eb' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-mips64r2eb, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-mips64r2eb' DH_OPTIONS='-plinux-headers-mips64r2eb' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-mips64r2eb' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' PACKAGE_NAME='linux-headers-mips64r2eb' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-mips64r2eb-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips64r2eb-dbg' DH_OPTIONS='-plinux-image-mips64r2eb-dbg' FEATURESET='none' FLAVOUR='mips64r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-mips64r2eb-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2eb' PACKAGE_NAME='linux-image-mips64r2eb-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64_none_octeon:setup_mips64_none_octeon_headers setup_mips64_none_octeon_image setup_mips64_none_octeon_image-dbg setup_mips64_none_octeon_installer setup_mips64_none_octeon_meta setup_mips64_none_octeon_headers: - $(call if_package, linux-headers-6.6.15-octeon, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-octeon' DH_OPTIONS='-plinux-headers-6.6.15-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-6.6.15-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-octeon, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-octeon' DH_OPTIONS='-plinux-headers-6.7.7-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-6.7.7-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64_none_octeon_image: - $(call if_package, linux-image-6.6.15-octeon, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-octeon' DH_OPTIONS='-plinux-image-6.6.15-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.6.15-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-octeon, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-octeon' DH_OPTIONS='-plinux-image-6.7.7-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.7.7-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64_none_octeon_image-dbg: - $(call if_package, linux-image-6.6.15-octeon-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-octeon-dbg' DH_OPTIONS='-plinux-image-6.6.15-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.6.15-octeon-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-octeon-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-octeon-dbg' DH_OPTIONS='-plinux-image-6.7.7-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.7.7-octeon-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64_none_octeon_installer: - $(call if_package, affs-modules-6.6.15-octeon-di ata-modules-6.6.15-octeon-di btrfs-modules-6.6.15-octeon-di cdrom-core-modules-6.6.15-octeon-di crc-modules-6.6.15-octeon-di crypto-dm-modules-6.6.15-octeon-di crypto-modules-6.6.15-octeon-di event-modules-6.6.15-octeon-di ext4-modules-6.6.15-octeon-di f2fs-modules-6.6.15-octeon-di fat-modules-6.6.15-octeon-di fb-modules-6.6.15-octeon-di firewire-core-modules-6.6.15-octeon-di input-modules-6.6.15-octeon-di isofs-modules-6.6.15-octeon-di jfs-modules-6.6.15-octeon-di kernel-image-6.6.15-octeon-di loop-modules-6.6.15-octeon-di md-modules-6.6.15-octeon-di minix-modules-6.6.15-octeon-di mmc-core-modules-6.6.15-octeon-di mmc-modules-6.6.15-octeon-di mouse-modules-6.6.15-octeon-di multipath-modules-6.6.15-octeon-di nbd-modules-6.6.15-octeon-di nfs-modules-6.6.15-octeon-di nic-modules-6.6.15-octeon-di nic-shared-modules-6.6.15-octeon-di nic-usb-modules-6.6.15-octeon-di nic-wireless-modules-6.6.15-octeon-di pata-modules-6.6.15-octeon-di ppp-modules-6.6.15-octeon-di sata-modules-6.6.15-octeon-di scsi-core-modules-6.6.15-octeon-di scsi-modules-6.6.15-octeon-di scsi-nic-modules-6.6.15-octeon-di sound-modules-6.6.15-octeon-di speakup-modules-6.6.15-octeon-di squashfs-modules-6.6.15-octeon-di udf-modules-6.6.15-octeon-di usb-modules-6.6.15-octeon-di usb-serial-modules-6.6.15-octeon-di usb-storage-modules-6.6.15-octeon-di xfs-modules-6.6.15-octeon-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-octeon-di -pata-modules-6.6.15-octeon-di -pbtrfs-modules-6.6.15-octeon-di -pcdrom-core-modules-6.6.15-octeon-di -pcrc-modules-6.6.15-octeon-di -pcrypto-dm-modules-6.6.15-octeon-di -pcrypto-modules-6.6.15-octeon-di -pevent-modules-6.6.15-octeon-di -pext4-modules-6.6.15-octeon-di -pf2fs-modules-6.6.15-octeon-di -pfat-modules-6.6.15-octeon-di -pfb-modules-6.6.15-octeon-di -pfirewire-core-modules-6.6.15-octeon-di -pinput-modules-6.6.15-octeon-di -pisofs-modules-6.6.15-octeon-di -pjfs-modules-6.6.15-octeon-di -pkernel-image-6.6.15-octeon-di -ploop-modules-6.6.15-octeon-di -pmd-modules-6.6.15-octeon-di -pminix-modules-6.6.15-octeon-di -pmmc-core-modules-6.6.15-octeon-di -pmmc-modules-6.6.15-octeon-di -pmouse-modules-6.6.15-octeon-di -pmultipath-modules-6.6.15-octeon-di -pnbd-modules-6.6.15-octeon-di -pnfs-modules-6.6.15-octeon-di -pnic-modules-6.6.15-octeon-di -pnic-shared-modules-6.6.15-octeon-di -pnic-usb-modules-6.6.15-octeon-di -pnic-wireless-modules-6.6.15-octeon-di -ppata-modules-6.6.15-octeon-di -pppp-modules-6.6.15-octeon-di -psata-modules-6.6.15-octeon-di -pscsi-core-modules-6.6.15-octeon-di -pscsi-modules-6.6.15-octeon-di -pscsi-nic-modules-6.6.15-octeon-di -psound-modules-6.6.15-octeon-di -pspeakup-modules-6.6.15-octeon-di -psquashfs-modules-6.6.15-octeon-di -pudf-modules-6.6.15-octeon-di -pusb-modules-6.6.15-octeon-di -pusb-serial-modules-6.6.15-octeon-di -pusb-storage-modules-6.6.15-octeon-di -pxfs-modules-6.6.15-octeon-di' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-octeon-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-octeon-di ata-modules-6.7.7-octeon-di btrfs-modules-6.7.7-octeon-di cdrom-core-modules-6.7.7-octeon-di crc-modules-6.7.7-octeon-di crypto-dm-modules-6.7.7-octeon-di crypto-modules-6.7.7-octeon-di event-modules-6.7.7-octeon-di ext4-modules-6.7.7-octeon-di f2fs-modules-6.7.7-octeon-di fat-modules-6.7.7-octeon-di fb-modules-6.7.7-octeon-di firewire-core-modules-6.7.7-octeon-di input-modules-6.7.7-octeon-di isofs-modules-6.7.7-octeon-di jfs-modules-6.7.7-octeon-di kernel-image-6.7.7-octeon-di loop-modules-6.7.7-octeon-di md-modules-6.7.7-octeon-di minix-modules-6.7.7-octeon-di mmc-core-modules-6.7.7-octeon-di mmc-modules-6.7.7-octeon-di mouse-modules-6.7.7-octeon-di multipath-modules-6.7.7-octeon-di nbd-modules-6.7.7-octeon-di nfs-modules-6.7.7-octeon-di nic-modules-6.7.7-octeon-di nic-shared-modules-6.7.7-octeon-di nic-usb-modules-6.7.7-octeon-di nic-wireless-modules-6.7.7-octeon-di pata-modules-6.7.7-octeon-di ppp-modules-6.7.7-octeon-di sata-modules-6.7.7-octeon-di scsi-core-modules-6.7.7-octeon-di scsi-modules-6.7.7-octeon-di scsi-nic-modules-6.7.7-octeon-di sound-modules-6.7.7-octeon-di speakup-modules-6.7.7-octeon-di squashfs-modules-6.7.7-octeon-di udf-modules-6.7.7-octeon-di usb-modules-6.7.7-octeon-di usb-serial-modules-6.7.7-octeon-di usb-storage-modules-6.7.7-octeon-di xfs-modules-6.7.7-octeon-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-octeon-di -pata-modules-6.7.7-octeon-di -pbtrfs-modules-6.7.7-octeon-di -pcdrom-core-modules-6.7.7-octeon-di -pcrc-modules-6.7.7-octeon-di -pcrypto-dm-modules-6.7.7-octeon-di -pcrypto-modules-6.7.7-octeon-di -pevent-modules-6.7.7-octeon-di -pext4-modules-6.7.7-octeon-di -pf2fs-modules-6.7.7-octeon-di -pfat-modules-6.7.7-octeon-di -pfb-modules-6.7.7-octeon-di -pfirewire-core-modules-6.7.7-octeon-di -pinput-modules-6.7.7-octeon-di -pisofs-modules-6.7.7-octeon-di -pjfs-modules-6.7.7-octeon-di -pkernel-image-6.7.7-octeon-di -ploop-modules-6.7.7-octeon-di -pmd-modules-6.7.7-octeon-di -pminix-modules-6.7.7-octeon-di -pmmc-core-modules-6.7.7-octeon-di -pmmc-modules-6.7.7-octeon-di -pmouse-modules-6.7.7-octeon-di -pmultipath-modules-6.7.7-octeon-di -pnbd-modules-6.7.7-octeon-di -pnfs-modules-6.7.7-octeon-di -pnic-modules-6.7.7-octeon-di -pnic-shared-modules-6.7.7-octeon-di -pnic-usb-modules-6.7.7-octeon-di -pnic-wireless-modules-6.7.7-octeon-di -ppata-modules-6.7.7-octeon-di -pppp-modules-6.7.7-octeon-di -psata-modules-6.7.7-octeon-di -pscsi-core-modules-6.7.7-octeon-di -pscsi-modules-6.7.7-octeon-di -pscsi-nic-modules-6.7.7-octeon-di -psound-modules-6.7.7-octeon-di -pspeakup-modules-6.7.7-octeon-di -psquashfs-modules-6.7.7-octeon-di -pudf-modules-6.7.7-octeon-di -pusb-modules-6.7.7-octeon-di -pusb-serial-modules-6.7.7-octeon-di -pusb-storage-modules-6.7.7-octeon-di -pxfs-modules-6.7.7-octeon-di' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-octeon-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64_none_octeon_meta: - $(call if_package, linux-image-octeon, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon' DH_OPTIONS='-plinux-image-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-octeon, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-octeon' DH_OPTIONS='-plinux-headers-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-octeon-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon-dbg' DH_OPTIONS='-plinux-image-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-octeon-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-octeon, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon' DH_OPTIONS='-plinux-image-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-octeon, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-octeon' DH_OPTIONS='-plinux-headers-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-octeon-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mips64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon-dbg' DH_OPTIONS='-plinux-image-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-octeon-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.6.15' ARCH='mips64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='mips' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.7.7' ARCH='mips64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='mips' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.6.15' ARCH='mips64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='mips' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.7.7' ARCH='mips64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='mips' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.6.15' ARCH='mips64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='mips' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.7.7' ARCH='mips64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='mips' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64el:setup_mips64el_bpftool setup_mips64el_config setup_mips64el_cpupower setup_mips64el_hyperv-daemons setup_mips64el_kbuild setup_mips64el_none setup_mips64el_perf setup_mips64el_rtla setup_mips64el_usbip setup_mips64el_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.6.15' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='mips' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.7.7' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='mips' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64el_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real setup_config ABINAME='6.6.15' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='mips' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real setup_config ABINAME='6.7.7' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='mips' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64el_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.6.15' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='mips' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.7.7' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='mips' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64el_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.6.15' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='mips' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.7.7' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='mips' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64el_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.6.15' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='mips' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.7.7' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='mips' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64el_none:setup_mips64el_none_5kc-malta setup_mips64el_none_loongson-3 setup_mips64el_none_mips64r2el setup_mips64el_none_octeon setup_mips64el_none_5kc-malta:setup_mips64el_none_5kc-malta_headers setup_mips64el_none_5kc-malta_image setup_mips64el_none_5kc-malta_image-dbg setup_mips64el_none_5kc-malta_installer setup_mips64el_none_5kc-malta_meta setup_mips64el_none_5kc-malta_headers: - $(call if_package, linux-headers-6.6.15-5kc-malta, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-5kc-malta' DH_OPTIONS='-plinux-headers-6.6.15-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-headers-6.6.15-5kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-5kc-malta, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-5kc-malta' DH_OPTIONS='-plinux-headers-6.7.7-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-headers-6.7.7-5kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64el_none_5kc-malta_image: - $(call if_package, linux-image-6.6.15-5kc-malta, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-5kc-malta' DH_OPTIONS='-plinux-image-6.6.15-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-6.6.15-5kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-5kc-malta, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-5kc-malta' DH_OPTIONS='-plinux-image-6.7.7-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-6.7.7-5kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64el_none_5kc-malta_image-dbg: - $(call if_package, linux-image-6.6.15-5kc-malta-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-5kc-malta-dbg' DH_OPTIONS='-plinux-image-6.6.15-5kc-malta-dbg' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-6.6.15-5kc-malta-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-5kc-malta-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-5kc-malta-dbg' DH_OPTIONS='-plinux-image-6.7.7-5kc-malta-dbg' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-6.7.7-5kc-malta-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64el_none_5kc-malta_installer: - $(call if_package, affs-modules-6.6.15-5kc-malta-di ata-modules-6.6.15-5kc-malta-di btrfs-modules-6.6.15-5kc-malta-di cdrom-core-modules-6.6.15-5kc-malta-di crc-modules-6.6.15-5kc-malta-di crypto-dm-modules-6.6.15-5kc-malta-di crypto-modules-6.6.15-5kc-malta-di event-modules-6.6.15-5kc-malta-di ext4-modules-6.6.15-5kc-malta-di f2fs-modules-6.6.15-5kc-malta-di fat-modules-6.6.15-5kc-malta-di fb-modules-6.6.15-5kc-malta-di firewire-core-modules-6.6.15-5kc-malta-di input-modules-6.6.15-5kc-malta-di isofs-modules-6.6.15-5kc-malta-di jfs-modules-6.6.15-5kc-malta-di kernel-image-6.6.15-5kc-malta-di loop-modules-6.6.15-5kc-malta-di md-modules-6.6.15-5kc-malta-di minix-modules-6.6.15-5kc-malta-di mmc-core-modules-6.6.15-5kc-malta-di mmc-modules-6.6.15-5kc-malta-di mouse-modules-6.6.15-5kc-malta-di multipath-modules-6.6.15-5kc-malta-di nbd-modules-6.6.15-5kc-malta-di nfs-modules-6.6.15-5kc-malta-di nic-modules-6.6.15-5kc-malta-di nic-shared-modules-6.6.15-5kc-malta-di nic-usb-modules-6.6.15-5kc-malta-di nic-wireless-modules-6.6.15-5kc-malta-di pata-modules-6.6.15-5kc-malta-di ppp-modules-6.6.15-5kc-malta-di sata-modules-6.6.15-5kc-malta-di scsi-core-modules-6.6.15-5kc-malta-di scsi-modules-6.6.15-5kc-malta-di scsi-nic-modules-6.6.15-5kc-malta-di sound-modules-6.6.15-5kc-malta-di speakup-modules-6.6.15-5kc-malta-di squashfs-modules-6.6.15-5kc-malta-di udf-modules-6.6.15-5kc-malta-di usb-modules-6.6.15-5kc-malta-di usb-serial-modules-6.6.15-5kc-malta-di usb-storage-modules-6.6.15-5kc-malta-di xfs-modules-6.6.15-5kc-malta-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-5kc-malta-di -pata-modules-6.6.15-5kc-malta-di -pbtrfs-modules-6.6.15-5kc-malta-di -pcdrom-core-modules-6.6.15-5kc-malta-di -pcrc-modules-6.6.15-5kc-malta-di -pcrypto-dm-modules-6.6.15-5kc-malta-di -pcrypto-modules-6.6.15-5kc-malta-di -pevent-modules-6.6.15-5kc-malta-di -pext4-modules-6.6.15-5kc-malta-di -pf2fs-modules-6.6.15-5kc-malta-di -pfat-modules-6.6.15-5kc-malta-di -pfb-modules-6.6.15-5kc-malta-di -pfirewire-core-modules-6.6.15-5kc-malta-di -pinput-modules-6.6.15-5kc-malta-di -pisofs-modules-6.6.15-5kc-malta-di -pjfs-modules-6.6.15-5kc-malta-di -pkernel-image-6.6.15-5kc-malta-di -ploop-modules-6.6.15-5kc-malta-di -pmd-modules-6.6.15-5kc-malta-di -pminix-modules-6.6.15-5kc-malta-di -pmmc-core-modules-6.6.15-5kc-malta-di -pmmc-modules-6.6.15-5kc-malta-di -pmouse-modules-6.6.15-5kc-malta-di -pmultipath-modules-6.6.15-5kc-malta-di -pnbd-modules-6.6.15-5kc-malta-di -pnfs-modules-6.6.15-5kc-malta-di -pnic-modules-6.6.15-5kc-malta-di -pnic-shared-modules-6.6.15-5kc-malta-di -pnic-usb-modules-6.6.15-5kc-malta-di -pnic-wireless-modules-6.6.15-5kc-malta-di -ppata-modules-6.6.15-5kc-malta-di -pppp-modules-6.6.15-5kc-malta-di -psata-modules-6.6.15-5kc-malta-di -pscsi-core-modules-6.6.15-5kc-malta-di -pscsi-modules-6.6.15-5kc-malta-di -pscsi-nic-modules-6.6.15-5kc-malta-di -psound-modules-6.6.15-5kc-malta-di -pspeakup-modules-6.6.15-5kc-malta-di -psquashfs-modules-6.6.15-5kc-malta-di -pudf-modules-6.6.15-5kc-malta-di -pusb-modules-6.6.15-5kc-malta-di -pusb-serial-modules-6.6.15-5kc-malta-di -pusb-storage-modules-6.6.15-5kc-malta-di -pxfs-modules-6.6.15-5kc-malta-di' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-5kc-malta-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-5kc-malta-di ata-modules-6.7.7-5kc-malta-di btrfs-modules-6.7.7-5kc-malta-di cdrom-core-modules-6.7.7-5kc-malta-di crc-modules-6.7.7-5kc-malta-di crypto-dm-modules-6.7.7-5kc-malta-di crypto-modules-6.7.7-5kc-malta-di event-modules-6.7.7-5kc-malta-di ext4-modules-6.7.7-5kc-malta-di f2fs-modules-6.7.7-5kc-malta-di fat-modules-6.7.7-5kc-malta-di fb-modules-6.7.7-5kc-malta-di firewire-core-modules-6.7.7-5kc-malta-di input-modules-6.7.7-5kc-malta-di isofs-modules-6.7.7-5kc-malta-di jfs-modules-6.7.7-5kc-malta-di kernel-image-6.7.7-5kc-malta-di loop-modules-6.7.7-5kc-malta-di md-modules-6.7.7-5kc-malta-di minix-modules-6.7.7-5kc-malta-di mmc-core-modules-6.7.7-5kc-malta-di mmc-modules-6.7.7-5kc-malta-di mouse-modules-6.7.7-5kc-malta-di multipath-modules-6.7.7-5kc-malta-di nbd-modules-6.7.7-5kc-malta-di nfs-modules-6.7.7-5kc-malta-di nic-modules-6.7.7-5kc-malta-di nic-shared-modules-6.7.7-5kc-malta-di nic-usb-modules-6.7.7-5kc-malta-di nic-wireless-modules-6.7.7-5kc-malta-di pata-modules-6.7.7-5kc-malta-di ppp-modules-6.7.7-5kc-malta-di sata-modules-6.7.7-5kc-malta-di scsi-core-modules-6.7.7-5kc-malta-di scsi-modules-6.7.7-5kc-malta-di scsi-nic-modules-6.7.7-5kc-malta-di sound-modules-6.7.7-5kc-malta-di speakup-modules-6.7.7-5kc-malta-di squashfs-modules-6.7.7-5kc-malta-di udf-modules-6.7.7-5kc-malta-di usb-modules-6.7.7-5kc-malta-di usb-serial-modules-6.7.7-5kc-malta-di usb-storage-modules-6.7.7-5kc-malta-di xfs-modules-6.7.7-5kc-malta-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-5kc-malta-di -pata-modules-6.7.7-5kc-malta-di -pbtrfs-modules-6.7.7-5kc-malta-di -pcdrom-core-modules-6.7.7-5kc-malta-di -pcrc-modules-6.7.7-5kc-malta-di -pcrypto-dm-modules-6.7.7-5kc-malta-di -pcrypto-modules-6.7.7-5kc-malta-di -pevent-modules-6.7.7-5kc-malta-di -pext4-modules-6.7.7-5kc-malta-di -pf2fs-modules-6.7.7-5kc-malta-di -pfat-modules-6.7.7-5kc-malta-di -pfb-modules-6.7.7-5kc-malta-di -pfirewire-core-modules-6.7.7-5kc-malta-di -pinput-modules-6.7.7-5kc-malta-di -pisofs-modules-6.7.7-5kc-malta-di -pjfs-modules-6.7.7-5kc-malta-di -pkernel-image-6.7.7-5kc-malta-di -ploop-modules-6.7.7-5kc-malta-di -pmd-modules-6.7.7-5kc-malta-di -pminix-modules-6.7.7-5kc-malta-di -pmmc-core-modules-6.7.7-5kc-malta-di -pmmc-modules-6.7.7-5kc-malta-di -pmouse-modules-6.7.7-5kc-malta-di -pmultipath-modules-6.7.7-5kc-malta-di -pnbd-modules-6.7.7-5kc-malta-di -pnfs-modules-6.7.7-5kc-malta-di -pnic-modules-6.7.7-5kc-malta-di -pnic-shared-modules-6.7.7-5kc-malta-di -pnic-usb-modules-6.7.7-5kc-malta-di -pnic-wireless-modules-6.7.7-5kc-malta-di -ppata-modules-6.7.7-5kc-malta-di -pppp-modules-6.7.7-5kc-malta-di -psata-modules-6.7.7-5kc-malta-di -pscsi-core-modules-6.7.7-5kc-malta-di -pscsi-modules-6.7.7-5kc-malta-di -pscsi-nic-modules-6.7.7-5kc-malta-di -psound-modules-6.7.7-5kc-malta-di -pspeakup-modules-6.7.7-5kc-malta-di -psquashfs-modules-6.7.7-5kc-malta-di -pudf-modules-6.7.7-5kc-malta-di -pusb-modules-6.7.7-5kc-malta-di -pusb-serial-modules-6.7.7-5kc-malta-di -pusb-storage-modules-6.7.7-5kc-malta-di -pxfs-modules-6.7.7-5kc-malta-di' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-5kc-malta-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64el_none_5kc-malta_meta: - $(call if_package, linux-image-5kc-malta, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-5kc-malta' DH_OPTIONS='-plinux-image-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-5kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-5kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-5kc-malta, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-5kc-malta' DH_OPTIONS='-plinux-headers-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-5kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-headers-5kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-5kc-malta-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-5kc-malta-dbg' DH_OPTIONS='-plinux-image-5kc-malta-dbg' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-5kc-malta-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-5kc-malta-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-5kc-malta, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-5kc-malta' DH_OPTIONS='-plinux-image-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-5kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-5kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-5kc-malta, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-5kc-malta' DH_OPTIONS='-plinux-headers-5kc-malta' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-5kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-headers-5kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-5kc-malta-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-5kc-malta-dbg' DH_OPTIONS='-plinux-image-5kc-malta-dbg' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-5kc-malta-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' PACKAGE_NAME='linux-image-5kc-malta-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64el_none_loongson-3:setup_mips64el_none_loongson-3_headers setup_mips64el_none_loongson-3_image setup_mips64el_none_loongson-3_image-dbg setup_mips64el_none_loongson-3_installer setup_mips64el_none_loongson-3_meta setup_mips64el_none_loongson-3_headers: - $(call if_package, linux-headers-6.6.15-loongson-3, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-loongson-3' DH_OPTIONS='-plinux-headers-6.6.15-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-headers-6.6.15-loongson-3' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-loongson-3, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-loongson-3' DH_OPTIONS='-plinux-headers-6.7.7-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-headers-6.7.7-loongson-3' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64el_none_loongson-3_image: - $(call if_package, linux-image-6.6.15-loongson-3, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-loongson-3' DH_OPTIONS='-plinux-image-6.6.15-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-6.6.15-loongson-3' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-loongson-3, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-loongson-3' DH_OPTIONS='-plinux-image-6.7.7-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-6.7.7-loongson-3' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64el_none_loongson-3_image-dbg: - $(call if_package, linux-image-6.6.15-loongson-3-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-loongson-3-dbg' DH_OPTIONS='-plinux-image-6.6.15-loongson-3-dbg' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-6.6.15-loongson-3-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-loongson-3-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-loongson-3-dbg' DH_OPTIONS='-plinux-image-6.7.7-loongson-3-dbg' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-6.7.7-loongson-3-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64el_none_loongson-3_installer: - $(call if_package, affs-modules-6.6.15-loongson-3-di ata-modules-6.6.15-loongson-3-di btrfs-modules-6.6.15-loongson-3-di cdrom-core-modules-6.6.15-loongson-3-di crc-modules-6.6.15-loongson-3-di crypto-dm-modules-6.6.15-loongson-3-di crypto-modules-6.6.15-loongson-3-di event-modules-6.6.15-loongson-3-di ext4-modules-6.6.15-loongson-3-di f2fs-modules-6.6.15-loongson-3-di fat-modules-6.6.15-loongson-3-di fb-modules-6.6.15-loongson-3-di firewire-core-modules-6.6.15-loongson-3-di input-modules-6.6.15-loongson-3-di isofs-modules-6.6.15-loongson-3-di jfs-modules-6.6.15-loongson-3-di kernel-image-6.6.15-loongson-3-di loop-modules-6.6.15-loongson-3-di md-modules-6.6.15-loongson-3-di minix-modules-6.6.15-loongson-3-di mmc-core-modules-6.6.15-loongson-3-di mmc-modules-6.6.15-loongson-3-di mouse-modules-6.6.15-loongson-3-di multipath-modules-6.6.15-loongson-3-di nbd-modules-6.6.15-loongson-3-di nfs-modules-6.6.15-loongson-3-di nic-modules-6.6.15-loongson-3-di nic-shared-modules-6.6.15-loongson-3-di nic-usb-modules-6.6.15-loongson-3-di nic-wireless-modules-6.6.15-loongson-3-di pata-modules-6.6.15-loongson-3-di ppp-modules-6.6.15-loongson-3-di sata-modules-6.6.15-loongson-3-di scsi-core-modules-6.6.15-loongson-3-di scsi-modules-6.6.15-loongson-3-di scsi-nic-modules-6.6.15-loongson-3-di sound-modules-6.6.15-loongson-3-di speakup-modules-6.6.15-loongson-3-di squashfs-modules-6.6.15-loongson-3-di udf-modules-6.6.15-loongson-3-di usb-modules-6.6.15-loongson-3-di usb-serial-modules-6.6.15-loongson-3-di usb-storage-modules-6.6.15-loongson-3-di xfs-modules-6.6.15-loongson-3-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-loongson-3-di -pata-modules-6.6.15-loongson-3-di -pbtrfs-modules-6.6.15-loongson-3-di -pcdrom-core-modules-6.6.15-loongson-3-di -pcrc-modules-6.6.15-loongson-3-di -pcrypto-dm-modules-6.6.15-loongson-3-di -pcrypto-modules-6.6.15-loongson-3-di -pevent-modules-6.6.15-loongson-3-di -pext4-modules-6.6.15-loongson-3-di -pf2fs-modules-6.6.15-loongson-3-di -pfat-modules-6.6.15-loongson-3-di -pfb-modules-6.6.15-loongson-3-di -pfirewire-core-modules-6.6.15-loongson-3-di -pinput-modules-6.6.15-loongson-3-di -pisofs-modules-6.6.15-loongson-3-di -pjfs-modules-6.6.15-loongson-3-di -pkernel-image-6.6.15-loongson-3-di -ploop-modules-6.6.15-loongson-3-di -pmd-modules-6.6.15-loongson-3-di -pminix-modules-6.6.15-loongson-3-di -pmmc-core-modules-6.6.15-loongson-3-di -pmmc-modules-6.6.15-loongson-3-di -pmouse-modules-6.6.15-loongson-3-di -pmultipath-modules-6.6.15-loongson-3-di -pnbd-modules-6.6.15-loongson-3-di -pnfs-modules-6.6.15-loongson-3-di -pnic-modules-6.6.15-loongson-3-di -pnic-shared-modules-6.6.15-loongson-3-di -pnic-usb-modules-6.6.15-loongson-3-di -pnic-wireless-modules-6.6.15-loongson-3-di -ppata-modules-6.6.15-loongson-3-di -pppp-modules-6.6.15-loongson-3-di -psata-modules-6.6.15-loongson-3-di -pscsi-core-modules-6.6.15-loongson-3-di -pscsi-modules-6.6.15-loongson-3-di -pscsi-nic-modules-6.6.15-loongson-3-di -psound-modules-6.6.15-loongson-3-di -pspeakup-modules-6.6.15-loongson-3-di -psquashfs-modules-6.6.15-loongson-3-di -pudf-modules-6.6.15-loongson-3-di -pusb-modules-6.6.15-loongson-3-di -pusb-serial-modules-6.6.15-loongson-3-di -pusb-storage-modules-6.6.15-loongson-3-di -pxfs-modules-6.6.15-loongson-3-di' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-loongson-3-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-loongson-3-di ata-modules-6.7.7-loongson-3-di btrfs-modules-6.7.7-loongson-3-di cdrom-core-modules-6.7.7-loongson-3-di crc-modules-6.7.7-loongson-3-di crypto-dm-modules-6.7.7-loongson-3-di crypto-modules-6.7.7-loongson-3-di event-modules-6.7.7-loongson-3-di ext4-modules-6.7.7-loongson-3-di f2fs-modules-6.7.7-loongson-3-di fat-modules-6.7.7-loongson-3-di fb-modules-6.7.7-loongson-3-di firewire-core-modules-6.7.7-loongson-3-di input-modules-6.7.7-loongson-3-di isofs-modules-6.7.7-loongson-3-di jfs-modules-6.7.7-loongson-3-di kernel-image-6.7.7-loongson-3-di loop-modules-6.7.7-loongson-3-di md-modules-6.7.7-loongson-3-di minix-modules-6.7.7-loongson-3-di mmc-core-modules-6.7.7-loongson-3-di mmc-modules-6.7.7-loongson-3-di mouse-modules-6.7.7-loongson-3-di multipath-modules-6.7.7-loongson-3-di nbd-modules-6.7.7-loongson-3-di nfs-modules-6.7.7-loongson-3-di nic-modules-6.7.7-loongson-3-di nic-shared-modules-6.7.7-loongson-3-di nic-usb-modules-6.7.7-loongson-3-di nic-wireless-modules-6.7.7-loongson-3-di pata-modules-6.7.7-loongson-3-di ppp-modules-6.7.7-loongson-3-di sata-modules-6.7.7-loongson-3-di scsi-core-modules-6.7.7-loongson-3-di scsi-modules-6.7.7-loongson-3-di scsi-nic-modules-6.7.7-loongson-3-di sound-modules-6.7.7-loongson-3-di speakup-modules-6.7.7-loongson-3-di squashfs-modules-6.7.7-loongson-3-di udf-modules-6.7.7-loongson-3-di usb-modules-6.7.7-loongson-3-di usb-serial-modules-6.7.7-loongson-3-di usb-storage-modules-6.7.7-loongson-3-di xfs-modules-6.7.7-loongson-3-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-loongson-3-di -pata-modules-6.7.7-loongson-3-di -pbtrfs-modules-6.7.7-loongson-3-di -pcdrom-core-modules-6.7.7-loongson-3-di -pcrc-modules-6.7.7-loongson-3-di -pcrypto-dm-modules-6.7.7-loongson-3-di -pcrypto-modules-6.7.7-loongson-3-di -pevent-modules-6.7.7-loongson-3-di -pext4-modules-6.7.7-loongson-3-di -pf2fs-modules-6.7.7-loongson-3-di -pfat-modules-6.7.7-loongson-3-di -pfb-modules-6.7.7-loongson-3-di -pfirewire-core-modules-6.7.7-loongson-3-di -pinput-modules-6.7.7-loongson-3-di -pisofs-modules-6.7.7-loongson-3-di -pjfs-modules-6.7.7-loongson-3-di -pkernel-image-6.7.7-loongson-3-di -ploop-modules-6.7.7-loongson-3-di -pmd-modules-6.7.7-loongson-3-di -pminix-modules-6.7.7-loongson-3-di -pmmc-core-modules-6.7.7-loongson-3-di -pmmc-modules-6.7.7-loongson-3-di -pmouse-modules-6.7.7-loongson-3-di -pmultipath-modules-6.7.7-loongson-3-di -pnbd-modules-6.7.7-loongson-3-di -pnfs-modules-6.7.7-loongson-3-di -pnic-modules-6.7.7-loongson-3-di -pnic-shared-modules-6.7.7-loongson-3-di -pnic-usb-modules-6.7.7-loongson-3-di -pnic-wireless-modules-6.7.7-loongson-3-di -ppata-modules-6.7.7-loongson-3-di -pppp-modules-6.7.7-loongson-3-di -psata-modules-6.7.7-loongson-3-di -pscsi-core-modules-6.7.7-loongson-3-di -pscsi-modules-6.7.7-loongson-3-di -pscsi-nic-modules-6.7.7-loongson-3-di -psound-modules-6.7.7-loongson-3-di -pspeakup-modules-6.7.7-loongson-3-di -psquashfs-modules-6.7.7-loongson-3-di -pudf-modules-6.7.7-loongson-3-di -pusb-modules-6.7.7-loongson-3-di -pusb-serial-modules-6.7.7-loongson-3-di -pusb-storage-modules-6.7.7-loongson-3-di -pxfs-modules-6.7.7-loongson-3-di' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-loongson-3-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64el_none_loongson-3_meta: - $(call if_package, linux-image-loongson-3, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-loongson-3' DH_OPTIONS='-plinux-image-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-loongson-3' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-loongson-3' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-loongson-3, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-loongson-3' DH_OPTIONS='-plinux-headers-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-loongson-3' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-headers-loongson-3' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-loongson-3-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-loongson-3-dbg' DH_OPTIONS='-plinux-image-loongson-3-dbg' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-loongson-3-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-loongson-3-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-loongson-3, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-loongson-3' DH_OPTIONS='-plinux-image-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-loongson-3' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-loongson-3' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-loongson-3, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-loongson-3' DH_OPTIONS='-plinux-headers-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-loongson-3' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-headers-loongson-3' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-loongson-3-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-loongson-3-dbg' DH_OPTIONS='-plinux-image-loongson-3-dbg' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-loongson-3-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-loongson-3-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64el_none_mips64r2el:setup_mips64el_none_mips64r2el_headers setup_mips64el_none_mips64r2el_image setup_mips64el_none_mips64r2el_image-dbg setup_mips64el_none_mips64r2el_installer setup_mips64el_none_mips64r2el_meta setup_mips64el_none_mips64r2el_headers: - $(call if_package, linux-headers-6.6.15-mips64r2el, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-mips64r2el' DH_OPTIONS='-plinux-headers-6.6.15-mips64r2el' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' PACKAGE_NAME='linux-headers-6.6.15-mips64r2el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-mips64r2el, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-mips64r2el' DH_OPTIONS='-plinux-headers-6.7.7-mips64r2el' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' PACKAGE_NAME='linux-headers-6.7.7-mips64r2el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64el_none_mips64r2el_image: - $(call if_package, linux-image-6.6.15-mips64r2el, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-mips64r2el' DH_OPTIONS='-plinux-image-6.6.15-mips64r2el' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' PACKAGE_NAME='linux-image-6.6.15-mips64r2el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-mips64r2el, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-mips64r2el' DH_OPTIONS='-plinux-image-6.7.7-mips64r2el' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' PACKAGE_NAME='linux-image-6.7.7-mips64r2el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64el_none_mips64r2el_image-dbg: - $(call if_package, linux-image-6.6.15-mips64r2el-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-mips64r2el-dbg' DH_OPTIONS='-plinux-image-6.6.15-mips64r2el-dbg' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' PACKAGE_NAME='linux-image-6.6.15-mips64r2el-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-mips64r2el-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-mips64r2el-dbg' DH_OPTIONS='-plinux-image-6.7.7-mips64r2el-dbg' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' PACKAGE_NAME='linux-image-6.7.7-mips64r2el-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64el_none_mips64r2el_installer: - $(call if_package, affs-modules-6.6.15-mips64r2el-di ata-modules-6.6.15-mips64r2el-di btrfs-modules-6.6.15-mips64r2el-di cdrom-core-modules-6.6.15-mips64r2el-di crc-modules-6.6.15-mips64r2el-di crypto-dm-modules-6.6.15-mips64r2el-di crypto-modules-6.6.15-mips64r2el-di event-modules-6.6.15-mips64r2el-di ext4-modules-6.6.15-mips64r2el-di f2fs-modules-6.6.15-mips64r2el-di fat-modules-6.6.15-mips64r2el-di fb-modules-6.6.15-mips64r2el-di firewire-core-modules-6.6.15-mips64r2el-di input-modules-6.6.15-mips64r2el-di isofs-modules-6.6.15-mips64r2el-di jfs-modules-6.6.15-mips64r2el-di kernel-image-6.6.15-mips64r2el-di loop-modules-6.6.15-mips64r2el-di md-modules-6.6.15-mips64r2el-di minix-modules-6.6.15-mips64r2el-di mmc-core-modules-6.6.15-mips64r2el-di mmc-modules-6.6.15-mips64r2el-di mouse-modules-6.6.15-mips64r2el-di multipath-modules-6.6.15-mips64r2el-di nbd-modules-6.6.15-mips64r2el-di nfs-modules-6.6.15-mips64r2el-di nic-modules-6.6.15-mips64r2el-di nic-shared-modules-6.6.15-mips64r2el-di nic-usb-modules-6.6.15-mips64r2el-di nic-wireless-modules-6.6.15-mips64r2el-di pata-modules-6.6.15-mips64r2el-di ppp-modules-6.6.15-mips64r2el-di sata-modules-6.6.15-mips64r2el-di scsi-core-modules-6.6.15-mips64r2el-di scsi-modules-6.6.15-mips64r2el-di scsi-nic-modules-6.6.15-mips64r2el-di sound-modules-6.6.15-mips64r2el-di speakup-modules-6.6.15-mips64r2el-di squashfs-modules-6.6.15-mips64r2el-di udf-modules-6.6.15-mips64r2el-di usb-modules-6.6.15-mips64r2el-di usb-serial-modules-6.6.15-mips64r2el-di usb-storage-modules-6.6.15-mips64r2el-di xfs-modules-6.6.15-mips64r2el-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-mips64r2el-di -pata-modules-6.6.15-mips64r2el-di -pbtrfs-modules-6.6.15-mips64r2el-di -pcdrom-core-modules-6.6.15-mips64r2el-di -pcrc-modules-6.6.15-mips64r2el-di -pcrypto-dm-modules-6.6.15-mips64r2el-di -pcrypto-modules-6.6.15-mips64r2el-di -pevent-modules-6.6.15-mips64r2el-di -pext4-modules-6.6.15-mips64r2el-di -pf2fs-modules-6.6.15-mips64r2el-di -pfat-modules-6.6.15-mips64r2el-di -pfb-modules-6.6.15-mips64r2el-di -pfirewire-core-modules-6.6.15-mips64r2el-di -pinput-modules-6.6.15-mips64r2el-di -pisofs-modules-6.6.15-mips64r2el-di -pjfs-modules-6.6.15-mips64r2el-di -pkernel-image-6.6.15-mips64r2el-di -ploop-modules-6.6.15-mips64r2el-di -pmd-modules-6.6.15-mips64r2el-di -pminix-modules-6.6.15-mips64r2el-di -pmmc-core-modules-6.6.15-mips64r2el-di -pmmc-modules-6.6.15-mips64r2el-di -pmouse-modules-6.6.15-mips64r2el-di -pmultipath-modules-6.6.15-mips64r2el-di -pnbd-modules-6.6.15-mips64r2el-di -pnfs-modules-6.6.15-mips64r2el-di -pnic-modules-6.6.15-mips64r2el-di -pnic-shared-modules-6.6.15-mips64r2el-di -pnic-usb-modules-6.6.15-mips64r2el-di -pnic-wireless-modules-6.6.15-mips64r2el-di -ppata-modules-6.6.15-mips64r2el-di -pppp-modules-6.6.15-mips64r2el-di -psata-modules-6.6.15-mips64r2el-di -pscsi-core-modules-6.6.15-mips64r2el-di -pscsi-modules-6.6.15-mips64r2el-di -pscsi-nic-modules-6.6.15-mips64r2el-di -psound-modules-6.6.15-mips64r2el-di -pspeakup-modules-6.6.15-mips64r2el-di -psquashfs-modules-6.6.15-mips64r2el-di -pudf-modules-6.6.15-mips64r2el-di -pusb-modules-6.6.15-mips64r2el-di -pusb-serial-modules-6.6.15-mips64r2el-di -pusb-storage-modules-6.6.15-mips64r2el-di -pxfs-modules-6.6.15-mips64r2el-di' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-mips64r2el-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-mips64r2el-di ata-modules-6.7.7-mips64r2el-di btrfs-modules-6.7.7-mips64r2el-di cdrom-core-modules-6.7.7-mips64r2el-di crc-modules-6.7.7-mips64r2el-di crypto-dm-modules-6.7.7-mips64r2el-di crypto-modules-6.7.7-mips64r2el-di event-modules-6.7.7-mips64r2el-di ext4-modules-6.7.7-mips64r2el-di f2fs-modules-6.7.7-mips64r2el-di fat-modules-6.7.7-mips64r2el-di fb-modules-6.7.7-mips64r2el-di firewire-core-modules-6.7.7-mips64r2el-di input-modules-6.7.7-mips64r2el-di isofs-modules-6.7.7-mips64r2el-di jfs-modules-6.7.7-mips64r2el-di kernel-image-6.7.7-mips64r2el-di loop-modules-6.7.7-mips64r2el-di md-modules-6.7.7-mips64r2el-di minix-modules-6.7.7-mips64r2el-di mmc-core-modules-6.7.7-mips64r2el-di mmc-modules-6.7.7-mips64r2el-di mouse-modules-6.7.7-mips64r2el-di multipath-modules-6.7.7-mips64r2el-di nbd-modules-6.7.7-mips64r2el-di nfs-modules-6.7.7-mips64r2el-di nic-modules-6.7.7-mips64r2el-di nic-shared-modules-6.7.7-mips64r2el-di nic-usb-modules-6.7.7-mips64r2el-di nic-wireless-modules-6.7.7-mips64r2el-di pata-modules-6.7.7-mips64r2el-di ppp-modules-6.7.7-mips64r2el-di sata-modules-6.7.7-mips64r2el-di scsi-core-modules-6.7.7-mips64r2el-di scsi-modules-6.7.7-mips64r2el-di scsi-nic-modules-6.7.7-mips64r2el-di sound-modules-6.7.7-mips64r2el-di speakup-modules-6.7.7-mips64r2el-di squashfs-modules-6.7.7-mips64r2el-di udf-modules-6.7.7-mips64r2el-di usb-modules-6.7.7-mips64r2el-di usb-serial-modules-6.7.7-mips64r2el-di usb-storage-modules-6.7.7-mips64r2el-di xfs-modules-6.7.7-mips64r2el-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-mips64r2el-di -pata-modules-6.7.7-mips64r2el-di -pbtrfs-modules-6.7.7-mips64r2el-di -pcdrom-core-modules-6.7.7-mips64r2el-di -pcrc-modules-6.7.7-mips64r2el-di -pcrypto-dm-modules-6.7.7-mips64r2el-di -pcrypto-modules-6.7.7-mips64r2el-di -pevent-modules-6.7.7-mips64r2el-di -pext4-modules-6.7.7-mips64r2el-di -pf2fs-modules-6.7.7-mips64r2el-di -pfat-modules-6.7.7-mips64r2el-di -pfb-modules-6.7.7-mips64r2el-di -pfirewire-core-modules-6.7.7-mips64r2el-di -pinput-modules-6.7.7-mips64r2el-di -pisofs-modules-6.7.7-mips64r2el-di -pjfs-modules-6.7.7-mips64r2el-di -pkernel-image-6.7.7-mips64r2el-di -ploop-modules-6.7.7-mips64r2el-di -pmd-modules-6.7.7-mips64r2el-di -pminix-modules-6.7.7-mips64r2el-di -pmmc-core-modules-6.7.7-mips64r2el-di -pmmc-modules-6.7.7-mips64r2el-di -pmouse-modules-6.7.7-mips64r2el-di -pmultipath-modules-6.7.7-mips64r2el-di -pnbd-modules-6.7.7-mips64r2el-di -pnfs-modules-6.7.7-mips64r2el-di -pnic-modules-6.7.7-mips64r2el-di -pnic-shared-modules-6.7.7-mips64r2el-di -pnic-usb-modules-6.7.7-mips64r2el-di -pnic-wireless-modules-6.7.7-mips64r2el-di -ppata-modules-6.7.7-mips64r2el-di -pppp-modules-6.7.7-mips64r2el-di -psata-modules-6.7.7-mips64r2el-di -pscsi-core-modules-6.7.7-mips64r2el-di -pscsi-modules-6.7.7-mips64r2el-di -pscsi-nic-modules-6.7.7-mips64r2el-di -psound-modules-6.7.7-mips64r2el-di -pspeakup-modules-6.7.7-mips64r2el-di -psquashfs-modules-6.7.7-mips64r2el-di -pudf-modules-6.7.7-mips64r2el-di -pusb-modules-6.7.7-mips64r2el-di -pusb-serial-modules-6.7.7-mips64r2el-di -pusb-storage-modules-6.7.7-mips64r2el-di -pxfs-modules-6.7.7-mips64r2el-di' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-mips64r2el-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64el_none_mips64r2el_meta: - $(call if_package, linux-image-mips64r2el, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips64r2el' DH_OPTIONS='-plinux-image-mips64r2el' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-mips64r2el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' PACKAGE_NAME='linux-image-mips64r2el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-mips64r2el, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-mips64r2el' DH_OPTIONS='-plinux-headers-mips64r2el' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-mips64r2el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' PACKAGE_NAME='linux-headers-mips64r2el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-mips64r2el-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips64r2el-dbg' DH_OPTIONS='-plinux-image-mips64r2el-dbg' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-mips64r2el-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' PACKAGE_NAME='linux-image-mips64r2el-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-mips64r2el, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips64r2el' DH_OPTIONS='-plinux-image-mips64r2el' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-mips64r2el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' PACKAGE_NAME='linux-image-mips64r2el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-mips64r2el, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-mips64r2el' DH_OPTIONS='-plinux-headers-mips64r2el' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-mips64r2el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' PACKAGE_NAME='linux-headers-mips64r2el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-mips64r2el-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips64r2el-dbg' DH_OPTIONS='-plinux-image-mips64r2el-dbg' FEATURESET='none' FLAVOUR='mips64r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-mips64r2el-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r2el' PACKAGE_NAME='linux-image-mips64r2el-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64el_none_octeon:setup_mips64el_none_octeon_headers setup_mips64el_none_octeon_image setup_mips64el_none_octeon_image-dbg setup_mips64el_none_octeon_installer setup_mips64el_none_octeon_meta setup_mips64el_none_octeon_headers: - $(call if_package, linux-headers-6.6.15-octeon, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-octeon' DH_OPTIONS='-plinux-headers-6.6.15-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-6.6.15-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-octeon, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-octeon' DH_OPTIONS='-plinux-headers-6.7.7-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-6.7.7-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64el_none_octeon_image: - $(call if_package, linux-image-6.6.15-octeon, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-octeon' DH_OPTIONS='-plinux-image-6.6.15-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.6.15-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-octeon, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-octeon' DH_OPTIONS='-plinux-image-6.7.7-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.7.7-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64el_none_octeon_image-dbg: - $(call if_package, linux-image-6.6.15-octeon-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-octeon-dbg' DH_OPTIONS='-plinux-image-6.6.15-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.6.15-octeon-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-octeon-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-octeon-dbg' DH_OPTIONS='-plinux-image-6.7.7-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.7.7-octeon-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64el_none_octeon_installer: - $(call if_package, affs-modules-6.6.15-octeon-di ata-modules-6.6.15-octeon-di btrfs-modules-6.6.15-octeon-di cdrom-core-modules-6.6.15-octeon-di crc-modules-6.6.15-octeon-di crypto-dm-modules-6.6.15-octeon-di crypto-modules-6.6.15-octeon-di event-modules-6.6.15-octeon-di ext4-modules-6.6.15-octeon-di f2fs-modules-6.6.15-octeon-di fat-modules-6.6.15-octeon-di fb-modules-6.6.15-octeon-di firewire-core-modules-6.6.15-octeon-di input-modules-6.6.15-octeon-di isofs-modules-6.6.15-octeon-di jfs-modules-6.6.15-octeon-di kernel-image-6.6.15-octeon-di loop-modules-6.6.15-octeon-di md-modules-6.6.15-octeon-di minix-modules-6.6.15-octeon-di mmc-core-modules-6.6.15-octeon-di mmc-modules-6.6.15-octeon-di mouse-modules-6.6.15-octeon-di multipath-modules-6.6.15-octeon-di nbd-modules-6.6.15-octeon-di nfs-modules-6.6.15-octeon-di nic-modules-6.6.15-octeon-di nic-shared-modules-6.6.15-octeon-di nic-usb-modules-6.6.15-octeon-di nic-wireless-modules-6.6.15-octeon-di pata-modules-6.6.15-octeon-di ppp-modules-6.6.15-octeon-di sata-modules-6.6.15-octeon-di scsi-core-modules-6.6.15-octeon-di scsi-modules-6.6.15-octeon-di scsi-nic-modules-6.6.15-octeon-di sound-modules-6.6.15-octeon-di speakup-modules-6.6.15-octeon-di squashfs-modules-6.6.15-octeon-di udf-modules-6.6.15-octeon-di usb-modules-6.6.15-octeon-di usb-serial-modules-6.6.15-octeon-di usb-storage-modules-6.6.15-octeon-di xfs-modules-6.6.15-octeon-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-octeon-di -pata-modules-6.6.15-octeon-di -pbtrfs-modules-6.6.15-octeon-di -pcdrom-core-modules-6.6.15-octeon-di -pcrc-modules-6.6.15-octeon-di -pcrypto-dm-modules-6.6.15-octeon-di -pcrypto-modules-6.6.15-octeon-di -pevent-modules-6.6.15-octeon-di -pext4-modules-6.6.15-octeon-di -pf2fs-modules-6.6.15-octeon-di -pfat-modules-6.6.15-octeon-di -pfb-modules-6.6.15-octeon-di -pfirewire-core-modules-6.6.15-octeon-di -pinput-modules-6.6.15-octeon-di -pisofs-modules-6.6.15-octeon-di -pjfs-modules-6.6.15-octeon-di -pkernel-image-6.6.15-octeon-di -ploop-modules-6.6.15-octeon-di -pmd-modules-6.6.15-octeon-di -pminix-modules-6.6.15-octeon-di -pmmc-core-modules-6.6.15-octeon-di -pmmc-modules-6.6.15-octeon-di -pmouse-modules-6.6.15-octeon-di -pmultipath-modules-6.6.15-octeon-di -pnbd-modules-6.6.15-octeon-di -pnfs-modules-6.6.15-octeon-di -pnic-modules-6.6.15-octeon-di -pnic-shared-modules-6.6.15-octeon-di -pnic-usb-modules-6.6.15-octeon-di -pnic-wireless-modules-6.6.15-octeon-di -ppata-modules-6.6.15-octeon-di -pppp-modules-6.6.15-octeon-di -psata-modules-6.6.15-octeon-di -pscsi-core-modules-6.6.15-octeon-di -pscsi-modules-6.6.15-octeon-di -pscsi-nic-modules-6.6.15-octeon-di -psound-modules-6.6.15-octeon-di -pspeakup-modules-6.6.15-octeon-di -psquashfs-modules-6.6.15-octeon-di -pudf-modules-6.6.15-octeon-di -pusb-modules-6.6.15-octeon-di -pusb-serial-modules-6.6.15-octeon-di -pusb-storage-modules-6.6.15-octeon-di -pxfs-modules-6.6.15-octeon-di' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-octeon-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-octeon-di ata-modules-6.7.7-octeon-di btrfs-modules-6.7.7-octeon-di cdrom-core-modules-6.7.7-octeon-di crc-modules-6.7.7-octeon-di crypto-dm-modules-6.7.7-octeon-di crypto-modules-6.7.7-octeon-di event-modules-6.7.7-octeon-di ext4-modules-6.7.7-octeon-di f2fs-modules-6.7.7-octeon-di fat-modules-6.7.7-octeon-di fb-modules-6.7.7-octeon-di firewire-core-modules-6.7.7-octeon-di input-modules-6.7.7-octeon-di isofs-modules-6.7.7-octeon-di jfs-modules-6.7.7-octeon-di kernel-image-6.7.7-octeon-di loop-modules-6.7.7-octeon-di md-modules-6.7.7-octeon-di minix-modules-6.7.7-octeon-di mmc-core-modules-6.7.7-octeon-di mmc-modules-6.7.7-octeon-di mouse-modules-6.7.7-octeon-di multipath-modules-6.7.7-octeon-di nbd-modules-6.7.7-octeon-di nfs-modules-6.7.7-octeon-di nic-modules-6.7.7-octeon-di nic-shared-modules-6.7.7-octeon-di nic-usb-modules-6.7.7-octeon-di nic-wireless-modules-6.7.7-octeon-di pata-modules-6.7.7-octeon-di ppp-modules-6.7.7-octeon-di sata-modules-6.7.7-octeon-di scsi-core-modules-6.7.7-octeon-di scsi-modules-6.7.7-octeon-di scsi-nic-modules-6.7.7-octeon-di sound-modules-6.7.7-octeon-di speakup-modules-6.7.7-octeon-di squashfs-modules-6.7.7-octeon-di udf-modules-6.7.7-octeon-di usb-modules-6.7.7-octeon-di usb-serial-modules-6.7.7-octeon-di usb-storage-modules-6.7.7-octeon-di xfs-modules-6.7.7-octeon-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-octeon-di -pata-modules-6.7.7-octeon-di -pbtrfs-modules-6.7.7-octeon-di -pcdrom-core-modules-6.7.7-octeon-di -pcrc-modules-6.7.7-octeon-di -pcrypto-dm-modules-6.7.7-octeon-di -pcrypto-modules-6.7.7-octeon-di -pevent-modules-6.7.7-octeon-di -pext4-modules-6.7.7-octeon-di -pf2fs-modules-6.7.7-octeon-di -pfat-modules-6.7.7-octeon-di -pfb-modules-6.7.7-octeon-di -pfirewire-core-modules-6.7.7-octeon-di -pinput-modules-6.7.7-octeon-di -pisofs-modules-6.7.7-octeon-di -pjfs-modules-6.7.7-octeon-di -pkernel-image-6.7.7-octeon-di -ploop-modules-6.7.7-octeon-di -pmd-modules-6.7.7-octeon-di -pminix-modules-6.7.7-octeon-di -pmmc-core-modules-6.7.7-octeon-di -pmmc-modules-6.7.7-octeon-di -pmouse-modules-6.7.7-octeon-di -pmultipath-modules-6.7.7-octeon-di -pnbd-modules-6.7.7-octeon-di -pnfs-modules-6.7.7-octeon-di -pnic-modules-6.7.7-octeon-di -pnic-shared-modules-6.7.7-octeon-di -pnic-usb-modules-6.7.7-octeon-di -pnic-wireless-modules-6.7.7-octeon-di -ppata-modules-6.7.7-octeon-di -pppp-modules-6.7.7-octeon-di -psata-modules-6.7.7-octeon-di -pscsi-core-modules-6.7.7-octeon-di -pscsi-modules-6.7.7-octeon-di -pscsi-nic-modules-6.7.7-octeon-di -psound-modules-6.7.7-octeon-di -pspeakup-modules-6.7.7-octeon-di -psquashfs-modules-6.7.7-octeon-di -pudf-modules-6.7.7-octeon-di -pusb-modules-6.7.7-octeon-di -pusb-serial-modules-6.7.7-octeon-di -pusb-storage-modules-6.7.7-octeon-di -pxfs-modules-6.7.7-octeon-di' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-octeon-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64el_none_octeon_meta: - $(call if_package, linux-image-octeon, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon' DH_OPTIONS='-plinux-image-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-octeon, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-octeon' DH_OPTIONS='-plinux-headers-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-octeon-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon-dbg' DH_OPTIONS='-plinux-image-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-octeon-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-octeon, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon' DH_OPTIONS='-plinux-image-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-octeon, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-octeon' DH_OPTIONS='-plinux-headers-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-octeon-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mips64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon-dbg' DH_OPTIONS='-plinux-image-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-octeon-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64el_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.6.15' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='mips' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.7.7' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='mips' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64el_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.6.15' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='mips' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.7.7' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='mips' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64el_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.6.15' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='mips' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.7.7' ARCH='mips64el' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='mips' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64r6el:setup_mips64r6el_bpftool setup_mips64r6el_config setup_mips64r6el_cpupower setup_mips64r6el_hyperv-daemons setup_mips64r6el_kbuild setup_mips64r6el_none setup_mips64r6el_perf setup_mips64r6el_rtla setup_mips64r6el_usbip setup_mips64r6el_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.6.15' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='mips' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.7.7' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='mips' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64r6el_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real setup_config ABINAME='6.6.15' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='mips' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real setup_config ABINAME='6.7.7' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='mips' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64r6el_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.6.15' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='mips' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.7.7' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='mips' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64r6el_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.6.15' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='mips' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.7.7' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='mips' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64r6el_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.6.15' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='mips' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.7.7' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='mips' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64r6el_none:setup_mips64r6el_none_mips64r6el setup_mips64r6el_none_mips64r6el:setup_mips64r6el_none_mips64r6el_headers setup_mips64r6el_none_mips64r6el_image setup_mips64r6el_none_mips64r6el_image-dbg setup_mips64r6el_none_mips64r6el_installer setup_mips64r6el_none_mips64r6el_meta setup_mips64r6el_none_mips64r6el_headers: - $(call if_package, linux-headers-6.6.15-mips64r6el, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-mips64r6el' DH_OPTIONS='-plinux-headers-6.6.15-mips64r6el' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' PACKAGE_NAME='linux-headers-6.6.15-mips64r6el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-mips64r6el, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-mips64r6el' DH_OPTIONS='-plinux-headers-6.7.7-mips64r6el' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' PACKAGE_NAME='linux-headers-6.7.7-mips64r6el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64r6el_none_mips64r6el_image: - $(call if_package, linux-image-6.6.15-mips64r6el, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-mips64r6el' DH_OPTIONS='-plinux-image-6.6.15-mips64r6el' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' PACKAGE_NAME='linux-image-6.6.15-mips64r6el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-mips64r6el, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-mips64r6el' DH_OPTIONS='-plinux-image-6.7.7-mips64r6el' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' PACKAGE_NAME='linux-image-6.7.7-mips64r6el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64r6el_none_mips64r6el_image-dbg: - $(call if_package, linux-image-6.6.15-mips64r6el-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-mips64r6el-dbg' DH_OPTIONS='-plinux-image-6.6.15-mips64r6el-dbg' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' PACKAGE_NAME='linux-image-6.6.15-mips64r6el-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-mips64r6el-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-mips64r6el-dbg' DH_OPTIONS='-plinux-image-6.7.7-mips64r6el-dbg' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' PACKAGE_NAME='linux-image-6.7.7-mips64r6el-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64r6el_none_mips64r6el_installer: - $(call if_package, affs-modules-6.6.15-mips64r6el-di ata-modules-6.6.15-mips64r6el-di btrfs-modules-6.6.15-mips64r6el-di cdrom-core-modules-6.6.15-mips64r6el-di crc-modules-6.6.15-mips64r6el-di crypto-dm-modules-6.6.15-mips64r6el-di crypto-modules-6.6.15-mips64r6el-di event-modules-6.6.15-mips64r6el-di ext4-modules-6.6.15-mips64r6el-di f2fs-modules-6.6.15-mips64r6el-di fat-modules-6.6.15-mips64r6el-di fb-modules-6.6.15-mips64r6el-di firewire-core-modules-6.6.15-mips64r6el-di input-modules-6.6.15-mips64r6el-di isofs-modules-6.6.15-mips64r6el-di jfs-modules-6.6.15-mips64r6el-di kernel-image-6.6.15-mips64r6el-di loop-modules-6.6.15-mips64r6el-di md-modules-6.6.15-mips64r6el-di minix-modules-6.6.15-mips64r6el-di mmc-core-modules-6.6.15-mips64r6el-di mmc-modules-6.6.15-mips64r6el-di mouse-modules-6.6.15-mips64r6el-di multipath-modules-6.6.15-mips64r6el-di nbd-modules-6.6.15-mips64r6el-di nfs-modules-6.6.15-mips64r6el-di nic-modules-6.6.15-mips64r6el-di nic-shared-modules-6.6.15-mips64r6el-di nic-usb-modules-6.6.15-mips64r6el-di nic-wireless-modules-6.6.15-mips64r6el-di pata-modules-6.6.15-mips64r6el-di ppp-modules-6.6.15-mips64r6el-di sata-modules-6.6.15-mips64r6el-di scsi-core-modules-6.6.15-mips64r6el-di scsi-modules-6.6.15-mips64r6el-di scsi-nic-modules-6.6.15-mips64r6el-di sound-modules-6.6.15-mips64r6el-di speakup-modules-6.6.15-mips64r6el-di squashfs-modules-6.6.15-mips64r6el-di udf-modules-6.6.15-mips64r6el-di usb-modules-6.6.15-mips64r6el-di usb-serial-modules-6.6.15-mips64r6el-di usb-storage-modules-6.6.15-mips64r6el-di xfs-modules-6.6.15-mips64r6el-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.6.15' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-mips64r6el-di -pata-modules-6.6.15-mips64r6el-di -pbtrfs-modules-6.6.15-mips64r6el-di -pcdrom-core-modules-6.6.15-mips64r6el-di -pcrc-modules-6.6.15-mips64r6el-di -pcrypto-dm-modules-6.6.15-mips64r6el-di -pcrypto-modules-6.6.15-mips64r6el-di -pevent-modules-6.6.15-mips64r6el-di -pext4-modules-6.6.15-mips64r6el-di -pf2fs-modules-6.6.15-mips64r6el-di -pfat-modules-6.6.15-mips64r6el-di -pfb-modules-6.6.15-mips64r6el-di -pfirewire-core-modules-6.6.15-mips64r6el-di -pinput-modules-6.6.15-mips64r6el-di -pisofs-modules-6.6.15-mips64r6el-di -pjfs-modules-6.6.15-mips64r6el-di -pkernel-image-6.6.15-mips64r6el-di -ploop-modules-6.6.15-mips64r6el-di -pmd-modules-6.6.15-mips64r6el-di -pminix-modules-6.6.15-mips64r6el-di -pmmc-core-modules-6.6.15-mips64r6el-di -pmmc-modules-6.6.15-mips64r6el-di -pmouse-modules-6.6.15-mips64r6el-di -pmultipath-modules-6.6.15-mips64r6el-di -pnbd-modules-6.6.15-mips64r6el-di -pnfs-modules-6.6.15-mips64r6el-di -pnic-modules-6.6.15-mips64r6el-di -pnic-shared-modules-6.6.15-mips64r6el-di -pnic-usb-modules-6.6.15-mips64r6el-di -pnic-wireless-modules-6.6.15-mips64r6el-di -ppata-modules-6.6.15-mips64r6el-di -pppp-modules-6.6.15-mips64r6el-di -psata-modules-6.6.15-mips64r6el-di -pscsi-core-modules-6.6.15-mips64r6el-di -pscsi-modules-6.6.15-mips64r6el-di -pscsi-nic-modules-6.6.15-mips64r6el-di -psound-modules-6.6.15-mips64r6el-di -pspeakup-modules-6.6.15-mips64r6el-di -psquashfs-modules-6.6.15-mips64r6el-di -pudf-modules-6.6.15-mips64r6el-di -pusb-modules-6.6.15-mips64r6el-di -pusb-serial-modules-6.6.15-mips64r6el-di -pusb-storage-modules-6.6.15-mips64r6el-di -pxfs-modules-6.6.15-mips64r6el-di' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-mips64r6el-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-mips64r6el-di ata-modules-6.7.7-mips64r6el-di btrfs-modules-6.7.7-mips64r6el-di cdrom-core-modules-6.7.7-mips64r6el-di crc-modules-6.7.7-mips64r6el-di crypto-dm-modules-6.7.7-mips64r6el-di crypto-modules-6.7.7-mips64r6el-di event-modules-6.7.7-mips64r6el-di ext4-modules-6.7.7-mips64r6el-di f2fs-modules-6.7.7-mips64r6el-di fat-modules-6.7.7-mips64r6el-di fb-modules-6.7.7-mips64r6el-di firewire-core-modules-6.7.7-mips64r6el-di input-modules-6.7.7-mips64r6el-di isofs-modules-6.7.7-mips64r6el-di jfs-modules-6.7.7-mips64r6el-di kernel-image-6.7.7-mips64r6el-di loop-modules-6.7.7-mips64r6el-di md-modules-6.7.7-mips64r6el-di minix-modules-6.7.7-mips64r6el-di mmc-core-modules-6.7.7-mips64r6el-di mmc-modules-6.7.7-mips64r6el-di mouse-modules-6.7.7-mips64r6el-di multipath-modules-6.7.7-mips64r6el-di nbd-modules-6.7.7-mips64r6el-di nfs-modules-6.7.7-mips64r6el-di nic-modules-6.7.7-mips64r6el-di nic-shared-modules-6.7.7-mips64r6el-di nic-usb-modules-6.7.7-mips64r6el-di nic-wireless-modules-6.7.7-mips64r6el-di pata-modules-6.7.7-mips64r6el-di ppp-modules-6.7.7-mips64r6el-di sata-modules-6.7.7-mips64r6el-di scsi-core-modules-6.7.7-mips64r6el-di scsi-modules-6.7.7-mips64r6el-di scsi-nic-modules-6.7.7-mips64r6el-di sound-modules-6.7.7-mips64r6el-di speakup-modules-6.7.7-mips64r6el-di squashfs-modules-6.7.7-mips64r6el-di udf-modules-6.7.7-mips64r6el-di usb-modules-6.7.7-mips64r6el-di usb-serial-modules-6.7.7-mips64r6el-di usb-storage-modules-6.7.7-mips64r6el-di xfs-modules-6.7.7-mips64r6el-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.7.7' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-mips64r6el-di -pata-modules-6.7.7-mips64r6el-di -pbtrfs-modules-6.7.7-mips64r6el-di -pcdrom-core-modules-6.7.7-mips64r6el-di -pcrc-modules-6.7.7-mips64r6el-di -pcrypto-dm-modules-6.7.7-mips64r6el-di -pcrypto-modules-6.7.7-mips64r6el-di -pevent-modules-6.7.7-mips64r6el-di -pext4-modules-6.7.7-mips64r6el-di -pf2fs-modules-6.7.7-mips64r6el-di -pfat-modules-6.7.7-mips64r6el-di -pfb-modules-6.7.7-mips64r6el-di -pfirewire-core-modules-6.7.7-mips64r6el-di -pinput-modules-6.7.7-mips64r6el-di -pisofs-modules-6.7.7-mips64r6el-di -pjfs-modules-6.7.7-mips64r6el-di -pkernel-image-6.7.7-mips64r6el-di -ploop-modules-6.7.7-mips64r6el-di -pmd-modules-6.7.7-mips64r6el-di -pminix-modules-6.7.7-mips64r6el-di -pmmc-core-modules-6.7.7-mips64r6el-di -pmmc-modules-6.7.7-mips64r6el-di -pmouse-modules-6.7.7-mips64r6el-di -pmultipath-modules-6.7.7-mips64r6el-di -pnbd-modules-6.7.7-mips64r6el-di -pnfs-modules-6.7.7-mips64r6el-di -pnic-modules-6.7.7-mips64r6el-di -pnic-shared-modules-6.7.7-mips64r6el-di -pnic-usb-modules-6.7.7-mips64r6el-di -pnic-wireless-modules-6.7.7-mips64r6el-di -ppata-modules-6.7.7-mips64r6el-di -pppp-modules-6.7.7-mips64r6el-di -psata-modules-6.7.7-mips64r6el-di -pscsi-core-modules-6.7.7-mips64r6el-di -pscsi-modules-6.7.7-mips64r6el-di -pscsi-nic-modules-6.7.7-mips64r6el-di -psound-modules-6.7.7-mips64r6el-di -pspeakup-modules-6.7.7-mips64r6el-di -psquashfs-modules-6.7.7-mips64r6el-di -pudf-modules-6.7.7-mips64r6el-di -pusb-modules-6.7.7-mips64r6el-di -pusb-serial-modules-6.7.7-mips64r6el-di -pusb-storage-modules-6.7.7-mips64r6el-di -pxfs-modules-6.7.7-mips64r6el-di' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-mips64r6el-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64r6el_none_mips64r6el_meta: - $(call if_package, linux-image-mips64r6el, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips64r6el' DH_OPTIONS='-plinux-image-mips64r6el' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-mips64r6el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' PACKAGE_NAME='linux-image-mips64r6el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-mips64r6el, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-mips64r6el' DH_OPTIONS='-plinux-headers-mips64r6el' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-mips64r6el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' PACKAGE_NAME='linux-headers-mips64r6el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-mips64r6el-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips64r6el-dbg' DH_OPTIONS='-plinux-image-mips64r6el-dbg' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-mips64r6el-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' PACKAGE_NAME='linux-image-mips64r6el-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-mips64r6el, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips64r6el' DH_OPTIONS='-plinux-image-mips64r6el' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-mips64r6el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' PACKAGE_NAME='linux-image-mips64r6el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-mips64r6el, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-mips64r6el' DH_OPTIONS='-plinux-headers-mips64r6el' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-mips64r6el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' PACKAGE_NAME='linux-headers-mips64r6el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-mips64r6el-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mips64r6el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips64r6el-dbg' DH_OPTIONS='-plinux-image-mips64r6el-dbg' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-mips64r6el-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' PACKAGE_NAME='linux-image-mips64r6el-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64r6el_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.6.15' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='mips' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.7.7' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='mips' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64r6el_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.6.15' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='mips' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.7.7' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='mips' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips64r6el_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.6.15' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='mips' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.7.7' ARCH='mips64r6el' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='mips' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.6.15' ARCH='mips' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='mips' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.7.7' ARCH='mips' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='mips' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real setup_config ABINAME='6.6.15' ARCH='mips' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='mips' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real setup_config ABINAME='6.7.7' ARCH='mips' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='mips' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.6.15' ARCH='mips' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='mips' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.7.7' ARCH='mips' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='mips' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.6.15' ARCH='mips' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='mips' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.7.7' ARCH='mips' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='mips' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.6.15' ARCH='mips' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='mips' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.7.7' ARCH='mips' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='mips' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips_none:setup_mips_none_4kc-malta setup_mips_none_mips32r2eb setup_mips_none_octeon setup_mips_none_4kc-malta:setup_mips_none_4kc-malta_headers setup_mips_none_4kc-malta_image setup_mips_none_4kc-malta_image-dbg setup_mips_none_4kc-malta_installer setup_mips_none_4kc-malta_meta setup_mips_none_4kc-malta_headers: - $(call if_package, linux-headers-6.6.15-4kc-malta, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-4kc-malta' DH_OPTIONS='-plinux-headers-6.6.15-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-headers-6.6.15-4kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-4kc-malta, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-4kc-malta' DH_OPTIONS='-plinux-headers-6.7.7-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-headers-6.7.7-4kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips_none_4kc-malta_image: - $(call if_package, linux-image-6.6.15-4kc-malta, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-4kc-malta' DH_OPTIONS='-plinux-image-6.6.15-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-6.6.15-4kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-4kc-malta, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-4kc-malta' DH_OPTIONS='-plinux-image-6.7.7-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-6.7.7-4kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips_none_4kc-malta_image-dbg: - $(call if_package, linux-image-6.6.15-4kc-malta-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-4kc-malta-dbg' DH_OPTIONS='-plinux-image-6.6.15-4kc-malta-dbg' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-6.6.15-4kc-malta-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-4kc-malta-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-4kc-malta-dbg' DH_OPTIONS='-plinux-image-6.7.7-4kc-malta-dbg' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-6.7.7-4kc-malta-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips_none_4kc-malta_installer: - $(call if_package, affs-modules-6.6.15-4kc-malta-di ata-modules-6.6.15-4kc-malta-di btrfs-modules-6.6.15-4kc-malta-di cdrom-core-modules-6.6.15-4kc-malta-di crc-modules-6.6.15-4kc-malta-di crypto-dm-modules-6.6.15-4kc-malta-di crypto-modules-6.6.15-4kc-malta-di event-modules-6.6.15-4kc-malta-di ext4-modules-6.6.15-4kc-malta-di f2fs-modules-6.6.15-4kc-malta-di fat-modules-6.6.15-4kc-malta-di fb-modules-6.6.15-4kc-malta-di firewire-core-modules-6.6.15-4kc-malta-di input-modules-6.6.15-4kc-malta-di isofs-modules-6.6.15-4kc-malta-di jfs-modules-6.6.15-4kc-malta-di kernel-image-6.6.15-4kc-malta-di loop-modules-6.6.15-4kc-malta-di md-modules-6.6.15-4kc-malta-di minix-modules-6.6.15-4kc-malta-di mmc-core-modules-6.6.15-4kc-malta-di mmc-modules-6.6.15-4kc-malta-di mouse-modules-6.6.15-4kc-malta-di multipath-modules-6.6.15-4kc-malta-di nbd-modules-6.6.15-4kc-malta-di nfs-modules-6.6.15-4kc-malta-di nic-modules-6.6.15-4kc-malta-di nic-shared-modules-6.6.15-4kc-malta-di nic-usb-modules-6.6.15-4kc-malta-di nic-wireless-modules-6.6.15-4kc-malta-di pata-modules-6.6.15-4kc-malta-di ppp-modules-6.6.15-4kc-malta-di sata-modules-6.6.15-4kc-malta-di scsi-core-modules-6.6.15-4kc-malta-di scsi-modules-6.6.15-4kc-malta-di scsi-nic-modules-6.6.15-4kc-malta-di sound-modules-6.6.15-4kc-malta-di speakup-modules-6.6.15-4kc-malta-di squashfs-modules-6.6.15-4kc-malta-di udf-modules-6.6.15-4kc-malta-di usb-modules-6.6.15-4kc-malta-di usb-serial-modules-6.6.15-4kc-malta-di usb-storage-modules-6.6.15-4kc-malta-di xfs-modules-6.6.15-4kc-malta-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-4kc-malta-di -pata-modules-6.6.15-4kc-malta-di -pbtrfs-modules-6.6.15-4kc-malta-di -pcdrom-core-modules-6.6.15-4kc-malta-di -pcrc-modules-6.6.15-4kc-malta-di -pcrypto-dm-modules-6.6.15-4kc-malta-di -pcrypto-modules-6.6.15-4kc-malta-di -pevent-modules-6.6.15-4kc-malta-di -pext4-modules-6.6.15-4kc-malta-di -pf2fs-modules-6.6.15-4kc-malta-di -pfat-modules-6.6.15-4kc-malta-di -pfb-modules-6.6.15-4kc-malta-di -pfirewire-core-modules-6.6.15-4kc-malta-di -pinput-modules-6.6.15-4kc-malta-di -pisofs-modules-6.6.15-4kc-malta-di -pjfs-modules-6.6.15-4kc-malta-di -pkernel-image-6.6.15-4kc-malta-di -ploop-modules-6.6.15-4kc-malta-di -pmd-modules-6.6.15-4kc-malta-di -pminix-modules-6.6.15-4kc-malta-di -pmmc-core-modules-6.6.15-4kc-malta-di -pmmc-modules-6.6.15-4kc-malta-di -pmouse-modules-6.6.15-4kc-malta-di -pmultipath-modules-6.6.15-4kc-malta-di -pnbd-modules-6.6.15-4kc-malta-di -pnfs-modules-6.6.15-4kc-malta-di -pnic-modules-6.6.15-4kc-malta-di -pnic-shared-modules-6.6.15-4kc-malta-di -pnic-usb-modules-6.6.15-4kc-malta-di -pnic-wireless-modules-6.6.15-4kc-malta-di -ppata-modules-6.6.15-4kc-malta-di -pppp-modules-6.6.15-4kc-malta-di -psata-modules-6.6.15-4kc-malta-di -pscsi-core-modules-6.6.15-4kc-malta-di -pscsi-modules-6.6.15-4kc-malta-di -pscsi-nic-modules-6.6.15-4kc-malta-di -psound-modules-6.6.15-4kc-malta-di -pspeakup-modules-6.6.15-4kc-malta-di -psquashfs-modules-6.6.15-4kc-malta-di -pudf-modules-6.6.15-4kc-malta-di -pusb-modules-6.6.15-4kc-malta-di -pusb-serial-modules-6.6.15-4kc-malta-di -pusb-storage-modules-6.6.15-4kc-malta-di -pxfs-modules-6.6.15-4kc-malta-di' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-4kc-malta-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-4kc-malta-di ata-modules-6.7.7-4kc-malta-di btrfs-modules-6.7.7-4kc-malta-di cdrom-core-modules-6.7.7-4kc-malta-di crc-modules-6.7.7-4kc-malta-di crypto-dm-modules-6.7.7-4kc-malta-di crypto-modules-6.7.7-4kc-malta-di event-modules-6.7.7-4kc-malta-di ext4-modules-6.7.7-4kc-malta-di f2fs-modules-6.7.7-4kc-malta-di fat-modules-6.7.7-4kc-malta-di fb-modules-6.7.7-4kc-malta-di firewire-core-modules-6.7.7-4kc-malta-di input-modules-6.7.7-4kc-malta-di isofs-modules-6.7.7-4kc-malta-di jfs-modules-6.7.7-4kc-malta-di kernel-image-6.7.7-4kc-malta-di loop-modules-6.7.7-4kc-malta-di md-modules-6.7.7-4kc-malta-di minix-modules-6.7.7-4kc-malta-di mmc-core-modules-6.7.7-4kc-malta-di mmc-modules-6.7.7-4kc-malta-di mouse-modules-6.7.7-4kc-malta-di multipath-modules-6.7.7-4kc-malta-di nbd-modules-6.7.7-4kc-malta-di nfs-modules-6.7.7-4kc-malta-di nic-modules-6.7.7-4kc-malta-di nic-shared-modules-6.7.7-4kc-malta-di nic-usb-modules-6.7.7-4kc-malta-di nic-wireless-modules-6.7.7-4kc-malta-di pata-modules-6.7.7-4kc-malta-di ppp-modules-6.7.7-4kc-malta-di sata-modules-6.7.7-4kc-malta-di scsi-core-modules-6.7.7-4kc-malta-di scsi-modules-6.7.7-4kc-malta-di scsi-nic-modules-6.7.7-4kc-malta-di sound-modules-6.7.7-4kc-malta-di speakup-modules-6.7.7-4kc-malta-di squashfs-modules-6.7.7-4kc-malta-di udf-modules-6.7.7-4kc-malta-di usb-modules-6.7.7-4kc-malta-di usb-serial-modules-6.7.7-4kc-malta-di usb-storage-modules-6.7.7-4kc-malta-di xfs-modules-6.7.7-4kc-malta-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-4kc-malta-di -pata-modules-6.7.7-4kc-malta-di -pbtrfs-modules-6.7.7-4kc-malta-di -pcdrom-core-modules-6.7.7-4kc-malta-di -pcrc-modules-6.7.7-4kc-malta-di -pcrypto-dm-modules-6.7.7-4kc-malta-di -pcrypto-modules-6.7.7-4kc-malta-di -pevent-modules-6.7.7-4kc-malta-di -pext4-modules-6.7.7-4kc-malta-di -pf2fs-modules-6.7.7-4kc-malta-di -pfat-modules-6.7.7-4kc-malta-di -pfb-modules-6.7.7-4kc-malta-di -pfirewire-core-modules-6.7.7-4kc-malta-di -pinput-modules-6.7.7-4kc-malta-di -pisofs-modules-6.7.7-4kc-malta-di -pjfs-modules-6.7.7-4kc-malta-di -pkernel-image-6.7.7-4kc-malta-di -ploop-modules-6.7.7-4kc-malta-di -pmd-modules-6.7.7-4kc-malta-di -pminix-modules-6.7.7-4kc-malta-di -pmmc-core-modules-6.7.7-4kc-malta-di -pmmc-modules-6.7.7-4kc-malta-di -pmouse-modules-6.7.7-4kc-malta-di -pmultipath-modules-6.7.7-4kc-malta-di -pnbd-modules-6.7.7-4kc-malta-di -pnfs-modules-6.7.7-4kc-malta-di -pnic-modules-6.7.7-4kc-malta-di -pnic-shared-modules-6.7.7-4kc-malta-di -pnic-usb-modules-6.7.7-4kc-malta-di -pnic-wireless-modules-6.7.7-4kc-malta-di -ppata-modules-6.7.7-4kc-malta-di -pppp-modules-6.7.7-4kc-malta-di -psata-modules-6.7.7-4kc-malta-di -pscsi-core-modules-6.7.7-4kc-malta-di -pscsi-modules-6.7.7-4kc-malta-di -pscsi-nic-modules-6.7.7-4kc-malta-di -psound-modules-6.7.7-4kc-malta-di -pspeakup-modules-6.7.7-4kc-malta-di -psquashfs-modules-6.7.7-4kc-malta-di -pudf-modules-6.7.7-4kc-malta-di -pusb-modules-6.7.7-4kc-malta-di -pusb-serial-modules-6.7.7-4kc-malta-di -pusb-storage-modules-6.7.7-4kc-malta-di -pxfs-modules-6.7.7-4kc-malta-di' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-4kc-malta-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips_none_4kc-malta_meta: - $(call if_package, linux-image-4kc-malta, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-4kc-malta' DH_OPTIONS='-plinux-image-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-4kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-4kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-4kc-malta, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-4kc-malta' DH_OPTIONS='-plinux-headers-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-4kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-headers-4kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-4kc-malta-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-4kc-malta-dbg' DH_OPTIONS='-plinux-image-4kc-malta-dbg' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-4kc-malta-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-4kc-malta-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-4kc-malta, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-4kc-malta' DH_OPTIONS='-plinux-image-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-4kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-4kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-4kc-malta, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-4kc-malta' DH_OPTIONS='-plinux-headers-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-4kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-headers-4kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-4kc-malta-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-4kc-malta-dbg' DH_OPTIONS='-plinux-image-4kc-malta-dbg' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-4kc-malta-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-4kc-malta-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips_none_mips32r2eb:setup_mips_none_mips32r2eb_headers setup_mips_none_mips32r2eb_image setup_mips_none_mips32r2eb_image-dbg setup_mips_none_mips32r2eb_installer setup_mips_none_mips32r2eb_meta setup_mips_none_mips32r2eb_headers: - $(call if_package, linux-headers-6.6.15-mips32r2eb, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-mips32r2eb' DH_OPTIONS='-plinux-headers-6.6.15-mips32r2eb' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' PACKAGE_NAME='linux-headers-6.6.15-mips32r2eb' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-mips32r2eb, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-mips32r2eb' DH_OPTIONS='-plinux-headers-6.7.7-mips32r2eb' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' PACKAGE_NAME='linux-headers-6.7.7-mips32r2eb' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips_none_mips32r2eb_image: - $(call if_package, linux-image-6.6.15-mips32r2eb, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-mips32r2eb' DH_OPTIONS='-plinux-image-6.6.15-mips32r2eb' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' PACKAGE_NAME='linux-image-6.6.15-mips32r2eb' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-mips32r2eb, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-mips32r2eb' DH_OPTIONS='-plinux-image-6.7.7-mips32r2eb' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' PACKAGE_NAME='linux-image-6.7.7-mips32r2eb' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips_none_mips32r2eb_image-dbg: - $(call if_package, linux-image-6.6.15-mips32r2eb-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-mips32r2eb-dbg' DH_OPTIONS='-plinux-image-6.6.15-mips32r2eb-dbg' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' PACKAGE_NAME='linux-image-6.6.15-mips32r2eb-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-mips32r2eb-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-mips32r2eb-dbg' DH_OPTIONS='-plinux-image-6.7.7-mips32r2eb-dbg' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' PACKAGE_NAME='linux-image-6.7.7-mips32r2eb-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips_none_mips32r2eb_installer: - $(call if_package, affs-modules-6.6.15-mips32r2eb-di ata-modules-6.6.15-mips32r2eb-di btrfs-modules-6.6.15-mips32r2eb-di cdrom-core-modules-6.6.15-mips32r2eb-di crc-modules-6.6.15-mips32r2eb-di crypto-dm-modules-6.6.15-mips32r2eb-di crypto-modules-6.6.15-mips32r2eb-di event-modules-6.6.15-mips32r2eb-di ext4-modules-6.6.15-mips32r2eb-di f2fs-modules-6.6.15-mips32r2eb-di fat-modules-6.6.15-mips32r2eb-di fb-modules-6.6.15-mips32r2eb-di firewire-core-modules-6.6.15-mips32r2eb-di input-modules-6.6.15-mips32r2eb-di isofs-modules-6.6.15-mips32r2eb-di jfs-modules-6.6.15-mips32r2eb-di kernel-image-6.6.15-mips32r2eb-di loop-modules-6.6.15-mips32r2eb-di md-modules-6.6.15-mips32r2eb-di minix-modules-6.6.15-mips32r2eb-di mmc-core-modules-6.6.15-mips32r2eb-di mmc-modules-6.6.15-mips32r2eb-di mouse-modules-6.6.15-mips32r2eb-di multipath-modules-6.6.15-mips32r2eb-di nbd-modules-6.6.15-mips32r2eb-di nfs-modules-6.6.15-mips32r2eb-di nic-modules-6.6.15-mips32r2eb-di nic-shared-modules-6.6.15-mips32r2eb-di nic-usb-modules-6.6.15-mips32r2eb-di nic-wireless-modules-6.6.15-mips32r2eb-di pata-modules-6.6.15-mips32r2eb-di ppp-modules-6.6.15-mips32r2eb-di sata-modules-6.6.15-mips32r2eb-di scsi-core-modules-6.6.15-mips32r2eb-di scsi-modules-6.6.15-mips32r2eb-di scsi-nic-modules-6.6.15-mips32r2eb-di sound-modules-6.6.15-mips32r2eb-di speakup-modules-6.6.15-mips32r2eb-di squashfs-modules-6.6.15-mips32r2eb-di udf-modules-6.6.15-mips32r2eb-di usb-modules-6.6.15-mips32r2eb-di usb-serial-modules-6.6.15-mips32r2eb-di usb-storage-modules-6.6.15-mips32r2eb-di xfs-modules-6.6.15-mips32r2eb-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-mips32r2eb-di -pata-modules-6.6.15-mips32r2eb-di -pbtrfs-modules-6.6.15-mips32r2eb-di -pcdrom-core-modules-6.6.15-mips32r2eb-di -pcrc-modules-6.6.15-mips32r2eb-di -pcrypto-dm-modules-6.6.15-mips32r2eb-di -pcrypto-modules-6.6.15-mips32r2eb-di -pevent-modules-6.6.15-mips32r2eb-di -pext4-modules-6.6.15-mips32r2eb-di -pf2fs-modules-6.6.15-mips32r2eb-di -pfat-modules-6.6.15-mips32r2eb-di -pfb-modules-6.6.15-mips32r2eb-di -pfirewire-core-modules-6.6.15-mips32r2eb-di -pinput-modules-6.6.15-mips32r2eb-di -pisofs-modules-6.6.15-mips32r2eb-di -pjfs-modules-6.6.15-mips32r2eb-di -pkernel-image-6.6.15-mips32r2eb-di -ploop-modules-6.6.15-mips32r2eb-di -pmd-modules-6.6.15-mips32r2eb-di -pminix-modules-6.6.15-mips32r2eb-di -pmmc-core-modules-6.6.15-mips32r2eb-di -pmmc-modules-6.6.15-mips32r2eb-di -pmouse-modules-6.6.15-mips32r2eb-di -pmultipath-modules-6.6.15-mips32r2eb-di -pnbd-modules-6.6.15-mips32r2eb-di -pnfs-modules-6.6.15-mips32r2eb-di -pnic-modules-6.6.15-mips32r2eb-di -pnic-shared-modules-6.6.15-mips32r2eb-di -pnic-usb-modules-6.6.15-mips32r2eb-di -pnic-wireless-modules-6.6.15-mips32r2eb-di -ppata-modules-6.6.15-mips32r2eb-di -pppp-modules-6.6.15-mips32r2eb-di -psata-modules-6.6.15-mips32r2eb-di -pscsi-core-modules-6.6.15-mips32r2eb-di -pscsi-modules-6.6.15-mips32r2eb-di -pscsi-nic-modules-6.6.15-mips32r2eb-di -psound-modules-6.6.15-mips32r2eb-di -pspeakup-modules-6.6.15-mips32r2eb-di -psquashfs-modules-6.6.15-mips32r2eb-di -pudf-modules-6.6.15-mips32r2eb-di -pusb-modules-6.6.15-mips32r2eb-di -pusb-serial-modules-6.6.15-mips32r2eb-di -pusb-storage-modules-6.6.15-mips32r2eb-di -pxfs-modules-6.6.15-mips32r2eb-di' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-mips32r2eb-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-mips32r2eb-di ata-modules-6.7.7-mips32r2eb-di btrfs-modules-6.7.7-mips32r2eb-di cdrom-core-modules-6.7.7-mips32r2eb-di crc-modules-6.7.7-mips32r2eb-di crypto-dm-modules-6.7.7-mips32r2eb-di crypto-modules-6.7.7-mips32r2eb-di event-modules-6.7.7-mips32r2eb-di ext4-modules-6.7.7-mips32r2eb-di f2fs-modules-6.7.7-mips32r2eb-di fat-modules-6.7.7-mips32r2eb-di fb-modules-6.7.7-mips32r2eb-di firewire-core-modules-6.7.7-mips32r2eb-di input-modules-6.7.7-mips32r2eb-di isofs-modules-6.7.7-mips32r2eb-di jfs-modules-6.7.7-mips32r2eb-di kernel-image-6.7.7-mips32r2eb-di loop-modules-6.7.7-mips32r2eb-di md-modules-6.7.7-mips32r2eb-di minix-modules-6.7.7-mips32r2eb-di mmc-core-modules-6.7.7-mips32r2eb-di mmc-modules-6.7.7-mips32r2eb-di mouse-modules-6.7.7-mips32r2eb-di multipath-modules-6.7.7-mips32r2eb-di nbd-modules-6.7.7-mips32r2eb-di nfs-modules-6.7.7-mips32r2eb-di nic-modules-6.7.7-mips32r2eb-di nic-shared-modules-6.7.7-mips32r2eb-di nic-usb-modules-6.7.7-mips32r2eb-di nic-wireless-modules-6.7.7-mips32r2eb-di pata-modules-6.7.7-mips32r2eb-di ppp-modules-6.7.7-mips32r2eb-di sata-modules-6.7.7-mips32r2eb-di scsi-core-modules-6.7.7-mips32r2eb-di scsi-modules-6.7.7-mips32r2eb-di scsi-nic-modules-6.7.7-mips32r2eb-di sound-modules-6.7.7-mips32r2eb-di speakup-modules-6.7.7-mips32r2eb-di squashfs-modules-6.7.7-mips32r2eb-di udf-modules-6.7.7-mips32r2eb-di usb-modules-6.7.7-mips32r2eb-di usb-serial-modules-6.7.7-mips32r2eb-di usb-storage-modules-6.7.7-mips32r2eb-di xfs-modules-6.7.7-mips32r2eb-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-mips32r2eb-di -pata-modules-6.7.7-mips32r2eb-di -pbtrfs-modules-6.7.7-mips32r2eb-di -pcdrom-core-modules-6.7.7-mips32r2eb-di -pcrc-modules-6.7.7-mips32r2eb-di -pcrypto-dm-modules-6.7.7-mips32r2eb-di -pcrypto-modules-6.7.7-mips32r2eb-di -pevent-modules-6.7.7-mips32r2eb-di -pext4-modules-6.7.7-mips32r2eb-di -pf2fs-modules-6.7.7-mips32r2eb-di -pfat-modules-6.7.7-mips32r2eb-di -pfb-modules-6.7.7-mips32r2eb-di -pfirewire-core-modules-6.7.7-mips32r2eb-di -pinput-modules-6.7.7-mips32r2eb-di -pisofs-modules-6.7.7-mips32r2eb-di -pjfs-modules-6.7.7-mips32r2eb-di -pkernel-image-6.7.7-mips32r2eb-di -ploop-modules-6.7.7-mips32r2eb-di -pmd-modules-6.7.7-mips32r2eb-di -pminix-modules-6.7.7-mips32r2eb-di -pmmc-core-modules-6.7.7-mips32r2eb-di -pmmc-modules-6.7.7-mips32r2eb-di -pmouse-modules-6.7.7-mips32r2eb-di -pmultipath-modules-6.7.7-mips32r2eb-di -pnbd-modules-6.7.7-mips32r2eb-di -pnfs-modules-6.7.7-mips32r2eb-di -pnic-modules-6.7.7-mips32r2eb-di -pnic-shared-modules-6.7.7-mips32r2eb-di -pnic-usb-modules-6.7.7-mips32r2eb-di -pnic-wireless-modules-6.7.7-mips32r2eb-di -ppata-modules-6.7.7-mips32r2eb-di -pppp-modules-6.7.7-mips32r2eb-di -psata-modules-6.7.7-mips32r2eb-di -pscsi-core-modules-6.7.7-mips32r2eb-di -pscsi-modules-6.7.7-mips32r2eb-di -pscsi-nic-modules-6.7.7-mips32r2eb-di -psound-modules-6.7.7-mips32r2eb-di -pspeakup-modules-6.7.7-mips32r2eb-di -psquashfs-modules-6.7.7-mips32r2eb-di -pudf-modules-6.7.7-mips32r2eb-di -pusb-modules-6.7.7-mips32r2eb-di -pusb-serial-modules-6.7.7-mips32r2eb-di -pusb-storage-modules-6.7.7-mips32r2eb-di -pxfs-modules-6.7.7-mips32r2eb-di' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-mips32r2eb-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips_none_mips32r2eb_meta: - $(call if_package, linux-image-mips32r2eb, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips32r2eb' DH_OPTIONS='-plinux-image-mips32r2eb' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-mips32r2eb' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' PACKAGE_NAME='linux-image-mips32r2eb' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-mips32r2eb, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-mips32r2eb' DH_OPTIONS='-plinux-headers-mips32r2eb' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-mips32r2eb' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' PACKAGE_NAME='linux-headers-mips32r2eb' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-mips32r2eb-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips32r2eb-dbg' DH_OPTIONS='-plinux-image-mips32r2eb-dbg' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-mips32r2eb-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' PACKAGE_NAME='linux-image-mips32r2eb-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-mips32r2eb, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips32r2eb' DH_OPTIONS='-plinux-image-mips32r2eb' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-mips32r2eb' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' PACKAGE_NAME='linux-image-mips32r2eb' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-mips32r2eb, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-mips32r2eb' DH_OPTIONS='-plinux-headers-mips32r2eb' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-mips32r2eb' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' PACKAGE_NAME='linux-headers-mips32r2eb' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-mips32r2eb-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips32r2eb-dbg' DH_OPTIONS='-plinux-image-mips32r2eb-dbg' FEATURESET='none' FLAVOUR='mips32r2eb' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-mips32r2eb-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2eb\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2eb' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2eb' PACKAGE_NAME='linux-image-mips32r2eb-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips_none_octeon:setup_mips_none_octeon_headers setup_mips_none_octeon_image setup_mips_none_octeon_image-dbg setup_mips_none_octeon_installer setup_mips_none_octeon_meta setup_mips_none_octeon_headers: - $(call if_package, linux-headers-6.6.15-octeon, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-octeon' DH_OPTIONS='-plinux-headers-6.6.15-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-6.6.15-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-octeon, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-octeon' DH_OPTIONS='-plinux-headers-6.7.7-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-6.7.7-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips_none_octeon_image: - $(call if_package, linux-image-6.6.15-octeon, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-octeon' DH_OPTIONS='-plinux-image-6.6.15-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.6.15-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-octeon, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-octeon' DH_OPTIONS='-plinux-image-6.7.7-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.7.7-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips_none_octeon_image-dbg: - $(call if_package, linux-image-6.6.15-octeon-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-octeon-dbg' DH_OPTIONS='-plinux-image-6.6.15-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.6.15-octeon-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-octeon-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-octeon-dbg' DH_OPTIONS='-plinux-image-6.7.7-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.7.7-octeon-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips_none_octeon_installer: - $(call if_package, affs-modules-6.6.15-octeon-di ata-modules-6.6.15-octeon-di btrfs-modules-6.6.15-octeon-di cdrom-core-modules-6.6.15-octeon-di crc-modules-6.6.15-octeon-di crypto-dm-modules-6.6.15-octeon-di crypto-modules-6.6.15-octeon-di event-modules-6.6.15-octeon-di ext4-modules-6.6.15-octeon-di f2fs-modules-6.6.15-octeon-di fat-modules-6.6.15-octeon-di fb-modules-6.6.15-octeon-di firewire-core-modules-6.6.15-octeon-di input-modules-6.6.15-octeon-di isofs-modules-6.6.15-octeon-di jfs-modules-6.6.15-octeon-di kernel-image-6.6.15-octeon-di loop-modules-6.6.15-octeon-di md-modules-6.6.15-octeon-di minix-modules-6.6.15-octeon-di mmc-core-modules-6.6.15-octeon-di mmc-modules-6.6.15-octeon-di mouse-modules-6.6.15-octeon-di multipath-modules-6.6.15-octeon-di nbd-modules-6.6.15-octeon-di nfs-modules-6.6.15-octeon-di nic-modules-6.6.15-octeon-di nic-shared-modules-6.6.15-octeon-di nic-usb-modules-6.6.15-octeon-di nic-wireless-modules-6.6.15-octeon-di pata-modules-6.6.15-octeon-di ppp-modules-6.6.15-octeon-di sata-modules-6.6.15-octeon-di scsi-core-modules-6.6.15-octeon-di scsi-modules-6.6.15-octeon-di scsi-nic-modules-6.6.15-octeon-di sound-modules-6.6.15-octeon-di speakup-modules-6.6.15-octeon-di squashfs-modules-6.6.15-octeon-di udf-modules-6.6.15-octeon-di usb-modules-6.6.15-octeon-di usb-serial-modules-6.6.15-octeon-di usb-storage-modules-6.6.15-octeon-di xfs-modules-6.6.15-octeon-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-octeon-di -pata-modules-6.6.15-octeon-di -pbtrfs-modules-6.6.15-octeon-di -pcdrom-core-modules-6.6.15-octeon-di -pcrc-modules-6.6.15-octeon-di -pcrypto-dm-modules-6.6.15-octeon-di -pcrypto-modules-6.6.15-octeon-di -pevent-modules-6.6.15-octeon-di -pext4-modules-6.6.15-octeon-di -pf2fs-modules-6.6.15-octeon-di -pfat-modules-6.6.15-octeon-di -pfb-modules-6.6.15-octeon-di -pfirewire-core-modules-6.6.15-octeon-di -pinput-modules-6.6.15-octeon-di -pisofs-modules-6.6.15-octeon-di -pjfs-modules-6.6.15-octeon-di -pkernel-image-6.6.15-octeon-di -ploop-modules-6.6.15-octeon-di -pmd-modules-6.6.15-octeon-di -pminix-modules-6.6.15-octeon-di -pmmc-core-modules-6.6.15-octeon-di -pmmc-modules-6.6.15-octeon-di -pmouse-modules-6.6.15-octeon-di -pmultipath-modules-6.6.15-octeon-di -pnbd-modules-6.6.15-octeon-di -pnfs-modules-6.6.15-octeon-di -pnic-modules-6.6.15-octeon-di -pnic-shared-modules-6.6.15-octeon-di -pnic-usb-modules-6.6.15-octeon-di -pnic-wireless-modules-6.6.15-octeon-di -ppata-modules-6.6.15-octeon-di -pppp-modules-6.6.15-octeon-di -psata-modules-6.6.15-octeon-di -pscsi-core-modules-6.6.15-octeon-di -pscsi-modules-6.6.15-octeon-di -pscsi-nic-modules-6.6.15-octeon-di -psound-modules-6.6.15-octeon-di -pspeakup-modules-6.6.15-octeon-di -psquashfs-modules-6.6.15-octeon-di -pudf-modules-6.6.15-octeon-di -pusb-modules-6.6.15-octeon-di -pusb-serial-modules-6.6.15-octeon-di -pusb-storage-modules-6.6.15-octeon-di -pxfs-modules-6.6.15-octeon-di' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-octeon-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-octeon-di ata-modules-6.7.7-octeon-di btrfs-modules-6.7.7-octeon-di cdrom-core-modules-6.7.7-octeon-di crc-modules-6.7.7-octeon-di crypto-dm-modules-6.7.7-octeon-di crypto-modules-6.7.7-octeon-di event-modules-6.7.7-octeon-di ext4-modules-6.7.7-octeon-di f2fs-modules-6.7.7-octeon-di fat-modules-6.7.7-octeon-di fb-modules-6.7.7-octeon-di firewire-core-modules-6.7.7-octeon-di input-modules-6.7.7-octeon-di isofs-modules-6.7.7-octeon-di jfs-modules-6.7.7-octeon-di kernel-image-6.7.7-octeon-di loop-modules-6.7.7-octeon-di md-modules-6.7.7-octeon-di minix-modules-6.7.7-octeon-di mmc-core-modules-6.7.7-octeon-di mmc-modules-6.7.7-octeon-di mouse-modules-6.7.7-octeon-di multipath-modules-6.7.7-octeon-di nbd-modules-6.7.7-octeon-di nfs-modules-6.7.7-octeon-di nic-modules-6.7.7-octeon-di nic-shared-modules-6.7.7-octeon-di nic-usb-modules-6.7.7-octeon-di nic-wireless-modules-6.7.7-octeon-di pata-modules-6.7.7-octeon-di ppp-modules-6.7.7-octeon-di sata-modules-6.7.7-octeon-di scsi-core-modules-6.7.7-octeon-di scsi-modules-6.7.7-octeon-di scsi-nic-modules-6.7.7-octeon-di sound-modules-6.7.7-octeon-di speakup-modules-6.7.7-octeon-di squashfs-modules-6.7.7-octeon-di udf-modules-6.7.7-octeon-di usb-modules-6.7.7-octeon-di usb-serial-modules-6.7.7-octeon-di usb-storage-modules-6.7.7-octeon-di xfs-modules-6.7.7-octeon-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-octeon-di -pata-modules-6.7.7-octeon-di -pbtrfs-modules-6.7.7-octeon-di -pcdrom-core-modules-6.7.7-octeon-di -pcrc-modules-6.7.7-octeon-di -pcrypto-dm-modules-6.7.7-octeon-di -pcrypto-modules-6.7.7-octeon-di -pevent-modules-6.7.7-octeon-di -pext4-modules-6.7.7-octeon-di -pf2fs-modules-6.7.7-octeon-di -pfat-modules-6.7.7-octeon-di -pfb-modules-6.7.7-octeon-di -pfirewire-core-modules-6.7.7-octeon-di -pinput-modules-6.7.7-octeon-di -pisofs-modules-6.7.7-octeon-di -pjfs-modules-6.7.7-octeon-di -pkernel-image-6.7.7-octeon-di -ploop-modules-6.7.7-octeon-di -pmd-modules-6.7.7-octeon-di -pminix-modules-6.7.7-octeon-di -pmmc-core-modules-6.7.7-octeon-di -pmmc-modules-6.7.7-octeon-di -pmouse-modules-6.7.7-octeon-di -pmultipath-modules-6.7.7-octeon-di -pnbd-modules-6.7.7-octeon-di -pnfs-modules-6.7.7-octeon-di -pnic-modules-6.7.7-octeon-di -pnic-shared-modules-6.7.7-octeon-di -pnic-usb-modules-6.7.7-octeon-di -pnic-wireless-modules-6.7.7-octeon-di -ppata-modules-6.7.7-octeon-di -pppp-modules-6.7.7-octeon-di -psata-modules-6.7.7-octeon-di -pscsi-core-modules-6.7.7-octeon-di -pscsi-modules-6.7.7-octeon-di -pscsi-nic-modules-6.7.7-octeon-di -psound-modules-6.7.7-octeon-di -pspeakup-modules-6.7.7-octeon-di -psquashfs-modules-6.7.7-octeon-di -pudf-modules-6.7.7-octeon-di -pusb-modules-6.7.7-octeon-di -pusb-serial-modules-6.7.7-octeon-di -pusb-storage-modules-6.7.7-octeon-di -pxfs-modules-6.7.7-octeon-di' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-octeon-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips_none_octeon_meta: - $(call if_package, linux-image-octeon, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon' DH_OPTIONS='-plinux-image-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-octeon, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-octeon' DH_OPTIONS='-plinux-headers-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-octeon-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon-dbg' DH_OPTIONS='-plinux-image-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-octeon-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-octeon, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon' DH_OPTIONS='-plinux-image-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-octeon, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-octeon' DH_OPTIONS='-plinux-headers-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-octeon-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mips' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon-dbg' DH_OPTIONS='-plinux-image-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-octeon-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.6.15' ARCH='mips' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='mips' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.7.7' ARCH='mips' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='mips' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.6.15' ARCH='mips' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='mips' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.7.7' ARCH='mips' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='mips' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mips_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.6.15' ARCH='mips' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='mips' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.7.7' ARCH='mips' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='mips' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mipsel:setup_mipsel_bpftool setup_mipsel_config setup_mipsel_cpupower setup_mipsel_hyperv-daemons setup_mipsel_kbuild setup_mipsel_none setup_mipsel_perf setup_mipsel_rtla setup_mipsel_usbip setup_mipsel_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.6.15' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='mips' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.7.7' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='mips' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mipsel_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real setup_config ABINAME='6.6.15' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='mips' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real setup_config ABINAME='6.7.7' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='mips' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mipsel_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.6.15' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='mips' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.7.7' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='mips' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mipsel_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.6.15' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='mips' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.7.7' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='mips' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mipsel_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.6.15' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='mips' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.7.7' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='mips' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mipsel_none:setup_mipsel_none_4kc-malta setup_mipsel_none_loongson-3 setup_mipsel_none_mips32r2el setup_mipsel_none_octeon setup_mipsel_none_4kc-malta:setup_mipsel_none_4kc-malta_headers setup_mipsel_none_4kc-malta_image setup_mipsel_none_4kc-malta_image-dbg setup_mipsel_none_4kc-malta_installer setup_mipsel_none_4kc-malta_meta setup_mipsel_none_4kc-malta_headers: - $(call if_package, linux-headers-6.6.15-4kc-malta, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-4kc-malta' DH_OPTIONS='-plinux-headers-6.6.15-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-headers-6.6.15-4kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-4kc-malta, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-4kc-malta' DH_OPTIONS='-plinux-headers-6.7.7-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-headers-6.7.7-4kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mipsel_none_4kc-malta_image: - $(call if_package, linux-image-6.6.15-4kc-malta, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-4kc-malta' DH_OPTIONS='-plinux-image-6.6.15-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-6.6.15-4kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-4kc-malta, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-4kc-malta' DH_OPTIONS='-plinux-image-6.7.7-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-6.7.7-4kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mipsel_none_4kc-malta_image-dbg: - $(call if_package, linux-image-6.6.15-4kc-malta-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-4kc-malta-dbg' DH_OPTIONS='-plinux-image-6.6.15-4kc-malta-dbg' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-6.6.15-4kc-malta-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-4kc-malta-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-4kc-malta-dbg' DH_OPTIONS='-plinux-image-6.7.7-4kc-malta-dbg' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-6.7.7-4kc-malta-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mipsel_none_4kc-malta_installer: - $(call if_package, affs-modules-6.6.15-4kc-malta-di ata-modules-6.6.15-4kc-malta-di btrfs-modules-6.6.15-4kc-malta-di cdrom-core-modules-6.6.15-4kc-malta-di crc-modules-6.6.15-4kc-malta-di crypto-dm-modules-6.6.15-4kc-malta-di crypto-modules-6.6.15-4kc-malta-di event-modules-6.6.15-4kc-malta-di ext4-modules-6.6.15-4kc-malta-di f2fs-modules-6.6.15-4kc-malta-di fat-modules-6.6.15-4kc-malta-di fb-modules-6.6.15-4kc-malta-di firewire-core-modules-6.6.15-4kc-malta-di input-modules-6.6.15-4kc-malta-di isofs-modules-6.6.15-4kc-malta-di jfs-modules-6.6.15-4kc-malta-di kernel-image-6.6.15-4kc-malta-di loop-modules-6.6.15-4kc-malta-di md-modules-6.6.15-4kc-malta-di minix-modules-6.6.15-4kc-malta-di mmc-core-modules-6.6.15-4kc-malta-di mmc-modules-6.6.15-4kc-malta-di mouse-modules-6.6.15-4kc-malta-di multipath-modules-6.6.15-4kc-malta-di nbd-modules-6.6.15-4kc-malta-di nfs-modules-6.6.15-4kc-malta-di nic-modules-6.6.15-4kc-malta-di nic-shared-modules-6.6.15-4kc-malta-di nic-usb-modules-6.6.15-4kc-malta-di nic-wireless-modules-6.6.15-4kc-malta-di pata-modules-6.6.15-4kc-malta-di ppp-modules-6.6.15-4kc-malta-di sata-modules-6.6.15-4kc-malta-di scsi-core-modules-6.6.15-4kc-malta-di scsi-modules-6.6.15-4kc-malta-di scsi-nic-modules-6.6.15-4kc-malta-di sound-modules-6.6.15-4kc-malta-di speakup-modules-6.6.15-4kc-malta-di squashfs-modules-6.6.15-4kc-malta-di udf-modules-6.6.15-4kc-malta-di usb-modules-6.6.15-4kc-malta-di usb-serial-modules-6.6.15-4kc-malta-di usb-storage-modules-6.6.15-4kc-malta-di xfs-modules-6.6.15-4kc-malta-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-4kc-malta-di -pata-modules-6.6.15-4kc-malta-di -pbtrfs-modules-6.6.15-4kc-malta-di -pcdrom-core-modules-6.6.15-4kc-malta-di -pcrc-modules-6.6.15-4kc-malta-di -pcrypto-dm-modules-6.6.15-4kc-malta-di -pcrypto-modules-6.6.15-4kc-malta-di -pevent-modules-6.6.15-4kc-malta-di -pext4-modules-6.6.15-4kc-malta-di -pf2fs-modules-6.6.15-4kc-malta-di -pfat-modules-6.6.15-4kc-malta-di -pfb-modules-6.6.15-4kc-malta-di -pfirewire-core-modules-6.6.15-4kc-malta-di -pinput-modules-6.6.15-4kc-malta-di -pisofs-modules-6.6.15-4kc-malta-di -pjfs-modules-6.6.15-4kc-malta-di -pkernel-image-6.6.15-4kc-malta-di -ploop-modules-6.6.15-4kc-malta-di -pmd-modules-6.6.15-4kc-malta-di -pminix-modules-6.6.15-4kc-malta-di -pmmc-core-modules-6.6.15-4kc-malta-di -pmmc-modules-6.6.15-4kc-malta-di -pmouse-modules-6.6.15-4kc-malta-di -pmultipath-modules-6.6.15-4kc-malta-di -pnbd-modules-6.6.15-4kc-malta-di -pnfs-modules-6.6.15-4kc-malta-di -pnic-modules-6.6.15-4kc-malta-di -pnic-shared-modules-6.6.15-4kc-malta-di -pnic-usb-modules-6.6.15-4kc-malta-di -pnic-wireless-modules-6.6.15-4kc-malta-di -ppata-modules-6.6.15-4kc-malta-di -pppp-modules-6.6.15-4kc-malta-di -psata-modules-6.6.15-4kc-malta-di -pscsi-core-modules-6.6.15-4kc-malta-di -pscsi-modules-6.6.15-4kc-malta-di -pscsi-nic-modules-6.6.15-4kc-malta-di -psound-modules-6.6.15-4kc-malta-di -pspeakup-modules-6.6.15-4kc-malta-di -psquashfs-modules-6.6.15-4kc-malta-di -pudf-modules-6.6.15-4kc-malta-di -pusb-modules-6.6.15-4kc-malta-di -pusb-serial-modules-6.6.15-4kc-malta-di -pusb-storage-modules-6.6.15-4kc-malta-di -pxfs-modules-6.6.15-4kc-malta-di' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-4kc-malta-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-4kc-malta-di ata-modules-6.7.7-4kc-malta-di btrfs-modules-6.7.7-4kc-malta-di cdrom-core-modules-6.7.7-4kc-malta-di crc-modules-6.7.7-4kc-malta-di crypto-dm-modules-6.7.7-4kc-malta-di crypto-modules-6.7.7-4kc-malta-di event-modules-6.7.7-4kc-malta-di ext4-modules-6.7.7-4kc-malta-di f2fs-modules-6.7.7-4kc-malta-di fat-modules-6.7.7-4kc-malta-di fb-modules-6.7.7-4kc-malta-di firewire-core-modules-6.7.7-4kc-malta-di input-modules-6.7.7-4kc-malta-di isofs-modules-6.7.7-4kc-malta-di jfs-modules-6.7.7-4kc-malta-di kernel-image-6.7.7-4kc-malta-di loop-modules-6.7.7-4kc-malta-di md-modules-6.7.7-4kc-malta-di minix-modules-6.7.7-4kc-malta-di mmc-core-modules-6.7.7-4kc-malta-di mmc-modules-6.7.7-4kc-malta-di mouse-modules-6.7.7-4kc-malta-di multipath-modules-6.7.7-4kc-malta-di nbd-modules-6.7.7-4kc-malta-di nfs-modules-6.7.7-4kc-malta-di nic-modules-6.7.7-4kc-malta-di nic-shared-modules-6.7.7-4kc-malta-di nic-usb-modules-6.7.7-4kc-malta-di nic-wireless-modules-6.7.7-4kc-malta-di pata-modules-6.7.7-4kc-malta-di ppp-modules-6.7.7-4kc-malta-di sata-modules-6.7.7-4kc-malta-di scsi-core-modules-6.7.7-4kc-malta-di scsi-modules-6.7.7-4kc-malta-di scsi-nic-modules-6.7.7-4kc-malta-di sound-modules-6.7.7-4kc-malta-di speakup-modules-6.7.7-4kc-malta-di squashfs-modules-6.7.7-4kc-malta-di udf-modules-6.7.7-4kc-malta-di usb-modules-6.7.7-4kc-malta-di usb-serial-modules-6.7.7-4kc-malta-di usb-storage-modules-6.7.7-4kc-malta-di xfs-modules-6.7.7-4kc-malta-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-4kc-malta-di -pata-modules-6.7.7-4kc-malta-di -pbtrfs-modules-6.7.7-4kc-malta-di -pcdrom-core-modules-6.7.7-4kc-malta-di -pcrc-modules-6.7.7-4kc-malta-di -pcrypto-dm-modules-6.7.7-4kc-malta-di -pcrypto-modules-6.7.7-4kc-malta-di -pevent-modules-6.7.7-4kc-malta-di -pext4-modules-6.7.7-4kc-malta-di -pf2fs-modules-6.7.7-4kc-malta-di -pfat-modules-6.7.7-4kc-malta-di -pfb-modules-6.7.7-4kc-malta-di -pfirewire-core-modules-6.7.7-4kc-malta-di -pinput-modules-6.7.7-4kc-malta-di -pisofs-modules-6.7.7-4kc-malta-di -pjfs-modules-6.7.7-4kc-malta-di -pkernel-image-6.7.7-4kc-malta-di -ploop-modules-6.7.7-4kc-malta-di -pmd-modules-6.7.7-4kc-malta-di -pminix-modules-6.7.7-4kc-malta-di -pmmc-core-modules-6.7.7-4kc-malta-di -pmmc-modules-6.7.7-4kc-malta-di -pmouse-modules-6.7.7-4kc-malta-di -pmultipath-modules-6.7.7-4kc-malta-di -pnbd-modules-6.7.7-4kc-malta-di -pnfs-modules-6.7.7-4kc-malta-di -pnic-modules-6.7.7-4kc-malta-di -pnic-shared-modules-6.7.7-4kc-malta-di -pnic-usb-modules-6.7.7-4kc-malta-di -pnic-wireless-modules-6.7.7-4kc-malta-di -ppata-modules-6.7.7-4kc-malta-di -pppp-modules-6.7.7-4kc-malta-di -psata-modules-6.7.7-4kc-malta-di -pscsi-core-modules-6.7.7-4kc-malta-di -pscsi-modules-6.7.7-4kc-malta-di -pscsi-nic-modules-6.7.7-4kc-malta-di -psound-modules-6.7.7-4kc-malta-di -pspeakup-modules-6.7.7-4kc-malta-di -psquashfs-modules-6.7.7-4kc-malta-di -pudf-modules-6.7.7-4kc-malta-di -pusb-modules-6.7.7-4kc-malta-di -pusb-serial-modules-6.7.7-4kc-malta-di -pusb-storage-modules-6.7.7-4kc-malta-di -pxfs-modules-6.7.7-4kc-malta-di' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-4kc-malta-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mipsel_none_4kc-malta_meta: - $(call if_package, linux-image-4kc-malta, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-4kc-malta' DH_OPTIONS='-plinux-image-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-4kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-4kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-4kc-malta, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-4kc-malta' DH_OPTIONS='-plinux-headers-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-4kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-headers-4kc-malta' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-4kc-malta-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-4kc-malta-dbg' DH_OPTIONS='-plinux-image-4kc-malta-dbg' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-4kc-malta-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-4kc-malta-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-4kc-malta, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-4kc-malta' DH_OPTIONS='-plinux-image-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-4kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-4kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-4kc-malta, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-4kc-malta' DH_OPTIONS='-plinux-headers-4kc-malta' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-4kc-malta' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-headers-4kc-malta' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-4kc-malta-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-4kc-malta-dbg' DH_OPTIONS='-plinux-image-4kc-malta-dbg' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-4kc-malta-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.malta debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' PACKAGE_NAME='linux-image-4kc-malta-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mipsel_none_loongson-3:setup_mipsel_none_loongson-3_headers setup_mipsel_none_loongson-3_image setup_mipsel_none_loongson-3_image-dbg setup_mipsel_none_loongson-3_installer setup_mipsel_none_loongson-3_meta setup_mipsel_none_loongson-3_headers: - $(call if_package, linux-headers-6.6.15-loongson-3, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-loongson-3' DH_OPTIONS='-plinux-headers-6.6.15-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-headers-6.6.15-loongson-3' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-loongson-3, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-loongson-3' DH_OPTIONS='-plinux-headers-6.7.7-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-headers-6.7.7-loongson-3' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mipsel_none_loongson-3_image: - $(call if_package, linux-image-6.6.15-loongson-3, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-loongson-3' DH_OPTIONS='-plinux-image-6.6.15-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-6.6.15-loongson-3' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-loongson-3, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-loongson-3' DH_OPTIONS='-plinux-image-6.7.7-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-6.7.7-loongson-3' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mipsel_none_loongson-3_image-dbg: - $(call if_package, linux-image-6.6.15-loongson-3-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-loongson-3-dbg' DH_OPTIONS='-plinux-image-6.6.15-loongson-3-dbg' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-6.6.15-loongson-3-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-loongson-3-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-loongson-3-dbg' DH_OPTIONS='-plinux-image-6.7.7-loongson-3-dbg' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-6.7.7-loongson-3-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mipsel_none_loongson-3_installer: - $(call if_package, affs-modules-6.6.15-loongson-3-di ata-modules-6.6.15-loongson-3-di btrfs-modules-6.6.15-loongson-3-di cdrom-core-modules-6.6.15-loongson-3-di crc-modules-6.6.15-loongson-3-di crypto-dm-modules-6.6.15-loongson-3-di crypto-modules-6.6.15-loongson-3-di event-modules-6.6.15-loongson-3-di ext4-modules-6.6.15-loongson-3-di f2fs-modules-6.6.15-loongson-3-di fat-modules-6.6.15-loongson-3-di fb-modules-6.6.15-loongson-3-di firewire-core-modules-6.6.15-loongson-3-di input-modules-6.6.15-loongson-3-di isofs-modules-6.6.15-loongson-3-di jfs-modules-6.6.15-loongson-3-di kernel-image-6.6.15-loongson-3-di loop-modules-6.6.15-loongson-3-di md-modules-6.6.15-loongson-3-di minix-modules-6.6.15-loongson-3-di mmc-core-modules-6.6.15-loongson-3-di mmc-modules-6.6.15-loongson-3-di mouse-modules-6.6.15-loongson-3-di multipath-modules-6.6.15-loongson-3-di nbd-modules-6.6.15-loongson-3-di nfs-modules-6.6.15-loongson-3-di nic-modules-6.6.15-loongson-3-di nic-shared-modules-6.6.15-loongson-3-di nic-usb-modules-6.6.15-loongson-3-di nic-wireless-modules-6.6.15-loongson-3-di pata-modules-6.6.15-loongson-3-di ppp-modules-6.6.15-loongson-3-di sata-modules-6.6.15-loongson-3-di scsi-core-modules-6.6.15-loongson-3-di scsi-modules-6.6.15-loongson-3-di scsi-nic-modules-6.6.15-loongson-3-di sound-modules-6.6.15-loongson-3-di speakup-modules-6.6.15-loongson-3-di squashfs-modules-6.6.15-loongson-3-di udf-modules-6.6.15-loongson-3-di usb-modules-6.6.15-loongson-3-di usb-serial-modules-6.6.15-loongson-3-di usb-storage-modules-6.6.15-loongson-3-di xfs-modules-6.6.15-loongson-3-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-loongson-3-di -pata-modules-6.6.15-loongson-3-di -pbtrfs-modules-6.6.15-loongson-3-di -pcdrom-core-modules-6.6.15-loongson-3-di -pcrc-modules-6.6.15-loongson-3-di -pcrypto-dm-modules-6.6.15-loongson-3-di -pcrypto-modules-6.6.15-loongson-3-di -pevent-modules-6.6.15-loongson-3-di -pext4-modules-6.6.15-loongson-3-di -pf2fs-modules-6.6.15-loongson-3-di -pfat-modules-6.6.15-loongson-3-di -pfb-modules-6.6.15-loongson-3-di -pfirewire-core-modules-6.6.15-loongson-3-di -pinput-modules-6.6.15-loongson-3-di -pisofs-modules-6.6.15-loongson-3-di -pjfs-modules-6.6.15-loongson-3-di -pkernel-image-6.6.15-loongson-3-di -ploop-modules-6.6.15-loongson-3-di -pmd-modules-6.6.15-loongson-3-di -pminix-modules-6.6.15-loongson-3-di -pmmc-core-modules-6.6.15-loongson-3-di -pmmc-modules-6.6.15-loongson-3-di -pmouse-modules-6.6.15-loongson-3-di -pmultipath-modules-6.6.15-loongson-3-di -pnbd-modules-6.6.15-loongson-3-di -pnfs-modules-6.6.15-loongson-3-di -pnic-modules-6.6.15-loongson-3-di -pnic-shared-modules-6.6.15-loongson-3-di -pnic-usb-modules-6.6.15-loongson-3-di -pnic-wireless-modules-6.6.15-loongson-3-di -ppata-modules-6.6.15-loongson-3-di -pppp-modules-6.6.15-loongson-3-di -psata-modules-6.6.15-loongson-3-di -pscsi-core-modules-6.6.15-loongson-3-di -pscsi-modules-6.6.15-loongson-3-di -pscsi-nic-modules-6.6.15-loongson-3-di -psound-modules-6.6.15-loongson-3-di -pspeakup-modules-6.6.15-loongson-3-di -psquashfs-modules-6.6.15-loongson-3-di -pudf-modules-6.6.15-loongson-3-di -pusb-modules-6.6.15-loongson-3-di -pusb-serial-modules-6.6.15-loongson-3-di -pusb-storage-modules-6.6.15-loongson-3-di -pxfs-modules-6.6.15-loongson-3-di' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-loongson-3-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-loongson-3-di ata-modules-6.7.7-loongson-3-di btrfs-modules-6.7.7-loongson-3-di cdrom-core-modules-6.7.7-loongson-3-di crc-modules-6.7.7-loongson-3-di crypto-dm-modules-6.7.7-loongson-3-di crypto-modules-6.7.7-loongson-3-di event-modules-6.7.7-loongson-3-di ext4-modules-6.7.7-loongson-3-di f2fs-modules-6.7.7-loongson-3-di fat-modules-6.7.7-loongson-3-di fb-modules-6.7.7-loongson-3-di firewire-core-modules-6.7.7-loongson-3-di input-modules-6.7.7-loongson-3-di isofs-modules-6.7.7-loongson-3-di jfs-modules-6.7.7-loongson-3-di kernel-image-6.7.7-loongson-3-di loop-modules-6.7.7-loongson-3-di md-modules-6.7.7-loongson-3-di minix-modules-6.7.7-loongson-3-di mmc-core-modules-6.7.7-loongson-3-di mmc-modules-6.7.7-loongson-3-di mouse-modules-6.7.7-loongson-3-di multipath-modules-6.7.7-loongson-3-di nbd-modules-6.7.7-loongson-3-di nfs-modules-6.7.7-loongson-3-di nic-modules-6.7.7-loongson-3-di nic-shared-modules-6.7.7-loongson-3-di nic-usb-modules-6.7.7-loongson-3-di nic-wireless-modules-6.7.7-loongson-3-di pata-modules-6.7.7-loongson-3-di ppp-modules-6.7.7-loongson-3-di sata-modules-6.7.7-loongson-3-di scsi-core-modules-6.7.7-loongson-3-di scsi-modules-6.7.7-loongson-3-di scsi-nic-modules-6.7.7-loongson-3-di sound-modules-6.7.7-loongson-3-di speakup-modules-6.7.7-loongson-3-di squashfs-modules-6.7.7-loongson-3-di udf-modules-6.7.7-loongson-3-di usb-modules-6.7.7-loongson-3-di usb-serial-modules-6.7.7-loongson-3-di usb-storage-modules-6.7.7-loongson-3-di xfs-modules-6.7.7-loongson-3-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-loongson-3-di -pata-modules-6.7.7-loongson-3-di -pbtrfs-modules-6.7.7-loongson-3-di -pcdrom-core-modules-6.7.7-loongson-3-di -pcrc-modules-6.7.7-loongson-3-di -pcrypto-dm-modules-6.7.7-loongson-3-di -pcrypto-modules-6.7.7-loongson-3-di -pevent-modules-6.7.7-loongson-3-di -pext4-modules-6.7.7-loongson-3-di -pf2fs-modules-6.7.7-loongson-3-di -pfat-modules-6.7.7-loongson-3-di -pfb-modules-6.7.7-loongson-3-di -pfirewire-core-modules-6.7.7-loongson-3-di -pinput-modules-6.7.7-loongson-3-di -pisofs-modules-6.7.7-loongson-3-di -pjfs-modules-6.7.7-loongson-3-di -pkernel-image-6.7.7-loongson-3-di -ploop-modules-6.7.7-loongson-3-di -pmd-modules-6.7.7-loongson-3-di -pminix-modules-6.7.7-loongson-3-di -pmmc-core-modules-6.7.7-loongson-3-di -pmmc-modules-6.7.7-loongson-3-di -pmouse-modules-6.7.7-loongson-3-di -pmultipath-modules-6.7.7-loongson-3-di -pnbd-modules-6.7.7-loongson-3-di -pnfs-modules-6.7.7-loongson-3-di -pnic-modules-6.7.7-loongson-3-di -pnic-shared-modules-6.7.7-loongson-3-di -pnic-usb-modules-6.7.7-loongson-3-di -pnic-wireless-modules-6.7.7-loongson-3-di -ppata-modules-6.7.7-loongson-3-di -pppp-modules-6.7.7-loongson-3-di -psata-modules-6.7.7-loongson-3-di -pscsi-core-modules-6.7.7-loongson-3-di -pscsi-modules-6.7.7-loongson-3-di -pscsi-nic-modules-6.7.7-loongson-3-di -psound-modules-6.7.7-loongson-3-di -pspeakup-modules-6.7.7-loongson-3-di -psquashfs-modules-6.7.7-loongson-3-di -pudf-modules-6.7.7-loongson-3-di -pusb-modules-6.7.7-loongson-3-di -pusb-serial-modules-6.7.7-loongson-3-di -pusb-storage-modules-6.7.7-loongson-3-di -pxfs-modules-6.7.7-loongson-3-di' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-loongson-3-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mipsel_none_loongson-3_meta: - $(call if_package, linux-image-loongson-3, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-loongson-3' DH_OPTIONS='-plinux-image-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-loongson-3' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-loongson-3' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-loongson-3, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-loongson-3' DH_OPTIONS='-plinux-headers-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-loongson-3' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-headers-loongson-3' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-loongson-3-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-loongson-3-dbg' DH_OPTIONS='-plinux-image-loongson-3-dbg' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-loongson-3-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-loongson-3-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-loongson-3, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-loongson-3' DH_OPTIONS='-plinux-image-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-loongson-3' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-loongson-3' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-loongson-3, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-loongson-3' DH_OPTIONS='-plinux-headers-loongson-3' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-loongson-3' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-headers-loongson-3' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-loongson-3-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-loongson-3-dbg' DH_OPTIONS='-plinux-image-loongson-3-dbg' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-loongson-3-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.loongson-3' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' PACKAGE_NAME='linux-image-loongson-3-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mipsel_none_mips32r2el:setup_mipsel_none_mips32r2el_headers setup_mipsel_none_mips32r2el_image setup_mipsel_none_mips32r2el_image-dbg setup_mipsel_none_mips32r2el_installer setup_mipsel_none_mips32r2el_meta setup_mipsel_none_mips32r2el_headers: - $(call if_package, linux-headers-6.6.15-mips32r2el, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-mips32r2el' DH_OPTIONS='-plinux-headers-6.6.15-mips32r2el' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' PACKAGE_NAME='linux-headers-6.6.15-mips32r2el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-mips32r2el, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-mips32r2el' DH_OPTIONS='-plinux-headers-6.7.7-mips32r2el' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' PACKAGE_NAME='linux-headers-6.7.7-mips32r2el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mipsel_none_mips32r2el_image: - $(call if_package, linux-image-6.6.15-mips32r2el, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-mips32r2el' DH_OPTIONS='-plinux-image-6.6.15-mips32r2el' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' PACKAGE_NAME='linux-image-6.6.15-mips32r2el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-mips32r2el, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-mips32r2el' DH_OPTIONS='-plinux-image-6.7.7-mips32r2el' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' PACKAGE_NAME='linux-image-6.7.7-mips32r2el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mipsel_none_mips32r2el_image-dbg: - $(call if_package, linux-image-6.6.15-mips32r2el-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-mips32r2el-dbg' DH_OPTIONS='-plinux-image-6.6.15-mips32r2el-dbg' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' PACKAGE_NAME='linux-image-6.6.15-mips32r2el-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-mips32r2el-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-mips32r2el-dbg' DH_OPTIONS='-plinux-image-6.7.7-mips32r2el-dbg' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' PACKAGE_NAME='linux-image-6.7.7-mips32r2el-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mipsel_none_mips32r2el_installer: - $(call if_package, affs-modules-6.6.15-mips32r2el-di ata-modules-6.6.15-mips32r2el-di btrfs-modules-6.6.15-mips32r2el-di cdrom-core-modules-6.6.15-mips32r2el-di crc-modules-6.6.15-mips32r2el-di crypto-dm-modules-6.6.15-mips32r2el-di crypto-modules-6.6.15-mips32r2el-di event-modules-6.6.15-mips32r2el-di ext4-modules-6.6.15-mips32r2el-di f2fs-modules-6.6.15-mips32r2el-di fat-modules-6.6.15-mips32r2el-di fb-modules-6.6.15-mips32r2el-di firewire-core-modules-6.6.15-mips32r2el-di input-modules-6.6.15-mips32r2el-di isofs-modules-6.6.15-mips32r2el-di jfs-modules-6.6.15-mips32r2el-di kernel-image-6.6.15-mips32r2el-di loop-modules-6.6.15-mips32r2el-di md-modules-6.6.15-mips32r2el-di minix-modules-6.6.15-mips32r2el-di mmc-core-modules-6.6.15-mips32r2el-di mmc-modules-6.6.15-mips32r2el-di mouse-modules-6.6.15-mips32r2el-di multipath-modules-6.6.15-mips32r2el-di nbd-modules-6.6.15-mips32r2el-di nfs-modules-6.6.15-mips32r2el-di nic-modules-6.6.15-mips32r2el-di nic-shared-modules-6.6.15-mips32r2el-di nic-usb-modules-6.6.15-mips32r2el-di nic-wireless-modules-6.6.15-mips32r2el-di pata-modules-6.6.15-mips32r2el-di ppp-modules-6.6.15-mips32r2el-di sata-modules-6.6.15-mips32r2el-di scsi-core-modules-6.6.15-mips32r2el-di scsi-modules-6.6.15-mips32r2el-di scsi-nic-modules-6.6.15-mips32r2el-di sound-modules-6.6.15-mips32r2el-di speakup-modules-6.6.15-mips32r2el-di squashfs-modules-6.6.15-mips32r2el-di udf-modules-6.6.15-mips32r2el-di usb-modules-6.6.15-mips32r2el-di usb-serial-modules-6.6.15-mips32r2el-di usb-storage-modules-6.6.15-mips32r2el-di xfs-modules-6.6.15-mips32r2el-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-mips32r2el-di -pata-modules-6.6.15-mips32r2el-di -pbtrfs-modules-6.6.15-mips32r2el-di -pcdrom-core-modules-6.6.15-mips32r2el-di -pcrc-modules-6.6.15-mips32r2el-di -pcrypto-dm-modules-6.6.15-mips32r2el-di -pcrypto-modules-6.6.15-mips32r2el-di -pevent-modules-6.6.15-mips32r2el-di -pext4-modules-6.6.15-mips32r2el-di -pf2fs-modules-6.6.15-mips32r2el-di -pfat-modules-6.6.15-mips32r2el-di -pfb-modules-6.6.15-mips32r2el-di -pfirewire-core-modules-6.6.15-mips32r2el-di -pinput-modules-6.6.15-mips32r2el-di -pisofs-modules-6.6.15-mips32r2el-di -pjfs-modules-6.6.15-mips32r2el-di -pkernel-image-6.6.15-mips32r2el-di -ploop-modules-6.6.15-mips32r2el-di -pmd-modules-6.6.15-mips32r2el-di -pminix-modules-6.6.15-mips32r2el-di -pmmc-core-modules-6.6.15-mips32r2el-di -pmmc-modules-6.6.15-mips32r2el-di -pmouse-modules-6.6.15-mips32r2el-di -pmultipath-modules-6.6.15-mips32r2el-di -pnbd-modules-6.6.15-mips32r2el-di -pnfs-modules-6.6.15-mips32r2el-di -pnic-modules-6.6.15-mips32r2el-di -pnic-shared-modules-6.6.15-mips32r2el-di -pnic-usb-modules-6.6.15-mips32r2el-di -pnic-wireless-modules-6.6.15-mips32r2el-di -ppata-modules-6.6.15-mips32r2el-di -pppp-modules-6.6.15-mips32r2el-di -psata-modules-6.6.15-mips32r2el-di -pscsi-core-modules-6.6.15-mips32r2el-di -pscsi-modules-6.6.15-mips32r2el-di -pscsi-nic-modules-6.6.15-mips32r2el-di -psound-modules-6.6.15-mips32r2el-di -pspeakup-modules-6.6.15-mips32r2el-di -psquashfs-modules-6.6.15-mips32r2el-di -pudf-modules-6.6.15-mips32r2el-di -pusb-modules-6.6.15-mips32r2el-di -pusb-serial-modules-6.6.15-mips32r2el-di -pusb-storage-modules-6.6.15-mips32r2el-di -pxfs-modules-6.6.15-mips32r2el-di' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-mips32r2el-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-mips32r2el-di ata-modules-6.7.7-mips32r2el-di btrfs-modules-6.7.7-mips32r2el-di cdrom-core-modules-6.7.7-mips32r2el-di crc-modules-6.7.7-mips32r2el-di crypto-dm-modules-6.7.7-mips32r2el-di crypto-modules-6.7.7-mips32r2el-di event-modules-6.7.7-mips32r2el-di ext4-modules-6.7.7-mips32r2el-di f2fs-modules-6.7.7-mips32r2el-di fat-modules-6.7.7-mips32r2el-di fb-modules-6.7.7-mips32r2el-di firewire-core-modules-6.7.7-mips32r2el-di input-modules-6.7.7-mips32r2el-di isofs-modules-6.7.7-mips32r2el-di jfs-modules-6.7.7-mips32r2el-di kernel-image-6.7.7-mips32r2el-di loop-modules-6.7.7-mips32r2el-di md-modules-6.7.7-mips32r2el-di minix-modules-6.7.7-mips32r2el-di mmc-core-modules-6.7.7-mips32r2el-di mmc-modules-6.7.7-mips32r2el-di mouse-modules-6.7.7-mips32r2el-di multipath-modules-6.7.7-mips32r2el-di nbd-modules-6.7.7-mips32r2el-di nfs-modules-6.7.7-mips32r2el-di nic-modules-6.7.7-mips32r2el-di nic-shared-modules-6.7.7-mips32r2el-di nic-usb-modules-6.7.7-mips32r2el-di nic-wireless-modules-6.7.7-mips32r2el-di pata-modules-6.7.7-mips32r2el-di ppp-modules-6.7.7-mips32r2el-di sata-modules-6.7.7-mips32r2el-di scsi-core-modules-6.7.7-mips32r2el-di scsi-modules-6.7.7-mips32r2el-di scsi-nic-modules-6.7.7-mips32r2el-di sound-modules-6.7.7-mips32r2el-di speakup-modules-6.7.7-mips32r2el-di squashfs-modules-6.7.7-mips32r2el-di udf-modules-6.7.7-mips32r2el-di usb-modules-6.7.7-mips32r2el-di usb-serial-modules-6.7.7-mips32r2el-di usb-storage-modules-6.7.7-mips32r2el-di xfs-modules-6.7.7-mips32r2el-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-mips32r2el-di -pata-modules-6.7.7-mips32r2el-di -pbtrfs-modules-6.7.7-mips32r2el-di -pcdrom-core-modules-6.7.7-mips32r2el-di -pcrc-modules-6.7.7-mips32r2el-di -pcrypto-dm-modules-6.7.7-mips32r2el-di -pcrypto-modules-6.7.7-mips32r2el-di -pevent-modules-6.7.7-mips32r2el-di -pext4-modules-6.7.7-mips32r2el-di -pf2fs-modules-6.7.7-mips32r2el-di -pfat-modules-6.7.7-mips32r2el-di -pfb-modules-6.7.7-mips32r2el-di -pfirewire-core-modules-6.7.7-mips32r2el-di -pinput-modules-6.7.7-mips32r2el-di -pisofs-modules-6.7.7-mips32r2el-di -pjfs-modules-6.7.7-mips32r2el-di -pkernel-image-6.7.7-mips32r2el-di -ploop-modules-6.7.7-mips32r2el-di -pmd-modules-6.7.7-mips32r2el-di -pminix-modules-6.7.7-mips32r2el-di -pmmc-core-modules-6.7.7-mips32r2el-di -pmmc-modules-6.7.7-mips32r2el-di -pmouse-modules-6.7.7-mips32r2el-di -pmultipath-modules-6.7.7-mips32r2el-di -pnbd-modules-6.7.7-mips32r2el-di -pnfs-modules-6.7.7-mips32r2el-di -pnic-modules-6.7.7-mips32r2el-di -pnic-shared-modules-6.7.7-mips32r2el-di -pnic-usb-modules-6.7.7-mips32r2el-di -pnic-wireless-modules-6.7.7-mips32r2el-di -ppata-modules-6.7.7-mips32r2el-di -pppp-modules-6.7.7-mips32r2el-di -psata-modules-6.7.7-mips32r2el-di -pscsi-core-modules-6.7.7-mips32r2el-di -pscsi-modules-6.7.7-mips32r2el-di -pscsi-nic-modules-6.7.7-mips32r2el-di -psound-modules-6.7.7-mips32r2el-di -pspeakup-modules-6.7.7-mips32r2el-di -psquashfs-modules-6.7.7-mips32r2el-di -pudf-modules-6.7.7-mips32r2el-di -pusb-modules-6.7.7-mips32r2el-di -pusb-serial-modules-6.7.7-mips32r2el-di -pusb-storage-modules-6.7.7-mips32r2el-di -pxfs-modules-6.7.7-mips32r2el-di' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-mips32r2el-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mipsel_none_mips32r2el_meta: - $(call if_package, linux-image-mips32r2el, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips32r2el' DH_OPTIONS='-plinux-image-mips32r2el' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-mips32r2el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' PACKAGE_NAME='linux-image-mips32r2el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-mips32r2el, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-mips32r2el' DH_OPTIONS='-plinux-headers-mips32r2el' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-mips32r2el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' PACKAGE_NAME='linux-headers-mips32r2el' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-mips32r2el-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips32r2el-dbg' DH_OPTIONS='-plinux-image-mips32r2el-dbg' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-mips32r2el-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' PACKAGE_NAME='linux-image-mips32r2el-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-mips32r2el, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips32r2el' DH_OPTIONS='-plinux-image-mips32r2el' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-mips32r2el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' PACKAGE_NAME='linux-image-mips32r2el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-mips32r2el, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-mips32r2el' DH_OPTIONS='-plinux-headers-mips32r2el' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-mips32r2el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' PACKAGE_NAME='linux-headers-mips32r2el' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-mips32r2el-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-mips32r2el-dbg' DH_OPTIONS='-plinux-image-mips32r2el-dbg' FEATURESET='none' FLAVOUR='mips32r2el' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-mips32r2el-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r2' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-mips32r2el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r2el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r2el' PACKAGE_NAME='linux-image-mips32r2el-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mipsel_none_octeon:setup_mipsel_none_octeon_headers setup_mipsel_none_octeon_image setup_mipsel_none_octeon_image-dbg setup_mipsel_none_octeon_installer setup_mipsel_none_octeon_meta setup_mipsel_none_octeon_headers: - $(call if_package, linux-headers-6.6.15-octeon, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-octeon' DH_OPTIONS='-plinux-headers-6.6.15-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-6.6.15-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-octeon, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-octeon' DH_OPTIONS='-plinux-headers-6.7.7-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-6.7.7-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mipsel_none_octeon_image: - $(call if_package, linux-image-6.6.15-octeon, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-octeon' DH_OPTIONS='-plinux-image-6.6.15-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.6.15-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-octeon, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-octeon' DH_OPTIONS='-plinux-image-6.7.7-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.7.7-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mipsel_none_octeon_image-dbg: - $(call if_package, linux-image-6.6.15-octeon-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-octeon-dbg' DH_OPTIONS='-plinux-image-6.6.15-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.6.15-octeon-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-octeon-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-octeon-dbg' DH_OPTIONS='-plinux-image-6.7.7-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-6.7.7-octeon-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mipsel_none_octeon_installer: - $(call if_package, affs-modules-6.6.15-octeon-di ata-modules-6.6.15-octeon-di btrfs-modules-6.6.15-octeon-di cdrom-core-modules-6.6.15-octeon-di crc-modules-6.6.15-octeon-di crypto-dm-modules-6.6.15-octeon-di crypto-modules-6.6.15-octeon-di event-modules-6.6.15-octeon-di ext4-modules-6.6.15-octeon-di f2fs-modules-6.6.15-octeon-di fat-modules-6.6.15-octeon-di fb-modules-6.6.15-octeon-di firewire-core-modules-6.6.15-octeon-di input-modules-6.6.15-octeon-di isofs-modules-6.6.15-octeon-di jfs-modules-6.6.15-octeon-di kernel-image-6.6.15-octeon-di loop-modules-6.6.15-octeon-di md-modules-6.6.15-octeon-di minix-modules-6.6.15-octeon-di mmc-core-modules-6.6.15-octeon-di mmc-modules-6.6.15-octeon-di mouse-modules-6.6.15-octeon-di multipath-modules-6.6.15-octeon-di nbd-modules-6.6.15-octeon-di nfs-modules-6.6.15-octeon-di nic-modules-6.6.15-octeon-di nic-shared-modules-6.6.15-octeon-di nic-usb-modules-6.6.15-octeon-di nic-wireless-modules-6.6.15-octeon-di pata-modules-6.6.15-octeon-di ppp-modules-6.6.15-octeon-di sata-modules-6.6.15-octeon-di scsi-core-modules-6.6.15-octeon-di scsi-modules-6.6.15-octeon-di scsi-nic-modules-6.6.15-octeon-di sound-modules-6.6.15-octeon-di speakup-modules-6.6.15-octeon-di squashfs-modules-6.6.15-octeon-di udf-modules-6.6.15-octeon-di usb-modules-6.6.15-octeon-di usb-serial-modules-6.6.15-octeon-di usb-storage-modules-6.6.15-octeon-di xfs-modules-6.6.15-octeon-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-octeon-di -pata-modules-6.6.15-octeon-di -pbtrfs-modules-6.6.15-octeon-di -pcdrom-core-modules-6.6.15-octeon-di -pcrc-modules-6.6.15-octeon-di -pcrypto-dm-modules-6.6.15-octeon-di -pcrypto-modules-6.6.15-octeon-di -pevent-modules-6.6.15-octeon-di -pext4-modules-6.6.15-octeon-di -pf2fs-modules-6.6.15-octeon-di -pfat-modules-6.6.15-octeon-di -pfb-modules-6.6.15-octeon-di -pfirewire-core-modules-6.6.15-octeon-di -pinput-modules-6.6.15-octeon-di -pisofs-modules-6.6.15-octeon-di -pjfs-modules-6.6.15-octeon-di -pkernel-image-6.6.15-octeon-di -ploop-modules-6.6.15-octeon-di -pmd-modules-6.6.15-octeon-di -pminix-modules-6.6.15-octeon-di -pmmc-core-modules-6.6.15-octeon-di -pmmc-modules-6.6.15-octeon-di -pmouse-modules-6.6.15-octeon-di -pmultipath-modules-6.6.15-octeon-di -pnbd-modules-6.6.15-octeon-di -pnfs-modules-6.6.15-octeon-di -pnic-modules-6.6.15-octeon-di -pnic-shared-modules-6.6.15-octeon-di -pnic-usb-modules-6.6.15-octeon-di -pnic-wireless-modules-6.6.15-octeon-di -ppata-modules-6.6.15-octeon-di -pppp-modules-6.6.15-octeon-di -psata-modules-6.6.15-octeon-di -pscsi-core-modules-6.6.15-octeon-di -pscsi-modules-6.6.15-octeon-di -pscsi-nic-modules-6.6.15-octeon-di -psound-modules-6.6.15-octeon-di -pspeakup-modules-6.6.15-octeon-di -psquashfs-modules-6.6.15-octeon-di -pudf-modules-6.6.15-octeon-di -pusb-modules-6.6.15-octeon-di -pusb-serial-modules-6.6.15-octeon-di -pusb-storage-modules-6.6.15-octeon-di -pxfs-modules-6.6.15-octeon-di' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-octeon-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-octeon-di ata-modules-6.7.7-octeon-di btrfs-modules-6.7.7-octeon-di cdrom-core-modules-6.7.7-octeon-di crc-modules-6.7.7-octeon-di crypto-dm-modules-6.7.7-octeon-di crypto-modules-6.7.7-octeon-di event-modules-6.7.7-octeon-di ext4-modules-6.7.7-octeon-di f2fs-modules-6.7.7-octeon-di fat-modules-6.7.7-octeon-di fb-modules-6.7.7-octeon-di firewire-core-modules-6.7.7-octeon-di input-modules-6.7.7-octeon-di isofs-modules-6.7.7-octeon-di jfs-modules-6.7.7-octeon-di kernel-image-6.7.7-octeon-di loop-modules-6.7.7-octeon-di md-modules-6.7.7-octeon-di minix-modules-6.7.7-octeon-di mmc-core-modules-6.7.7-octeon-di mmc-modules-6.7.7-octeon-di mouse-modules-6.7.7-octeon-di multipath-modules-6.7.7-octeon-di nbd-modules-6.7.7-octeon-di nfs-modules-6.7.7-octeon-di nic-modules-6.7.7-octeon-di nic-shared-modules-6.7.7-octeon-di nic-usb-modules-6.7.7-octeon-di nic-wireless-modules-6.7.7-octeon-di pata-modules-6.7.7-octeon-di ppp-modules-6.7.7-octeon-di sata-modules-6.7.7-octeon-di scsi-core-modules-6.7.7-octeon-di scsi-modules-6.7.7-octeon-di scsi-nic-modules-6.7.7-octeon-di sound-modules-6.7.7-octeon-di speakup-modules-6.7.7-octeon-di squashfs-modules-6.7.7-octeon-di udf-modules-6.7.7-octeon-di usb-modules-6.7.7-octeon-di usb-serial-modules-6.7.7-octeon-di usb-storage-modules-6.7.7-octeon-di xfs-modules-6.7.7-octeon-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-octeon-di -pata-modules-6.7.7-octeon-di -pbtrfs-modules-6.7.7-octeon-di -pcdrom-core-modules-6.7.7-octeon-di -pcrc-modules-6.7.7-octeon-di -pcrypto-dm-modules-6.7.7-octeon-di -pcrypto-modules-6.7.7-octeon-di -pevent-modules-6.7.7-octeon-di -pext4-modules-6.7.7-octeon-di -pf2fs-modules-6.7.7-octeon-di -pfat-modules-6.7.7-octeon-di -pfb-modules-6.7.7-octeon-di -pfirewire-core-modules-6.7.7-octeon-di -pinput-modules-6.7.7-octeon-di -pisofs-modules-6.7.7-octeon-di -pjfs-modules-6.7.7-octeon-di -pkernel-image-6.7.7-octeon-di -ploop-modules-6.7.7-octeon-di -pmd-modules-6.7.7-octeon-di -pminix-modules-6.7.7-octeon-di -pmmc-core-modules-6.7.7-octeon-di -pmmc-modules-6.7.7-octeon-di -pmouse-modules-6.7.7-octeon-di -pmultipath-modules-6.7.7-octeon-di -pnbd-modules-6.7.7-octeon-di -pnfs-modules-6.7.7-octeon-di -pnic-modules-6.7.7-octeon-di -pnic-shared-modules-6.7.7-octeon-di -pnic-usb-modules-6.7.7-octeon-di -pnic-wireless-modules-6.7.7-octeon-di -ppata-modules-6.7.7-octeon-di -pppp-modules-6.7.7-octeon-di -psata-modules-6.7.7-octeon-di -pscsi-core-modules-6.7.7-octeon-di -pscsi-modules-6.7.7-octeon-di -pscsi-nic-modules-6.7.7-octeon-di -psound-modules-6.7.7-octeon-di -pspeakup-modules-6.7.7-octeon-di -psquashfs-modules-6.7.7-octeon-di -pudf-modules-6.7.7-octeon-di -pusb-modules-6.7.7-octeon-di -pusb-serial-modules-6.7.7-octeon-di -pusb-storage-modules-6.7.7-octeon-di -pxfs-modules-6.7.7-octeon-di' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-octeon-di' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mipsel_none_octeon_meta: - $(call if_package, linux-image-octeon, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon' DH_OPTIONS='-plinux-image-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-octeon, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-octeon' DH_OPTIONS='-plinux-headers-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-octeon' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-octeon-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon-dbg' DH_OPTIONS='-plinux-image-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-octeon-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-octeon, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon' DH_OPTIONS='-plinux-image-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-octeon, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-octeon' DH_OPTIONS='-plinux-headers-octeon' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-headers-octeon' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-octeon-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='mipsel' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-octeon-dbg' DH_OPTIONS='-plinux-image-octeon-dbg' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-octeon-dbg' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' PACKAGE_NAME='linux-image-octeon-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mipsel_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.6.15' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='mips' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.7.7' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='mips' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mipsel_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.6.15' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='mips' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.7.7' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='mips' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_mipsel_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.6.15' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='mips' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.7.7' ARCH='mipsel' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='mips' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_none:setup_none_headers-common setup_none_headers-common: - $(call if_package, linux-headers-6.6.15-common, $(MAKE) -f debian/rules.real setup_headers-common ABINAME='6.6.15' ALL_KERNEL_ARCHES='alpha arm arm64 ia64 m68k mips parisc powerpc riscv s390 sh sparc x86' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-common' DH_OPTIONS='-plinux-headers-6.6.15-common' FEATURESET='none' LOCALVERSION='' PACKAGE_NAME='linux-headers-6.6.15-common' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-common, $(MAKE) -f debian/rules.real setup_headers-common ABINAME='6.7.7' ALL_KERNEL_ARCHES='alpha arm arm64 loongarch m68k mips parisc powerpc riscv s390 sh sparc x86' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-common' DH_OPTIONS='-plinux-headers-6.7.7-common' FEATURESET='none' LOCALVERSION='' PACKAGE_NAME='linux-headers-6.7.7-common' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_powerpc:setup_powerpc_bpftool setup_powerpc_config setup_powerpc_cpupower setup_powerpc_hyperv-daemons setup_powerpc_kbuild setup_powerpc_none setup_powerpc_perf setup_powerpc_rtla setup_powerpc_usbip setup_powerpc_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.6.15' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='powerpc' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.7.7' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='powerpc' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_powerpc_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real setup_config ABINAME='6.6.15' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real setup_config ABINAME='6.7.7' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_powerpc_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.6.15' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='powerpc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.7.7' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='powerpc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_powerpc_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.6.15' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='powerpc' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.7.7' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='powerpc' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_powerpc_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.6.15' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.7.7' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_powerpc_none:setup_powerpc_none_powerpc setup_powerpc_none_powerpc-smp setup_powerpc_none_powerpc64 setup_powerpc_none_powerpc:setup_powerpc_none_powerpc_headers setup_powerpc_none_powerpc_image setup_powerpc_none_powerpc_image-dbg setup_powerpc_none_powerpc_installer setup_powerpc_none_powerpc_meta setup_powerpc_none_powerpc-smp:setup_powerpc_none_powerpc-smp_headers setup_powerpc_none_powerpc-smp_image setup_powerpc_none_powerpc-smp_image-dbg setup_powerpc_none_powerpc-smp_meta setup_powerpc_none_powerpc-smp_headers: - $(call if_package, linux-headers-6.6.15-powerpc-smp, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-powerpc-smp' DH_OPTIONS='-plinux-headers-6.6.15-powerpc-smp' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc debian/config/powerpc/config.powerpc-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' PACKAGE_NAME='linux-headers-6.6.15-powerpc-smp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-powerpc-smp, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-powerpc-smp' DH_OPTIONS='-plinux-headers-6.7.7-powerpc-smp' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc debian/config/powerpc/config.powerpc-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' PACKAGE_NAME='linux-headers-6.7.7-powerpc-smp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_powerpc_none_powerpc-smp_image: - $(call if_package, linux-image-6.6.15-powerpc-smp, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-powerpc-smp' DH_OPTIONS='-plinux-image-6.6.15-powerpc-smp' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc debian/config/powerpc/config.powerpc-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' PACKAGE_NAME='linux-image-6.6.15-powerpc-smp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-powerpc-smp, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-powerpc-smp' DH_OPTIONS='-plinux-image-6.7.7-powerpc-smp' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc debian/config/powerpc/config.powerpc-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' PACKAGE_NAME='linux-image-6.7.7-powerpc-smp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_powerpc_none_powerpc-smp_image-dbg: - $(call if_package, linux-image-6.6.15-powerpc-smp-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-powerpc-smp-dbg' DH_OPTIONS='-plinux-image-6.6.15-powerpc-smp-dbg' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc debian/config/powerpc/config.powerpc-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' PACKAGE_NAME='linux-image-6.6.15-powerpc-smp-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-powerpc-smp-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-powerpc-smp-dbg' DH_OPTIONS='-plinux-image-6.7.7-powerpc-smp-dbg' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc debian/config/powerpc/config.powerpc-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' PACKAGE_NAME='linux-image-6.7.7-powerpc-smp-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_powerpc_none_powerpc-smp_meta: - $(call if_package, linux-image-powerpc-smp, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc-smp' DH_OPTIONS='-plinux-image-powerpc-smp' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-powerpc-smp' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc debian/config/powerpc/config.powerpc-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' PACKAGE_NAME='linux-image-powerpc-smp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-powerpc-smp, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-powerpc-smp' DH_OPTIONS='-plinux-headers-powerpc-smp' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-powerpc-smp' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc debian/config/powerpc/config.powerpc-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' PACKAGE_NAME='linux-headers-powerpc-smp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-powerpc-smp-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc-smp-dbg' DH_OPTIONS='-plinux-image-powerpc-smp-dbg' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-powerpc-smp-dbg' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc debian/config/powerpc/config.powerpc-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' PACKAGE_NAME='linux-image-powerpc-smp-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-powerpc-smp, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc-smp' DH_OPTIONS='-plinux-image-powerpc-smp' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-powerpc-smp' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc debian/config/powerpc/config.powerpc-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' PACKAGE_NAME='linux-image-powerpc-smp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-powerpc-smp, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-powerpc-smp' DH_OPTIONS='-plinux-headers-powerpc-smp' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-powerpc-smp' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc debian/config/powerpc/config.powerpc-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' PACKAGE_NAME='linux-headers-powerpc-smp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-powerpc-smp-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc-smp-dbg' DH_OPTIONS='-plinux-image-powerpc-smp-dbg' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-powerpc-smp-dbg' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc debian/config/powerpc/config.powerpc-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' PACKAGE_NAME='linux-image-powerpc-smp-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_powerpc_none_powerpc64:setup_powerpc_none_powerpc64_headers setup_powerpc_none_powerpc64_image setup_powerpc_none_powerpc64_image-dbg setup_powerpc_none_powerpc64_installer setup_powerpc_none_powerpc64_meta setup_powerpc_none_powerpc64_headers: - $(call if_package, linux-headers-6.6.15-powerpc64, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-powerpc64' DH_OPTIONS='-plinux-headers-6.6.15-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-headers-6.6.15-powerpc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-powerpc64, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-powerpc64' DH_OPTIONS='-plinux-headers-6.7.7-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-headers-6.7.7-powerpc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_powerpc_none_powerpc64_image: - $(call if_package, linux-image-6.6.15-powerpc64, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-powerpc64' DH_OPTIONS='-plinux-image-6.6.15-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-6.6.15-powerpc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-powerpc64, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-powerpc64' DH_OPTIONS='-plinux-image-6.7.7-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-6.7.7-powerpc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_powerpc_none_powerpc64_image-dbg: - $(call if_package, linux-image-6.6.15-powerpc64-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-powerpc64-dbg' DH_OPTIONS='-plinux-image-6.6.15-powerpc64-dbg' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-6.6.15-powerpc64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-powerpc64-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-powerpc64-dbg' DH_OPTIONS='-plinux-image-6.7.7-powerpc64-dbg' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-6.7.7-powerpc64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_powerpc_none_powerpc64_installer: - $(call if_package, affs-modules-6.6.15-powerpc64-di ata-modules-6.6.15-powerpc64-di btrfs-modules-6.6.15-powerpc64-di cdrom-core-modules-6.6.15-powerpc64-di crc-modules-6.6.15-powerpc64-di crypto-dm-modules-6.6.15-powerpc64-di crypto-modules-6.6.15-powerpc64-di event-modules-6.6.15-powerpc64-di ext4-modules-6.6.15-powerpc64-di f2fs-modules-6.6.15-powerpc64-di fancontrol-modules-6.6.15-powerpc64-di fat-modules-6.6.15-powerpc64-di fb-modules-6.6.15-powerpc64-di firewire-core-modules-6.6.15-powerpc64-di hfs-modules-6.6.15-powerpc64-di hypervisor-modules-6.6.15-powerpc64-di i2c-modules-6.6.15-powerpc64-di input-modules-6.6.15-powerpc64-di isofs-modules-6.6.15-powerpc64-di jfs-modules-6.6.15-powerpc64-di kernel-image-6.6.15-powerpc64-di loop-modules-6.6.15-powerpc64-di md-modules-6.6.15-powerpc64-di mmc-core-modules-6.6.15-powerpc64-di mouse-modules-6.6.15-powerpc64-di mtd-core-modules-6.6.15-powerpc64-di multipath-modules-6.6.15-powerpc64-di nbd-modules-6.6.15-powerpc64-di nic-modules-6.6.15-powerpc64-di nic-pcmcia-modules-6.6.15-powerpc64-di nic-shared-modules-6.6.15-powerpc64-di nic-usb-modules-6.6.15-powerpc64-di nic-wireless-modules-6.6.15-powerpc64-di pata-modules-6.6.15-powerpc64-di pcmcia-modules-6.6.15-powerpc64-di pcmcia-storage-modules-6.6.15-powerpc64-di ppp-modules-6.6.15-powerpc64-di sata-modules-6.6.15-powerpc64-di scsi-core-modules-6.6.15-powerpc64-di scsi-modules-6.6.15-powerpc64-di scsi-nic-modules-6.6.15-powerpc64-di serial-modules-6.6.15-powerpc64-di squashfs-modules-6.6.15-powerpc64-di udf-modules-6.6.15-powerpc64-di uinput-modules-6.6.15-powerpc64-di usb-modules-6.6.15-powerpc64-di usb-serial-modules-6.6.15-powerpc64-di usb-storage-modules-6.6.15-powerpc64-di xfs-modules-6.6.15-powerpc64-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-powerpc64-di -pata-modules-6.6.15-powerpc64-di -pbtrfs-modules-6.6.15-powerpc64-di -pcdrom-core-modules-6.6.15-powerpc64-di -pcrc-modules-6.6.15-powerpc64-di -pcrypto-dm-modules-6.6.15-powerpc64-di -pcrypto-modules-6.6.15-powerpc64-di -pevent-modules-6.6.15-powerpc64-di -pext4-modules-6.6.15-powerpc64-di -pf2fs-modules-6.6.15-powerpc64-di -pfancontrol-modules-6.6.15-powerpc64-di -pfat-modules-6.6.15-powerpc64-di -pfb-modules-6.6.15-powerpc64-di -pfirewire-core-modules-6.6.15-powerpc64-di -phfs-modules-6.6.15-powerpc64-di -phypervisor-modules-6.6.15-powerpc64-di -pi2c-modules-6.6.15-powerpc64-di -pinput-modules-6.6.15-powerpc64-di -pisofs-modules-6.6.15-powerpc64-di -pjfs-modules-6.6.15-powerpc64-di -pkernel-image-6.6.15-powerpc64-di -ploop-modules-6.6.15-powerpc64-di -pmd-modules-6.6.15-powerpc64-di -pmmc-core-modules-6.6.15-powerpc64-di -pmouse-modules-6.6.15-powerpc64-di -pmtd-core-modules-6.6.15-powerpc64-di -pmultipath-modules-6.6.15-powerpc64-di -pnbd-modules-6.6.15-powerpc64-di -pnic-modules-6.6.15-powerpc64-di -pnic-pcmcia-modules-6.6.15-powerpc64-di -pnic-shared-modules-6.6.15-powerpc64-di -pnic-usb-modules-6.6.15-powerpc64-di -pnic-wireless-modules-6.6.15-powerpc64-di -ppata-modules-6.6.15-powerpc64-di -ppcmcia-modules-6.6.15-powerpc64-di -ppcmcia-storage-modules-6.6.15-powerpc64-di -pppp-modules-6.6.15-powerpc64-di -psata-modules-6.6.15-powerpc64-di -pscsi-core-modules-6.6.15-powerpc64-di -pscsi-modules-6.6.15-powerpc64-di -pscsi-nic-modules-6.6.15-powerpc64-di -pserial-modules-6.6.15-powerpc64-di -psquashfs-modules-6.6.15-powerpc64-di -pudf-modules-6.6.15-powerpc64-di -puinput-modules-6.6.15-powerpc64-di -pusb-modules-6.6.15-powerpc64-di -pusb-serial-modules-6.6.15-powerpc64-di -pusb-storage-modules-6.6.15-powerpc64-di -pxfs-modules-6.6.15-powerpc64-di' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-powerpc64-di' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-powerpc64-di ata-modules-6.7.7-powerpc64-di btrfs-modules-6.7.7-powerpc64-di cdrom-core-modules-6.7.7-powerpc64-di crc-modules-6.7.7-powerpc64-di crypto-dm-modules-6.7.7-powerpc64-di crypto-modules-6.7.7-powerpc64-di event-modules-6.7.7-powerpc64-di ext4-modules-6.7.7-powerpc64-di f2fs-modules-6.7.7-powerpc64-di fancontrol-modules-6.7.7-powerpc64-di fat-modules-6.7.7-powerpc64-di fb-modules-6.7.7-powerpc64-di firewire-core-modules-6.7.7-powerpc64-di hfs-modules-6.7.7-powerpc64-di hypervisor-modules-6.7.7-powerpc64-di i2c-modules-6.7.7-powerpc64-di input-modules-6.7.7-powerpc64-di isofs-modules-6.7.7-powerpc64-di jfs-modules-6.7.7-powerpc64-di kernel-image-6.7.7-powerpc64-di loop-modules-6.7.7-powerpc64-di md-modules-6.7.7-powerpc64-di mmc-core-modules-6.7.7-powerpc64-di mouse-modules-6.7.7-powerpc64-di mtd-core-modules-6.7.7-powerpc64-di multipath-modules-6.7.7-powerpc64-di nbd-modules-6.7.7-powerpc64-di nic-modules-6.7.7-powerpc64-di nic-pcmcia-modules-6.7.7-powerpc64-di nic-shared-modules-6.7.7-powerpc64-di nic-usb-modules-6.7.7-powerpc64-di nic-wireless-modules-6.7.7-powerpc64-di pata-modules-6.7.7-powerpc64-di pcmcia-modules-6.7.7-powerpc64-di pcmcia-storage-modules-6.7.7-powerpc64-di ppp-modules-6.7.7-powerpc64-di sata-modules-6.7.7-powerpc64-di scsi-core-modules-6.7.7-powerpc64-di scsi-modules-6.7.7-powerpc64-di scsi-nic-modules-6.7.7-powerpc64-di serial-modules-6.7.7-powerpc64-di squashfs-modules-6.7.7-powerpc64-di udf-modules-6.7.7-powerpc64-di uinput-modules-6.7.7-powerpc64-di usb-modules-6.7.7-powerpc64-di usb-serial-modules-6.7.7-powerpc64-di usb-storage-modules-6.7.7-powerpc64-di xfs-modules-6.7.7-powerpc64-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-powerpc64-di -pata-modules-6.7.7-powerpc64-di -pbtrfs-modules-6.7.7-powerpc64-di -pcdrom-core-modules-6.7.7-powerpc64-di -pcrc-modules-6.7.7-powerpc64-di -pcrypto-dm-modules-6.7.7-powerpc64-di -pcrypto-modules-6.7.7-powerpc64-di -pevent-modules-6.7.7-powerpc64-di -pext4-modules-6.7.7-powerpc64-di -pf2fs-modules-6.7.7-powerpc64-di -pfancontrol-modules-6.7.7-powerpc64-di -pfat-modules-6.7.7-powerpc64-di -pfb-modules-6.7.7-powerpc64-di -pfirewire-core-modules-6.7.7-powerpc64-di -phfs-modules-6.7.7-powerpc64-di -phypervisor-modules-6.7.7-powerpc64-di -pi2c-modules-6.7.7-powerpc64-di -pinput-modules-6.7.7-powerpc64-di -pisofs-modules-6.7.7-powerpc64-di -pjfs-modules-6.7.7-powerpc64-di -pkernel-image-6.7.7-powerpc64-di -ploop-modules-6.7.7-powerpc64-di -pmd-modules-6.7.7-powerpc64-di -pmmc-core-modules-6.7.7-powerpc64-di -pmouse-modules-6.7.7-powerpc64-di -pmtd-core-modules-6.7.7-powerpc64-di -pmultipath-modules-6.7.7-powerpc64-di -pnbd-modules-6.7.7-powerpc64-di -pnic-modules-6.7.7-powerpc64-di -pnic-pcmcia-modules-6.7.7-powerpc64-di -pnic-shared-modules-6.7.7-powerpc64-di -pnic-usb-modules-6.7.7-powerpc64-di -pnic-wireless-modules-6.7.7-powerpc64-di -ppata-modules-6.7.7-powerpc64-di -ppcmcia-modules-6.7.7-powerpc64-di -ppcmcia-storage-modules-6.7.7-powerpc64-di -pppp-modules-6.7.7-powerpc64-di -psata-modules-6.7.7-powerpc64-di -pscsi-core-modules-6.7.7-powerpc64-di -pscsi-modules-6.7.7-powerpc64-di -pscsi-nic-modules-6.7.7-powerpc64-di -pserial-modules-6.7.7-powerpc64-di -psquashfs-modules-6.7.7-powerpc64-di -pudf-modules-6.7.7-powerpc64-di -puinput-modules-6.7.7-powerpc64-di -pusb-modules-6.7.7-powerpc64-di -pusb-serial-modules-6.7.7-powerpc64-di -pusb-storage-modules-6.7.7-powerpc64-di -pxfs-modules-6.7.7-powerpc64-di' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-powerpc64-di' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_powerpc_none_powerpc64_meta: - $(call if_package, linux-image-powerpc64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc64' DH_OPTIONS='-plinux-image-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-powerpc64' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-powerpc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-powerpc64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-powerpc64' DH_OPTIONS='-plinux-headers-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-powerpc64' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-headers-powerpc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-powerpc64-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc64-dbg' DH_OPTIONS='-plinux-image-powerpc64-dbg' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-powerpc64-dbg' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-powerpc64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-powerpc64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc64' DH_OPTIONS='-plinux-image-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-powerpc64' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-powerpc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-powerpc64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-powerpc64' DH_OPTIONS='-plinux-headers-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-powerpc64' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-headers-powerpc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-powerpc64-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc64-dbg' DH_OPTIONS='-plinux-image-powerpc64-dbg' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-powerpc64-dbg' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-powerpc64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_powerpc_none_powerpc_headers: - $(call if_package, linux-headers-6.6.15-powerpc, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-powerpc' DH_OPTIONS='-plinux-headers-6.6.15-powerpc' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' PACKAGE_NAME='linux-headers-6.6.15-powerpc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-powerpc, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-powerpc' DH_OPTIONS='-plinux-headers-6.7.7-powerpc' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' PACKAGE_NAME='linux-headers-6.7.7-powerpc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_powerpc_none_powerpc_image: - $(call if_package, linux-image-6.6.15-powerpc, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-powerpc' DH_OPTIONS='-plinux-image-6.6.15-powerpc' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' PACKAGE_NAME='linux-image-6.6.15-powerpc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-powerpc, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-powerpc' DH_OPTIONS='-plinux-image-6.7.7-powerpc' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' PACKAGE_NAME='linux-image-6.7.7-powerpc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_powerpc_none_powerpc_image-dbg: - $(call if_package, linux-image-6.6.15-powerpc-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-powerpc-dbg' DH_OPTIONS='-plinux-image-6.6.15-powerpc-dbg' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' PACKAGE_NAME='linux-image-6.6.15-powerpc-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-powerpc-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-powerpc-dbg' DH_OPTIONS='-plinux-image-6.7.7-powerpc-dbg' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' PACKAGE_NAME='linux-image-6.7.7-powerpc-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_powerpc_none_powerpc_installer: - $(call if_package, affs-modules-6.6.15-powerpc-di ata-modules-6.6.15-powerpc-di btrfs-modules-6.6.15-powerpc-di cdrom-core-modules-6.6.15-powerpc-di crc-modules-6.6.15-powerpc-di crypto-dm-modules-6.6.15-powerpc-di crypto-modules-6.6.15-powerpc-di event-modules-6.6.15-powerpc-di ext4-modules-6.6.15-powerpc-di f2fs-modules-6.6.15-powerpc-di fat-modules-6.6.15-powerpc-di fb-modules-6.6.15-powerpc-di firewire-core-modules-6.6.15-powerpc-di hfs-modules-6.6.15-powerpc-di input-modules-6.6.15-powerpc-di isofs-modules-6.6.15-powerpc-di jfs-modules-6.6.15-powerpc-di kernel-image-6.6.15-powerpc-di loop-modules-6.6.15-powerpc-di md-modules-6.6.15-powerpc-di mmc-core-modules-6.6.15-powerpc-di mouse-modules-6.6.15-powerpc-di multipath-modules-6.6.15-powerpc-di nbd-modules-6.6.15-powerpc-di nic-modules-6.6.15-powerpc-di nic-pcmcia-modules-6.6.15-powerpc-di nic-shared-modules-6.6.15-powerpc-di nic-usb-modules-6.6.15-powerpc-di nic-wireless-modules-6.6.15-powerpc-di pata-modules-6.6.15-powerpc-di pcmcia-modules-6.6.15-powerpc-di pcmcia-storage-modules-6.6.15-powerpc-di ppp-modules-6.6.15-powerpc-di sata-modules-6.6.15-powerpc-di scsi-core-modules-6.6.15-powerpc-di scsi-modules-6.6.15-powerpc-di scsi-nic-modules-6.6.15-powerpc-di serial-modules-6.6.15-powerpc-di squashfs-modules-6.6.15-powerpc-di udf-modules-6.6.15-powerpc-di uinput-modules-6.6.15-powerpc-di usb-modules-6.6.15-powerpc-di usb-serial-modules-6.6.15-powerpc-di usb-storage-modules-6.6.15-powerpc-di xfs-modules-6.6.15-powerpc-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-powerpc-di -pata-modules-6.6.15-powerpc-di -pbtrfs-modules-6.6.15-powerpc-di -pcdrom-core-modules-6.6.15-powerpc-di -pcrc-modules-6.6.15-powerpc-di -pcrypto-dm-modules-6.6.15-powerpc-di -pcrypto-modules-6.6.15-powerpc-di -pevent-modules-6.6.15-powerpc-di -pext4-modules-6.6.15-powerpc-di -pf2fs-modules-6.6.15-powerpc-di -pfat-modules-6.6.15-powerpc-di -pfb-modules-6.6.15-powerpc-di -pfirewire-core-modules-6.6.15-powerpc-di -phfs-modules-6.6.15-powerpc-di -pinput-modules-6.6.15-powerpc-di -pisofs-modules-6.6.15-powerpc-di -pjfs-modules-6.6.15-powerpc-di -pkernel-image-6.6.15-powerpc-di -ploop-modules-6.6.15-powerpc-di -pmd-modules-6.6.15-powerpc-di -pmmc-core-modules-6.6.15-powerpc-di -pmouse-modules-6.6.15-powerpc-di -pmultipath-modules-6.6.15-powerpc-di -pnbd-modules-6.6.15-powerpc-di -pnic-modules-6.6.15-powerpc-di -pnic-pcmcia-modules-6.6.15-powerpc-di -pnic-shared-modules-6.6.15-powerpc-di -pnic-usb-modules-6.6.15-powerpc-di -pnic-wireless-modules-6.6.15-powerpc-di -ppata-modules-6.6.15-powerpc-di -ppcmcia-modules-6.6.15-powerpc-di -ppcmcia-storage-modules-6.6.15-powerpc-di -pppp-modules-6.6.15-powerpc-di -psata-modules-6.6.15-powerpc-di -pscsi-core-modules-6.6.15-powerpc-di -pscsi-modules-6.6.15-powerpc-di -pscsi-nic-modules-6.6.15-powerpc-di -pserial-modules-6.6.15-powerpc-di -psquashfs-modules-6.6.15-powerpc-di -pudf-modules-6.6.15-powerpc-di -puinput-modules-6.6.15-powerpc-di -pusb-modules-6.6.15-powerpc-di -pusb-serial-modules-6.6.15-powerpc-di -pusb-storage-modules-6.6.15-powerpc-di -pxfs-modules-6.6.15-powerpc-di' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-powerpc-di' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-powerpc-di ata-modules-6.7.7-powerpc-di btrfs-modules-6.7.7-powerpc-di cdrom-core-modules-6.7.7-powerpc-di crc-modules-6.7.7-powerpc-di crypto-dm-modules-6.7.7-powerpc-di crypto-modules-6.7.7-powerpc-di event-modules-6.7.7-powerpc-di ext4-modules-6.7.7-powerpc-di f2fs-modules-6.7.7-powerpc-di fat-modules-6.7.7-powerpc-di fb-modules-6.7.7-powerpc-di firewire-core-modules-6.7.7-powerpc-di hfs-modules-6.7.7-powerpc-di input-modules-6.7.7-powerpc-di isofs-modules-6.7.7-powerpc-di jfs-modules-6.7.7-powerpc-di kernel-image-6.7.7-powerpc-di loop-modules-6.7.7-powerpc-di md-modules-6.7.7-powerpc-di mmc-core-modules-6.7.7-powerpc-di mouse-modules-6.7.7-powerpc-di multipath-modules-6.7.7-powerpc-di nbd-modules-6.7.7-powerpc-di nic-modules-6.7.7-powerpc-di nic-pcmcia-modules-6.7.7-powerpc-di nic-shared-modules-6.7.7-powerpc-di nic-usb-modules-6.7.7-powerpc-di nic-wireless-modules-6.7.7-powerpc-di pata-modules-6.7.7-powerpc-di pcmcia-modules-6.7.7-powerpc-di pcmcia-storage-modules-6.7.7-powerpc-di ppp-modules-6.7.7-powerpc-di sata-modules-6.7.7-powerpc-di scsi-core-modules-6.7.7-powerpc-di scsi-modules-6.7.7-powerpc-di scsi-nic-modules-6.7.7-powerpc-di serial-modules-6.7.7-powerpc-di squashfs-modules-6.7.7-powerpc-di udf-modules-6.7.7-powerpc-di uinput-modules-6.7.7-powerpc-di usb-modules-6.7.7-powerpc-di usb-serial-modules-6.7.7-powerpc-di usb-storage-modules-6.7.7-powerpc-di xfs-modules-6.7.7-powerpc-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-powerpc-di -pata-modules-6.7.7-powerpc-di -pbtrfs-modules-6.7.7-powerpc-di -pcdrom-core-modules-6.7.7-powerpc-di -pcrc-modules-6.7.7-powerpc-di -pcrypto-dm-modules-6.7.7-powerpc-di -pcrypto-modules-6.7.7-powerpc-di -pevent-modules-6.7.7-powerpc-di -pext4-modules-6.7.7-powerpc-di -pf2fs-modules-6.7.7-powerpc-di -pfat-modules-6.7.7-powerpc-di -pfb-modules-6.7.7-powerpc-di -pfirewire-core-modules-6.7.7-powerpc-di -phfs-modules-6.7.7-powerpc-di -pinput-modules-6.7.7-powerpc-di -pisofs-modules-6.7.7-powerpc-di -pjfs-modules-6.7.7-powerpc-di -pkernel-image-6.7.7-powerpc-di -ploop-modules-6.7.7-powerpc-di -pmd-modules-6.7.7-powerpc-di -pmmc-core-modules-6.7.7-powerpc-di -pmouse-modules-6.7.7-powerpc-di -pmultipath-modules-6.7.7-powerpc-di -pnbd-modules-6.7.7-powerpc-di -pnic-modules-6.7.7-powerpc-di -pnic-pcmcia-modules-6.7.7-powerpc-di -pnic-shared-modules-6.7.7-powerpc-di -pnic-usb-modules-6.7.7-powerpc-di -pnic-wireless-modules-6.7.7-powerpc-di -ppata-modules-6.7.7-powerpc-di -ppcmcia-modules-6.7.7-powerpc-di -ppcmcia-storage-modules-6.7.7-powerpc-di -pppp-modules-6.7.7-powerpc-di -psata-modules-6.7.7-powerpc-di -pscsi-core-modules-6.7.7-powerpc-di -pscsi-modules-6.7.7-powerpc-di -pscsi-nic-modules-6.7.7-powerpc-di -pserial-modules-6.7.7-powerpc-di -psquashfs-modules-6.7.7-powerpc-di -pudf-modules-6.7.7-powerpc-di -puinput-modules-6.7.7-powerpc-di -pusb-modules-6.7.7-powerpc-di -pusb-serial-modules-6.7.7-powerpc-di -pusb-storage-modules-6.7.7-powerpc-di -pxfs-modules-6.7.7-powerpc-di' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-powerpc-di' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_powerpc_none_powerpc_meta: - $(call if_package, linux-image-powerpc, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc' DH_OPTIONS='-plinux-image-powerpc' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-powerpc' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' PACKAGE_NAME='linux-image-powerpc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-powerpc, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-powerpc' DH_OPTIONS='-plinux-headers-powerpc' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-powerpc' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' PACKAGE_NAME='linux-headers-powerpc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-powerpc-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc-dbg' DH_OPTIONS='-plinux-image-powerpc-dbg' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-powerpc-dbg' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' PACKAGE_NAME='linux-image-powerpc-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-powerpc, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc' DH_OPTIONS='-plinux-image-powerpc' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-powerpc' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' PACKAGE_NAME='linux-image-powerpc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-powerpc, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-powerpc' DH_OPTIONS='-plinux-headers-powerpc' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-powerpc' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' PACKAGE_NAME='linux-headers-powerpc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-powerpc-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='powerpc' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc-dbg' DH_OPTIONS='-plinux-image-powerpc-dbg' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-powerpc-dbg' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' PACKAGE_NAME='linux-image-powerpc-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_powerpc_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.6.15' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.7.7' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_powerpc_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.6.15' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='powerpc' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.7.7' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='powerpc' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_powerpc_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.6.15' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='powerpc' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.7.7' ARCH='powerpc' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='powerpc' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_ppc64:setup_ppc64_bpftool setup_ppc64_config setup_ppc64_cpupower setup_ppc64_hyperv-daemons setup_ppc64_kbuild setup_ppc64_none setup_ppc64_perf setup_ppc64_rtla setup_ppc64_usbip setup_ppc64_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.6.15' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='powerpc' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.7.7' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='powerpc' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_ppc64_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real setup_config ABINAME='6.6.15' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real setup_config ABINAME='6.7.7' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_ppc64_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.6.15' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='powerpc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.7.7' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='powerpc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_ppc64_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.6.15' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='powerpc' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.7.7' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='powerpc' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_ppc64_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.6.15' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.7.7' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_ppc64_none:setup_ppc64_none_powerpc64 setup_ppc64_none_powerpc64:setup_ppc64_none_powerpc64_headers setup_ppc64_none_powerpc64_image setup_ppc64_none_powerpc64_image-dbg setup_ppc64_none_powerpc64_installer setup_ppc64_none_powerpc64_meta setup_ppc64_none_powerpc64_headers: - $(call if_package, linux-headers-6.6.15-powerpc64, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-powerpc64' DH_OPTIONS='-plinux-headers-6.6.15-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-headers-6.6.15-powerpc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-powerpc64, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-powerpc64' DH_OPTIONS='-plinux-headers-6.7.7-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-headers-6.7.7-powerpc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_ppc64_none_powerpc64_image: - $(call if_package, linux-image-6.6.15-powerpc64, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-powerpc64' DH_OPTIONS='-plinux-image-6.6.15-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-6.6.15-powerpc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-powerpc64, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-powerpc64' DH_OPTIONS='-plinux-image-6.7.7-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-6.7.7-powerpc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_ppc64_none_powerpc64_image-dbg: - $(call if_package, linux-image-6.6.15-powerpc64-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-powerpc64-dbg' DH_OPTIONS='-plinux-image-6.6.15-powerpc64-dbg' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-6.6.15-powerpc64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-powerpc64-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-powerpc64-dbg' DH_OPTIONS='-plinux-image-6.7.7-powerpc64-dbg' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-6.7.7-powerpc64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_ppc64_none_powerpc64_installer: - $(call if_package, affs-modules-6.6.15-powerpc64-di ata-modules-6.6.15-powerpc64-di btrfs-modules-6.6.15-powerpc64-di cdrom-core-modules-6.6.15-powerpc64-di crc-modules-6.6.15-powerpc64-di crypto-dm-modules-6.6.15-powerpc64-di crypto-modules-6.6.15-powerpc64-di event-modules-6.6.15-powerpc64-di ext4-modules-6.6.15-powerpc64-di f2fs-modules-6.6.15-powerpc64-di fancontrol-modules-6.6.15-powerpc64-di fat-modules-6.6.15-powerpc64-di fb-modules-6.6.15-powerpc64-di firewire-core-modules-6.6.15-powerpc64-di hfs-modules-6.6.15-powerpc64-di hypervisor-modules-6.6.15-powerpc64-di i2c-modules-6.6.15-powerpc64-di input-modules-6.6.15-powerpc64-di isofs-modules-6.6.15-powerpc64-di jfs-modules-6.6.15-powerpc64-di kernel-image-6.6.15-powerpc64-di loop-modules-6.6.15-powerpc64-di md-modules-6.6.15-powerpc64-di mmc-core-modules-6.6.15-powerpc64-di mouse-modules-6.6.15-powerpc64-di mtd-core-modules-6.6.15-powerpc64-di multipath-modules-6.6.15-powerpc64-di nbd-modules-6.6.15-powerpc64-di nic-modules-6.6.15-powerpc64-di nic-pcmcia-modules-6.6.15-powerpc64-di nic-shared-modules-6.6.15-powerpc64-di nic-usb-modules-6.6.15-powerpc64-di nic-wireless-modules-6.6.15-powerpc64-di pata-modules-6.6.15-powerpc64-di pcmcia-modules-6.6.15-powerpc64-di pcmcia-storage-modules-6.6.15-powerpc64-di ppp-modules-6.6.15-powerpc64-di sata-modules-6.6.15-powerpc64-di scsi-core-modules-6.6.15-powerpc64-di scsi-modules-6.6.15-powerpc64-di scsi-nic-modules-6.6.15-powerpc64-di serial-modules-6.6.15-powerpc64-di squashfs-modules-6.6.15-powerpc64-di udf-modules-6.6.15-powerpc64-di uinput-modules-6.6.15-powerpc64-di usb-modules-6.6.15-powerpc64-di usb-serial-modules-6.6.15-powerpc64-di usb-storage-modules-6.6.15-powerpc64-di xfs-modules-6.6.15-powerpc64-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.6.15' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.6.15-powerpc64-di -pata-modules-6.6.15-powerpc64-di -pbtrfs-modules-6.6.15-powerpc64-di -pcdrom-core-modules-6.6.15-powerpc64-di -pcrc-modules-6.6.15-powerpc64-di -pcrypto-dm-modules-6.6.15-powerpc64-di -pcrypto-modules-6.6.15-powerpc64-di -pevent-modules-6.6.15-powerpc64-di -pext4-modules-6.6.15-powerpc64-di -pf2fs-modules-6.6.15-powerpc64-di -pfancontrol-modules-6.6.15-powerpc64-di -pfat-modules-6.6.15-powerpc64-di -pfb-modules-6.6.15-powerpc64-di -pfirewire-core-modules-6.6.15-powerpc64-di -phfs-modules-6.6.15-powerpc64-di -phypervisor-modules-6.6.15-powerpc64-di -pi2c-modules-6.6.15-powerpc64-di -pinput-modules-6.6.15-powerpc64-di -pisofs-modules-6.6.15-powerpc64-di -pjfs-modules-6.6.15-powerpc64-di -pkernel-image-6.6.15-powerpc64-di -ploop-modules-6.6.15-powerpc64-di -pmd-modules-6.6.15-powerpc64-di -pmmc-core-modules-6.6.15-powerpc64-di -pmouse-modules-6.6.15-powerpc64-di -pmtd-core-modules-6.6.15-powerpc64-di -pmultipath-modules-6.6.15-powerpc64-di -pnbd-modules-6.6.15-powerpc64-di -pnic-modules-6.6.15-powerpc64-di -pnic-pcmcia-modules-6.6.15-powerpc64-di -pnic-shared-modules-6.6.15-powerpc64-di -pnic-usb-modules-6.6.15-powerpc64-di -pnic-wireless-modules-6.6.15-powerpc64-di -ppata-modules-6.6.15-powerpc64-di -ppcmcia-modules-6.6.15-powerpc64-di -ppcmcia-storage-modules-6.6.15-powerpc64-di -pppp-modules-6.6.15-powerpc64-di -psata-modules-6.6.15-powerpc64-di -pscsi-core-modules-6.6.15-powerpc64-di -pscsi-modules-6.6.15-powerpc64-di -pscsi-nic-modules-6.6.15-powerpc64-di -pserial-modules-6.6.15-powerpc64-di -psquashfs-modules-6.6.15-powerpc64-di -pudf-modules-6.6.15-powerpc64-di -puinput-modules-6.6.15-powerpc64-di -pusb-modules-6.6.15-powerpc64-di -pusb-serial-modules-6.6.15-powerpc64-di -pusb-storage-modules-6.6.15-powerpc64-di -pxfs-modules-6.6.15-powerpc64-di' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-powerpc64-di' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, affs-modules-6.7.7-powerpc64-di ata-modules-6.7.7-powerpc64-di btrfs-modules-6.7.7-powerpc64-di cdrom-core-modules-6.7.7-powerpc64-di crc-modules-6.7.7-powerpc64-di crypto-dm-modules-6.7.7-powerpc64-di crypto-modules-6.7.7-powerpc64-di event-modules-6.7.7-powerpc64-di ext4-modules-6.7.7-powerpc64-di f2fs-modules-6.7.7-powerpc64-di fancontrol-modules-6.7.7-powerpc64-di fat-modules-6.7.7-powerpc64-di fb-modules-6.7.7-powerpc64-di firewire-core-modules-6.7.7-powerpc64-di hfs-modules-6.7.7-powerpc64-di hypervisor-modules-6.7.7-powerpc64-di i2c-modules-6.7.7-powerpc64-di input-modules-6.7.7-powerpc64-di isofs-modules-6.7.7-powerpc64-di jfs-modules-6.7.7-powerpc64-di kernel-image-6.7.7-powerpc64-di loop-modules-6.7.7-powerpc64-di md-modules-6.7.7-powerpc64-di mmc-core-modules-6.7.7-powerpc64-di mouse-modules-6.7.7-powerpc64-di mtd-core-modules-6.7.7-powerpc64-di multipath-modules-6.7.7-powerpc64-di nbd-modules-6.7.7-powerpc64-di nic-modules-6.7.7-powerpc64-di nic-pcmcia-modules-6.7.7-powerpc64-di nic-shared-modules-6.7.7-powerpc64-di nic-usb-modules-6.7.7-powerpc64-di nic-wireless-modules-6.7.7-powerpc64-di pata-modules-6.7.7-powerpc64-di pcmcia-modules-6.7.7-powerpc64-di pcmcia-storage-modules-6.7.7-powerpc64-di ppp-modules-6.7.7-powerpc64-di sata-modules-6.7.7-powerpc64-di scsi-core-modules-6.7.7-powerpc64-di scsi-modules-6.7.7-powerpc64-di scsi-nic-modules-6.7.7-powerpc64-di serial-modules-6.7.7-powerpc64-di squashfs-modules-6.7.7-powerpc64-di udf-modules-6.7.7-powerpc64-di uinput-modules-6.7.7-powerpc64-di usb-modules-6.7.7-powerpc64-di usb-serial-modules-6.7.7-powerpc64-di usb-storage-modules-6.7.7-powerpc64-di xfs-modules-6.7.7-powerpc64-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.7.7' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-paffs-modules-6.7.7-powerpc64-di -pata-modules-6.7.7-powerpc64-di -pbtrfs-modules-6.7.7-powerpc64-di -pcdrom-core-modules-6.7.7-powerpc64-di -pcrc-modules-6.7.7-powerpc64-di -pcrypto-dm-modules-6.7.7-powerpc64-di -pcrypto-modules-6.7.7-powerpc64-di -pevent-modules-6.7.7-powerpc64-di -pext4-modules-6.7.7-powerpc64-di -pf2fs-modules-6.7.7-powerpc64-di -pfancontrol-modules-6.7.7-powerpc64-di -pfat-modules-6.7.7-powerpc64-di -pfb-modules-6.7.7-powerpc64-di -pfirewire-core-modules-6.7.7-powerpc64-di -phfs-modules-6.7.7-powerpc64-di -phypervisor-modules-6.7.7-powerpc64-di -pi2c-modules-6.7.7-powerpc64-di -pinput-modules-6.7.7-powerpc64-di -pisofs-modules-6.7.7-powerpc64-di -pjfs-modules-6.7.7-powerpc64-di -pkernel-image-6.7.7-powerpc64-di -ploop-modules-6.7.7-powerpc64-di -pmd-modules-6.7.7-powerpc64-di -pmmc-core-modules-6.7.7-powerpc64-di -pmouse-modules-6.7.7-powerpc64-di -pmtd-core-modules-6.7.7-powerpc64-di -pmultipath-modules-6.7.7-powerpc64-di -pnbd-modules-6.7.7-powerpc64-di -pnic-modules-6.7.7-powerpc64-di -pnic-pcmcia-modules-6.7.7-powerpc64-di -pnic-shared-modules-6.7.7-powerpc64-di -pnic-usb-modules-6.7.7-powerpc64-di -pnic-wireless-modules-6.7.7-powerpc64-di -ppata-modules-6.7.7-powerpc64-di -ppcmcia-modules-6.7.7-powerpc64-di -ppcmcia-storage-modules-6.7.7-powerpc64-di -pppp-modules-6.7.7-powerpc64-di -psata-modules-6.7.7-powerpc64-di -pscsi-core-modules-6.7.7-powerpc64-di -pscsi-modules-6.7.7-powerpc64-di -pscsi-nic-modules-6.7.7-powerpc64-di -pserial-modules-6.7.7-powerpc64-di -psquashfs-modules-6.7.7-powerpc64-di -pudf-modules-6.7.7-powerpc64-di -puinput-modules-6.7.7-powerpc64-di -pusb-modules-6.7.7-powerpc64-di -pusb-serial-modules-6.7.7-powerpc64-di -pusb-storage-modules-6.7.7-powerpc64-di -pxfs-modules-6.7.7-powerpc64-di' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-powerpc64-di' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_ppc64_none_powerpc64_meta: - $(call if_package, linux-image-powerpc64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc64' DH_OPTIONS='-plinux-image-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-powerpc64' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-powerpc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-powerpc64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-powerpc64' DH_OPTIONS='-plinux-headers-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-powerpc64' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-headers-powerpc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-powerpc64-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc64-dbg' DH_OPTIONS='-plinux-image-powerpc64-dbg' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-powerpc64-dbg' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-powerpc64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-powerpc64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc64' DH_OPTIONS='-plinux-image-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-powerpc64' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-powerpc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-powerpc64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-powerpc64' DH_OPTIONS='-plinux-headers-powerpc64' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-powerpc64' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-headers-powerpc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-powerpc64-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='ppc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc64-dbg' DH_OPTIONS='-plinux-image-powerpc64-dbg' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-powerpc64-dbg' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-be' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' PACKAGE_NAME='linux-image-powerpc64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_ppc64_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.6.15' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.7.7' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_ppc64_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.6.15' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='powerpc' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.7.7' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='powerpc' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_ppc64_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.6.15' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='powerpc' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.7.7' ARCH='ppc64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='powerpc' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_ppc64el:setup_ppc64el_bpftool setup_ppc64el_config setup_ppc64el_cpupower setup_ppc64el_hyperv-daemons setup_ppc64el_kbuild setup_ppc64el_none setup_ppc64el_perf setup_ppc64el_rtla setup_ppc64el_usbip setup_ppc64el_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.6.15' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='powerpc' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.7.7' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='powerpc' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_ppc64el_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real setup_config ABINAME='6.6.15' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real setup_config ABINAME='6.7.7' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_ppc64el_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.6.15' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='powerpc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.7.7' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='powerpc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_ppc64el_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.6.15' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='powerpc' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.7.7' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='powerpc' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_ppc64el_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.6.15' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.7.7' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_ppc64el_none:setup_ppc64el_none_powerpc64le setup_ppc64el_none_powerpc64le:setup_ppc64el_none_powerpc64le_headers setup_ppc64el_none_powerpc64le_image setup_ppc64el_none_powerpc64le_image-dbg setup_ppc64el_none_powerpc64le_installer setup_ppc64el_none_powerpc64le_meta setup_ppc64el_none_powerpc64le_headers: - $(call if_package, linux-headers-6.6.15-powerpc64le, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-powerpc64le' DH_OPTIONS='-plinux-headers-6.6.15-powerpc64le' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' PACKAGE_NAME='linux-headers-6.6.15-powerpc64le' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-powerpc64le, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-powerpc64le' DH_OPTIONS='-plinux-headers-6.7.7-powerpc64le' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' PACKAGE_NAME='linux-headers-6.7.7-powerpc64le' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_ppc64el_none_powerpc64le_image: - $(call if_package, linux-image-6.6.15-powerpc64le, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-powerpc64le' DH_OPTIONS='-plinux-image-6.6.15-powerpc64le' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' PACKAGE_NAME='linux-image-6.6.15-powerpc64le' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-powerpc64le, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-powerpc64le' DH_OPTIONS='-plinux-image-6.7.7-powerpc64le' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' PACKAGE_NAME='linux-image-6.7.7-powerpc64le' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_ppc64el_none_powerpc64le_image-dbg: - $(call if_package, linux-image-6.6.15-powerpc64le-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-powerpc64le-dbg' DH_OPTIONS='-plinux-image-6.6.15-powerpc64le-dbg' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' PACKAGE_NAME='linux-image-6.6.15-powerpc64le-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-powerpc64le-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-powerpc64le-dbg' DH_OPTIONS='-plinux-image-6.7.7-powerpc64le-dbg' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' PACKAGE_NAME='linux-image-6.7.7-powerpc64le-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_ppc64el_none_powerpc64le_installer: - $(call if_package, ata-modules-6.6.15-powerpc64le-di btrfs-modules-6.6.15-powerpc64le-di cdrom-core-modules-6.6.15-powerpc64le-di crc-modules-6.6.15-powerpc64le-di crypto-dm-modules-6.6.15-powerpc64le-di crypto-modules-6.6.15-powerpc64le-di event-modules-6.6.15-powerpc64le-di ext4-modules-6.6.15-powerpc64le-di f2fs-modules-6.6.15-powerpc64le-di fancontrol-modules-6.6.15-powerpc64le-di fat-modules-6.6.15-powerpc64le-di fb-modules-6.6.15-powerpc64le-di firewire-core-modules-6.6.15-powerpc64le-di hypervisor-modules-6.6.15-powerpc64le-di i2c-modules-6.6.15-powerpc64le-di input-modules-6.6.15-powerpc64le-di isofs-modules-6.6.15-powerpc64le-di jfs-modules-6.6.15-powerpc64le-di kernel-image-6.6.15-powerpc64le-di loop-modules-6.6.15-powerpc64le-di md-modules-6.6.15-powerpc64le-di mouse-modules-6.6.15-powerpc64le-di mtd-core-modules-6.6.15-powerpc64le-di multipath-modules-6.6.15-powerpc64le-di nbd-modules-6.6.15-powerpc64le-di nic-modules-6.6.15-powerpc64le-di nic-shared-modules-6.6.15-powerpc64le-di nic-usb-modules-6.6.15-powerpc64le-di nic-wireless-modules-6.6.15-powerpc64le-di ppp-modules-6.6.15-powerpc64le-di sata-modules-6.6.15-powerpc64le-di scsi-core-modules-6.6.15-powerpc64le-di scsi-modules-6.6.15-powerpc64le-di scsi-nic-modules-6.6.15-powerpc64le-di serial-modules-6.6.15-powerpc64le-di squashfs-modules-6.6.15-powerpc64le-di udf-modules-6.6.15-powerpc64le-di uinput-modules-6.6.15-powerpc64le-di usb-modules-6.6.15-powerpc64le-di usb-serial-modules-6.6.15-powerpc64le-di usb-storage-modules-6.6.15-powerpc64le-di xfs-modules-6.6.15-powerpc64le-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.6.15' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.6.15-powerpc64le-di -pbtrfs-modules-6.6.15-powerpc64le-di -pcdrom-core-modules-6.6.15-powerpc64le-di -pcrc-modules-6.6.15-powerpc64le-di -pcrypto-dm-modules-6.6.15-powerpc64le-di -pcrypto-modules-6.6.15-powerpc64le-di -pevent-modules-6.6.15-powerpc64le-di -pext4-modules-6.6.15-powerpc64le-di -pf2fs-modules-6.6.15-powerpc64le-di -pfancontrol-modules-6.6.15-powerpc64le-di -pfat-modules-6.6.15-powerpc64le-di -pfb-modules-6.6.15-powerpc64le-di -pfirewire-core-modules-6.6.15-powerpc64le-di -phypervisor-modules-6.6.15-powerpc64le-di -pi2c-modules-6.6.15-powerpc64le-di -pinput-modules-6.6.15-powerpc64le-di -pisofs-modules-6.6.15-powerpc64le-di -pjfs-modules-6.6.15-powerpc64le-di -pkernel-image-6.6.15-powerpc64le-di -ploop-modules-6.6.15-powerpc64le-di -pmd-modules-6.6.15-powerpc64le-di -pmouse-modules-6.6.15-powerpc64le-di -pmtd-core-modules-6.6.15-powerpc64le-di -pmultipath-modules-6.6.15-powerpc64le-di -pnbd-modules-6.6.15-powerpc64le-di -pnic-modules-6.6.15-powerpc64le-di -pnic-shared-modules-6.6.15-powerpc64le-di -pnic-usb-modules-6.6.15-powerpc64le-di -pnic-wireless-modules-6.6.15-powerpc64le-di -pppp-modules-6.6.15-powerpc64le-di -psata-modules-6.6.15-powerpc64le-di -pscsi-core-modules-6.6.15-powerpc64le-di -pscsi-modules-6.6.15-powerpc64le-di -pscsi-nic-modules-6.6.15-powerpc64le-di -pserial-modules-6.6.15-powerpc64le-di -psquashfs-modules-6.6.15-powerpc64le-di -pudf-modules-6.6.15-powerpc64le-di -puinput-modules-6.6.15-powerpc64le-di -pusb-modules-6.6.15-powerpc64le-di -pusb-serial-modules-6.6.15-powerpc64le-di -pusb-storage-modules-6.6.15-powerpc64le-di -pxfs-modules-6.6.15-powerpc64le-di' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-powerpc64le-di' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, ata-modules-6.7.7-powerpc64le-di btrfs-modules-6.7.7-powerpc64le-di cdrom-core-modules-6.7.7-powerpc64le-di crc-modules-6.7.7-powerpc64le-di crypto-dm-modules-6.7.7-powerpc64le-di crypto-modules-6.7.7-powerpc64le-di event-modules-6.7.7-powerpc64le-di ext4-modules-6.7.7-powerpc64le-di f2fs-modules-6.7.7-powerpc64le-di fancontrol-modules-6.7.7-powerpc64le-di fat-modules-6.7.7-powerpc64le-di fb-modules-6.7.7-powerpc64le-di firewire-core-modules-6.7.7-powerpc64le-di hypervisor-modules-6.7.7-powerpc64le-di i2c-modules-6.7.7-powerpc64le-di input-modules-6.7.7-powerpc64le-di isofs-modules-6.7.7-powerpc64le-di jfs-modules-6.7.7-powerpc64le-di kernel-image-6.7.7-powerpc64le-di loop-modules-6.7.7-powerpc64le-di md-modules-6.7.7-powerpc64le-di mouse-modules-6.7.7-powerpc64le-di mtd-core-modules-6.7.7-powerpc64le-di multipath-modules-6.7.7-powerpc64le-di nbd-modules-6.7.7-powerpc64le-di nic-modules-6.7.7-powerpc64le-di nic-shared-modules-6.7.7-powerpc64le-di nic-usb-modules-6.7.7-powerpc64le-di nic-wireless-modules-6.7.7-powerpc64le-di ppp-modules-6.7.7-powerpc64le-di sata-modules-6.7.7-powerpc64le-di scsi-core-modules-6.7.7-powerpc64le-di scsi-modules-6.7.7-powerpc64le-di scsi-nic-modules-6.7.7-powerpc64le-di serial-modules-6.7.7-powerpc64le-di squashfs-modules-6.7.7-powerpc64le-di udf-modules-6.7.7-powerpc64le-di uinput-modules-6.7.7-powerpc64le-di usb-modules-6.7.7-powerpc64le-di usb-serial-modules-6.7.7-powerpc64le-di usb-storage-modules-6.7.7-powerpc64le-di xfs-modules-6.7.7-powerpc64le-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.7.7' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.7.7-powerpc64le-di -pbtrfs-modules-6.7.7-powerpc64le-di -pcdrom-core-modules-6.7.7-powerpc64le-di -pcrc-modules-6.7.7-powerpc64le-di -pcrypto-dm-modules-6.7.7-powerpc64le-di -pcrypto-modules-6.7.7-powerpc64le-di -pevent-modules-6.7.7-powerpc64le-di -pext4-modules-6.7.7-powerpc64le-di -pf2fs-modules-6.7.7-powerpc64le-di -pfancontrol-modules-6.7.7-powerpc64le-di -pfat-modules-6.7.7-powerpc64le-di -pfb-modules-6.7.7-powerpc64le-di -pfirewire-core-modules-6.7.7-powerpc64le-di -phypervisor-modules-6.7.7-powerpc64le-di -pi2c-modules-6.7.7-powerpc64le-di -pinput-modules-6.7.7-powerpc64le-di -pisofs-modules-6.7.7-powerpc64le-di -pjfs-modules-6.7.7-powerpc64le-di -pkernel-image-6.7.7-powerpc64le-di -ploop-modules-6.7.7-powerpc64le-di -pmd-modules-6.7.7-powerpc64le-di -pmouse-modules-6.7.7-powerpc64le-di -pmtd-core-modules-6.7.7-powerpc64le-di -pmultipath-modules-6.7.7-powerpc64le-di -pnbd-modules-6.7.7-powerpc64le-di -pnic-modules-6.7.7-powerpc64le-di -pnic-shared-modules-6.7.7-powerpc64le-di -pnic-usb-modules-6.7.7-powerpc64le-di -pnic-wireless-modules-6.7.7-powerpc64le-di -pppp-modules-6.7.7-powerpc64le-di -psata-modules-6.7.7-powerpc64le-di -pscsi-core-modules-6.7.7-powerpc64le-di -pscsi-modules-6.7.7-powerpc64le-di -pscsi-nic-modules-6.7.7-powerpc64le-di -pserial-modules-6.7.7-powerpc64le-di -psquashfs-modules-6.7.7-powerpc64le-di -pudf-modules-6.7.7-powerpc64le-di -puinput-modules-6.7.7-powerpc64le-di -pusb-modules-6.7.7-powerpc64le-di -pusb-serial-modules-6.7.7-powerpc64le-di -pusb-storage-modules-6.7.7-powerpc64le-di -pxfs-modules-6.7.7-powerpc64le-di' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-powerpc64le-di' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_ppc64el_none_powerpc64le_meta: - $(call if_package, linux-image-powerpc64le, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc64le' DH_OPTIONS='-plinux-image-powerpc64le' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-powerpc64le' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' PACKAGE_NAME='linux-image-powerpc64le' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-powerpc64le, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-powerpc64le' DH_OPTIONS='-plinux-headers-powerpc64le' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-powerpc64le' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' PACKAGE_NAME='linux-headers-powerpc64le' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-powerpc64le-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc64le-dbg' DH_OPTIONS='-plinux-image-powerpc64le-dbg' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-powerpc64le-dbg' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' PACKAGE_NAME='linux-image-powerpc64le-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-powerpc64le, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc64le' DH_OPTIONS='-plinux-image-powerpc64le' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-powerpc64le' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' PACKAGE_NAME='linux-image-powerpc64le' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-powerpc64le, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-powerpc64le' DH_OPTIONS='-plinux-headers-powerpc64le' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-powerpc64le' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' PACKAGE_NAME='linux-headers-powerpc64le' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-powerpc64le-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='ppc64el' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-powerpc64le-dbg' DH_OPTIONS='-plinux-image-powerpc64le-dbg' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-powerpc64le-dbg' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/kernelarch-powerpc/config-arch-64 debian/config/kernelarch-powerpc/config-arch-64-le' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' PACKAGE_NAME='linux-image-powerpc64le-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_ppc64el_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.6.15' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.7.7' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='powerpc' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_ppc64el_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.6.15' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='powerpc' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.7.7' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='powerpc' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_ppc64el_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.6.15' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='powerpc' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.7.7' ARCH='ppc64el' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='powerpc' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_riscv64:setup_riscv64_bpftool setup_riscv64_config setup_riscv64_cpupower setup_riscv64_hyperv-daemons setup_riscv64_kbuild setup_riscv64_none setup_riscv64_perf setup_riscv64_rtla setup_riscv64_usbip setup_riscv64_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.6.15' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='riscv' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.7.7' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='riscv' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_riscv64_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real setup_config ABINAME='6.6.15' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='riscv' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real setup_config ABINAME='6.7.7' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='riscv' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_riscv64_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.6.15' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='riscv' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.7.7' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='riscv' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_riscv64_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.6.15' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='riscv' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.7.7' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='riscv' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_riscv64_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.6.15' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='riscv' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.7.7' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='riscv' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_riscv64_none:setup_riscv64_none_riscv64 setup_riscv64_none_riscv64:setup_riscv64_none_riscv64_headers setup_riscv64_none_riscv64_image setup_riscv64_none_riscv64_image-dbg setup_riscv64_none_riscv64_installer setup_riscv64_none_riscv64_meta setup_riscv64_none_riscv64_headers: - $(call if_package, linux-headers-6.6.15-riscv64, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-riscv64' DH_OPTIONS='-plinux-headers-6.6.15-riscv64' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' PACKAGE_NAME='linux-headers-6.6.15-riscv64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-riscv64, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-riscv64' DH_OPTIONS='-plinux-headers-6.7.7-riscv64' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' PACKAGE_NAME='linux-headers-6.7.7-riscv64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_riscv64_none_riscv64_image: - $(call if_package, linux-image-6.6.15-riscv64, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-riscv64' DH_OPTIONS='-plinux-image-6.6.15-riscv64' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' PACKAGE_NAME='linux-image-6.6.15-riscv64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-riscv64, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-riscv64' DH_OPTIONS='-plinux-image-6.7.7-riscv64' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' PACKAGE_NAME='linux-image-6.7.7-riscv64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_riscv64_none_riscv64_image-dbg: - $(call if_package, linux-image-6.6.15-riscv64-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-riscv64-dbg' DH_OPTIONS='-plinux-image-6.6.15-riscv64-dbg' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' PACKAGE_NAME='linux-image-6.6.15-riscv64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-riscv64-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-riscv64-dbg' DH_OPTIONS='-plinux-image-6.7.7-riscv64-dbg' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' PACKAGE_NAME='linux-image-6.7.7-riscv64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_riscv64_none_riscv64_installer: - $(call if_package, ata-modules-6.6.15-riscv64-di btrfs-modules-6.6.15-riscv64-di cdrom-core-modules-6.6.15-riscv64-di crc-modules-6.6.15-riscv64-di crypto-dm-modules-6.6.15-riscv64-di crypto-modules-6.6.15-riscv64-di event-modules-6.6.15-riscv64-di ext4-modules-6.6.15-riscv64-di f2fs-modules-6.6.15-riscv64-di fat-modules-6.6.15-riscv64-di fb-modules-6.6.15-riscv64-di i2c-modules-6.6.15-riscv64-di input-modules-6.6.15-riscv64-di isofs-modules-6.6.15-riscv64-di jfs-modules-6.6.15-riscv64-di kernel-image-6.6.15-riscv64-di loop-modules-6.6.15-riscv64-di md-modules-6.6.15-riscv64-di mmc-core-modules-6.6.15-riscv64-di mmc-modules-6.6.15-riscv64-di mtd-core-modules-6.6.15-riscv64-di mtd-modules-6.6.15-riscv64-di multipath-modules-6.6.15-riscv64-di nbd-modules-6.6.15-riscv64-di nic-modules-6.6.15-riscv64-di nic-shared-modules-6.6.15-riscv64-di nic-usb-modules-6.6.15-riscv64-di nic-wireless-modules-6.6.15-riscv64-di pata-modules-6.6.15-riscv64-di ppp-modules-6.6.15-riscv64-di sata-modules-6.6.15-riscv64-di scsi-core-modules-6.6.15-riscv64-di scsi-modules-6.6.15-riscv64-di scsi-nic-modules-6.6.15-riscv64-di squashfs-modules-6.6.15-riscv64-di udf-modules-6.6.15-riscv64-di usb-modules-6.6.15-riscv64-di usb-serial-modules-6.6.15-riscv64-di usb-storage-modules-6.6.15-riscv64-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.6.15' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.6.15-riscv64-di -pbtrfs-modules-6.6.15-riscv64-di -pcdrom-core-modules-6.6.15-riscv64-di -pcrc-modules-6.6.15-riscv64-di -pcrypto-dm-modules-6.6.15-riscv64-di -pcrypto-modules-6.6.15-riscv64-di -pevent-modules-6.6.15-riscv64-di -pext4-modules-6.6.15-riscv64-di -pf2fs-modules-6.6.15-riscv64-di -pfat-modules-6.6.15-riscv64-di -pfb-modules-6.6.15-riscv64-di -pi2c-modules-6.6.15-riscv64-di -pinput-modules-6.6.15-riscv64-di -pisofs-modules-6.6.15-riscv64-di -pjfs-modules-6.6.15-riscv64-di -pkernel-image-6.6.15-riscv64-di -ploop-modules-6.6.15-riscv64-di -pmd-modules-6.6.15-riscv64-di -pmmc-core-modules-6.6.15-riscv64-di -pmmc-modules-6.6.15-riscv64-di -pmtd-core-modules-6.6.15-riscv64-di -pmtd-modules-6.6.15-riscv64-di -pmultipath-modules-6.6.15-riscv64-di -pnbd-modules-6.6.15-riscv64-di -pnic-modules-6.6.15-riscv64-di -pnic-shared-modules-6.6.15-riscv64-di -pnic-usb-modules-6.6.15-riscv64-di -pnic-wireless-modules-6.6.15-riscv64-di -ppata-modules-6.6.15-riscv64-di -pppp-modules-6.6.15-riscv64-di -psata-modules-6.6.15-riscv64-di -pscsi-core-modules-6.6.15-riscv64-di -pscsi-modules-6.6.15-riscv64-di -pscsi-nic-modules-6.6.15-riscv64-di -psquashfs-modules-6.6.15-riscv64-di -pudf-modules-6.6.15-riscv64-di -pusb-modules-6.6.15-riscv64-di -pusb-serial-modules-6.6.15-riscv64-di -pusb-storage-modules-6.6.15-riscv64-di' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-riscv64-di' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, ata-modules-6.7.7-riscv64-di btrfs-modules-6.7.7-riscv64-di cdrom-core-modules-6.7.7-riscv64-di crc-modules-6.7.7-riscv64-di crypto-dm-modules-6.7.7-riscv64-di crypto-modules-6.7.7-riscv64-di efi-modules-6.7.7-riscv64-di event-modules-6.7.7-riscv64-di ext4-modules-6.7.7-riscv64-di f2fs-modules-6.7.7-riscv64-di fat-modules-6.7.7-riscv64-di fb-modules-6.7.7-riscv64-di i2c-modules-6.7.7-riscv64-di input-modules-6.7.7-riscv64-di isofs-modules-6.7.7-riscv64-di jfs-modules-6.7.7-riscv64-di kernel-image-6.7.7-riscv64-di loop-modules-6.7.7-riscv64-di md-modules-6.7.7-riscv64-di mmc-core-modules-6.7.7-riscv64-di mmc-modules-6.7.7-riscv64-di mtd-core-modules-6.7.7-riscv64-di mtd-modules-6.7.7-riscv64-di multipath-modules-6.7.7-riscv64-di nbd-modules-6.7.7-riscv64-di nic-modules-6.7.7-riscv64-di nic-shared-modules-6.7.7-riscv64-di nic-usb-modules-6.7.7-riscv64-di nic-wireless-modules-6.7.7-riscv64-di pata-modules-6.7.7-riscv64-di ppp-modules-6.7.7-riscv64-di sata-modules-6.7.7-riscv64-di scsi-core-modules-6.7.7-riscv64-di scsi-modules-6.7.7-riscv64-di scsi-nic-modules-6.7.7-riscv64-di squashfs-modules-6.7.7-riscv64-di udf-modules-6.7.7-riscv64-di usb-modules-6.7.7-riscv64-di usb-serial-modules-6.7.7-riscv64-di usb-storage-modules-6.7.7-riscv64-di xfs-modules-6.7.7-riscv64-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.7.7' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.7.7-riscv64-di -pbtrfs-modules-6.7.7-riscv64-di -pcdrom-core-modules-6.7.7-riscv64-di -pcrc-modules-6.7.7-riscv64-di -pcrypto-dm-modules-6.7.7-riscv64-di -pcrypto-modules-6.7.7-riscv64-di -pefi-modules-6.7.7-riscv64-di -pevent-modules-6.7.7-riscv64-di -pext4-modules-6.7.7-riscv64-di -pf2fs-modules-6.7.7-riscv64-di -pfat-modules-6.7.7-riscv64-di -pfb-modules-6.7.7-riscv64-di -pi2c-modules-6.7.7-riscv64-di -pinput-modules-6.7.7-riscv64-di -pisofs-modules-6.7.7-riscv64-di -pjfs-modules-6.7.7-riscv64-di -pkernel-image-6.7.7-riscv64-di -ploop-modules-6.7.7-riscv64-di -pmd-modules-6.7.7-riscv64-di -pmmc-core-modules-6.7.7-riscv64-di -pmmc-modules-6.7.7-riscv64-di -pmtd-core-modules-6.7.7-riscv64-di -pmtd-modules-6.7.7-riscv64-di -pmultipath-modules-6.7.7-riscv64-di -pnbd-modules-6.7.7-riscv64-di -pnic-modules-6.7.7-riscv64-di -pnic-shared-modules-6.7.7-riscv64-di -pnic-usb-modules-6.7.7-riscv64-di -pnic-wireless-modules-6.7.7-riscv64-di -ppata-modules-6.7.7-riscv64-di -pppp-modules-6.7.7-riscv64-di -psata-modules-6.7.7-riscv64-di -pscsi-core-modules-6.7.7-riscv64-di -pscsi-modules-6.7.7-riscv64-di -pscsi-nic-modules-6.7.7-riscv64-di -psquashfs-modules-6.7.7-riscv64-di -pudf-modules-6.7.7-riscv64-di -pusb-modules-6.7.7-riscv64-di -pusb-serial-modules-6.7.7-riscv64-di -pusb-storage-modules-6.7.7-riscv64-di -pxfs-modules-6.7.7-riscv64-di' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-riscv64-di' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_riscv64_none_riscv64_meta: - $(call if_package, linux-image-riscv64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-riscv64' DH_OPTIONS='-plinux-image-riscv64' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-riscv64' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' PACKAGE_NAME='linux-image-riscv64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-riscv64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-riscv64' DH_OPTIONS='-plinux-headers-riscv64' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-riscv64' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' PACKAGE_NAME='linux-headers-riscv64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-image-riscv64-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-riscv64-dbg' DH_OPTIONS='-plinux-image-riscv64-dbg' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-riscv64-dbg' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' PACKAGE_NAME='linux-image-riscv64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-riscv64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-riscv64' DH_OPTIONS='-plinux-image-riscv64' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-riscv64' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' PACKAGE_NAME='linux-image-riscv64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-riscv64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-riscv64' DH_OPTIONS='-plinux-headers-riscv64' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-riscv64' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' PACKAGE_NAME='linux-headers-riscv64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-image-riscv64-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='riscv64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-riscv64-dbg' DH_OPTIONS='-plinux-image-riscv64-dbg' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-riscv64-dbg' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' PACKAGE_NAME='linux-image-riscv64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_riscv64_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.6.15' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='riscv' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.7.7' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='riscv' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_riscv64_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.6.15' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='riscv' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.7.7' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='riscv' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_riscv64_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.6.15' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='riscv' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.7.7' ARCH='riscv64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='riscv' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_rt:setup_rt_headers-common setup_rt_headers-common: - $(call if_package, linux-headers-6.6.15-common-rt, $(MAKE) -f debian/rules.real setup_headers-common ABINAME='6.6.15' ALL_KERNEL_ARCHES='arm arm64 x86' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-common-rt' DH_OPTIONS='-plinux-headers-6.6.15-common-rt' FEATURESET='rt' LOCALVERSION='-rt' PACKAGE_NAME='linux-headers-6.6.15-common-rt' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-common-rt, $(MAKE) -f debian/rules.real setup_headers-common ABINAME='6.7.7' ALL_KERNEL_ARCHES='arm arm64 x86' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-common-rt' DH_OPTIONS='-plinux-headers-6.7.7-common-rt' FEATURESET='rt' LOCALVERSION='-rt' PACKAGE_NAME='linux-headers-6.7.7-common-rt' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_s390x:setup_s390x_bpftool setup_s390x_config setup_s390x_cpupower setup_s390x_hyperv-daemons setup_s390x_kbuild setup_s390x_none setup_s390x_perf setup_s390x_rtla setup_s390x_usbip setup_s390x_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.6.15' ARCH='s390x' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='s390' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.7.7' ARCH='s390x' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='s390' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_s390x_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real setup_config ABINAME='6.6.15' ARCH='s390x' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='s390' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real setup_config ABINAME='6.7.7' ARCH='s390x' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='s390' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_s390x_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.6.15' ARCH='s390x' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='s390' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.7.7' ARCH='s390x' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='s390' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_s390x_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.6.15' ARCH='s390x' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='s390' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.7.7' ARCH='s390x' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='s390' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_s390x_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.6.15' ARCH='s390x' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='s390' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.7.7' ARCH='s390x' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='s390' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_s390x_none:setup_s390x_none_s390x setup_s390x_none_s390x:setup_s390x_none_s390x_headers setup_s390x_none_s390x_image setup_s390x_none_s390x_image-dbg setup_s390x_none_s390x_installer setup_s390x_none_s390x_meta setup_s390x_none_s390x_headers: - $(call if_package, linux-headers-6.6.15-s390x, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-s390x' DH_OPTIONS='-plinux-headers-6.6.15-s390x' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' PACKAGE_NAME='linux-headers-6.6.15-s390x' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-s390x, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-s390x' DH_OPTIONS='-plinux-headers-6.7.7-s390x' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' PACKAGE_NAME='linux-headers-6.7.7-s390x' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_s390x_none_s390x_image: - $(call if_package, linux-image-6.6.15-s390x, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-s390x' DH_OPTIONS='-plinux-image-6.6.15-s390x' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' PACKAGE_NAME='linux-image-6.6.15-s390x' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-s390x, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-s390x' DH_OPTIONS='-plinux-image-6.7.7-s390x' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' PACKAGE_NAME='linux-image-6.7.7-s390x' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_s390x_none_s390x_image-dbg: - $(call if_package, linux-image-6.6.15-s390x-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-s390x-dbg' DH_OPTIONS='-plinux-image-6.6.15-s390x-dbg' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' PACKAGE_NAME='linux-image-6.6.15-s390x-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-6.7.7-s390x-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-s390x-dbg' DH_OPTIONS='-plinux-image-6.7.7-s390x-dbg' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' PACKAGE_NAME='linux-image-6.7.7-s390x-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_s390x_none_s390x_installer: - $(call if_package, btrfs-modules-6.6.15-s390x-di cdrom-core-modules-6.6.15-s390x-di crc-modules-6.6.15-s390x-di crypto-dm-modules-6.6.15-s390x-di crypto-modules-6.6.15-s390x-di dasd-extra-modules-6.6.15-s390x-di dasd-modules-6.6.15-s390x-di ext4-modules-6.6.15-s390x-di f2fs-modules-6.6.15-s390x-di fat-modules-6.6.15-s390x-di isofs-modules-6.6.15-s390x-di kernel-image-6.6.15-s390x-di loop-modules-6.6.15-s390x-di md-modules-6.6.15-s390x-di mtd-core-modules-6.6.15-s390x-di multipath-modules-6.6.15-s390x-di nbd-modules-6.6.15-s390x-di nic-modules-6.6.15-s390x-di scsi-core-modules-6.6.15-s390x-di scsi-modules-6.6.15-s390x-di udf-modules-6.6.15-s390x-di xfs-modules-6.6.15-s390x-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.6.15' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pbtrfs-modules-6.6.15-s390x-di -pcdrom-core-modules-6.6.15-s390x-di -pcrc-modules-6.6.15-s390x-di -pcrypto-dm-modules-6.6.15-s390x-di -pcrypto-modules-6.6.15-s390x-di -pdasd-extra-modules-6.6.15-s390x-di -pdasd-modules-6.6.15-s390x-di -pext4-modules-6.6.15-s390x-di -pf2fs-modules-6.6.15-s390x-di -pfat-modules-6.6.15-s390x-di -pisofs-modules-6.6.15-s390x-di -pkernel-image-6.6.15-s390x-di -ploop-modules-6.6.15-s390x-di -pmd-modules-6.6.15-s390x-di -pmtd-core-modules-6.6.15-s390x-di -pmultipath-modules-6.6.15-s390x-di -pnbd-modules-6.6.15-s390x-di -pnic-modules-6.6.15-s390x-di -pscsi-core-modules-6.6.15-s390x-di -pscsi-modules-6.6.15-s390x-di -pudf-modules-6.6.15-s390x-di -pxfs-modules-6.6.15-s390x-di' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-s390x-di' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, btrfs-modules-6.7.7-s390x-di cdrom-core-modules-6.7.7-s390x-di crc-modules-6.7.7-s390x-di crypto-dm-modules-6.7.7-s390x-di crypto-modules-6.7.7-s390x-di dasd-extra-modules-6.7.7-s390x-di dasd-modules-6.7.7-s390x-di ext4-modules-6.7.7-s390x-di f2fs-modules-6.7.7-s390x-di fat-modules-6.7.7-s390x-di isofs-modules-6.7.7-s390x-di kernel-image-6.7.7-s390x-di loop-modules-6.7.7-s390x-di md-modules-6.7.7-s390x-di mtd-core-modules-6.7.7-s390x-di multipath-modules-6.7.7-s390x-di nbd-modules-6.7.7-s390x-di nic-modules-6.7.7-s390x-di scsi-core-modules-6.7.7-s390x-di scsi-modules-6.7.7-s390x-di udf-modules-6.7.7-s390x-di xfs-modules-6.7.7-s390x-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.7.7' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pbtrfs-modules-6.7.7-s390x-di -pcdrom-core-modules-6.7.7-s390x-di -pcrc-modules-6.7.7-s390x-di -pcrypto-dm-modules-6.7.7-s390x-di -pcrypto-modules-6.7.7-s390x-di -pdasd-extra-modules-6.7.7-s390x-di -pdasd-modules-6.7.7-s390x-di -pext4-modules-6.7.7-s390x-di -pf2fs-modules-6.7.7-s390x-di -pfat-modules-6.7.7-s390x-di -pisofs-modules-6.7.7-s390x-di -pkernel-image-6.7.7-s390x-di -ploop-modules-6.7.7-s390x-di -pmd-modules-6.7.7-s390x-di -pmtd-core-modules-6.7.7-s390x-di -pmultipath-modules-6.7.7-s390x-di -pnbd-modules-6.7.7-s390x-di -pnic-modules-6.7.7-s390x-di -pscsi-core-modules-6.7.7-s390x-di -pscsi-modules-6.7.7-s390x-di -pudf-modules-6.7.7-s390x-di -pxfs-modules-6.7.7-s390x-di' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-s390x-di' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_s390x_none_s390x_meta: - $(call if_package, linux-image-s390x, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-s390x' DH_OPTIONS='-plinux-image-s390x' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-s390x' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' PACKAGE_NAME='linux-image-s390x' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-headers-s390x, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-s390x' DH_OPTIONS='-plinux-headers-s390x' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-s390x' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' PACKAGE_NAME='linux-headers-s390x' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') - $(call if_package, linux-image-s390x-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-s390x-dbg' DH_OPTIONS='-plinux-image-s390x-dbg' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-s390x-dbg' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' PACKAGE_NAME='linux-image-s390x-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VDSO='True' VERSION='6.6') + $(call if_package, linux-image-s390x, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-s390x' DH_OPTIONS='-plinux-image-s390x' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-s390x' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' PACKAGE_NAME='linux-image-s390x' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-headers-s390x, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-s390x' DH_OPTIONS='-plinux-headers-s390x' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-s390x' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' PACKAGE_NAME='linux-headers-s390x' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') + $(call if_package, linux-image-s390x-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='s390x' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-s390x-dbg' DH_OPTIONS='-plinux-image-s390x-dbg' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-s390x-dbg' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' PACKAGE_NAME='linux-image-s390x-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VDSO='True' VERSION='6.7') setup_s390x_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.6.15' ARCH='s390x' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='s390' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.7.7' ARCH='s390x' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='s390' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_s390x_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.6.15' ARCH='s390x' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='s390' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.7.7' ARCH='s390x' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='s390' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_s390x_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.6.15' ARCH='s390x' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='s390' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.7.7' ARCH='s390x' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='s390' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_sh4:setup_sh4_bpftool setup_sh4_config setup_sh4_cpupower setup_sh4_hyperv-daemons setup_sh4_kbuild setup_sh4_none setup_sh4_perf setup_sh4_rtla setup_sh4_usbip setup_sh4_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.6.15' ARCH='sh4' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='sh' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.7.7' ARCH='sh4' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='sh' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_sh4_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real setup_config ABINAME='6.6.15' ARCH='sh4' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='sh' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real setup_config ABINAME='6.7.7' ARCH='sh4' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='sh' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_sh4_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.6.15' ARCH='sh4' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='sh' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.7.7' ARCH='sh4' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='sh' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_sh4_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.6.15' ARCH='sh4' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='sh' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.7.7' ARCH='sh4' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='sh' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_sh4_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.6.15' ARCH='sh4' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='sh' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.7.7' ARCH='sh4' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='sh' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_sh4_none:setup_sh4_none_sh7751r setup_sh4_none_sh7785lcr setup_sh4_none_sh7751r:setup_sh4_none_sh7751r_headers setup_sh4_none_sh7751r_image setup_sh4_none_sh7751r_image-dbg setup_sh4_none_sh7751r_installer setup_sh4_none_sh7751r_meta setup_sh4_none_sh7751r_headers: - $(call if_package, linux-headers-6.6.15-sh7751r, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-sh7751r' DH_OPTIONS='-plinux-headers-6.6.15-sh7751r' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' PACKAGE_NAME='linux-headers-6.6.15-sh7751r' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-sh7751r, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-sh7751r' DH_OPTIONS='-plinux-headers-6.7.7-sh7751r' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' PACKAGE_NAME='linux-headers-6.7.7-sh7751r' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_sh4_none_sh7751r_image: - $(call if_package, linux-image-6.6.15-sh7751r, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-sh7751r' DH_OPTIONS='-plinux-image-6.6.15-sh7751r' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' PACKAGE_NAME='linux-image-6.6.15-sh7751r' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-sh7751r, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-sh7751r' DH_OPTIONS='-plinux-image-6.7.7-sh7751r' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' PACKAGE_NAME='linux-image-6.7.7-sh7751r' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_sh4_none_sh7751r_image-dbg: - $(call if_package, linux-image-6.6.15-sh7751r-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-sh7751r-dbg' DH_OPTIONS='-plinux-image-6.6.15-sh7751r-dbg' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' PACKAGE_NAME='linux-image-6.6.15-sh7751r-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-sh7751r-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-sh7751r-dbg' DH_OPTIONS='-plinux-image-6.7.7-sh7751r-dbg' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' PACKAGE_NAME='linux-image-6.7.7-sh7751r-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_sh4_none_sh7751r_installer: - $(call if_package, btrfs-modules-6.6.15-sh7751r-di cdrom-core-modules-6.6.15-sh7751r-di crc-modules-6.6.15-sh7751r-di crypto-dm-modules-6.6.15-sh7751r-di crypto-modules-6.6.15-sh7751r-di ext4-modules-6.6.15-sh7751r-di f2fs-modules-6.6.15-sh7751r-di fat-modules-6.6.15-sh7751r-di firewire-core-modules-6.6.15-sh7751r-di i2c-modules-6.6.15-sh7751r-di isofs-modules-6.6.15-sh7751r-di jfs-modules-6.6.15-sh7751r-di kernel-image-6.6.15-sh7751r-di loop-modules-6.6.15-sh7751r-di md-modules-6.6.15-sh7751r-di minix-modules-6.6.15-sh7751r-di multipath-modules-6.6.15-sh7751r-di nbd-modules-6.6.15-sh7751r-di nic-modules-6.6.15-sh7751r-di nic-shared-modules-6.6.15-sh7751r-di nic-usb-modules-6.6.15-sh7751r-di pata-modules-6.6.15-sh7751r-di ppp-modules-6.6.15-sh7751r-di sata-modules-6.6.15-sh7751r-di sound-modules-6.6.15-sh7751r-di speakup-modules-6.6.15-sh7751r-di squashfs-modules-6.6.15-sh7751r-di udf-modules-6.6.15-sh7751r-di usb-serial-modules-6.6.15-sh7751r-di usb-storage-modules-6.6.15-sh7751r-di xfs-modules-6.6.15-sh7751r-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pbtrfs-modules-6.6.15-sh7751r-di -pcdrom-core-modules-6.6.15-sh7751r-di -pcrc-modules-6.6.15-sh7751r-di -pcrypto-dm-modules-6.6.15-sh7751r-di -pcrypto-modules-6.6.15-sh7751r-di -pext4-modules-6.6.15-sh7751r-di -pf2fs-modules-6.6.15-sh7751r-di -pfat-modules-6.6.15-sh7751r-di -pfirewire-core-modules-6.6.15-sh7751r-di -pi2c-modules-6.6.15-sh7751r-di -pisofs-modules-6.6.15-sh7751r-di -pjfs-modules-6.6.15-sh7751r-di -pkernel-image-6.6.15-sh7751r-di -ploop-modules-6.6.15-sh7751r-di -pmd-modules-6.6.15-sh7751r-di -pminix-modules-6.6.15-sh7751r-di -pmultipath-modules-6.6.15-sh7751r-di -pnbd-modules-6.6.15-sh7751r-di -pnic-modules-6.6.15-sh7751r-di -pnic-shared-modules-6.6.15-sh7751r-di -pnic-usb-modules-6.6.15-sh7751r-di -ppata-modules-6.6.15-sh7751r-di -pppp-modules-6.6.15-sh7751r-di -psata-modules-6.6.15-sh7751r-di -psound-modules-6.6.15-sh7751r-di -pspeakup-modules-6.6.15-sh7751r-di -psquashfs-modules-6.6.15-sh7751r-di -pudf-modules-6.6.15-sh7751r-di -pusb-serial-modules-6.6.15-sh7751r-di -pusb-storage-modules-6.6.15-sh7751r-di -pxfs-modules-6.6.15-sh7751r-di' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-sh7751r-di' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, btrfs-modules-6.7.7-sh7751r-di cdrom-core-modules-6.7.7-sh7751r-di crc-modules-6.7.7-sh7751r-di crypto-dm-modules-6.7.7-sh7751r-di crypto-modules-6.7.7-sh7751r-di ext4-modules-6.7.7-sh7751r-di f2fs-modules-6.7.7-sh7751r-di fat-modules-6.7.7-sh7751r-di firewire-core-modules-6.7.7-sh7751r-di i2c-modules-6.7.7-sh7751r-di isofs-modules-6.7.7-sh7751r-di jfs-modules-6.7.7-sh7751r-di kernel-image-6.7.7-sh7751r-di loop-modules-6.7.7-sh7751r-di md-modules-6.7.7-sh7751r-di minix-modules-6.7.7-sh7751r-di multipath-modules-6.7.7-sh7751r-di nbd-modules-6.7.7-sh7751r-di nic-modules-6.7.7-sh7751r-di nic-shared-modules-6.7.7-sh7751r-di nic-usb-modules-6.7.7-sh7751r-di pata-modules-6.7.7-sh7751r-di ppp-modules-6.7.7-sh7751r-di sata-modules-6.7.7-sh7751r-di sound-modules-6.7.7-sh7751r-di speakup-modules-6.7.7-sh7751r-di squashfs-modules-6.7.7-sh7751r-di udf-modules-6.7.7-sh7751r-di usb-serial-modules-6.7.7-sh7751r-di usb-storage-modules-6.7.7-sh7751r-di xfs-modules-6.7.7-sh7751r-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pbtrfs-modules-6.7.7-sh7751r-di -pcdrom-core-modules-6.7.7-sh7751r-di -pcrc-modules-6.7.7-sh7751r-di -pcrypto-dm-modules-6.7.7-sh7751r-di -pcrypto-modules-6.7.7-sh7751r-di -pext4-modules-6.7.7-sh7751r-di -pf2fs-modules-6.7.7-sh7751r-di -pfat-modules-6.7.7-sh7751r-di -pfirewire-core-modules-6.7.7-sh7751r-di -pi2c-modules-6.7.7-sh7751r-di -pisofs-modules-6.7.7-sh7751r-di -pjfs-modules-6.7.7-sh7751r-di -pkernel-image-6.7.7-sh7751r-di -ploop-modules-6.7.7-sh7751r-di -pmd-modules-6.7.7-sh7751r-di -pminix-modules-6.7.7-sh7751r-di -pmultipath-modules-6.7.7-sh7751r-di -pnbd-modules-6.7.7-sh7751r-di -pnic-modules-6.7.7-sh7751r-di -pnic-shared-modules-6.7.7-sh7751r-di -pnic-usb-modules-6.7.7-sh7751r-di -ppata-modules-6.7.7-sh7751r-di -pppp-modules-6.7.7-sh7751r-di -psata-modules-6.7.7-sh7751r-di -psound-modules-6.7.7-sh7751r-di -pspeakup-modules-6.7.7-sh7751r-di -psquashfs-modules-6.7.7-sh7751r-di -pudf-modules-6.7.7-sh7751r-di -pusb-serial-modules-6.7.7-sh7751r-di -pusb-storage-modules-6.7.7-sh7751r-di -pxfs-modules-6.7.7-sh7751r-di' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-sh7751r-di' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_sh4_none_sh7751r_meta: - $(call if_package, linux-image-sh7751r, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sh7751r' DH_OPTIONS='-plinux-image-sh7751r' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-sh7751r' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' PACKAGE_NAME='linux-image-sh7751r' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-sh7751r, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-sh7751r' DH_OPTIONS='-plinux-headers-sh7751r' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-sh7751r' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' PACKAGE_NAME='linux-headers-sh7751r' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-sh7751r-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sh7751r-dbg' DH_OPTIONS='-plinux-image-sh7751r-dbg' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-sh7751r-dbg' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' PACKAGE_NAME='linux-image-sh7751r-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-sh7751r, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sh7751r' DH_OPTIONS='-plinux-image-sh7751r' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-sh7751r' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' PACKAGE_NAME='linux-image-sh7751r' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-sh7751r, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-sh7751r' DH_OPTIONS='-plinux-headers-sh7751r' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-sh7751r' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' PACKAGE_NAME='linux-headers-sh7751r' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-sh7751r-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sh7751r-dbg' DH_OPTIONS='-plinux-image-sh7751r-dbg' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-sh7751r-dbg' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' PACKAGE_NAME='linux-image-sh7751r-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_sh4_none_sh7785lcr:setup_sh4_none_sh7785lcr_headers setup_sh4_none_sh7785lcr_image setup_sh4_none_sh7785lcr_image-dbg setup_sh4_none_sh7785lcr_installer setup_sh4_none_sh7785lcr_meta setup_sh4_none_sh7785lcr_headers: - $(call if_package, linux-headers-6.6.15-sh7785lcr, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-sh7785lcr' DH_OPTIONS='-plinux-headers-6.6.15-sh7785lcr' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' PACKAGE_NAME='linux-headers-6.6.15-sh7785lcr' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-sh7785lcr, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-sh7785lcr' DH_OPTIONS='-plinux-headers-6.7.7-sh7785lcr' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' PACKAGE_NAME='linux-headers-6.7.7-sh7785lcr' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_sh4_none_sh7785lcr_image: - $(call if_package, linux-image-6.6.15-sh7785lcr, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-sh7785lcr' DH_OPTIONS='-plinux-image-6.6.15-sh7785lcr' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' PACKAGE_NAME='linux-image-6.6.15-sh7785lcr' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-sh7785lcr, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-sh7785lcr' DH_OPTIONS='-plinux-image-6.7.7-sh7785lcr' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' PACKAGE_NAME='linux-image-6.7.7-sh7785lcr' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_sh4_none_sh7785lcr_image-dbg: - $(call if_package, linux-image-6.6.15-sh7785lcr-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-sh7785lcr-dbg' DH_OPTIONS='-plinux-image-6.6.15-sh7785lcr-dbg' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' PACKAGE_NAME='linux-image-6.6.15-sh7785lcr-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-sh7785lcr-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-sh7785lcr-dbg' DH_OPTIONS='-plinux-image-6.7.7-sh7785lcr-dbg' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' PACKAGE_NAME='linux-image-6.7.7-sh7785lcr-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_sh4_none_sh7785lcr_installer: - $(call if_package, ata-modules-6.6.15-sh7785lcr-di btrfs-modules-6.6.15-sh7785lcr-di cdrom-core-modules-6.6.15-sh7785lcr-di crc-modules-6.6.15-sh7785lcr-di crypto-dm-modules-6.6.15-sh7785lcr-di crypto-modules-6.6.15-sh7785lcr-di ext4-modules-6.6.15-sh7785lcr-di f2fs-modules-6.6.15-sh7785lcr-di fat-modules-6.6.15-sh7785lcr-di firewire-core-modules-6.6.15-sh7785lcr-di i2c-modules-6.6.15-sh7785lcr-di isofs-modules-6.6.15-sh7785lcr-di jfs-modules-6.6.15-sh7785lcr-di kernel-image-6.6.15-sh7785lcr-di loop-modules-6.6.15-sh7785lcr-di md-modules-6.6.15-sh7785lcr-di minix-modules-6.6.15-sh7785lcr-di multipath-modules-6.6.15-sh7785lcr-di nbd-modules-6.6.15-sh7785lcr-di nic-modules-6.6.15-sh7785lcr-di nic-shared-modules-6.6.15-sh7785lcr-di nic-usb-modules-6.6.15-sh7785lcr-di pata-modules-6.6.15-sh7785lcr-di ppp-modules-6.6.15-sh7785lcr-di sata-modules-6.6.15-sh7785lcr-di scsi-core-modules-6.6.15-sh7785lcr-di sound-modules-6.6.15-sh7785lcr-di speakup-modules-6.6.15-sh7785lcr-di squashfs-modules-6.6.15-sh7785lcr-di udf-modules-6.6.15-sh7785lcr-di usb-modules-6.6.15-sh7785lcr-di usb-serial-modules-6.6.15-sh7785lcr-di xfs-modules-6.6.15-sh7785lcr-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.6.15-sh7785lcr-di -pbtrfs-modules-6.6.15-sh7785lcr-di -pcdrom-core-modules-6.6.15-sh7785lcr-di -pcrc-modules-6.6.15-sh7785lcr-di -pcrypto-dm-modules-6.6.15-sh7785lcr-di -pcrypto-modules-6.6.15-sh7785lcr-di -pext4-modules-6.6.15-sh7785lcr-di -pf2fs-modules-6.6.15-sh7785lcr-di -pfat-modules-6.6.15-sh7785lcr-di -pfirewire-core-modules-6.6.15-sh7785lcr-di -pi2c-modules-6.6.15-sh7785lcr-di -pisofs-modules-6.6.15-sh7785lcr-di -pjfs-modules-6.6.15-sh7785lcr-di -pkernel-image-6.6.15-sh7785lcr-di -ploop-modules-6.6.15-sh7785lcr-di -pmd-modules-6.6.15-sh7785lcr-di -pminix-modules-6.6.15-sh7785lcr-di -pmultipath-modules-6.6.15-sh7785lcr-di -pnbd-modules-6.6.15-sh7785lcr-di -pnic-modules-6.6.15-sh7785lcr-di -pnic-shared-modules-6.6.15-sh7785lcr-di -pnic-usb-modules-6.6.15-sh7785lcr-di -ppata-modules-6.6.15-sh7785lcr-di -pppp-modules-6.6.15-sh7785lcr-di -psata-modules-6.6.15-sh7785lcr-di -pscsi-core-modules-6.6.15-sh7785lcr-di -psound-modules-6.6.15-sh7785lcr-di -pspeakup-modules-6.6.15-sh7785lcr-di -psquashfs-modules-6.6.15-sh7785lcr-di -pudf-modules-6.6.15-sh7785lcr-di -pusb-modules-6.6.15-sh7785lcr-di -pusb-serial-modules-6.6.15-sh7785lcr-di -pxfs-modules-6.6.15-sh7785lcr-di' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-sh7785lcr-di' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, ata-modules-6.7.7-sh7785lcr-di btrfs-modules-6.7.7-sh7785lcr-di cdrom-core-modules-6.7.7-sh7785lcr-di crc-modules-6.7.7-sh7785lcr-di crypto-dm-modules-6.7.7-sh7785lcr-di crypto-modules-6.7.7-sh7785lcr-di ext4-modules-6.7.7-sh7785lcr-di f2fs-modules-6.7.7-sh7785lcr-di fat-modules-6.7.7-sh7785lcr-di firewire-core-modules-6.7.7-sh7785lcr-di i2c-modules-6.7.7-sh7785lcr-di isofs-modules-6.7.7-sh7785lcr-di jfs-modules-6.7.7-sh7785lcr-di kernel-image-6.7.7-sh7785lcr-di loop-modules-6.7.7-sh7785lcr-di md-modules-6.7.7-sh7785lcr-di minix-modules-6.7.7-sh7785lcr-di multipath-modules-6.7.7-sh7785lcr-di nbd-modules-6.7.7-sh7785lcr-di nic-modules-6.7.7-sh7785lcr-di nic-shared-modules-6.7.7-sh7785lcr-di nic-usb-modules-6.7.7-sh7785lcr-di pata-modules-6.7.7-sh7785lcr-di ppp-modules-6.7.7-sh7785lcr-di sata-modules-6.7.7-sh7785lcr-di scsi-core-modules-6.7.7-sh7785lcr-di sound-modules-6.7.7-sh7785lcr-di speakup-modules-6.7.7-sh7785lcr-di squashfs-modules-6.7.7-sh7785lcr-di udf-modules-6.7.7-sh7785lcr-di usb-modules-6.7.7-sh7785lcr-di usb-serial-modules-6.7.7-sh7785lcr-di xfs-modules-6.7.7-sh7785lcr-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.7.7-sh7785lcr-di -pbtrfs-modules-6.7.7-sh7785lcr-di -pcdrom-core-modules-6.7.7-sh7785lcr-di -pcrc-modules-6.7.7-sh7785lcr-di -pcrypto-dm-modules-6.7.7-sh7785lcr-di -pcrypto-modules-6.7.7-sh7785lcr-di -pext4-modules-6.7.7-sh7785lcr-di -pf2fs-modules-6.7.7-sh7785lcr-di -pfat-modules-6.7.7-sh7785lcr-di -pfirewire-core-modules-6.7.7-sh7785lcr-di -pi2c-modules-6.7.7-sh7785lcr-di -pisofs-modules-6.7.7-sh7785lcr-di -pjfs-modules-6.7.7-sh7785lcr-di -pkernel-image-6.7.7-sh7785lcr-di -ploop-modules-6.7.7-sh7785lcr-di -pmd-modules-6.7.7-sh7785lcr-di -pminix-modules-6.7.7-sh7785lcr-di -pmultipath-modules-6.7.7-sh7785lcr-di -pnbd-modules-6.7.7-sh7785lcr-di -pnic-modules-6.7.7-sh7785lcr-di -pnic-shared-modules-6.7.7-sh7785lcr-di -pnic-usb-modules-6.7.7-sh7785lcr-di -ppata-modules-6.7.7-sh7785lcr-di -pppp-modules-6.7.7-sh7785lcr-di -psata-modules-6.7.7-sh7785lcr-di -pscsi-core-modules-6.7.7-sh7785lcr-di -psound-modules-6.7.7-sh7785lcr-di -pspeakup-modules-6.7.7-sh7785lcr-di -psquashfs-modules-6.7.7-sh7785lcr-di -pudf-modules-6.7.7-sh7785lcr-di -pusb-modules-6.7.7-sh7785lcr-di -pusb-serial-modules-6.7.7-sh7785lcr-di -pxfs-modules-6.7.7-sh7785lcr-di' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-sh7785lcr-di' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_sh4_none_sh7785lcr_meta: - $(call if_package, linux-image-sh7785lcr, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sh7785lcr' DH_OPTIONS='-plinux-image-sh7785lcr' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-sh7785lcr' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' PACKAGE_NAME='linux-image-sh7785lcr' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-sh7785lcr, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-sh7785lcr' DH_OPTIONS='-plinux-headers-sh7785lcr' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-sh7785lcr' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' PACKAGE_NAME='linux-headers-sh7785lcr' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-sh7785lcr-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sh7785lcr-dbg' DH_OPTIONS='-plinux-image-sh7785lcr-dbg' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-sh7785lcr-dbg' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' PACKAGE_NAME='linux-image-sh7785lcr-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-sh7785lcr, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sh7785lcr' DH_OPTIONS='-plinux-image-sh7785lcr' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-sh7785lcr' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' PACKAGE_NAME='linux-image-sh7785lcr' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-sh7785lcr, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-sh7785lcr' DH_OPTIONS='-plinux-headers-sh7785lcr' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-sh7785lcr' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' PACKAGE_NAME='linux-headers-sh7785lcr' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-sh7785lcr-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='sh4' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sh7785lcr-dbg' DH_OPTIONS='-plinux-image-sh7785lcr-dbg' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-sh7785lcr-dbg' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' PACKAGE_NAME='linux-image-sh7785lcr-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_sh4_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.6.15' ARCH='sh4' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='sh' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.7.7' ARCH='sh4' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='sh' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_sh4_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.6.15' ARCH='sh4' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='sh' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.7.7' ARCH='sh4' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='sh' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_sh4_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.6.15' ARCH='sh4' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='sh' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.7.7' ARCH='sh4' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='sh' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_source: - $(call if_package, linux-source-6.6, $(MAKE) -f debian/rules.real setup_source ABINAME='6.6.15' DESTDIR='$(CURDIR)/debian/linux-source-6.6' DH_OPTIONS='-plinux-source-6.6' PACKAGE_NAME='linux-source-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-source-6.7, $(MAKE) -f debian/rules.real setup_source ABINAME='6.7.7' DESTDIR='$(CURDIR)/debian/linux-source-6.7' DH_OPTIONS='-plinux-source-6.7' PACKAGE_NAME='linux-source-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_sparc64:setup_sparc64_bpftool setup_sparc64_config setup_sparc64_cpupower setup_sparc64_hyperv-daemons setup_sparc64_kbuild setup_sparc64_none setup_sparc64_perf setup_sparc64_rtla setup_sparc64_usbip setup_sparc64_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.6.15' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='sparc' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.7.7' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='sparc' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_sparc64_config: - $(call if_package, linux-config-6.6, $(MAKE) -f debian/rules.real setup_config ABINAME='6.6.15' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/linux-config-6.6' DH_OPTIONS='-plinux-config-6.6' KERNEL_ARCH='sparc' PACKAGE_NAME='linux-config-6.6' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-config-6.7, $(MAKE) -f debian/rules.real setup_config ABINAME='6.7.7' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/linux-config-6.7' DH_OPTIONS='-plinux-config-6.7' KERNEL_ARCH='sparc' PACKAGE_NAME='linux-config-6.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_sparc64_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.6.15' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='sparc' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.7.7' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='sparc' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_sparc64_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.6.15' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='sparc' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.7.7' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='sparc' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_sparc64_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.6.15' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='sparc' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.7.7' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='sparc' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_sparc64_none:setup_sparc64_none_sparc64 setup_sparc64_none_sparc64-smp setup_sparc64_none_sparc64:setup_sparc64_none_sparc64_headers setup_sparc64_none_sparc64_image setup_sparc64_none_sparc64_image-dbg setup_sparc64_none_sparc64_installer setup_sparc64_none_sparc64_meta setup_sparc64_none_sparc64-smp:setup_sparc64_none_sparc64-smp_headers setup_sparc64_none_sparc64-smp_image setup_sparc64_none_sparc64-smp_image-dbg setup_sparc64_none_sparc64-smp_meta setup_sparc64_none_sparc64-smp_headers: - $(call if_package, linux-headers-6.6.15-sparc64-smp, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-sparc64-smp' DH_OPTIONS='-plinux-headers-6.6.15-sparc64-smp' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' PACKAGE_NAME='linux-headers-6.6.15-sparc64-smp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-sparc64-smp, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-sparc64-smp' DH_OPTIONS='-plinux-headers-6.7.7-sparc64-smp' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' PACKAGE_NAME='linux-headers-6.7.7-sparc64-smp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_sparc64_none_sparc64-smp_image: - $(call if_package, linux-image-6.6.15-sparc64-smp, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-sparc64-smp' DH_OPTIONS='-plinux-image-6.6.15-sparc64-smp' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' PACKAGE_NAME='linux-image-6.6.15-sparc64-smp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-sparc64-smp, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-sparc64-smp' DH_OPTIONS='-plinux-image-6.7.7-sparc64-smp' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' PACKAGE_NAME='linux-image-6.7.7-sparc64-smp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_sparc64_none_sparc64-smp_image-dbg: - $(call if_package, linux-image-6.6.15-sparc64-smp-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-sparc64-smp-dbg' DH_OPTIONS='-plinux-image-6.6.15-sparc64-smp-dbg' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' PACKAGE_NAME='linux-image-6.6.15-sparc64-smp-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-sparc64-smp-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-sparc64-smp-dbg' DH_OPTIONS='-plinux-image-6.7.7-sparc64-smp-dbg' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' PACKAGE_NAME='linux-image-6.7.7-sparc64-smp-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_sparc64_none_sparc64-smp_meta: - $(call if_package, linux-image-sparc64-smp, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sparc64-smp' DH_OPTIONS='-plinux-image-sparc64-smp' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-sparc64-smp' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' PACKAGE_NAME='linux-image-sparc64-smp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-sparc64-smp, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-sparc64-smp' DH_OPTIONS='-plinux-headers-sparc64-smp' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-sparc64-smp' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' PACKAGE_NAME='linux-headers-sparc64-smp' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-sparc64-smp-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sparc64-smp-dbg' DH_OPTIONS='-plinux-image-sparc64-smp-dbg' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-sparc64-smp-dbg' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' PACKAGE_NAME='linux-image-sparc64-smp-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-sparc64-smp, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sparc64-smp' DH_OPTIONS='-plinux-image-sparc64-smp' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-sparc64-smp' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' PACKAGE_NAME='linux-image-sparc64-smp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-sparc64-smp, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-sparc64-smp' DH_OPTIONS='-plinux-headers-sparc64-smp' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-sparc64-smp' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' PACKAGE_NAME='linux-headers-sparc64-smp' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-sparc64-smp-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sparc64-smp-dbg' DH_OPTIONS='-plinux-image-sparc64-smp-dbg' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-sparc64-smp-dbg' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' PACKAGE_NAME='linux-image-sparc64-smp-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_sparc64_none_sparc64_headers: - $(call if_package, linux-headers-6.6.15-sparc64, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.6.15-sparc64' DH_OPTIONS='-plinux-headers-6.6.15-sparc64' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' PACKAGE_NAME='linux-headers-6.6.15-sparc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-headers-6.7.7-sparc64, $(MAKE) -f debian/rules.real setup_headers ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-6.7.7-sparc64' DH_OPTIONS='-plinux-headers-6.7.7-sparc64' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' PACKAGE_NAME='linux-headers-6.7.7-sparc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_sparc64_none_sparc64_image: - $(call if_package, linux-image-6.6.15-sparc64, $(MAKE) -f debian/rules.real setup_image ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-sparc64' DH_OPTIONS='-plinux-image-6.6.15-sparc64' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' PACKAGE_NAME='linux-image-6.6.15-sparc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-sparc64, $(MAKE) -f debian/rules.real setup_image ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-sparc64' DH_OPTIONS='-plinux-image-6.7.7-sparc64' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' PACKAGE_NAME='linux-image-6.7.7-sparc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_sparc64_none_sparc64_image-dbg: - $(call if_package, linux-image-6.6.15-sparc64-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.6.15-sparc64-dbg' DH_OPTIONS='-plinux-image-6.6.15-sparc64-dbg' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' PACKAGE_NAME='linux-image-6.6.15-sparc64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-6.7.7-sparc64-dbg, $(MAKE) -f debian/rules.real setup_image-dbg ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-6.7.7-sparc64-dbg' DH_OPTIONS='-plinux-image-6.7.7-sparc64-dbg' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' PACKAGE_NAME='linux-image-6.7.7-sparc64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_sparc64_none_sparc64_installer: - $(call if_package, ata-modules-6.6.15-sparc64-di btrfs-modules-6.6.15-sparc64-di cdrom-core-modules-6.6.15-sparc64-di crc-modules-6.6.15-sparc64-di crypto-dm-modules-6.6.15-sparc64-di crypto-modules-6.6.15-sparc64-di ext4-modules-6.6.15-sparc64-di f2fs-modules-6.6.15-sparc64-di fat-modules-6.6.15-sparc64-di fb-modules-6.6.15-sparc64-di i2c-modules-6.6.15-sparc64-di input-modules-6.6.15-sparc64-di isofs-modules-6.6.15-sparc64-di jfs-modules-6.6.15-sparc64-di kernel-image-6.6.15-sparc64-di md-modules-6.6.15-sparc64-di multipath-modules-6.6.15-sparc64-di nbd-modules-6.6.15-sparc64-di nic-modules-6.6.15-sparc64-di nic-shared-modules-6.6.15-sparc64-di nic-usb-modules-6.6.15-sparc64-di pata-modules-6.6.15-sparc64-di ppp-modules-6.6.15-sparc64-di sata-modules-6.6.15-sparc64-di scsi-core-modules-6.6.15-sparc64-di scsi-modules-6.6.15-sparc64-di squashfs-modules-6.6.15-sparc64-di udf-modules-6.6.15-sparc64-di ufs-modules-6.6.15-sparc64-di usb-modules-6.6.15-sparc64-di usb-serial-modules-6.6.15-sparc64-di usb-storage-modules-6.6.15-sparc64-di xfs-modules-6.6.15-sparc64-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.6.15-sparc64-di -pbtrfs-modules-6.6.15-sparc64-di -pcdrom-core-modules-6.6.15-sparc64-di -pcrc-modules-6.6.15-sparc64-di -pcrypto-dm-modules-6.6.15-sparc64-di -pcrypto-modules-6.6.15-sparc64-di -pext4-modules-6.6.15-sparc64-di -pf2fs-modules-6.6.15-sparc64-di -pfat-modules-6.6.15-sparc64-di -pfb-modules-6.6.15-sparc64-di -pi2c-modules-6.6.15-sparc64-di -pinput-modules-6.6.15-sparc64-di -pisofs-modules-6.6.15-sparc64-di -pjfs-modules-6.6.15-sparc64-di -pkernel-image-6.6.15-sparc64-di -pmd-modules-6.6.15-sparc64-di -pmultipath-modules-6.6.15-sparc64-di -pnbd-modules-6.6.15-sparc64-di -pnic-modules-6.6.15-sparc64-di -pnic-shared-modules-6.6.15-sparc64-di -pnic-usb-modules-6.6.15-sparc64-di -ppata-modules-6.6.15-sparc64-di -pppp-modules-6.6.15-sparc64-di -psata-modules-6.6.15-sparc64-di -pscsi-core-modules-6.6.15-sparc64-di -pscsi-modules-6.6.15-sparc64-di -psquashfs-modules-6.6.15-sparc64-di -pudf-modules-6.6.15-sparc64-di -pufs-modules-6.6.15-sparc64-di -pusb-modules-6.6.15-sparc64-di -pusb-serial-modules-6.6.15-sparc64-di -pusb-storage-modules-6.6.15-sparc64-di -pxfs-modules-6.6.15-sparc64-di' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.6.15-sparc64-di' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, ata-modules-6.7.7-sparc64-di btrfs-modules-6.7.7-sparc64-di cdrom-core-modules-6.7.7-sparc64-di crc-modules-6.7.7-sparc64-di crypto-dm-modules-6.7.7-sparc64-di crypto-modules-6.7.7-sparc64-di ext4-modules-6.7.7-sparc64-di f2fs-modules-6.7.7-sparc64-di fat-modules-6.7.7-sparc64-di fb-modules-6.7.7-sparc64-di i2c-modules-6.7.7-sparc64-di input-modules-6.7.7-sparc64-di isofs-modules-6.7.7-sparc64-di jfs-modules-6.7.7-sparc64-di kernel-image-6.7.7-sparc64-di md-modules-6.7.7-sparc64-di multipath-modules-6.7.7-sparc64-di nbd-modules-6.7.7-sparc64-di nic-modules-6.7.7-sparc64-di nic-shared-modules-6.7.7-sparc64-di nic-usb-modules-6.7.7-sparc64-di pata-modules-6.7.7-sparc64-di ppp-modules-6.7.7-sparc64-di sata-modules-6.7.7-sparc64-di scsi-core-modules-6.7.7-sparc64-di scsi-modules-6.7.7-sparc64-di squashfs-modules-6.7.7-sparc64-di udf-modules-6.7.7-sparc64-di ufs-modules-6.7.7-sparc64-di usb-modules-6.7.7-sparc64-di usb-serial-modules-6.7.7-sparc64-di usb-storage-modules-6.7.7-sparc64-di xfs-modules-6.7.7-sparc64-di, $(MAKE) -f debian/rules.real setup_installer ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-pata-modules-6.7.7-sparc64-di -pbtrfs-modules-6.7.7-sparc64-di -pcdrom-core-modules-6.7.7-sparc64-di -pcrc-modules-6.7.7-sparc64-di -pcrypto-dm-modules-6.7.7-sparc64-di -pcrypto-modules-6.7.7-sparc64-di -pext4-modules-6.7.7-sparc64-di -pf2fs-modules-6.7.7-sparc64-di -pfat-modules-6.7.7-sparc64-di -pfb-modules-6.7.7-sparc64-di -pi2c-modules-6.7.7-sparc64-di -pinput-modules-6.7.7-sparc64-di -pisofs-modules-6.7.7-sparc64-di -pjfs-modules-6.7.7-sparc64-di -pkernel-image-6.7.7-sparc64-di -pmd-modules-6.7.7-sparc64-di -pmultipath-modules-6.7.7-sparc64-di -pnbd-modules-6.7.7-sparc64-di -pnic-modules-6.7.7-sparc64-di -pnic-shared-modules-6.7.7-sparc64-di -pnic-usb-modules-6.7.7-sparc64-di -ppata-modules-6.7.7-sparc64-di -pppp-modules-6.7.7-sparc64-di -psata-modules-6.7.7-sparc64-di -pscsi-core-modules-6.7.7-sparc64-di -pscsi-modules-6.7.7-sparc64-di -psquashfs-modules-6.7.7-sparc64-di -pudf-modules-6.7.7-sparc64-di -pufs-modules-6.7.7-sparc64-di -pusb-modules-6.7.7-sparc64-di -pusb-serial-modules-6.7.7-sparc64-di -pusb-storage-modules-6.7.7-sparc64-di -pxfs-modules-6.7.7-sparc64-di' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='kernel-image-6.7.7-sparc64-di' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_sparc64_none_sparc64_meta: - $(call if_package, linux-image-sparc64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sparc64' DH_OPTIONS='-plinux-image-sparc64' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-sparc64' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' PACKAGE_NAME='linux-image-sparc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-headers-sparc64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-sparc64' DH_OPTIONS='-plinux-headers-sparc64' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.6.15-sparc64' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' PACKAGE_NAME='linux-headers-sparc64' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') - $(call if_package, linux-image-sparc64-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.6.15' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sparc64-dbg' DH_OPTIONS='-plinux-image-sparc64-dbg' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.6.15-sparc64-dbg' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.6.15-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' PACKAGE_NAME='linux-image-sparc64-dbg' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-image-sparc64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sparc64' DH_OPTIONS='-plinux-image-sparc64' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-sparc64' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' PACKAGE_NAME='linux-image-sparc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-headers-sparc64, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-headers-sparc64' DH_OPTIONS='-plinux-headers-sparc64' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-headers-6.7.7-sparc64' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' PACKAGE_NAME='linux-headers-sparc64' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') + $(call if_package, linux-image-sparc64-dbg, $(MAKE) -f debian/rules.real setup_meta ABINAME='6.7.7' ARCH='sparc64' COMPILER='gcc-13' DESTDIR='$(CURDIR)/debian/linux-image-sparc64-dbg' DH_OPTIONS='-plinux-image-sparc64-dbg' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' INSTALLDOCS_LINK_DOC='linux-image-6.7.7-sparc64-dbg' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"6.7.7-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' PACKAGE_NAME='linux-image-sparc64-dbg' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_sparc64_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.6.15' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='sparc' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.7.7' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='sparc' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_sparc64_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.6.15' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='sparc' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.7.7' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='sparc' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_sparc64_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.6.15' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='sparc' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.7.7' ARCH='sparc64' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='sparc' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_support: - $(call if_package, linux-support-6.6.15, $(MAKE) -f debian/rules.real setup_support ABINAME='6.6.15' DESTDIR='$(CURDIR)/debian/linux-support-6.6.15' DH_OPTIONS='-plinux-support-6.6.15' PACKAGE_NAME='linux-support-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-support-6.7.7, $(MAKE) -f debian/rules.real setup_support ABINAME='6.7.7' DESTDIR='$(CURDIR)/debian/linux-support-6.7.7' DH_OPTIONS='-plinux-support-6.7.7' PACKAGE_NAME='linux-support-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_x32:setup_x32_bpftool setup_x32_cpupower setup_x32_hyperv-daemons setup_x32_kbuild setup_x32_perf setup_x32_rtla setup_x32_usbip setup_x32_bpftool: - $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.6.15' ARCH='x32' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='x86' PACKAGE_NAME='bpftool' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, bpftool, $(MAKE) -f debian/rules.real setup_bpftool ABINAME='6.7.7' ARCH='x32' DESTDIR='$(CURDIR)/debian/bpftool' DH_OPTIONS='-pbpftool' KERNEL_ARCH='x86' PACKAGE_NAME='bpftool' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_x32_cpupower: - $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.6.15' ARCH='x32' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='x86' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, libcpupower-dev libcpupower1 linux-cpupower, $(MAKE) -f debian/rules.real setup_cpupower ABINAME='6.7.7' ARCH='x32' DESTDIR='$(CURDIR)/debian/tmp' DH_OPTIONS='-plibcpupower-dev -plibcpupower1 -plinux-cpupower' KERNEL_ARCH='x86' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_x32_hyperv-daemons: - $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.6.15' ARCH='x32' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='x86' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, hyperv-daemons, $(MAKE) -f debian/rules.real setup_hyperv-daemons ABINAME='6.7.7' ARCH='x32' DESTDIR='$(CURDIR)/debian/hyperv-daemons' DH_OPTIONS='-phyperv-daemons' KERNEL_ARCH='x86' PACKAGE_NAME='hyperv-daemons' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_x32_kbuild: - $(call if_package, linux-kbuild-6.6.15, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.6.15' ARCH='x32' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.6.15' DH_OPTIONS='-plinux-kbuild-6.6.15' KERNEL_ARCH='x86' PACKAGE_NAME='linux-kbuild-6.6.15' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-kbuild-6.7.7, $(MAKE) -f debian/rules.real setup_kbuild ABINAME='6.7.7' ARCH='x32' DESTDIR='$(CURDIR)/debian/linux-kbuild-6.7.7' DH_OPTIONS='-plinux-kbuild-6.7.7' KERNEL_ARCH='x86' PACKAGE_NAME='linux-kbuild-6.7.7' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_x32_perf: - $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.6.15' ARCH='x32' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='x86' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, linux-perf, $(MAKE) -f debian/rules.real setup_perf ABINAME='6.7.7' ARCH='x32' DESTDIR='$(CURDIR)/debian/linux-perf' DH_OPTIONS='-plinux-perf' KERNEL_ARCH='x86' PACKAGE_NAME='linux-perf' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_x32_rtla: - $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.6.15' ARCH='x32' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='x86' PACKAGE_NAME='rtla' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, rtla, $(MAKE) -f debian/rules.real setup_rtla ABINAME='6.7.7' ARCH='x32' DESTDIR='$(CURDIR)/debian/rtla' DH_OPTIONS='-prtla' KERNEL_ARCH='x86' PACKAGE_NAME='rtla' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') setup_x32_usbip: - $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.6.15' ARCH='x32' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='x86' PACKAGE_NAME='usbip' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6') + $(call if_package, usbip, $(MAKE) -f debian/rules.real setup_usbip ABINAME='6.7.7' ARCH='x32' DESTDIR='$(CURDIR)/debian/usbip' DH_OPTIONS='-pusbip' KERNEL_ARCH='x86' PACKAGE_NAME='usbip' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7') source:source_none source_rt source_none: - $(MAKE) -f debian/rules.real source ABINAME='6.6.15' FEATURESET='none' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6' + $(MAKE) -f debian/rules.real source ABINAME='6.7.7' FEATURESET='none' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7' source_rt: - $(MAKE) -f debian/rules.real source ABINAME='6.6.15' FEATURESET='rt' SOURCEVERSION='6.6.15-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.6' VERSION='6.6' + $(MAKE) -f debian/rules.real source ABINAME='6.7.7' FEATURESET='rt' SOURCEVERSION='6.7.7-1' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='6.7' VERSION='6.7' diff --git a/debian/rules.real b/debian/rules.real index 45f91261ad..40e7420e76 100644 --- a/debian/rules.real +++ b/debian/rules.real @@ -20,12 +20,7 @@ ifdef ARCH endif endif -ifneq ($(DEB_BUILD_ARCH),$(or $(KERNEL_DEB_ARCH),$(DEB_HOST_ARCH))) - CROSS_COMPILE := $(or $(KERNEL_GNU_TYPE),$(DEB_HOST_GNU_TYPE))- -else - CROSS_COMPILE := -endif -export CROSS_COMPILE +export CROSS_COMPILE := $(or $(KERNEL_GNU_TYPE),$(DEB_HOST_GNU_TYPE))- export DH_OPTIONS export DEB_HOST_ARCH DEB_HOST_GNU_TYPE DEB_BUILD_ARCH @@ -128,8 +123,6 @@ $(STAMPS_DIR)/source_none: $(STAMPS_DIR)/source $(STAMPS_DIR)/setup_$(ARCH)_$(FEATURESET)_$(FLAVOUR): CONFIG=$(BUILD_DIR)/config.$(ARCH)_$(FEATURESET)_$(FLAVOUR) $(STAMPS_DIR)/setup_$(ARCH)_$(FEATURESET)_$(FLAVOUR): SOURCE_DIR=$(BUILD_DIR)/source_$(FEATURESET) $(STAMPS_DIR)/setup_$(ARCH)_$(FEATURESET)_$(FLAVOUR): DIR=$(BUILD_DIR)/build_$(ARCH)_$(FEATURESET)_$(FLAVOUR) -$(STAMPS_DIR)/setup_$(ARCH)_$(FEATURESET)_$(FLAVOUR): KERNEL_DEB_ARCH?=$(DEB_HOST_ARCH) -$(STAMPS_DIR)/setup_$(ARCH)_$(FEATURESET)_$(FLAVOUR): KERNEL_GNU_TYPE?=$(DEB_HOST_GNU_TYPE) $(STAMPS_DIR)/setup_$(ARCH)_$(FEATURESET)_$(FLAVOUR): $(STAMPS_DIR)/source_$(FEATURESET) $(BUILD_DIR)/config.$(ARCH)_$(FEATURESET)_$(FLAVOUR) rm -rf '$(DIR)' mkdir '$(DIR)' @@ -149,30 +142,36 @@ else # filename. echo 'CC = $$(if $$(DEBIAN_KERNEL_USE_CCACHE),$$(CCACHE)) $$(word 1,$$(foreach dir,$(dir $(COMPILER)) $$(subst :, ,$$(PATH)),$$(wildcard $$(dir)/$$(CROSS_COMPILE)$(notdir $(COMPILER)))))' >> '$(DIR)/.kernelvariables' endif -# TODO: Should we set CROSS_COMPILE always? echo 'DEB_BUILD_ARCH ?= $$(shell dpkg --print-architecture)' >> '$(DIR)/.kernelvariables' - echo 'ifneq ($$(DEB_BUILD_ARCH),$(KERNEL_DEB_ARCH))' >> '$(DIR)/.kernelvariables' - echo 'override CROSS_COMPILE = $(KERNEL_GNU_TYPE)-' >> '$(DIR)/.kernelvariables' - echo 'endif' >> '$(DIR)/.kernelvariables' + echo 'override CROSS_COMPILE = $(CROSS_COMPILE)' >> '$(DIR)/.kernelvariables' ifdef KCFLAGS - echo 'KCFLAGS += $(KCFLAGS)' >> '$(DIR)/.kernelvariables' + echo 'override KCFLAGS += $(KCFLAGS)' >> '$(DIR)/.kernelvariables' endif -ifdef COMPAT_DEB_ARCH - echo 'ifneq ($$(DEB_BUILD_ARCH),$(COMPAT_DEB_ARCH))' >> '$(DIR)/.kernelvariables' +ifdef COMPAT_GNU_TYPE echo 'override CROSS_COMPILE_COMPAT = $(COMPAT_GNU_TYPE)-' >> '$(DIR)/.kernelvariables' echo 'override CROSS32_COMPILE = $(COMPAT_GNU_TYPE)-' >> '$(DIR)/.kernelvariables' - echo 'endif' >> '$(DIR)/.kernelvariables' endif echo 'DEBIAN_KERNEL_NO_CC_VERSION_CHECK = y' >> '$(DIR)/.kernelvariables' +$(MAKE_CLEAN) -C '$(SOURCE_DIR)' O='$(CURDIR)/$(DIR)' listnewconfig +yes "" | $(MAKE_CLEAN) -C '$(SOURCE_DIR)' O='$(CURDIR)/$(DIR)' oldconfig >/dev/null @$(stamp) +$(STAMPS_DIR)/build_$(ARCH)_$(FEATURESET)_$(FLAVOUR): SOURCE_DIR=$(BUILD_DIR)/source_$(FEATURESET) $(STAMPS_DIR)/build_$(ARCH)_$(FEATURESET)_$(FLAVOUR): DIR=$(BUILD_DIR)/build_$(ARCH)_$(FEATURESET)_$(FLAVOUR) $(STAMPS_DIR)/build_$(ARCH)_$(FEATURESET)_$(FLAVOUR): $(STAMPS_DIR)/setup_$(ARCH)_$(FEATURESET)_$(FLAVOUR) $(STAMPS_DIR)/build_$(ARCH)_$(FEATURESET)_$(FLAVOUR): +$(MAKE_CLEAN) -C '$(DIR)' + + mkdir -p $(DIR)/tools/bpf/bpftool + +$(MAKE_CLEAN) -C '$(SOURCE_DIR)/tools/bpf/bpftool' O=$(DIR)/tools/bpf/bpftool CROSS_COMPILE= FEATURE_TESTS= FEATURE_DISPLAY= + + if grep -q CONFIG_DEBUG_INFO_BTF=y $(DIR)/.config; then \ + $(DIR)/tools/bpf/bpftool/bpftool btf dump file $(DIR)/vmlinux format c > $(DIR)/vmlinux.h; \ + else \ + echo '#error "Kernel build without CONFIG_DEBUG_INFO_BTF, no type info available"' > $(DIR)/vmlinux.h; \ + fi + debian/bin/buildcheck.py $(DIR) $(ARCH) $(FEATURESET) $(FLAVOUR) @$(stamp) @@ -232,8 +231,8 @@ define dh_binary_post dh_compress dh_fixperms dh_missing - dh_strip - dh_makeshlibs + dh_strip $(DH_STRIP_ARGS) -Xvmlinux -Xvmlinuz + dh_makeshlibs -Xvmlinux -Xvmlinuz dh_shlibdeps $(DH_SHLIBDEPS_ARGS) dh_installdeb if command -v dh_movetousr >/dev/null; then dh_movetousr; fi @@ -324,7 +323,7 @@ binary_headers: $(STAMPS_DIR)/build_$(ARCH)_$(FEATURESET)_$(FLAVOUR) $(dh_binary_pre) mkdir -p $(DIR)/arch/$(KERNEL_ARCH)/kernel - cp -a $(SOURCE_DIR)/{.config,.kernel*,Module.symvers,include} $(DIR) + cp -a $(SOURCE_DIR)/{.config,.kernel*,Module.symvers,include,vmlinux.h} $(DIR) cp -a $(SOURCE_DIR)/arch/$(KERNEL_ARCH)/include $(DIR)/arch/$(KERNEL_ARCH) find $(DIR) -name '*.cmd' -delete @@ -378,7 +377,6 @@ binary_support: PACKAGE_ROOT = /usr/share/$(PACKAGE_NAME) binary_support: $(dh_binary_pre) dh_installdirs $(PACKAGE_ROOT)/lib/python/debian_linux $(PACKAGE_ROOT)/modules - cp debian/config.defines.dump $(DESTDIR)$(PACKAGE_ROOT) cp -R debian/installer $(DESTDIR)$(PACKAGE_ROOT)/installer cp debian/lib/python/debian_linux/*.py $(DESTDIR)$(PACKAGE_ROOT)/lib/python/debian_linux dh_python3 @@ -389,6 +387,7 @@ setup_image: $(STAMPS_DIR)/setup_$(ARCH)_$(FEATURESET)_$(FLAVOUR) build_image: $(STAMPS_DIR)/build_$(ARCH)_$(FEATURESET)_$(FLAVOUR) +binary_image: DH_STRIP_ARGS = --no-automatic-dbgsym binary_image: REAL_VERSION = $(ABINAME)$(LOCALVERSION) binary_image: INSTALL_DIR = $(DESTDIR)/boot binary_image: DIR = $(BUILD_DIR)/build_$(ARCH)_$(FEATURESET)_$(FLAVOUR) @@ -408,7 +407,6 @@ endif +$(MAKE_SELF) \ binary_image_bug \ DESTDIR='$(DESTDIR)' PACKAGE_NAME='$(PACKAGE_NAME)' REAL_VERSION='$(REAL_VERSION)' - dh_strip --no-automatic-dbgsym -Xvmlinux -Xvmlinuz $(dh_binary_post) binary_image_bug: diff --git a/debian/salsa-ci.yml b/debian/salsa-ci.yml index 3062e82ef9..58efe6a395 100644 --- a/debian/salsa-ci.yml +++ b/debian/salsa-ci.yml @@ -60,6 +60,7 @@ extract-source: gpgv \ kernel-wedge \ python3 \ + python3-dacite \ python3-debian \ python3-jinja2 \ quilt \ @@ -213,7 +214,7 @@ python-static: script: - | apt-get update && eatmydata apt-get install --no-install-recommends -y \ - flake8 python3 python3-jinja2 python3-pytest + flake8 python3 python3-dacite python3-jinja2 python3-pytest # Run both checkers and coalesce their results rather than exiting # on first failure @@ -236,7 +237,7 @@ kconfig-static: # Unpack source and apply featureset patches - | apt-get update && eatmydata apt-get install --no-install-recommends -y \ - debhelper dpkg-dev git python3 quilt + debhelper dpkg-dev git python3 python3-dacite quilt - dpkg-source -x ${WORKING_DIR}/*.dsc ${WORKING_DIR}/${SOURCE_DIR} - cd ${WORKING_DIR}/${SOURCE_DIR} - debian/rules source diff --git a/debian/signing_templates/rules.real b/debian/signing_templates/rules.real index f617dbe004..cffed48829 100644 --- a/debian/signing_templates/rules.real +++ b/debian/signing_templates/rules.real @@ -30,8 +30,8 @@ define dh_binary_post dh_compress dh_fixperms dh_missing - dh_strip - dh_makeshlibs + dh_strip $(DH_STRIP_ARGS) -Xvmlinux -Xvmlinuz + dh_makeshlibs -Xvmlinux -Xvmlinuz dh_shlibdeps $(DH_SHLIBDEPS_ARGS) dh_installdeb dh_gencontrol -- $(GENCONTROL_ARGS) @@ -44,6 +44,7 @@ build-indep: build_image: binary_image: DH_OPTIONS = -p$(PACKAGE_NAME) +binary_image: DH_STRIP_ARGS = --no-automatic-dbgsym binary_image: KERNEL_VERSION = $(ABINAME)$(LOCALVERSION) binary_image: IMAGE_PACKAGE_NAME = linux-image-$(KERNEL_VERSION)-unsigned binary_image: PACKAGE_DIR = debian/$(PACKAGE_NAME) diff --git a/debian/templates/headers.tests-control.in b/debian/templates/headers.tests-control.in index f56894d8da..89648c212e 100644 --- a/debian/templates/headers.tests-control.in +++ b/debian/templates/headers.tests-control.in @@ -1,4 +1,4 @@ -Tests: kbuild -Architecture: -Depends: python3 -Restrictions: superficial +Test-Command: debian/tests/headers-kbuild @abiname@@localversion@ +Architecture: @arch@ +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild@localversion@ diff --git a/debian/templates/image.tests-control.in b/debian/templates/image.tests-control.in index 62497c67ae..e69de29bb2 100644 --- a/debian/templates/image.tests-control.in +++ b/debian/templates/image.tests-control.in @@ -1,4 +0,0 @@ -Tests: selftests -Restrictions: breaks-testbed, needs-root, isolation-machine -Depends: kexec-tools, python3, gcc, make, libpopt-dev, gcc-multilib [amd64], bc, fuse, libfuse-dev, pkg-config -Classes: smp diff --git a/debian/templates/source.control.in b/debian/templates/source.control.in index 7c64616706..59fa8422d9 100644 --- a/debian/templates/source.control.in +++ b/debian/templates/source.control.in @@ -7,6 +7,7 @@ Build-Depends: debhelper-compat (= 12), dh-exec, # used to run debian/bin/*.py python3:native, + python3-dacite:native, python3-jinja2:native, # used by debian/rules.real to prepare the source quilt, diff --git a/debian/templates/tools-unversioned.control.in b/debian/templates/tools-unversioned.control.in index 85e9f49e9f..be4c3c50fb 100644 --- a/debian/templates/tools-unversioned.control.in +++ b/debian/templates/tools-unversioned.control.in @@ -60,10 +60,10 @@ Package: linux-perf Meta-Rules-Target: perf Build-Profiles: <!pkg.linux.notools !pkg.linux.mintools !nopython> Section: devel -Architecture: alpha amd64 arm64 armel armhf hppa i386 mips mips64 mips64el mipsel mipsn32 mipsn32el mipsr6 mipsr6el mipsn32r6 mipsn32r6el mips64r6 mips64r6el powerpc ppc64 ppc64el riscv64 s390 s390x sh4 sparc sparc64 +Architecture: alpha amd64 arm64 armel armhf hppa i386 loong64 mips mips64 mips64el mipsel mipsn32 mipsn32el mipsr6 mipsr6el mipsn32r6 mipsn32r6el mips64r6 mips64r6el powerpc ppc64 ppc64el riscv64 s390 s390x sh4 sparc sparc64 Build-Depends: asciidoctor <!nodoc !pkg.linux.notools !nopython>, - gcc-multilib [amd64 mips64 mips64el mips64r6 mips64r6el ppc64 s390x sparc64], + gcc-multilib [amd64 mips64 mips64el mips64r6 mips64r6el ppc64 s390x sparc64] <!cross>, libaudit-dev, libbabeltrace-dev, libdw-dev, diff --git a/debian/tests/control b/debian/tests/control index b93e4e5bfd..4428e8257f 100644 --- a/debian/tests/control +++ b/debian/tests/control @@ -2,13 +2,273 @@ Test-Command: py.test debian/lib/python Restrictions: superficial Depends: python3-pytest, python3-jinja2 -Tests: selftests -Restrictions: breaks-testbed, needs-root, isolation-machine -Depends: kexec-tools, python3, gcc, make, libpopt-dev, gcc-multilib [amd64], bc, fuse, libfuse-dev, pkg-config, linux-image-6.6.15-alpha-generic [alpha], linux-image-6.6.15-alpha-smp [alpha], linux-image-6.6.15-amd64-unsigned [amd64], linux-image-6.6.15-cloud-amd64-unsigned [amd64], linux-image-6.6.15-rt-amd64-unsigned [amd64], linux-image-6.6.15-arm64-unsigned [arm64], linux-image-6.6.15-cloud-arm64-unsigned [arm64], linux-image-6.6.15-rt-arm64-unsigned [arm64], linux-image-6.6.15-rpi [armel], linux-image-6.6.15-armmp [armhf], linux-image-6.6.15-armmp-lpae [armhf], linux-image-6.6.15-rt-armmp [armhf], linux-image-6.6.15-parisc [hppa], linux-image-6.6.15-parisc64 [hppa], linux-image-6.6.15-686 [i386], linux-image-6.6.15-686-pae [i386], linux-image-6.6.15-rt-686-pae [i386], linux-image-6.6.15-itanium [ia64], linux-image-6.6.15-mckinley [ia64], linux-image-6.6.15-m68k [m68k], linux-image-6.6.15-4kc-malta [mips mipsel], linux-image-6.6.15-mips32r2eb [mips], linux-image-6.6.15-octeon [mips mips64 mips64el mipsel], linux-image-6.6.15-5kc-malta [mips64 mips64el], linux-image-6.6.15-mips64r2eb [mips64], linux-image-6.6.15-mips64r2el [mips64el], linux-image-6.6.15-loongson-3 [mips64el mipsel], linux-image-6.6.15-mips64r6el [mips64r6el], linux-image-6.6.15-mips32r2el [mipsel], linux-image-6.6.15-powerpc [powerpc], linux-image-6.6.15-powerpc-smp [powerpc], linux-image-6.6.15-powerpc64 [powerpc ppc64], linux-image-6.6.15-powerpc64le [ppc64el], linux-image-6.6.15-riscv64 [riscv64], linux-image-6.6.15-s390x [s390x], linux-image-6.6.15-sh7751r [sh4], linux-image-6.6.15-sh7785lcr [sh4], linux-image-6.6.15-sparc64 [sparc64], linux-image-6.6.15-sparc64-smp [sparc64] -Classes: smp +Test-Command: debian/tests/headers-kbuild 6.7.7-alpha-generic +Architecture: alpha +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-alpha-generic +Depends: linux-headers-6.7.7-alpha-generic, linux-image-6.7.7-alpha-generic -Tests: kbuild -Architecture: alpha amd64 arm64 armhf hppa i386 ia64 m68k ppc64 ppc64el riscv64 s390x sparc64 -Restrictions: superficial -Depends: python3, linux-headers-6.6.15-alpha-smp [alpha], linux-headers-6.6.15-cloud-amd64 [amd64], linux-headers-6.6.15-cloud-arm64 [arm64], linux-headers-6.6.15-armmp [armhf], linux-headers-6.6.15-parisc [hppa], linux-headers-6.6.15-686-pae [i386], linux-headers-6.6.15-itanium [ia64], linux-headers-6.6.15-m68k [m68k], linux-headers-6.6.15-powerpc64 [ppc64], linux-headers-6.6.15-powerpc64le [ppc64el], linux-headers-6.6.15-riscv64 [riscv64], linux-headers-6.6.15-s390x [s390x], linux-headers-6.6.15-sparc64-smp [sparc64] +Test-Command: debian/tests/headers-kbuild 6.7.7-alpha-smp +Architecture: alpha +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-alpha-smp +Depends: linux-headers-6.7.7-alpha-smp, linux-image-6.7.7-alpha-smp + +Test-Command: debian/tests/headers-kbuild 6.7.7-amd64 +Architecture: amd64 +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-amd64 +Depends: linux-headers-6.7.7-amd64, linux-image-6.7.7-amd64-unsigned + +Test-Command: debian/tests/headers-kbuild 6.7.7-cloud-amd64 +Architecture: amd64 +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-cloud-amd64 +Depends: linux-headers-6.7.7-cloud-amd64, linux-image-6.7.7-cloud-amd64-unsigned + +Test-Command: debian/tests/headers-kbuild 6.7.7-rt-amd64 +Architecture: amd64 +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-rt-amd64 +Depends: linux-headers-6.7.7-rt-amd64, linux-image-6.7.7-rt-amd64-unsigned + +Test-Command: debian/tests/headers-kbuild 6.7.7-arm64 +Architecture: arm64 +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-arm64 +Depends: linux-headers-6.7.7-arm64, linux-image-6.7.7-arm64-unsigned + +Test-Command: debian/tests/headers-kbuild 6.7.7-cloud-arm64 +Architecture: arm64 +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-cloud-arm64 +Depends: linux-headers-6.7.7-cloud-arm64, linux-image-6.7.7-cloud-arm64-unsigned + +Test-Command: debian/tests/headers-kbuild 6.7.7-rt-arm64 +Architecture: arm64 +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-rt-arm64 +Depends: linux-headers-6.7.7-rt-arm64, linux-image-6.7.7-rt-arm64-unsigned + +Test-Command: debian/tests/headers-kbuild 6.7.7-rpi +Architecture: armel +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-rpi +Depends: linux-headers-6.7.7-rpi, linux-image-6.7.7-rpi + +Test-Command: debian/tests/headers-kbuild 6.7.7-armmp +Architecture: armhf +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-armmp +Depends: linux-headers-6.7.7-armmp, linux-image-6.7.7-armmp + +Test-Command: debian/tests/headers-kbuild 6.7.7-armmp-lpae +Architecture: armhf +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-armmp-lpae +Depends: linux-headers-6.7.7-armmp-lpae, linux-image-6.7.7-armmp-lpae + +Test-Command: debian/tests/headers-kbuild 6.7.7-rt-armmp +Architecture: armhf +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-rt-armmp +Depends: linux-headers-6.7.7-rt-armmp, linux-image-6.7.7-rt-armmp + +Test-Command: debian/tests/headers-kbuild 6.7.7-parisc +Architecture: hppa +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-parisc +Depends: linux-headers-6.7.7-parisc, linux-image-6.7.7-parisc + +Test-Command: debian/tests/headers-kbuild 6.7.7-parisc64 +Architecture: hppa +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-parisc64 +Depends: linux-headers-6.7.7-parisc64, linux-image-6.7.7-parisc64 + +Test-Command: debian/tests/headers-kbuild 6.7.7-686 +Architecture: i386 +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-686 +Depends: linux-headers-6.7.7-686, linux-image-6.7.7-686 + +Test-Command: debian/tests/headers-kbuild 6.7.7-686-pae +Architecture: i386 +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-686-pae +Depends: linux-headers-6.7.7-686-pae, linux-image-6.7.7-686-pae + +Test-Command: debian/tests/headers-kbuild 6.7.7-rt-686-pae +Architecture: i386 +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-rt-686-pae +Depends: linux-headers-6.7.7-rt-686-pae, linux-image-6.7.7-rt-686-pae + +Test-Command: debian/tests/headers-kbuild 6.7.7-loong64 +Architecture: loong64 +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-loong64 +Depends: linux-headers-6.7.7-loong64, linux-image-6.7.7-loong64 + +Test-Command: debian/tests/headers-kbuild 6.7.7-m68k +Architecture: m68k +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-m68k +Depends: linux-headers-6.7.7-m68k, linux-image-6.7.7-m68k + +Test-Command: debian/tests/headers-kbuild 6.7.7-4kc-malta +Architecture: mips +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-4kc-malta +Depends: linux-headers-6.7.7-4kc-malta, linux-image-6.7.7-4kc-malta + +Test-Command: debian/tests/headers-kbuild 6.7.7-mips32r2eb +Architecture: mips +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-mips32r2eb +Depends: linux-headers-6.7.7-mips32r2eb, linux-image-6.7.7-mips32r2eb + +Test-Command: debian/tests/headers-kbuild 6.7.7-octeon +Architecture: mips +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-octeon +Depends: linux-headers-6.7.7-octeon, linux-image-6.7.7-octeon + +Test-Command: debian/tests/headers-kbuild 6.7.7-5kc-malta +Architecture: mips64 +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-5kc-malta +Depends: linux-headers-6.7.7-5kc-malta, linux-image-6.7.7-5kc-malta + +Test-Command: debian/tests/headers-kbuild 6.7.7-mips64r2eb +Architecture: mips64 +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-mips64r2eb +Depends: linux-headers-6.7.7-mips64r2eb, linux-image-6.7.7-mips64r2eb + +Test-Command: debian/tests/headers-kbuild 6.7.7-octeon +Architecture: mips64 +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-octeon +Depends: linux-headers-6.7.7-octeon, linux-image-6.7.7-octeon + +Test-Command: debian/tests/headers-kbuild 6.7.7-5kc-malta +Architecture: mips64el +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-5kc-malta +Depends: linux-headers-6.7.7-5kc-malta, linux-image-6.7.7-5kc-malta + +Test-Command: debian/tests/headers-kbuild 6.7.7-mips64r2el +Architecture: mips64el +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-mips64r2el +Depends: linux-headers-6.7.7-mips64r2el, linux-image-6.7.7-mips64r2el + +Test-Command: debian/tests/headers-kbuild 6.7.7-loongson-3 +Architecture: mips64el +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-loongson-3 +Depends: linux-headers-6.7.7-loongson-3, linux-image-6.7.7-loongson-3 + +Test-Command: debian/tests/headers-kbuild 6.7.7-octeon +Architecture: mips64el +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-octeon +Depends: linux-headers-6.7.7-octeon, linux-image-6.7.7-octeon + +Test-Command: debian/tests/headers-kbuild 6.7.7-mips64r6el +Architecture: mips64r6el +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-mips64r6el +Depends: linux-headers-6.7.7-mips64r6el, linux-image-6.7.7-mips64r6el + +Test-Command: debian/tests/headers-kbuild 6.7.7-4kc-malta +Architecture: mipsel +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-4kc-malta +Depends: linux-headers-6.7.7-4kc-malta, linux-image-6.7.7-4kc-malta + +Test-Command: debian/tests/headers-kbuild 6.7.7-mips32r2el +Architecture: mipsel +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-mips32r2el +Depends: linux-headers-6.7.7-mips32r2el, linux-image-6.7.7-mips32r2el + +Test-Command: debian/tests/headers-kbuild 6.7.7-loongson-3 +Architecture: mipsel +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-loongson-3 +Depends: linux-headers-6.7.7-loongson-3, linux-image-6.7.7-loongson-3 + +Test-Command: debian/tests/headers-kbuild 6.7.7-octeon +Architecture: mipsel +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-octeon +Depends: linux-headers-6.7.7-octeon, linux-image-6.7.7-octeon + +Test-Command: debian/tests/headers-kbuild 6.7.7-powerpc +Architecture: powerpc +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-powerpc +Depends: linux-headers-6.7.7-powerpc, linux-image-6.7.7-powerpc + +Test-Command: debian/tests/headers-kbuild 6.7.7-powerpc-smp +Architecture: powerpc +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-powerpc-smp +Depends: linux-headers-6.7.7-powerpc-smp, linux-image-6.7.7-powerpc-smp + +Test-Command: debian/tests/headers-kbuild 6.7.7-powerpc64 +Architecture: powerpc +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-powerpc64 +Depends: linux-headers-6.7.7-powerpc64, linux-image-6.7.7-powerpc64 + +Test-Command: debian/tests/headers-kbuild 6.7.7-powerpc64 +Architecture: ppc64 +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-powerpc64 +Depends: linux-headers-6.7.7-powerpc64, linux-image-6.7.7-powerpc64 + +Test-Command: debian/tests/headers-kbuild 6.7.7-powerpc64le +Architecture: ppc64el +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-powerpc64le +Depends: linux-headers-6.7.7-powerpc64le, linux-image-6.7.7-powerpc64le + +Test-Command: debian/tests/headers-kbuild 6.7.7-riscv64 +Architecture: riscv64 +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-riscv64 +Depends: linux-headers-6.7.7-riscv64, linux-image-6.7.7-riscv64 + +Test-Command: debian/tests/headers-kbuild 6.7.7-s390x +Architecture: s390x +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-s390x +Depends: linux-headers-6.7.7-s390x, linux-image-6.7.7-s390x + +Test-Command: debian/tests/headers-kbuild 6.7.7-sh7751r +Architecture: sh4 +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-sh7751r +Depends: linux-headers-6.7.7-sh7751r, linux-image-6.7.7-sh7751r + +Test-Command: debian/tests/headers-kbuild 6.7.7-sh7785lcr +Architecture: sh4 +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-sh7785lcr +Depends: linux-headers-6.7.7-sh7785lcr, linux-image-6.7.7-sh7785lcr + +Test-Command: debian/tests/headers-kbuild 6.7.7-sparc64 +Architecture: sparc64 +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-sparc64 +Depends: linux-headers-6.7.7-sparc64, linux-image-6.7.7-sparc64 + +Test-Command: debian/tests/headers-kbuild 6.7.7-sparc64-smp +Architecture: sparc64 +Restrictions: skip-not-installable, superficial +Features: test-name=headers-kbuild-sparc64-smp +Depends: linux-headers-6.7.7-sparc64-smp, linux-image-6.7.7-sparc64-smp diff --git a/debian/tests/kbuild b/debian/tests/headers-kbuild index 18cbe214e8..55681de015 100644..100755 --- a/debian/tests/kbuild +++ b/debian/tests/headers-kbuild @@ -1,5 +1,7 @@ #!/bin/sh -eu +KERNEL_RELEASE="$1" + mkdir "$AUTOPKGTEST_TMP"/foo cat >"$AUTOPKGTEST_TMP"/foo/foo.c <<EOF #include <linux/kernel.h> @@ -23,21 +25,7 @@ cat >"$AUTOPKGTEST_TMP"/foo/Kbuild <<EOF obj-m += foo.o EOF -arch="$(dpkg --print-architecture)" -abiname="$(debian/bin/getconfig.py version abiname)" -if flavour="$(debian/bin/getconfig.py base $arch none quick-flavour)"; then - echo "I: Found quick flavour $flavour" -elif flavour="$(debian/bin/getconfig.py base $arch none default-flavour)"; then - echo "I: Found default flavour $flavour" -elif flavour="$(debian/bin/getconfig.py base $arch default-flavour)"; then - echo "I: Found default flavour $flavour" -else - echo >&2 "E: Failed to find quick or default flavour" - exit 1 -fi -release="$abiname-$flavour" - -echo "I: Build for $release" +echo "I: Build for $KERNEL_RELEASE" # There are some warnings sent to stderr that we need to suppress, # but any other output to stderr should be treated as a failure. # We also want all stdout/stderr to appear in order in the log. @@ -45,7 +33,7 @@ echo "I: Build for $release" exec 3>&1 # Next, run the build with stdout sent to the original stdout and # stderr sent through tee to both the original stdout and a file -make -C /lib/modules/"$release"/build M="$AUTOPKGTEST_TMP"/foo V=1 \ +make -C /lib/modules/"$KERNEL_RELEASE"/build M="$AUTOPKGTEST_TMP"/foo V=1 \ 2>&1 1>&3 | tee "$AUTOPKGTEST_TMP"/foo/make.stderr # Close fd 3 exec 3>&- @@ -55,4 +43,4 @@ if grep -q -v -E 'Skipping BTF generation .* due to unavailability of vmlinux' " fi echo "I: Clean" -make -C /lib/modules/"$release"/build M="$AUTOPKGTEST_TMP"/foo V=1 clean +make -C /lib/modules/"$KERNEL_RELEASE"/build M="$AUTOPKGTEST_TMP"/foo V=1 clean diff --git a/debian/tests/selftests b/debian/tests/selftests deleted file mode 100644 index 02cc29372e..0000000000 --- a/debian/tests/selftests +++ /dev/null @@ -1,88 +0,0 @@ -#!/bin/bash -eu - -PATH=/usr/sbin:/sbin:/usr/bin:/bin - -getconfig() { - debian/bin/getconfig.py "$@" -} - -# Look up current ABI name and 'localversion' (featureset/flavour) suffixes -abiname=$(getconfig version abiname) -arch=$(dpkg --print-architecture) -localversion=() -for featureset in $(getconfig base $arch featuresets); do - if [ "$(getconfig base '' $featureset enabled || echo True)" = True ]; then - for flavour in $(getconfig base $arch $featureset flavours); do - if [ "$featureset" = none ]; then - localversion+=(-$flavour) - else - localversion+=(-$featureset-$flavour) - fi - done - fi -done -steps=${#localversion[*]} - -case "${ADT_REBOOT_MARK:-}" in - "") - step=-1 - ;; - step*) - step=${ADT_REBOOT_MARK#step} - ;; -esac - -if [ "$step" -ge 0 ]; then - ver=$abiname${localversion[$step]} - - if [ "$(uname -r)" != "$ver" ]; then - echo >&2 "Should be running: $ver" - echo >&2 "Actually running: $(uname -r)" - else - cp -lR . $AUTOPKGTEST_TMP/build - cd $AUTOPKGTEST_TMP/build - make headers_install - - # Ignore compiler warnings - { - make -C tools/testing/selftests && - make -C tools/testing/selftests/memfd build_fuse - } 2>&1 || echo >&2 "Build failed" - - # Enable testing CLONE_USERNS by unprivileged users - sysctl kernel.unprivileged_userns_clone=1 - - # Some tests will write to stderr despite being successful, - # and the exit code from make will be 0 even if tests failed. - # So we have to do some post-analysis... - set -o pipefail - { - make -C tools/testing/selftests quicktest=1 run_tests && - make -C tools/testing/selftests/cpu-hotplug run_full_test && - make -C tools/testing/selftests/memory-hotplug run_full_test && - make -C tools/testing/selftests/memfd run_fuse && - make -C tools/testing/selftests/timers run_destructive_tests - } 2>&1 | tee $AUTOPKGTEST_TMP/log - set +o pipefail - if grep -E '\[(FAIL|UNSUPPORTED)\]|recipe for target .run_tests. failed' $AUTOPKGTEST_TMP/log | \ - grep -q -v \ - -e '^selftests: fw_userhelper.sh \[FAIL\]' \ - -e 'ftrace - function profiler with function tracing \[UNSUPPORTED\]' \ - -e '^selftests: ftracetest \[FAIL\]' \ - -e '|| echo .*\[FAIL\]' \ - ; then - echo >&2 "Unexpected failures found" - fi - fi -fi - -step=$((step + 1)) - -if [ "$step" -lt "$steps" ]; then - # Load the next kernel - ver=$abiname${localversion[$step]} - kexec -l /boot/vmlinuz-$ver --initrd /boot/initrd.img-$ver --reuse-cmdline - /tmp/autopkgtest-reboot step$step -fi - -exit 0 |