diff options
Diffstat (limited to '')
35 files changed, 2774 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules new file mode 100755 index 000000000..3659e5b2b --- /dev/null +++ b/debian/rules @@ -0,0 +1,124 @@ +#!/usr/bin/make -f + +SHELL := sh -e +SOURCE := $(shell dpkg-parsechangelog -SSource) +VERSION := $(shell dpkg-parsechangelog -SVersion) +VERSION_UPSTREAM := $(shell echo "$(VERSION)" | sed -e 's,-[^-]*$$,,') +VERSION_BINNMU := $(shell echo "$(VERSION)" | sed -rne 's,.*\+b([0-9]+)$$,\1,p') +VERSION_SOURCE := $(patsubst %+b$(VERSION_BINNMU),%,$(VERSION)) + +include debian/rules.defs + +ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) + DEBIAN_KERNEL_JOBS := $(subst parallel=,,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) +endif +ifdef DEBIAN_KERNEL_JOBS + MAKEFLAGS += -j$(DEBIAN_KERNEL_JOBS) +endif + +.NOTPARALLEL: + +source: debian/control + dh_testdir + $(MAKE) -f debian/rules.gen source + +setup: debian/control + dh_testdir + $(MAKE) -f debian/rules.gen setup_$(DEB_HOST_ARCH) + +build: build-arch build-indep + +build-arch: debian/control + dh_testdir + $(MAKE) -f debian/rules.gen build-arch_$(DEB_HOST_ARCH) + +build-indep: debian/control + dh_testdir + $(MAKE) -f debian/rules.gen build-indep + +binary: binary-indep binary-arch + +binary-arch: build-arch + dh_testdir + $(MAKE) -f debian/rules.gen binary-arch_$(DEB_HOST_ARCH) + +binary-indep: build-indep + dh_testdir + $(MAKE) -f debian/rules.gen binary-indep + +DIR_ORIG = ../orig/$(SOURCE)-$(VERSION_UPSTREAM) +TAR_ORIG_NAME = $(SOURCE)_$(VERSION_UPSTREAM).orig.tar.xz +TAR_ORIG = $(firstword $(wildcard ../$(TAR_ORIG_NAME)) $(wildcard ../orig/$(TAR_ORIG_NAME))) + +orig: $(DIR_ORIG) + rsync --delete --exclude /debian --exclude .svk --exclude .svn --exclude .git --link-dest=$(DIR_ORIG)/ -a $(DIR_ORIG)/ . + QUILT_PATCHES='$(CURDIR)/debian/patches' QUILT_PC=.pc quilt push --quiltrc - -a -q --fuzz=0 + +$(DIR_ORIG): +ifeq ($(TAR_ORIG),) + $(error Cannot find orig tarball $(TAR_ORIG_NAME)) +else + mkdir -p ../orig + tar -C ../orig -xaf $(TAR_ORIG) +endif + +CLEAN_PATTERNS := $(BUILD_DIR) $(STAMPS_DIR) debian/lib/python/debian_linux/*.pyc debian/lib/python/debian_linux/__pycache__ $$(find debian -maxdepth 1 -type d -name 'linux-*') debian/*-modules-*-di* debian/kernel-image-*-di* debian/*-tmp debian/*.substvars + +maintainerclean: + rm -rf $(CLEAN_PATTERNS) +# We cannot use dh_clean here because it requires debian/control to exist + rm -rf debian/.debhelper debian/*.debhelper* debian/files + rm -f \ + debian/linux-image-*.NEWS \ + debian/linux-*.bug-presubj \ + debian/linux-*.lintian-overrides \ + debian/linux-*.maintscript \ + debian/linux-*.postinst \ + debian/linux-*.postrm \ + debian/linux-*.preinst \ + debian/linux-*.prerm \ + debian/config.defines.dump \ + debian/control \ + debian/control.md5sum \ + debian/rules.gen \ + debian/tests/control + rm -rf $(filter-out debian .svk .svn .git, $(wildcard * .[^.]*)) + +clean: debian/control + dh_testdir + rm -rf $(CLEAN_PATTERNS) + 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/installer/kernel-versions debian/installer/package-list + +# debian/bin/gencontrol.py uses debian/changelog as input, but the +# output only depends on the source name and version. To avoid +# frequent changes to debian/control.md5sum, include only those fields +# in the checksum. +$(BUILD_DIR)/version-info: debian/changelog + mkdir -p $(@D) + printf >$@ 'Source: %s\nVersion: %s\n' $(SOURCE) $(VERSION_SOURCE) + +debian/control debian/rules.gen: debian/bin/gencontrol.py $(CONTROL_FILES) +ifeq ($(wildcard debian/control.md5sum),) + $(MAKE) -f debian/rules debian/control-real +else + md5sum --check debian/control.md5sum --status || \ + $(MAKE) -f debian/rules debian/control-real +endif + +debian/control-real: debian/bin/gencontrol.py $(CONTROL_FILES) +# Hash randomisation makes the pickled config unreproducible + PYTHONHASHSEED=0 $< + md5sum $^ > debian/control.md5sum + @echo + @echo This target is made to fail intentionally, to make sure + @echo that it is NEVER run during the automated build. Please + @echo ignore the following error, the debian/control file has + @echo been generated SUCCESSFULLY. + @echo + exit 1 + +.PHONY: binary binary-% build build-% clean debian/control-real orig setup source diff --git a/debian/rules.d/Makefile.inc b/debian/rules.d/Makefile.inc new file mode 100644 index 000000000..719e8ca67 --- /dev/null +++ b/debian/rules.d/Makefile.inc @@ -0,0 +1,59 @@ +# Normalise OUTDIR to avoid triggering rebuilds +override OUTDIR := $(patsubst ./%,%,$(OUTDIR)) + +VPATH = $(top_rulesdir)/$(OUTDIR) $(top_srcdir)/$(OUTDIR) + +SHELL = /bin/sh -e + +CC = $(CROSS_COMPILE)gcc +CXX = $(CROSS_COMPILE)g++ +CFLAGS := $(shell dpkg-buildflags --get CFLAGS) -Wall +CPPFLAGS := $(shell dpkg-buildflags --get CPPFLAGS) \ + -I$(top_srcdir)/$(OUTDIR) \ + -I$(top_srcdir)/debian/build/build-tools/$(OUTDIR) \ + -isystem $(top_srcdir)/debian/build/build-tools/include +CXXFLAGS := $(shell dpkg-buildflags --get CXXFLAGS) -Wall +LDFLAGS := $(shell dpkg-buildflags --get LDFLAGS) + +installdir ?= $(prefix)/$(OUTDIR) + +all: all-local all-recursive +clean: clean-recursive +install: install-local install-recursive + +%-recursive: + +@list='$(SUBDIRS)'; \ + for subdir in $$list; do \ + echo "Making $* in $$subdir"; \ + mkdir -p $$subdir; \ + $(MAKE) -C $$subdir -f $(top_rulesdir)/$(OUTDIR)/$$subdir/Makefile OUTDIR=$(OUTDIR)/$$subdir $*; \ + done + +all-local: $(PROGS) + +install-local: install-local-progs install-local-scripts install-local-data + +install-local-progs: $(PROGS) + @for p in $^; do \ + echo " install -m755 '$$p' '$(DESTDIR)/$(installdir)'"; \ + install -D -m755 "$$p" "$(DESTDIR)/$(installdir)/$$(basename $$p)"; \ + done + +SCRIPTS_REAL = $(wildcard $(addprefix $(top_srcdir)/$(OUTDIR)/,$(SCRIPTS))) + +install-local-scripts: $(SCRIPTS_REAL) + @for p in $^; do \ + echo " install -m755 '$$p' '$(DESTDIR)/$(installdir)'"; \ + install -D -m755 \ + -s --strip-program $(top_srcdir)/debian/bin/fix-shebang \ + "$$p" "$(DESTDIR)/$(installdir)/$$(basename $$p)"; \ + done + +DATA_REAL = $(wildcard $(addprefix $(top_srcdir)/$(OUTDIR)/,$(DATA))) + +install-local-data: $(DATA_REAL) + @for p in $^; do \ + echo " install -m644 '$$p' '$(DESTDIR)/$(installdir)'"; \ + install -D -m644 "$$p" "$(DESTDIR)/$(installdir)/$$(basename $$p)"; \ + done + diff --git a/debian/rules.d/arch/powerpc/boot/Makefile b/debian/rules.d/arch/powerpc/boot/Makefile new file mode 100644 index 000000000..9dc418f26 --- /dev/null +++ b/debian/rules.d/arch/powerpc/boot/Makefile @@ -0,0 +1,18 @@ +PROGS = \ + addnote \ + hack-coff \ + mktree + +SCRIPTS = \ + wrapper + +include $(top_rulesdir)/Makefile.inc + +CPPFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 + +# gcc for ppc64 currently seems to be treating -I like -isystem, and +# since arch/powerpc/boot has substitute versions of some standard +# headers for use at boot time, they are also included in these tools. +# In this case there is actually no need to use the -I option, so +# filter it out. +CPPFLAGS := $(filter-out -I%,$(CPPFLAGS)) diff --git a/debian/rules.d/scripts/Makefile b/debian/rules.d/scripts/Makefile new file mode 100644 index 000000000..e40f47c0c --- /dev/null +++ b/debian/rules.d/scripts/Makefile @@ -0,0 +1,46 @@ +PROGS = \ + bin2c \ + extract-cert \ + kallsyms \ + recordmcount \ + sign-file \ + unifdef + +DATA = \ + Kbuild.include \ + Makefile.* \ + mkversion \ + module-common.lds \ + subarch.include + +SCRIPTS = \ + checkincludes.pl \ + checkstack.pl \ + checkversion.pl \ + depmod.sh \ + gcc-*.sh \ + gen_initramfs_list.sh \ + headers_install.sh \ + kernel-doc \ + ld-version.sh \ + Lindent \ + makelst \ + mksysmap \ + mkuboot.sh \ + namespace.pl \ + pahole-flags.sh \ + patch-kernel \ + recordmcount.pl \ + setlocalversion \ + ver_linux + +SUBDIRS = \ + basic \ + genksyms \ + kconfig \ + mod + +include $(top_rulesdir)/Makefile.inc + +CPPFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 +extract-cert sign-file: LDLIBS += -lcrypto diff --git a/debian/rules.d/scripts/basic/Makefile b/debian/rules.d/scripts/basic/Makefile new file mode 100644 index 000000000..127f53fa8 --- /dev/null +++ b/debian/rules.d/scripts/basic/Makefile @@ -0,0 +1,4 @@ +PROGS = \ + fixdep + +include $(top_rulesdir)/Makefile.inc diff --git a/debian/rules.d/scripts/genksyms/Makefile b/debian/rules.d/scripts/genksyms/Makefile new file mode 100644 index 000000000..88524563f --- /dev/null +++ b/debian/rules.d/scripts/genksyms/Makefile @@ -0,0 +1,16 @@ +PROGS = genksyms + +include $(top_rulesdir)/Makefile.inc + +genksyms: genksyms.o parse.tab.o lex.lex.o + +lex.lex.o: keywords.c parse.tab.h + +parse.tab.c: parse.y + $(YACC) -o$@ -t -l $< + +parse.tab.h: parse.y + $(YACC) -o/dev/null --defines=$@ -t -l $< + +lex.lex.c: lex.l + $(LEX) -o$@ -L $< diff --git a/debian/rules.d/scripts/kconfig/Makefile b/debian/rules.d/scripts/kconfig/Makefile new file mode 100644 index 000000000..864b50544 --- /dev/null +++ b/debian/rules.d/scripts/kconfig/Makefile @@ -0,0 +1,16 @@ +PROGS = conf + +include $(top_rulesdir)/Makefile.inc + +conf: conf.o confdata.o expr.o lexer.lex.o parser.tab.o preprocess.o symbol.o util.o + +lexer.lex.o: parser.tab.h + +%.lex.c: %.l + flex -o$@ -L $< + +%.tab.c: %.y + bison -o$@ -t -l $< + +%.tab.h: %.y + bison -o/dev/null --defines=$@ -t -l $< diff --git a/debian/rules.d/scripts/mod/Makefile b/debian/rules.d/scripts/mod/Makefile new file mode 100644 index 000000000..35bf77cd2 --- /dev/null +++ b/debian/rules.d/scripts/mod/Makefile @@ -0,0 +1,22 @@ +PROGS = \ + modpost \ + modpost.real-lsb-32 \ + modpost.real-lsb-64 \ + modpost.real-msb-32 \ + modpost.real-msb-64 + +include $(top_rulesdir)/Makefile.inc + +wrapperdir = $(top_rulesdir)/$(OUTDIR) + +modpost.real-%: + $(MAKE) -f $(wrapperdir)/Makefile.real TYPE=$* SOURCEDIR=$(top_srcdir)/scripts/mod + +%: %.o + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ + +modpost-opts.h: $(top_srcdir)/scripts/mod/modpost.c + $(wrapperdir)/gendef.py $< > $@ + +modpost.o: modpost.c modpost-opts.h + $(CC) $(CFLAGS) -I $(CURDIR) -c -o $@ $< diff --git a/debian/rules.d/scripts/mod/Makefile.real b/debian/rules.d/scripts/mod/Makefile.real new file mode 100644 index 000000000..8b097f897 --- /dev/null +++ b/debian/rules.d/scripts/mod/Makefile.real @@ -0,0 +1,23 @@ +PROGS = modpost.real-$(TYPE) + +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 + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ + +%.real-$(TYPE).o: $(SOURCEDIR)/%.c real-$(TYPE)/devicetable-offsets.h + $(CC) $(CFLAGS) -c -o $@ $< + +real-$(TYPE)/devicetable-offsets.s: $(SOURCEDIR)/devicetable-offsets.c + mkdir -p real-$(TYPE) + $(CC) -include $(wrapperdir)/real-$(TYPE)/types.h $(CFLAGS) -nostdinc -I$(top_srcdir)/include -S -o $@ $< + +real-$(TYPE)/devicetable-offsets.h: real-$(TYPE)/devicetable-offsets.s + echo >$@ "#define __DEVICEVTABLE_OFFSETS_H__" + sed -ne "s:^[[:space:]]*\.ascii[[:space:]]*\"\(.*\)\".*:\1:; \ + /^->/{s:->#\(.*\):/* \1 */:; \ + s:^->\([^ ]*\) [\$$#]*\([^ ]*\) \(.*\):#define \1 \2 /* \3 */:; \ + s:->::; p;}" $< >>$@ diff --git a/debian/rules.d/scripts/mod/elfconfig.h b/debian/rules.d/scripts/mod/elfconfig.h new file mode 100644 index 000000000..8c90ea600 --- /dev/null +++ b/debian/rules.d/scripts/mod/elfconfig.h @@ -0,0 +1,7 @@ +#include <endian.h> + +#if __BYTE_ORDER == __LITTLE_ENDIAN +#define HOST_ELFDATA ELFDATA2LSB +#elif __BYTE_ORDER == __BIG_ENDIAN +#define HOST_ELFDATA ELFDATA2MSB +#endif diff --git a/debian/rules.d/scripts/mod/gendef.py b/debian/rules.d/scripts/mod/gendef.py new file mode 100755 index 000000000..55d3fc60e --- /dev/null +++ b/debian/rules.d/scripts/mod/gendef.py @@ -0,0 +1,20 @@ +#!/usr/bin/python3 +import re +import sys + +for line in open(sys.argv[1]): + match = re.search(r'getopt\(argc, argv, "([\w:]*?)"\)', line) + if match: + options = match.group(1) + break +else: + raise RuntimeError + +print('#define GETOPT_OPTIONS "%s"' % options) + +print('#define GETOPT_CASE', end=' ') +for c in options: + if c == ':' or c == 'T': + continue + print("case '%c':" % c, end=' ') +print() diff --git a/debian/rules.d/scripts/mod/modpost.c b/debian/rules.d/scripts/mod/modpost.c new file mode 100644 index 000000000..d574957ae --- /dev/null +++ b/debian/rules.d/scripts/mod/modpost.c @@ -0,0 +1,136 @@ +#include <elf.h> +#include <errno.h> +#include <getopt.h> +#include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <unistd.h> + +#include "modpost-opts.h" + +int main (int argc, char *argv[]) +{ + char const *data, *class; + char *list_name = NULL; + char *name = NULL; + char prog[1024]; + unsigned char ei[EI_NIDENT]; + int opt; + FILE *file; + + while ((opt = getopt (argc, argv, GETOPT_OPTIONS)) != -1) + { + switch(opt) + { + GETOPT_CASE + break; + case 'T': + list_name = optarg; + break; + default: + return EXIT_FAILURE; + } + } + + if (optind != argc) + { + name = argv[optind]; + } + else if (list_name) + { + size_t name_len; + int is_stdin = strcmp (list_name, "-") == 0; + + /* Read first line of list file */ + if (is_stdin) + { + file = stdin; + setvbuf(stdin, NULL, _IONBF, 0); /* don't over-read */ + } + else + { + file = fopen (list_name, "r"); + if (!file) + { + fprintf (stderr, "Can't open \"%s\"\n", list_name); + return EXIT_FAILURE; + } + } + if (getline (&name, &name_len, file) < 0) + { + if (errno) + { + fprintf (stderr, "Can't read \"%s\"\n", list_name); + return EXIT_FAILURE; + } + else + { + /* Empty list */ + return EXIT_SUCCESS; + } + } + if (!is_stdin) + fclose(file); + + /* Remove new-line */ + name [strcspn (name, "\n")] = 0; + + /* If this came from stdin, we need to add the first name to the + * arguments, because the upstream modpost can't read it again. + */ + if (is_stdin) + { + char **new_argv = malloc (sizeof(*argv) * (argc + 2)); + memcpy(new_argv, argv, sizeof(*argv) * argc); + new_argv [argc] = name; + new_argv [argc + 1] = NULL; + argv = new_argv; + } + } + else + { + /* Empty list */ + return EXIT_SUCCESS; + } + + if (!(file = fopen (name, "r"))) + { + fprintf (stderr, "Can't open \"%s\"\n", name); + return EXIT_FAILURE; + } + + if (fread (ei, 1, EI_NIDENT, file) != EI_NIDENT) + { + fprintf (stderr, "Error: input truncated\n"); + return EXIT_FAILURE; + } + + if (memcmp (ei, ELFMAG, SELFMAG) != 0) + { + fprintf (stderr, "Error: not ELF\n"); + return EXIT_FAILURE; + } + switch (ei[EI_DATA]) { + case ELFDATA2LSB: + data = "lsb"; + break; + case ELFDATA2MSB: + data = "msb"; + break; + default: + return EXIT_FAILURE; + } + switch (ei[EI_CLASS]) { + case ELFCLASS32: + class = "32"; + break; + case ELFCLASS64: + class = "64"; + break; + default: + return EXIT_FAILURE; + } + snprintf (prog, sizeof prog, "%s.real-%s-%s", argv[0], data, class); + + return execv (prog, argv); +} diff --git a/debian/rules.d/scripts/mod/real-lsb-32/elfconfig.h b/debian/rules.d/scripts/mod/real-lsb-32/elfconfig.h new file mode 100644 index 000000000..1f7a7321a --- /dev/null +++ b/debian/rules.d/scripts/mod/real-lsb-32/elfconfig.h @@ -0,0 +1,4 @@ +#define KERNEL_ELFCLASS ELFCLASS32 +#define KERNEL_ELFDATA ELFDATA2LSB +#define MODULE_SYMBOL_PREFIX "" +#include "../elfconfig.h" diff --git a/debian/rules.d/scripts/mod/real-lsb-32/types.h b/debian/rules.d/scripts/mod/real-lsb-32/types.h new file mode 100644 index 000000000..bad6dcccd --- /dev/null +++ b/debian/rules.d/scripts/mod/real-lsb-32/types.h @@ -0,0 +1,3 @@ +#include "../types.h" +typedef __u32 kernel_ulong_t; +#define BITS_PER_LONG 32 diff --git a/debian/rules.d/scripts/mod/real-lsb-64/elfconfig.h b/debian/rules.d/scripts/mod/real-lsb-64/elfconfig.h new file mode 100644 index 000000000..e6f519fcc --- /dev/null +++ b/debian/rules.d/scripts/mod/real-lsb-64/elfconfig.h @@ -0,0 +1,4 @@ +#define KERNEL_ELFCLASS ELFCLASS64 +#define KERNEL_ELFDATA ELFDATA2LSB +#define MODULE_SYMBOL_PREFIX "" +#include "../elfconfig.h" diff --git a/debian/rules.d/scripts/mod/real-lsb-64/types.h b/debian/rules.d/scripts/mod/real-lsb-64/types.h new file mode 100644 index 000000000..8d7b87591 --- /dev/null +++ b/debian/rules.d/scripts/mod/real-lsb-64/types.h @@ -0,0 +1,3 @@ +#include "../types.h" +typedef __u64 __attribute__((aligned(8))) kernel_ulong_t; +#define BITS_PER_LONG 64 diff --git a/debian/rules.d/scripts/mod/real-msb-32/elfconfig.h b/debian/rules.d/scripts/mod/real-msb-32/elfconfig.h new file mode 100644 index 000000000..a9ae561ab --- /dev/null +++ b/debian/rules.d/scripts/mod/real-msb-32/elfconfig.h @@ -0,0 +1,4 @@ +#define KERNEL_ELFCLASS ELFCLASS32 +#define KERNEL_ELFDATA ELFDATA2MSB +#define MODULE_SYMBOL_PREFIX "" +#include "../elfconfig.h" diff --git a/debian/rules.d/scripts/mod/real-msb-32/types.h b/debian/rules.d/scripts/mod/real-msb-32/types.h new file mode 100644 index 000000000..bad6dcccd --- /dev/null +++ b/debian/rules.d/scripts/mod/real-msb-32/types.h @@ -0,0 +1,3 @@ +#include "../types.h" +typedef __u32 kernel_ulong_t; +#define BITS_PER_LONG 32 diff --git a/debian/rules.d/scripts/mod/real-msb-64/elfconfig.h b/debian/rules.d/scripts/mod/real-msb-64/elfconfig.h new file mode 100644 index 000000000..844d22f5c --- /dev/null +++ b/debian/rules.d/scripts/mod/real-msb-64/elfconfig.h @@ -0,0 +1,4 @@ +#define KERNEL_ELFCLASS ELFCLASS64 +#define KERNEL_ELFDATA ELFDATA2MSB +#define MODULE_SYMBOL_PREFIX "" +#include "../elfconfig.h" diff --git a/debian/rules.d/scripts/mod/real-msb-64/types.h b/debian/rules.d/scripts/mod/real-msb-64/types.h new file mode 100644 index 000000000..8d7b87591 --- /dev/null +++ b/debian/rules.d/scripts/mod/real-msb-64/types.h @@ -0,0 +1,3 @@ +#include "../types.h" +typedef __u64 __attribute__((aligned(8))) kernel_ulong_t; +#define BITS_PER_LONG 64 diff --git a/debian/rules.d/scripts/mod/types.h b/debian/rules.d/scripts/mod/types.h new file mode 100644 index 000000000..bba382183 --- /dev/null +++ b/debian/rules.d/scripts/mod/types.h @@ -0,0 +1,12 @@ +/* Minimal definitions for mod_devicetable.h and devicetable-offsets.c */ +typedef unsigned char __u8; +typedef unsigned short __u16; +typedef unsigned int __u32; +typedef unsigned long long __u64; +typedef struct { + __u8 b[16]; +} guid_t; +typedef guid_t uuid_le; +typedef unsigned char uuid_t[16]; +#define UUID_STRING_LEN 36 +#define offsetof(a,b) __builtin_offsetof(a,b) diff --git a/debian/rules.d/tools/bpf/bpftool/Makefile b/debian/rules.d/tools/bpf/bpftool/Makefile new file mode 100644 index 000000000..1df6c1f86 --- /dev/null +++ b/debian/rules.d/tools/bpf/bpftool/Makefile @@ -0,0 +1,31 @@ +include $(top_rulesdir)/Makefile.inc + +MAKE_BPFTOOL := +$(MAKE) -C $(top_srcdir)/$(OUTDIR) O=$(CURDIR) +MAKE_BPFTOOL += prefix=/usr +MAKE_BPFTOOL += mandir=/usr/share/man +MAKE_BPFTOOL += V=$(KBUILD_VERBOSE) +MAKE_BPFTOOL += ARCH=$(KERNEL_ARCH) +MAKE_BPFTOOL += EXTRA_CFLAGS='$(CFLAGS) $(CPPFLAGS)' +MAKE_BPFTOOL += EXTRA_LDFLAGS='$(LDFLAGS)' + +# dynamically linking with libbfd is not allowed in Debian +MAKE_BPFTOOL += feature-libbfd=0 feature-libbfd-liberty=0 feature-libbfd-liberty-z=0 + +all: + $(MAKE_BPFTOOL) +ifeq (,$(filter nodoc,$(DEB_BUILD_PROFILES))) + $(MAKE_BPFTOOL) doc +endif +# Check that bpftool wasn't linked with libbfd + type ldd + ! ldd $(CURDIR)/bpftool | grep -E '\blibbfd' + +install: + $(MAKE_BPFTOOL) install +ifeq (,$(filter nodoc,$(DEB_BUILD_PROFILES))) + $(MAKE_BPFTOOL) doc-install +# doc-install installs a bpf-helpers.7 that conflicts +# with the one distributed by the manpages package. + rm $(DESTDIR)/usr/share/man/man7/bpf-helpers.7 + rmdir $(DESTDIR)/usr/share/man/man7/ +endif diff --git a/debian/rules.d/tools/hv/Makefile b/debian/rules.d/tools/hv/Makefile new file mode 100644 index 000000000..8c563673b --- /dev/null +++ b/debian/rules.d/tools/hv/Makefile @@ -0,0 +1,17 @@ +ifeq ($(filter i386 amd64 x32,$(DEB_HOST_ARCH)),) + +# Build nothing +include $(top_rulesdir)/Makefile.inc + +else + +PROGS = \ + hv_fcopy_daemon \ + hv_kvp_daemon \ + hv_vss_daemon + +installdir = /usr/sbin + +include $(top_rulesdir)/Makefile.inc + +endif diff --git a/debian/rules.d/tools/lib/lockdep/Makefile b/debian/rules.d/tools/lib/lockdep/Makefile new file mode 100644 index 000000000..9b66ecb9a --- /dev/null +++ b/debian/rules.d/tools/lib/lockdep/Makefile @@ -0,0 +1,23 @@ +include $(top_rulesdir)/Makefile.inc + +DEB_HOST_MULTIARCH := $(shell dpkg-architecture -qDEB_HOST_MULTIARCH) + +# Catch use of missing kernel APIs early +CFLAGS += -Werror=implicit-function-declaration + +MAKE_LOCKDEP := +$(MAKE) -C $(top_srcdir)/$(OUTDIR) O=$(CURDIR) V=1 \ + prefix=/usr libdir_relative=lib/$(DEB_HOST_MULTIARCH) \ + LIBLOCKDEP_VERSION=$(VERSION) \ + CONFIG_FLAGS='$(CFLAGS) $(filter -D%,$(CPPFLAGS))' LDFLAGS='$(LDFLAGS)' + +unexport CFLAGS + +all: + $(MAKE_LOCKDEP) + +install: + $(MAKE_LOCKDEP) install + mkdir -p $(DESTDIR)/usr/include + cp -R $(top_srcdir)/$(OUTDIR)/include/liblockdep $(DESTDIR)/usr/include/ + ln -sf liblockdep.so.$(VERSION) \ + $(DESTDIR)/usr/lib/$(DEB_HOST_MULTIARCH)/liblockdep.so diff --git a/debian/rules.d/tools/lib/lockdep/lockdep.in b/debian/rules.d/tools/lib/lockdep/lockdep.in new file mode 100644 index 000000000..4a0d03ac5 --- /dev/null +++ b/debian/rules.d/tools/lib/lockdep/lockdep.in @@ -0,0 +1,2 @@ +#!/bin/sh +LD_PRELOAD="liblockdep.so.@VERSION@ $LD_PRELOAD" exec "$@" diff --git a/debian/rules.d/tools/objtool/Makefile b/debian/rules.d/tools/objtool/Makefile new file mode 100644 index 000000000..9990cde31 --- /dev/null +++ b/debian/rules.d/tools/objtool/Makefile @@ -0,0 +1,11 @@ +include $(top_rulesdir)/Makefile.inc + +all: +# For now, only supported target architecture is x86. Later we'll need to build +# for multiple targets and add a wrapper, same as for modpost. +# objtool explicitly sets CC and LD to be native tools; we need to override +# this on the command line to make cross-builds work. + $(MAKE) -C $(top_srcdir)/tools/objtool O=$(CURDIR) HOSTARCH=$(KERNEL_ARCH) ARCH=x86 CC=$(CC) LD=$(CROSS_COMPILE)ld V=$(KBUILD_VERBOSE) + +install: + install -D -m755 objtool $(DESTDIR)/$(installdir)/objtool diff --git a/debian/rules.d/tools/perf/Makefile b/debian/rules.d/tools/perf/Makefile new file mode 100644 index 000000000..e1ce69c57 --- /dev/null +++ b/debian/rules.d/tools/perf/Makefile @@ -0,0 +1,65 @@ +include $(top_rulesdir)/Makefile.inc + +MAKE_PERF := $(MAKE) O=$(CURDIR) prefix=/usr V=1 VF=1 ARCH=$(KERNEL_ARCH) WERROR=0 EXTRA_CFLAGS='$(CFLAGS) $(CPPFLAGS)' LDFLAGS='$(LDFLAGS)' + +# Disable Gtk UI until it's more usable +MAKE_PERF += NO_GTK2=1 + +# Do not build the unversioned jvmti library +MAKE_PERF += feature-jvmti=0 + +# Include version in all directory names +MAKE_PERF += perfexecdir=lib/perf_$(VERSION)-core plugindir=/usr/lib/traceevent_$(VERSION)/plugins STRACE_GROUPS_DIR=share/perf_$(VERSION)-core/strace/groups tipdir=share/doc/linux-perf-$(VERSION) perf_include_dir=include/perf_$(VERSION) perf_examples_dir=share/doc/linux-perf-$(VERSION)/examples + +# perf can link against libbfd if available, but the result is +# undistributable as they are licenced under GPL v2 and v3+ +# respectively. Override detection of libbfd and insist that +# cplus_demangle() can be found in libiberty (LGPL v2.1+). +MAKE_PERF += feature-libbfd=0 feature-libbfd-liberty=0 feature-libbfd-liberty-z=0 HAVE_CPLUS_DEMANGLE_SUPPORT=1 + +# perf can link against libcrypto if available, but the result is +# undistributable as GPL v2 and OpenSSL are not compatible without +# an explicit exception. Override detection of libcrypto. +MAKE_PERF += NO_LIBCRYPTO=1 + +# perf only links against libopencsd (coresight) if specifically enabled +MAKE_PERF += CORESIGHT=1 + +# Currently babeltrace support for `perf data' is not automatically detected. +MAKE_PERF += LIBBABELTRACE=1 + +# Build with asciidoctor, not asciidoc +MAKE_PERF += USE_ASCIIDOCTOR=1 + +# Build with Python 3, not Python 2 +MAKE_PERF += PYTHON=/usr/bin/python3 + +all: +# perf changes some default directories depending on whether DESTDIR is +# set. We must define it even when building to avoid a rebuild when we +# run 'make install'. + +$(MAKE_PERF) -C $(top_srcdir)/tools/perf -f Makefile.perf all VERSION=$(VERSION) DESTDIR=dummy +ifeq (,$(filter nodoc,$(DEB_BUILD_PROFILES))) + +$(MAKE_PERF) -C $(top_srcdir)/tools/perf/Documentation man VERSION=$(VERSION) +endif +# Check that perf didn't get linked against libbfd or libcrypto + type ldd + ! ldd $(CURDIR)/perf | grep -E '\blib(bfd|crypto)' +# Check that it includes cplus_demangle from libiberty + grep cplus_demangle $(CURDIR)/perf + +install: + +$(MAKE_PERF) -C $(top_srcdir)/tools/perf -f Makefile.perf install VERSION=$(VERSION) +# Don't install a 'trace' alias yet: +# - We need a wrapper for it anyway, so there's little point adding a +# versioned link +# - It doesn't work out-of-the-box as non-root (it depends on debugfs), +# so it's less widely useful than strace +# - 'perf trace' doesn't take much more typing + rm -f $(DESTDIR)/usr/bin/trace_$(VERSION) + mkdir -p $(DESTDIR)/usr/share/bash-completion/ + mv $(DESTDIR)/etc/bash_completion.d \ + $(DESTDIR)/usr/share/bash-completion/completions + rmdir --ignore-fail-on-non-empty $(DESTDIR)/etc +# Check for unversioned files that are likely to result in file conflicts + cd $(DESTDIR) && ! find \! -type d \! -path '*[_-]$(VERSION)*' | grep . diff --git a/debian/rules.d/tools/power/cpupower/Makefile b/debian/rules.d/tools/power/cpupower/Makefile new file mode 100644 index 000000000..c43bd62f1 --- /dev/null +++ b/debian/rules.d/tools/power/cpupower/Makefile @@ -0,0 +1,26 @@ +include $(top_rulesdir)/Makefile.inc + +MAKE_CPUPOWER := $(shell dpkg-buildflags --export=cmdline) $(MAKE) O=$(CURDIR) CPUFREQ_BENCH=false V=true mandir=/usr/share/man + +MAKE_CPUPOWER += DEBUG=$(if $(filter noopt,$(DEB_BUILD_OPTIONS)),true,) + +# Don't strip binaries here; let dh_strip determine what to do +MAKE_CPUPOWER += STRIP=true + +MAKE_CPUPOWER += CROSS='$(CROSS_COMPILE)' + +MAKE_CPUPOWER += PACKAGE_BUGREPORT='Debian\ \(reportbug\ linux-cpupower\)' + +MAKE_CPUPOWER += libdir=/usr/lib/$(DEB_HOST_MULTIARCH) + +all: + +$(MAKE_CPUPOWER) -C $(top_srcdir)/tools/power/cpupower + +install: + +$(MAKE_CPUPOWER) -C $(top_srcdir)/tools/power/cpupower install DESTDIR=$(DESTDIR) +ifneq (,$(filter nodoc,$(DEB_BUILD_PROFILES))) + rm -rf $(DESTDIR)/usr/share/man +endif + +clean: + +$(MAKE_CPUPOWER) -C $(top_srcdir)/tools/power/cpupower clean diff --git a/debian/rules.d/tools/power/x86/Makefile b/debian/rules.d/tools/power/x86/Makefile new file mode 100644 index 000000000..2b9d7735c --- /dev/null +++ b/debian/rules.d/tools/power/x86/Makefile @@ -0,0 +1,5 @@ +SUBDIRS = \ + turbostat \ + x86_energy_perf_policy + +include $(top_rulesdir)/Makefile.inc diff --git a/debian/rules.d/tools/power/x86/turbostat/Makefile b/debian/rules.d/tools/power/x86/turbostat/Makefile new file mode 100644 index 000000000..eb5124d3a --- /dev/null +++ b/debian/rules.d/tools/power/x86/turbostat/Makefile @@ -0,0 +1,9 @@ +PROGS = turbostat + +installdir = /usr/sbin + +include $(top_rulesdir)/Makefile.inc + +CPPFLAGS += -I"$(top_srcdir)/tools/include" -DMSRHEADER='"$(top_srcdir)/arch/x86/include/asm/msr-index.h"' -DINTEL_FAMILY_HEADER='"$(top_srcdir)/arch/x86/include/asm/intel-family.h"' + +LDLIBS += -lcap -lrt diff --git a/debian/rules.d/tools/power/x86/x86_energy_perf_policy/Makefile b/debian/rules.d/tools/power/x86/x86_energy_perf_policy/Makefile new file mode 100644 index 000000000..b9ec56c89 --- /dev/null +++ b/debian/rules.d/tools/power/x86/x86_energy_perf_policy/Makefile @@ -0,0 +1,7 @@ +PROGS = x86_energy_perf_policy + +installdir = /usr/sbin + +include $(top_rulesdir)/Makefile.inc + +CPPFLAGS += -I"$(top_srcdir)/tools/include" -DMSRHEADER='"$(top_srcdir)/arch/x86/include/asm/msr-index.h"' diff --git a/debian/rules.d/tools/usb/usbip/Makefile b/debian/rules.d/tools/usb/usbip/Makefile new file mode 100644 index 000000000..3decaac98 --- /dev/null +++ b/debian/rules.d/tools/usb/usbip/Makefile @@ -0,0 +1,31 @@ +srcdir := $(top_srcdir)/tools/usb/usbip + +# Make sure we don't override top_srcdir in the sub-make. 'unexport +# top_srcdir' is *not* sufficient; nor is adding 'MAKEFLAGS=' to the +# sub-make command line. +unexport MAKEFLAGS + +all: export CFLAGS := $(shell dpkg-buildflags --get CFLAGS) +all: export CPPFLAGS := $(shell dpkg-buildflags --get CFLAGS) \ + -isystem $(top_srcdir)/debian/build/build-tools/include +all: export LDFLAGS := $(shell dpkg-buildflags --get LDFLAGS) +all: + rsync -a $(srcdir)/ . + ./autogen.sh + ./configure \ + --prefix=/usr \ + --with-tcp-wrappers \ + --with-usbids-dir=/usr/share/misc \ + --disable-shared \ + --disable-static \ + --host=$(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) + $(MAKE) V=$(KBUILD_VERBOSE) + +install: + $(MAKE) V=$(KBUILD_VERBOSE) install +ifneq (,$(filter nodoc,$(DEB_BUILD_PROFILES))) + rm -rf $(DESTDIR)/usr/share/man +endif + +clean: + rm -rf * diff --git a/debian/rules.defs b/debian/rules.defs new file mode 100644 index 000000000..9384a9b3e --- /dev/null +++ b/debian/rules.defs @@ -0,0 +1,5 @@ +include /usr/share/dpkg/default.mk + +BUILD_DIR = debian/build +STAMPS_DIR = debian/stamps + diff --git a/debian/rules.gen b/debian/rules.gen new file mode 100644 index 000000000..855733c15 --- /dev/null +++ b/debian/rules.gen @@ -0,0 +1,1117 @@ +.NOTPARALLEL: +binary-arch: binary-arch_alpha binary-arch_amd64 binary-arch_arm64 binary-arch_arm64ilp32 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_mips64r6 binary-arch_mips64r6el binary-arch_mipsel binary-arch_mipsn32 binary-arch_mipsn32el binary-arch_mipsn32r6 binary-arch_mipsn32r6el binary-arch_mipsr6 binary-arch_mipsr6el binary-arch_powerpc binary-arch_ppc64 binary-arch_ppc64el binary-arch_riscv64 binary-arch_s390 binary-arch_s390x binary-arch_sh3 binary-arch_sh4 binary-arch_sparc binary-arch_sparc64 binary-arch_x32 +binary-arch_alpha:: binary-arch_alpha_none binary-arch_alpha_real +binary-arch_alpha:: + $(MAKE) -f debian/rules.real install-udeb_alpha ABINAME='5.10.0-28' ARCH='alpha' KERNEL_ARCH='alpha' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' PACKAGE_NAMES='kernel-image-5.10.0-28-alpha-generic-di nic-modules-5.10.0-28-alpha-generic-di nic-wireless-modules-5.10.0-28-alpha-generic-di nic-shared-modules-5.10.0-28-alpha-generic-di serial-modules-5.10.0-28-alpha-generic-di usb-serial-modules-5.10.0-28-alpha-generic-di ppp-modules-5.10.0-28-alpha-generic-di pata-modules-5.10.0-28-alpha-generic-di cdrom-core-modules-5.10.0-28-alpha-generic-di scsi-core-modules-5.10.0-28-alpha-generic-di scsi-modules-5.10.0-28-alpha-generic-di scsi-nic-modules-5.10.0-28-alpha-generic-di loop-modules-5.10.0-28-alpha-generic-di btrfs-modules-5.10.0-28-alpha-generic-di ext4-modules-5.10.0-28-alpha-generic-di isofs-modules-5.10.0-28-alpha-generic-di jfs-modules-5.10.0-28-alpha-generic-di xfs-modules-5.10.0-28-alpha-generic-di fat-modules-5.10.0-28-alpha-generic-di squashfs-modules-5.10.0-28-alpha-generic-di fuse-modules-5.10.0-28-alpha-generic-di f2fs-modules-5.10.0-28-alpha-generic-di md-modules-5.10.0-28-alpha-generic-di multipath-modules-5.10.0-28-alpha-generic-di usb-modules-5.10.0-28-alpha-generic-di usb-storage-modules-5.10.0-28-alpha-generic-di fb-modules-5.10.0-28-alpha-generic-di input-modules-5.10.0-28-alpha-generic-di event-modules-5.10.0-28-alpha-generic-di mouse-modules-5.10.0-28-alpha-generic-di nic-pcmcia-modules-5.10.0-28-alpha-generic-di pcmcia-modules-5.10.0-28-alpha-generic-di nic-usb-modules-5.10.0-28-alpha-generic-di sata-modules-5.10.0-28-alpha-generic-di i2c-modules-5.10.0-28-alpha-generic-di crc-modules-5.10.0-28-alpha-generic-di crypto-modules-5.10.0-28-alpha-generic-di crypto-dm-modules-5.10.0-28-alpha-generic-di ata-modules-5.10.0-28-alpha-generic-di nbd-modules-5.10.0-28-alpha-generic-di srm-modules-5.10.0-28-alpha-generic-di' UDEB_UNSIGNED_TEST_BUILD=False +binary-arch_alpha_none: binary-arch_alpha_none_alpha-generic binary-arch_alpha_none_alpha-smp binary-arch_alpha_none_real +binary-arch_alpha_none_alpha-generic: binary-arch_alpha_none_alpha-generic_real +binary-arch_alpha_none_alpha-generic_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='alpha' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-alpha-generic' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_alpha_none_alpha-smp: binary-arch_alpha_none_alpha-smp_real +binary-arch_alpha_none_alpha-smp_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='alpha' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-alpha-smp' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_alpha_none_real: +binary-arch_alpha_real:: setup_alpha +binary-arch_alpha_real:: + $(MAKE) -f debian/rules.real binary-arch-arch ABINAME='5.10.0-28' ARCH='alpha' KERNEL_ARCH='alpha' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_amd64:: binary-arch_amd64_extra binary-arch_amd64_none binary-arch_amd64_real binary-arch_amd64_rt +binary-arch_amd64:: + $(MAKE) -f debian/rules.real install-udeb_amd64 ABINAME='5.10.0-28' ARCH='amd64' KERNEL_ARCH='x86' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' PACKAGE_NAMES='kernel-image-5.10.0-28-amd64-di nic-modules-5.10.0-28-amd64-di nic-wireless-modules-5.10.0-28-amd64-di nic-shared-modules-5.10.0-28-amd64-di serial-modules-5.10.0-28-amd64-di usb-serial-modules-5.10.0-28-amd64-di ppp-modules-5.10.0-28-amd64-di pata-modules-5.10.0-28-amd64-di cdrom-core-modules-5.10.0-28-amd64-di firewire-core-modules-5.10.0-28-amd64-di scsi-core-modules-5.10.0-28-amd64-di scsi-modules-5.10.0-28-amd64-di scsi-nic-modules-5.10.0-28-amd64-di loop-modules-5.10.0-28-amd64-di btrfs-modules-5.10.0-28-amd64-di ext4-modules-5.10.0-28-amd64-di isofs-modules-5.10.0-28-amd64-di jfs-modules-5.10.0-28-amd64-di xfs-modules-5.10.0-28-amd64-di fat-modules-5.10.0-28-amd64-di squashfs-modules-5.10.0-28-amd64-di udf-modules-5.10.0-28-amd64-di fuse-modules-5.10.0-28-amd64-di f2fs-modules-5.10.0-28-amd64-di md-modules-5.10.0-28-amd64-di multipath-modules-5.10.0-28-amd64-di usb-modules-5.10.0-28-amd64-di usb-storage-modules-5.10.0-28-amd64-di pcmcia-storage-modules-5.10.0-28-amd64-di fb-modules-5.10.0-28-amd64-di input-modules-5.10.0-28-amd64-di event-modules-5.10.0-28-amd64-di mouse-modules-5.10.0-28-amd64-di nic-pcmcia-modules-5.10.0-28-amd64-di pcmcia-modules-5.10.0-28-amd64-di nic-usb-modules-5.10.0-28-amd64-di sata-modules-5.10.0-28-amd64-di acpi-modules-5.10.0-28-amd64-di i2c-modules-5.10.0-28-amd64-di crc-modules-5.10.0-28-amd64-di crypto-modules-5.10.0-28-amd64-di crypto-dm-modules-5.10.0-28-amd64-di efi-modules-5.10.0-28-amd64-di ata-modules-5.10.0-28-amd64-di mmc-core-modules-5.10.0-28-amd64-di mmc-modules-5.10.0-28-amd64-di nbd-modules-5.10.0-28-amd64-di speakup-modules-5.10.0-28-amd64-di uinput-modules-5.10.0-28-amd64-di sound-modules-5.10.0-28-amd64-di mtd-core-modules-5.10.0-28-amd64-di rfkill-modules-5.10.0-28-amd64-di' UDEB_UNSIGNED_TEST_BUILD=True +binary-arch_amd64:: + $(MAKE) -f debian/rules.real install-signed-template_amd64 ABINAME='5.10.0-28' ARCH='amd64' KERNEL_ARCH='x86' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_amd64_extra:: + $(MAKE) -f debian/rules.real install-dummy ARCH='amd64' DH_OPTIONS='-plinux-compiler-gcc-10-x86' +binary-arch_amd64_none: binary-arch_amd64_none_amd64 binary-arch_amd64_none_cloud-amd64 binary-arch_amd64_none_real +binary-arch_amd64_none_amd64: binary-arch_amd64_none_amd64_real +binary-arch_amd64_none_amd64_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='amd64' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-amd64-unsigned' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o SECURITY_LOCKDOWN_LSM=y -o MODULE_SIG=y -o "BUILD_SALT=\"5.10.0-28-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +binary-arch_amd64_none_cloud-amd64: binary-arch_amd64_none_cloud-amd64_real +binary-arch_amd64_none_cloud-amd64_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='amd64' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-cloud-amd64-unsigned' 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 DEBUG_INFO=y -o SECURITY_LOCKDOWN_LSM=y -o MODULE_SIG=y -o "BUILD_SALT=\"5.10.0-28-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +binary-arch_amd64_none_real: +binary-arch_amd64_real:: setup_amd64 +binary-arch_amd64_real:: + $(MAKE) -f debian/rules.real binary-arch-arch ABINAME='5.10.0-28' ARCH='amd64' KERNEL_ARCH='x86' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_amd64_rt: binary-arch_amd64_rt_amd64 binary-arch_amd64_rt_real +binary-arch_amd64_rt_amd64: binary-arch_amd64_rt_amd64_real +binary-arch_amd64_rt_amd64_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='amd64' COMPILER='gcc-10' DEBUG='True' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-rt-amd64-unsigned' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o SECURITY_LOCKDOWN_LSM=y -o MODULE_SIG=y -o "BUILD_SALT=\"5.10.0-28-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +binary-arch_amd64_rt_real: +binary-arch_arm64:: binary-arch_arm64_none binary-arch_arm64_real binary-arch_arm64_rt +binary-arch_arm64:: + $(MAKE) -f debian/rules.real install-udeb_arm64 ABINAME='5.10.0-28' ARCH='arm64' KERNEL_ARCH='arm64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' PACKAGE_NAMES='kernel-image-5.10.0-28-arm64-di nic-modules-5.10.0-28-arm64-di nic-wireless-modules-5.10.0-28-arm64-di nic-shared-modules-5.10.0-28-arm64-di usb-serial-modules-5.10.0-28-arm64-di ppp-modules-5.10.0-28-arm64-di cdrom-core-modules-5.10.0-28-arm64-di scsi-core-modules-5.10.0-28-arm64-di scsi-modules-5.10.0-28-arm64-di scsi-nic-modules-5.10.0-28-arm64-di loop-modules-5.10.0-28-arm64-di btrfs-modules-5.10.0-28-arm64-di ext4-modules-5.10.0-28-arm64-di isofs-modules-5.10.0-28-arm64-di jfs-modules-5.10.0-28-arm64-di xfs-modules-5.10.0-28-arm64-di fat-modules-5.10.0-28-arm64-di squashfs-modules-5.10.0-28-arm64-di udf-modules-5.10.0-28-arm64-di fuse-modules-5.10.0-28-arm64-di f2fs-modules-5.10.0-28-arm64-di md-modules-5.10.0-28-arm64-di multipath-modules-5.10.0-28-arm64-di usb-modules-5.10.0-28-arm64-di usb-storage-modules-5.10.0-28-arm64-di fb-modules-5.10.0-28-arm64-di input-modules-5.10.0-28-arm64-di event-modules-5.10.0-28-arm64-di nic-usb-modules-5.10.0-28-arm64-di sata-modules-5.10.0-28-arm64-di i2c-modules-5.10.0-28-arm64-di crc-modules-5.10.0-28-arm64-di crypto-modules-5.10.0-28-arm64-di crypto-dm-modules-5.10.0-28-arm64-di efi-modules-5.10.0-28-arm64-di ata-modules-5.10.0-28-arm64-di mmc-modules-5.10.0-28-arm64-di nbd-modules-5.10.0-28-arm64-di uinput-modules-5.10.0-28-arm64-di leds-modules-5.10.0-28-arm64-di mtd-core-modules-5.10.0-28-arm64-di' UDEB_UNSIGNED_TEST_BUILD=True +binary-arch_arm64:: + $(MAKE) -f debian/rules.real install-signed-template_arm64 ABINAME='5.10.0-28' ARCH='arm64' KERNEL_ARCH='arm64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_arm64_none: binary-arch_arm64_none_arm64 binary-arch_arm64_none_cloud-arm64 binary-arch_arm64_none_real +binary-arch_arm64_none_arm64: binary-arch_arm64_none_arm64_real +binary-arch_arm64_none_arm64_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='arm64' COMPILER='gcc-10' CROSS_COMPILE_COMPAT='arm-linux-gnueabihf-' DEBUG='True' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-arm64-unsigned' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o SECURITY_LOCKDOWN_LSM=y -o MODULE_SIG=y -o "BUILD_SALT=\"5.10.0-28-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +binary-arch_arm64_none_cloud-arm64: binary-arch_arm64_none_cloud-arm64_real +binary-arch_arm64_none_cloud-arm64_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='arm64' COMPILER='gcc-10' CROSS_COMPILE_COMPAT='arm-linux-gnueabihf-' DEBUG='True' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-cloud-arm64-unsigned' 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 DEBUG_INFO=y -o SECURITY_LOCKDOWN_LSM=y -o MODULE_SIG=y -o "BUILD_SALT=\"5.10.0-28-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +binary-arch_arm64_none_real: +binary-arch_arm64_real:: setup_arm64 +binary-arch_arm64_real:: + $(MAKE) -f debian/rules.real binary-arch-arch ABINAME='5.10.0-28' ARCH='arm64' KERNEL_ARCH='arm64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_arm64_rt: binary-arch_arm64_rt_arm64 binary-arch_arm64_rt_real +binary-arch_arm64_rt_arm64: binary-arch_arm64_rt_arm64_real +binary-arch_arm64_rt_arm64_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='arm64' COMPILER='gcc-10' CROSS_COMPILE_COMPAT='arm-linux-gnueabihf-' DEBUG='True' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-rt-arm64-unsigned' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o SECURITY_LOCKDOWN_LSM=y -o MODULE_SIG=y -o "BUILD_SALT=\"5.10.0-28-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +binary-arch_arm64_rt_real: +binary-arch_arm64ilp32: binary-arch_arm64ilp32_real +binary-arch_arm64ilp32_real:: setup_arm64ilp32 +binary-arch_arm64ilp32_real:: + $(MAKE) -f debian/rules.real binary-arch-arch ABINAME='5.10.0-28' ARCH='arm64ilp32' KERNEL_ARCH='arm64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_armel:: binary-arch_armel_extra binary-arch_armel_none binary-arch_armel_real +binary-arch_armel:: + $(MAKE) -f debian/rules.real install-udeb_armel ABINAME='5.10.0-28' ARCH='armel' KERNEL_ARCH='arm' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' PACKAGE_NAMES='kernel-image-5.10.0-28-marvell-di nic-modules-5.10.0-28-marvell-di nic-shared-modules-5.10.0-28-marvell-di usb-serial-modules-5.10.0-28-marvell-di ppp-modules-5.10.0-28-marvell-di cdrom-core-modules-5.10.0-28-marvell-di scsi-core-modules-5.10.0-28-marvell-di loop-modules-5.10.0-28-marvell-di ipv6-modules-5.10.0-28-marvell-di btrfs-modules-5.10.0-28-marvell-di ext4-modules-5.10.0-28-marvell-di isofs-modules-5.10.0-28-marvell-di jffs2-modules-5.10.0-28-marvell-di jfs-modules-5.10.0-28-marvell-di fat-modules-5.10.0-28-marvell-di minix-modules-5.10.0-28-marvell-di squashfs-modules-5.10.0-28-marvell-di udf-modules-5.10.0-28-marvell-di fuse-modules-5.10.0-28-marvell-di f2fs-modules-5.10.0-28-marvell-di md-modules-5.10.0-28-marvell-di multipath-modules-5.10.0-28-marvell-di usb-modules-5.10.0-28-marvell-di usb-storage-modules-5.10.0-28-marvell-di fb-modules-5.10.0-28-marvell-di input-modules-5.10.0-28-marvell-di event-modules-5.10.0-28-marvell-di mouse-modules-5.10.0-28-marvell-di nic-usb-modules-5.10.0-28-marvell-di sata-modules-5.10.0-28-marvell-di crc-modules-5.10.0-28-marvell-di crypto-modules-5.10.0-28-marvell-di crypto-dm-modules-5.10.0-28-marvell-di mmc-core-modules-5.10.0-28-marvell-di mmc-modules-5.10.0-28-marvell-di nbd-modules-5.10.0-28-marvell-di uinput-modules-5.10.0-28-marvell-di leds-modules-5.10.0-28-marvell-di mtd-modules-5.10.0-28-marvell-di mtd-core-modules-5.10.0-28-marvell-di' UDEB_UNSIGNED_TEST_BUILD=False +binary-arch_armel_extra:: + $(MAKE) -f debian/rules.real install-dummy ARCH='armel' DH_OPTIONS='-plinux-compiler-gcc-10-arm' +binary-arch_armel_none: binary-arch_armel_none_marvell binary-arch_armel_none_real binary-arch_armel_none_rpi +binary-arch_armel_none_marvell: binary-arch_armel_none_marvell_real +binary-arch_armel_none_marvell_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='armel' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='marvell' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-marvell' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.marvell' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-marvell\""' KERNEL_ARCH='arm' LOCALVERSION='-marvell' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-marvell' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_armel_none_real: +binary-arch_armel_none_rpi: binary-arch_armel_none_rpi_real +binary-arch_armel_none_rpi_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='armel' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-rpi' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_armel_real:: setup_armel +binary-arch_armel_real:: + $(MAKE) -f debian/rules.real binary-arch-arch ABINAME='5.10.0-28' ARCH='armel' KERNEL_ARCH='arm' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_armhf:: binary-arch_armhf_extra binary-arch_armhf_none binary-arch_armhf_real binary-arch_armhf_rt +binary-arch_armhf:: + $(MAKE) -f debian/rules.real install-udeb_armhf ABINAME='5.10.0-28' ARCH='armhf' KERNEL_ARCH='arm' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' PACKAGE_NAMES='kernel-image-5.10.0-28-armmp-di nic-modules-5.10.0-28-armmp-di nic-wireless-modules-5.10.0-28-armmp-di nic-shared-modules-5.10.0-28-armmp-di usb-serial-modules-5.10.0-28-armmp-di ppp-modules-5.10.0-28-armmp-di pata-modules-5.10.0-28-armmp-di cdrom-core-modules-5.10.0-28-armmp-di scsi-core-modules-5.10.0-28-armmp-di scsi-modules-5.10.0-28-armmp-di scsi-nic-modules-5.10.0-28-armmp-di loop-modules-5.10.0-28-armmp-di btrfs-modules-5.10.0-28-armmp-di ext4-modules-5.10.0-28-armmp-di isofs-modules-5.10.0-28-armmp-di jfs-modules-5.10.0-28-armmp-di fat-modules-5.10.0-28-armmp-di squashfs-modules-5.10.0-28-armmp-di udf-modules-5.10.0-28-armmp-di fuse-modules-5.10.0-28-armmp-di f2fs-modules-5.10.0-28-armmp-di md-modules-5.10.0-28-armmp-di multipath-modules-5.10.0-28-armmp-di usb-modules-5.10.0-28-armmp-di usb-storage-modules-5.10.0-28-armmp-di fb-modules-5.10.0-28-armmp-di input-modules-5.10.0-28-armmp-di event-modules-5.10.0-28-armmp-di nic-usb-modules-5.10.0-28-armmp-di sata-modules-5.10.0-28-armmp-di i2c-modules-5.10.0-28-armmp-di crc-modules-5.10.0-28-armmp-di crypto-modules-5.10.0-28-armmp-di crypto-dm-modules-5.10.0-28-armmp-di efi-modules-5.10.0-28-armmp-di ata-modules-5.10.0-28-armmp-di mmc-modules-5.10.0-28-armmp-di nbd-modules-5.10.0-28-armmp-di uinput-modules-5.10.0-28-armmp-di leds-modules-5.10.0-28-armmp-di mtd-modules-5.10.0-28-armmp-di' UDEB_UNSIGNED_TEST_BUILD=False +binary-arch_armhf_extra:: + $(MAKE) -f debian/rules.real install-dummy ARCH='armhf' DH_OPTIONS='-plinux-compiler-gcc-10-arm' +binary-arch_armhf_none: binary-arch_armhf_none_armmp binary-arch_armhf_none_armmp-lpae binary-arch_armhf_none_real +binary-arch_armhf_none_armmp: binary-arch_armhf_none_armmp_real +binary-arch_armhf_none_armmp-lpae: binary-arch_armhf_none_armmp-lpae_real +binary-arch_armhf_none_armmp-lpae_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='armhf' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-armmp-lpae' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +binary-arch_armhf_none_armmp_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='armhf' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-armmp' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +binary-arch_armhf_none_real: +binary-arch_armhf_real:: setup_armhf +binary-arch_armhf_real:: + $(MAKE) -f debian/rules.real binary-arch-arch ABINAME='5.10.0-28' ARCH='armhf' KERNEL_ARCH='arm' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_armhf_rt: binary-arch_armhf_rt_armmp binary-arch_armhf_rt_real +binary-arch_armhf_rt_armmp: binary-arch_armhf_rt_armmp_real +binary-arch_armhf_rt_armmp_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='armhf' COMPILER='gcc-10' DEBUG='True' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-rt-armmp' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +binary-arch_armhf_rt_real: +binary-arch_hppa:: binary-arch_hppa_extra binary-arch_hppa_none binary-arch_hppa_real +binary-arch_hppa:: + $(MAKE) -f debian/rules.real install-udeb_hppa ABINAME='5.10.0-28' ARCH='hppa' KERNEL_ARCH='parisc' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' PACKAGE_NAMES='kernel-image-5.10.0-28-parisc-di nic-modules-5.10.0-28-parisc-di nic-shared-modules-5.10.0-28-parisc-di serial-modules-5.10.0-28-parisc-di usb-serial-modules-5.10.0-28-parisc-di ppp-modules-5.10.0-28-parisc-di pata-modules-5.10.0-28-parisc-di cdrom-core-modules-5.10.0-28-parisc-di scsi-core-modules-5.10.0-28-parisc-di scsi-modules-5.10.0-28-parisc-di loop-modules-5.10.0-28-parisc-di btrfs-modules-5.10.0-28-parisc-di ext4-modules-5.10.0-28-parisc-di isofs-modules-5.10.0-28-parisc-di jfs-modules-5.10.0-28-parisc-di xfs-modules-5.10.0-28-parisc-di fat-modules-5.10.0-28-parisc-di squashfs-modules-5.10.0-28-parisc-di fuse-modules-5.10.0-28-parisc-di f2fs-modules-5.10.0-28-parisc-di md-modules-5.10.0-28-parisc-di multipath-modules-5.10.0-28-parisc-di usb-modules-5.10.0-28-parisc-di usb-storage-modules-5.10.0-28-parisc-di input-modules-5.10.0-28-parisc-di event-modules-5.10.0-28-parisc-di mouse-modules-5.10.0-28-parisc-di nic-usb-modules-5.10.0-28-parisc-di sata-modules-5.10.0-28-parisc-di crc-modules-5.10.0-28-parisc-di crypto-modules-5.10.0-28-parisc-di crypto-dm-modules-5.10.0-28-parisc-di ata-modules-5.10.0-28-parisc-di nbd-modules-5.10.0-28-parisc-di kernel-image-5.10.0-28-parisc64-di nic-modules-5.10.0-28-parisc64-di nic-shared-modules-5.10.0-28-parisc64-di serial-modules-5.10.0-28-parisc64-di usb-serial-modules-5.10.0-28-parisc64-di ppp-modules-5.10.0-28-parisc64-di pata-modules-5.10.0-28-parisc64-di cdrom-core-modules-5.10.0-28-parisc64-di scsi-core-modules-5.10.0-28-parisc64-di scsi-modules-5.10.0-28-parisc64-di loop-modules-5.10.0-28-parisc64-di btrfs-modules-5.10.0-28-parisc64-di ext4-modules-5.10.0-28-parisc64-di isofs-modules-5.10.0-28-parisc64-di jfs-modules-5.10.0-28-parisc64-di xfs-modules-5.10.0-28-parisc64-di fat-modules-5.10.0-28-parisc64-di squashfs-modules-5.10.0-28-parisc64-di fuse-modules-5.10.0-28-parisc64-di f2fs-modules-5.10.0-28-parisc64-di md-modules-5.10.0-28-parisc64-di multipath-modules-5.10.0-28-parisc64-di usb-modules-5.10.0-28-parisc64-di usb-storage-modules-5.10.0-28-parisc64-di fb-modules-5.10.0-28-parisc64-di input-modules-5.10.0-28-parisc64-di event-modules-5.10.0-28-parisc64-di mouse-modules-5.10.0-28-parisc64-di nic-usb-modules-5.10.0-28-parisc64-di sata-modules-5.10.0-28-parisc64-di crc-modules-5.10.0-28-parisc64-di crypto-modules-5.10.0-28-parisc64-di crypto-dm-modules-5.10.0-28-parisc64-di ata-modules-5.10.0-28-parisc64-di nbd-modules-5.10.0-28-parisc64-di' UDEB_UNSIGNED_TEST_BUILD=False +binary-arch_hppa_extra:: + $(MAKE) -f debian/rules.real install-dummy ARCH='hppa' DH_OPTIONS='-plinux-image-parisc64-smp' + $(MAKE) -f debian/rules.real install-dummy ARCH='hppa' DH_OPTIONS='-plinux-image-parisc-smp' +binary-arch_hppa_none: binary-arch_hppa_none_parisc binary-arch_hppa_none_parisc64 binary-arch_hppa_none_real +binary-arch_hppa_none_parisc: binary-arch_hppa_none_parisc_real +binary-arch_hppa_none_parisc64: binary-arch_hppa_none_parisc64_real +binary-arch_hppa_none_parisc64_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='hppa' COMPILER='gcc-10' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-parisc64' KCFLAGS='-fno-cse-follow-jumps' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"5.10.0-28-parisc64\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' OVERRIDE_HOST_TYPE='hppa64-linux-gnu' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_hppa_none_parisc_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='hppa' COMPILER='gcc-10' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-parisc' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"5.10.0-28-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_hppa_none_real: +binary-arch_hppa_real:: setup_hppa +binary-arch_hppa_real:: + $(MAKE) -f debian/rules.real binary-arch-arch ABINAME='5.10.0-28' ARCH='hppa' KERNEL_ARCH='parisc' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_i386:: binary-arch_i386_extra binary-arch_i386_none binary-arch_i386_real binary-arch_i386_rt +binary-arch_i386:: + $(MAKE) -f debian/rules.real install-udeb_i386 ABINAME='5.10.0-28' ARCH='i386' KERNEL_ARCH='x86' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' PACKAGE_NAMES='kernel-image-5.10.0-28-686-di nic-modules-5.10.0-28-686-di nic-wireless-modules-5.10.0-28-686-di nic-shared-modules-5.10.0-28-686-di serial-modules-5.10.0-28-686-di usb-serial-modules-5.10.0-28-686-di ppp-modules-5.10.0-28-686-di pata-modules-5.10.0-28-686-di cdrom-core-modules-5.10.0-28-686-di firewire-core-modules-5.10.0-28-686-di scsi-core-modules-5.10.0-28-686-di scsi-modules-5.10.0-28-686-di scsi-nic-modules-5.10.0-28-686-di loop-modules-5.10.0-28-686-di btrfs-modules-5.10.0-28-686-di ext4-modules-5.10.0-28-686-di isofs-modules-5.10.0-28-686-di jfs-modules-5.10.0-28-686-di xfs-modules-5.10.0-28-686-di fat-modules-5.10.0-28-686-di squashfs-modules-5.10.0-28-686-di udf-modules-5.10.0-28-686-di fuse-modules-5.10.0-28-686-di f2fs-modules-5.10.0-28-686-di md-modules-5.10.0-28-686-di multipath-modules-5.10.0-28-686-di usb-modules-5.10.0-28-686-di usb-storage-modules-5.10.0-28-686-di pcmcia-storage-modules-5.10.0-28-686-di fb-modules-5.10.0-28-686-di input-modules-5.10.0-28-686-di event-modules-5.10.0-28-686-di mouse-modules-5.10.0-28-686-di nic-pcmcia-modules-5.10.0-28-686-di pcmcia-modules-5.10.0-28-686-di nic-usb-modules-5.10.0-28-686-di sata-modules-5.10.0-28-686-di acpi-modules-5.10.0-28-686-di i2c-modules-5.10.0-28-686-di crc-modules-5.10.0-28-686-di crypto-modules-5.10.0-28-686-di crypto-dm-modules-5.10.0-28-686-di efi-modules-5.10.0-28-686-di ata-modules-5.10.0-28-686-di mmc-core-modules-5.10.0-28-686-di mmc-modules-5.10.0-28-686-di nbd-modules-5.10.0-28-686-di speakup-modules-5.10.0-28-686-di uinput-modules-5.10.0-28-686-di sound-modules-5.10.0-28-686-di mtd-core-modules-5.10.0-28-686-di rfkill-modules-5.10.0-28-686-di kernel-image-5.10.0-28-686-pae-di nic-modules-5.10.0-28-686-pae-di nic-wireless-modules-5.10.0-28-686-pae-di nic-shared-modules-5.10.0-28-686-pae-di serial-modules-5.10.0-28-686-pae-di usb-serial-modules-5.10.0-28-686-pae-di ppp-modules-5.10.0-28-686-pae-di pata-modules-5.10.0-28-686-pae-di cdrom-core-modules-5.10.0-28-686-pae-di firewire-core-modules-5.10.0-28-686-pae-di scsi-core-modules-5.10.0-28-686-pae-di scsi-modules-5.10.0-28-686-pae-di scsi-nic-modules-5.10.0-28-686-pae-di loop-modules-5.10.0-28-686-pae-di btrfs-modules-5.10.0-28-686-pae-di ext4-modules-5.10.0-28-686-pae-di isofs-modules-5.10.0-28-686-pae-di jfs-modules-5.10.0-28-686-pae-di xfs-modules-5.10.0-28-686-pae-di fat-modules-5.10.0-28-686-pae-di squashfs-modules-5.10.0-28-686-pae-di udf-modules-5.10.0-28-686-pae-di fuse-modules-5.10.0-28-686-pae-di f2fs-modules-5.10.0-28-686-pae-di md-modules-5.10.0-28-686-pae-di multipath-modules-5.10.0-28-686-pae-di usb-modules-5.10.0-28-686-pae-di usb-storage-modules-5.10.0-28-686-pae-di pcmcia-storage-modules-5.10.0-28-686-pae-di fb-modules-5.10.0-28-686-pae-di input-modules-5.10.0-28-686-pae-di event-modules-5.10.0-28-686-pae-di mouse-modules-5.10.0-28-686-pae-di nic-pcmcia-modules-5.10.0-28-686-pae-di pcmcia-modules-5.10.0-28-686-pae-di nic-usb-modules-5.10.0-28-686-pae-di sata-modules-5.10.0-28-686-pae-di acpi-modules-5.10.0-28-686-pae-di i2c-modules-5.10.0-28-686-pae-di crc-modules-5.10.0-28-686-pae-di crypto-modules-5.10.0-28-686-pae-di crypto-dm-modules-5.10.0-28-686-pae-di efi-modules-5.10.0-28-686-pae-di ata-modules-5.10.0-28-686-pae-di mmc-core-modules-5.10.0-28-686-pae-di mmc-modules-5.10.0-28-686-pae-di nbd-modules-5.10.0-28-686-pae-di speakup-modules-5.10.0-28-686-pae-di uinput-modules-5.10.0-28-686-pae-di sound-modules-5.10.0-28-686-pae-di mtd-core-modules-5.10.0-28-686-pae-di rfkill-modules-5.10.0-28-686-pae-di' UDEB_UNSIGNED_TEST_BUILD=True +binary-arch_i386:: + $(MAKE) -f debian/rules.real install-signed-template_i386 ABINAME='5.10.0-28' ARCH='i386' KERNEL_ARCH='x86' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_i386_extra:: + $(MAKE) -f debian/rules.real install-dummy ARCH='i386' DH_OPTIONS='-plinux-compiler-gcc-10-x86' +binary-arch_i386_none: binary-arch_i386_none_686 binary-arch_i386_none_686-pae binary-arch_i386_none_real +binary-arch_i386_none_686: binary-arch_i386_none_686_real +binary-arch_i386_none_686-pae: binary-arch_i386_none_686-pae_real +binary-arch_i386_none_686-pae_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='i386' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-686-pae-unsigned' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o SECURITY_LOCKDOWN_LSM=y -o MODULE_SIG=y -o "BUILD_SALT=\"5.10.0-28-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +binary-arch_i386_none_686_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='i386' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-686-unsigned' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o SECURITY_LOCKDOWN_LSM=y -o MODULE_SIG=y -o "BUILD_SALT=\"5.10.0-28-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +binary-arch_i386_none_real: +binary-arch_i386_real:: setup_i386 +binary-arch_i386_real:: + $(MAKE) -f debian/rules.real binary-arch-arch ABINAME='5.10.0-28' ARCH='i386' KERNEL_ARCH='x86' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_i386_rt: binary-arch_i386_rt_686-pae binary-arch_i386_rt_real +binary-arch_i386_rt_686-pae: binary-arch_i386_rt_686-pae_real +binary-arch_i386_rt_686-pae_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='i386' COMPILER='gcc-10' DEBUG='True' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-rt-686-pae-unsigned' 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 DEBUG_INFO=y -o SECURITY_LOCKDOWN_LSM=y -o MODULE_SIG=y -o "BUILD_SALT=\"5.10.0-28-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +binary-arch_i386_rt_real: +binary-arch_ia64:: binary-arch_ia64_none binary-arch_ia64_real +binary-arch_ia64:: + $(MAKE) -f debian/rules.real install-udeb_ia64 ABINAME='5.10.0-28' ARCH='ia64' KERNEL_ARCH='ia64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' PACKAGE_NAMES='kernel-image-5.10.0-28-itanium-di nic-modules-5.10.0-28-itanium-di nic-shared-modules-5.10.0-28-itanium-di serial-modules-5.10.0-28-itanium-di usb-serial-modules-5.10.0-28-itanium-di ppp-modules-5.10.0-28-itanium-di pata-modules-5.10.0-28-itanium-di cdrom-core-modules-5.10.0-28-itanium-di firewire-core-modules-5.10.0-28-itanium-di scsi-core-modules-5.10.0-28-itanium-di scsi-modules-5.10.0-28-itanium-di scsi-nic-modules-5.10.0-28-itanium-di loop-modules-5.10.0-28-itanium-di btrfs-modules-5.10.0-28-itanium-di ext4-modules-5.10.0-28-itanium-di isofs-modules-5.10.0-28-itanium-di jfs-modules-5.10.0-28-itanium-di xfs-modules-5.10.0-28-itanium-di fat-modules-5.10.0-28-itanium-di squashfs-modules-5.10.0-28-itanium-di udf-modules-5.10.0-28-itanium-di fuse-modules-5.10.0-28-itanium-di f2fs-modules-5.10.0-28-itanium-di md-modules-5.10.0-28-itanium-di multipath-modules-5.10.0-28-itanium-di usb-modules-5.10.0-28-itanium-di usb-storage-modules-5.10.0-28-itanium-di fb-modules-5.10.0-28-itanium-di input-modules-5.10.0-28-itanium-di event-modules-5.10.0-28-itanium-di mouse-modules-5.10.0-28-itanium-di pcmcia-modules-5.10.0-28-itanium-di nic-usb-modules-5.10.0-28-itanium-di sata-modules-5.10.0-28-itanium-di i2c-modules-5.10.0-28-itanium-di crc-modules-5.10.0-28-itanium-di crypto-modules-5.10.0-28-itanium-di crypto-dm-modules-5.10.0-28-itanium-di ata-modules-5.10.0-28-itanium-di nbd-modules-5.10.0-28-itanium-di uinput-modules-5.10.0-28-itanium-di mtd-core-modules-5.10.0-28-itanium-di ide-core-modules-5.10.0-28-itanium-di ide-modules-5.10.0-28-itanium-di' UDEB_UNSIGNED_TEST_BUILD=False +binary-arch_ia64_none: binary-arch_ia64_none_itanium binary-arch_ia64_none_mckinley binary-arch_ia64_none_real +binary-arch_ia64_none_itanium: binary-arch_ia64_none_itanium_real +binary-arch_ia64_none_itanium_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='ia64' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='itanium' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-itanium' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.itanium' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-itanium\""' KERNEL_ARCH='ia64' LOCALVERSION='-itanium' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-itanium' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_ia64_none_mckinley: binary-arch_ia64_none_mckinley_real +binary-arch_ia64_none_mckinley_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='ia64' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='mckinley' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-mckinley' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.mckinley' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-mckinley\""' KERNEL_ARCH='ia64' LOCALVERSION='-mckinley' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mckinley' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_ia64_none_real: +binary-arch_ia64_real:: setup_ia64 +binary-arch_ia64_real:: + $(MAKE) -f debian/rules.real binary-arch-arch ABINAME='5.10.0-28' ARCH='ia64' KERNEL_ARCH='ia64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_m68k:: binary-arch_m68k_none binary-arch_m68k_real +binary-arch_m68k:: + $(MAKE) -f debian/rules.real install-udeb_m68k ABINAME='5.10.0-28' ARCH='m68k' KERNEL_ARCH='m68k' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' PACKAGE_NAMES='kernel-image-5.10.0-28-m68k-di nic-modules-5.10.0-28-m68k-di nic-shared-modules-5.10.0-28-m68k-di ppp-modules-5.10.0-28-m68k-di pata-modules-5.10.0-28-m68k-di cdrom-core-modules-5.10.0-28-m68k-di scsi-core-modules-5.10.0-28-m68k-di scsi-modules-5.10.0-28-m68k-di loop-modules-5.10.0-28-m68k-di btrfs-modules-5.10.0-28-m68k-di ext4-modules-5.10.0-28-m68k-di isofs-modules-5.10.0-28-m68k-di fat-modules-5.10.0-28-m68k-di hfs-modules-5.10.0-28-m68k-di affs-modules-5.10.0-28-m68k-di squashfs-modules-5.10.0-28-m68k-di udf-modules-5.10.0-28-m68k-di fuse-modules-5.10.0-28-m68k-di md-modules-5.10.0-28-m68k-di crc-modules-5.10.0-28-m68k-di crypto-modules-5.10.0-28-m68k-di ata-modules-5.10.0-28-m68k-di nbd-modules-5.10.0-28-m68k-di ide-core-modules-5.10.0-28-m68k-di ide-modules-5.10.0-28-m68k-di' UDEB_UNSIGNED_TEST_BUILD=False +binary-arch_m68k_none: binary-arch_m68k_none_m68k binary-arch_m68k_none_real +binary-arch_m68k_none_m68k: binary-arch_m68k_none_m68k_real +binary-arch_m68k_none_m68k_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='m68k' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-m68k' KCFLAGS='-ffreestanding' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_m68k_none_real: +binary-arch_m68k_real:: setup_m68k +binary-arch_m68k_real:: + $(MAKE) -f debian/rules.real binary-arch-arch ABINAME='5.10.0-28' ARCH='m68k' KERNEL_ARCH='m68k' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_mips:: binary-arch_mips_none binary-arch_mips_real +binary-arch_mips:: + $(MAKE) -f debian/rules.real install-udeb_mips ABINAME='5.10.0-28' ARCH='mips' KERNEL_ARCH='mips' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' PACKAGE_NAMES='kernel-image-5.10.0-28-4kc-malta-di nic-modules-5.10.0-28-4kc-malta-di nic-wireless-modules-5.10.0-28-4kc-malta-di nic-shared-modules-5.10.0-28-4kc-malta-di usb-serial-modules-5.10.0-28-4kc-malta-di ppp-modules-5.10.0-28-4kc-malta-di pata-modules-5.10.0-28-4kc-malta-di cdrom-core-modules-5.10.0-28-4kc-malta-di scsi-core-modules-5.10.0-28-4kc-malta-di scsi-modules-5.10.0-28-4kc-malta-di scsi-nic-modules-5.10.0-28-4kc-malta-di loop-modules-5.10.0-28-4kc-malta-di btrfs-modules-5.10.0-28-4kc-malta-di ext4-modules-5.10.0-28-4kc-malta-di isofs-modules-5.10.0-28-4kc-malta-di jfs-modules-5.10.0-28-4kc-malta-di xfs-modules-5.10.0-28-4kc-malta-di fat-modules-5.10.0-28-4kc-malta-di affs-modules-5.10.0-28-4kc-malta-di minix-modules-5.10.0-28-4kc-malta-di squashfs-modules-5.10.0-28-4kc-malta-di udf-modules-5.10.0-28-4kc-malta-di fuse-modules-5.10.0-28-4kc-malta-di f2fs-modules-5.10.0-28-4kc-malta-di md-modules-5.10.0-28-4kc-malta-di multipath-modules-5.10.0-28-4kc-malta-di usb-modules-5.10.0-28-4kc-malta-di usb-storage-modules-5.10.0-28-4kc-malta-di fb-modules-5.10.0-28-4kc-malta-di input-modules-5.10.0-28-4kc-malta-di event-modules-5.10.0-28-4kc-malta-di mouse-modules-5.10.0-28-4kc-malta-di nic-usb-modules-5.10.0-28-4kc-malta-di sata-modules-5.10.0-28-4kc-malta-di i2c-modules-5.10.0-28-4kc-malta-di crc-modules-5.10.0-28-4kc-malta-di crypto-modules-5.10.0-28-4kc-malta-di crypto-dm-modules-5.10.0-28-4kc-malta-di ata-modules-5.10.0-28-4kc-malta-di mmc-core-modules-5.10.0-28-4kc-malta-di mmc-modules-5.10.0-28-4kc-malta-di nbd-modules-5.10.0-28-4kc-malta-di sound-modules-5.10.0-28-4kc-malta-di mtd-core-modules-5.10.0-28-4kc-malta-di kernel-image-5.10.0-28-octeon-di nic-modules-5.10.0-28-octeon-di nic-wireless-modules-5.10.0-28-octeon-di nic-shared-modules-5.10.0-28-octeon-di usb-serial-modules-5.10.0-28-octeon-di ppp-modules-5.10.0-28-octeon-di pata-modules-5.10.0-28-octeon-di cdrom-core-modules-5.10.0-28-octeon-di scsi-core-modules-5.10.0-28-octeon-di scsi-modules-5.10.0-28-octeon-di scsi-nic-modules-5.10.0-28-octeon-di loop-modules-5.10.0-28-octeon-di btrfs-modules-5.10.0-28-octeon-di ext4-modules-5.10.0-28-octeon-di isofs-modules-5.10.0-28-octeon-di jfs-modules-5.10.0-28-octeon-di xfs-modules-5.10.0-28-octeon-di fat-modules-5.10.0-28-octeon-di affs-modules-5.10.0-28-octeon-di minix-modules-5.10.0-28-octeon-di squashfs-modules-5.10.0-28-octeon-di udf-modules-5.10.0-28-octeon-di fuse-modules-5.10.0-28-octeon-di f2fs-modules-5.10.0-28-octeon-di md-modules-5.10.0-28-octeon-di multipath-modules-5.10.0-28-octeon-di usb-modules-5.10.0-28-octeon-di usb-storage-modules-5.10.0-28-octeon-di input-modules-5.10.0-28-octeon-di event-modules-5.10.0-28-octeon-di nic-usb-modules-5.10.0-28-octeon-di sata-modules-5.10.0-28-octeon-di crc-modules-5.10.0-28-octeon-di crypto-modules-5.10.0-28-octeon-di crypto-dm-modules-5.10.0-28-octeon-di nbd-modules-5.10.0-28-octeon-di rtc-modules-5.10.0-28-octeon-di sound-modules-5.10.0-28-octeon-di' UDEB_UNSIGNED_TEST_BUILD=False +binary-arch_mips64:: binary-arch_mips64_none binary-arch_mips64_real +binary-arch_mips64:: + $(MAKE) -f debian/rules.real install-udeb_mips64 ABINAME='5.10.0-28' ARCH='mips64' KERNEL_ARCH='mips' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' PACKAGE_NAMES='kernel-image-5.10.0-28-5kc-malta-di nic-modules-5.10.0-28-5kc-malta-di nic-wireless-modules-5.10.0-28-5kc-malta-di nic-shared-modules-5.10.0-28-5kc-malta-di usb-serial-modules-5.10.0-28-5kc-malta-di ppp-modules-5.10.0-28-5kc-malta-di pata-modules-5.10.0-28-5kc-malta-di cdrom-core-modules-5.10.0-28-5kc-malta-di scsi-core-modules-5.10.0-28-5kc-malta-di scsi-modules-5.10.0-28-5kc-malta-di scsi-nic-modules-5.10.0-28-5kc-malta-di loop-modules-5.10.0-28-5kc-malta-di btrfs-modules-5.10.0-28-5kc-malta-di ext4-modules-5.10.0-28-5kc-malta-di isofs-modules-5.10.0-28-5kc-malta-di jfs-modules-5.10.0-28-5kc-malta-di xfs-modules-5.10.0-28-5kc-malta-di fat-modules-5.10.0-28-5kc-malta-di affs-modules-5.10.0-28-5kc-malta-di minix-modules-5.10.0-28-5kc-malta-di squashfs-modules-5.10.0-28-5kc-malta-di udf-modules-5.10.0-28-5kc-malta-di fuse-modules-5.10.0-28-5kc-malta-di f2fs-modules-5.10.0-28-5kc-malta-di md-modules-5.10.0-28-5kc-malta-di multipath-modules-5.10.0-28-5kc-malta-di usb-modules-5.10.0-28-5kc-malta-di usb-storage-modules-5.10.0-28-5kc-malta-di fb-modules-5.10.0-28-5kc-malta-di input-modules-5.10.0-28-5kc-malta-di event-modules-5.10.0-28-5kc-malta-di mouse-modules-5.10.0-28-5kc-malta-di nic-usb-modules-5.10.0-28-5kc-malta-di sata-modules-5.10.0-28-5kc-malta-di i2c-modules-5.10.0-28-5kc-malta-di crc-modules-5.10.0-28-5kc-malta-di crypto-modules-5.10.0-28-5kc-malta-di crypto-dm-modules-5.10.0-28-5kc-malta-di ata-modules-5.10.0-28-5kc-malta-di mmc-core-modules-5.10.0-28-5kc-malta-di mmc-modules-5.10.0-28-5kc-malta-di nbd-modules-5.10.0-28-5kc-malta-di sound-modules-5.10.0-28-5kc-malta-di mtd-core-modules-5.10.0-28-5kc-malta-di kernel-image-5.10.0-28-octeon-di nic-modules-5.10.0-28-octeon-di nic-wireless-modules-5.10.0-28-octeon-di nic-shared-modules-5.10.0-28-octeon-di usb-serial-modules-5.10.0-28-octeon-di ppp-modules-5.10.0-28-octeon-di pata-modules-5.10.0-28-octeon-di cdrom-core-modules-5.10.0-28-octeon-di scsi-core-modules-5.10.0-28-octeon-di scsi-modules-5.10.0-28-octeon-di scsi-nic-modules-5.10.0-28-octeon-di loop-modules-5.10.0-28-octeon-di btrfs-modules-5.10.0-28-octeon-di ext4-modules-5.10.0-28-octeon-di isofs-modules-5.10.0-28-octeon-di jfs-modules-5.10.0-28-octeon-di xfs-modules-5.10.0-28-octeon-di fat-modules-5.10.0-28-octeon-di affs-modules-5.10.0-28-octeon-di minix-modules-5.10.0-28-octeon-di squashfs-modules-5.10.0-28-octeon-di udf-modules-5.10.0-28-octeon-di fuse-modules-5.10.0-28-octeon-di f2fs-modules-5.10.0-28-octeon-di md-modules-5.10.0-28-octeon-di multipath-modules-5.10.0-28-octeon-di usb-modules-5.10.0-28-octeon-di usb-storage-modules-5.10.0-28-octeon-di input-modules-5.10.0-28-octeon-di event-modules-5.10.0-28-octeon-di nic-usb-modules-5.10.0-28-octeon-di sata-modules-5.10.0-28-octeon-di crc-modules-5.10.0-28-octeon-di crypto-modules-5.10.0-28-octeon-di crypto-dm-modules-5.10.0-28-octeon-di nbd-modules-5.10.0-28-octeon-di rtc-modules-5.10.0-28-octeon-di sound-modules-5.10.0-28-octeon-di' UDEB_UNSIGNED_TEST_BUILD=False +binary-arch_mips64_none: binary-arch_mips64_none_5kc-malta binary-arch_mips64_none_octeon binary-arch_mips64_none_real +binary-arch_mips64_none_5kc-malta: binary-arch_mips64_none_5kc-malta_real +binary-arch_mips64_none_5kc-malta_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='mips64' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_mips64_none_octeon: binary-arch_mips64_none_octeon_real +binary-arch_mips64_none_octeon_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='mips64' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_mips64_none_real: +binary-arch_mips64_real:: setup_mips64 +binary-arch_mips64_real:: + $(MAKE) -f debian/rules.real binary-arch-arch ABINAME='5.10.0-28' ARCH='mips64' KERNEL_ARCH='mips' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_mips64el:: binary-arch_mips64el_none binary-arch_mips64el_real +binary-arch_mips64el:: + $(MAKE) -f debian/rules.real install-udeb_mips64el ABINAME='5.10.0-28' ARCH='mips64el' KERNEL_ARCH='mips' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' PACKAGE_NAMES='kernel-image-5.10.0-28-5kc-malta-di nic-modules-5.10.0-28-5kc-malta-di nic-wireless-modules-5.10.0-28-5kc-malta-di nic-shared-modules-5.10.0-28-5kc-malta-di usb-serial-modules-5.10.0-28-5kc-malta-di ppp-modules-5.10.0-28-5kc-malta-di pata-modules-5.10.0-28-5kc-malta-di cdrom-core-modules-5.10.0-28-5kc-malta-di scsi-core-modules-5.10.0-28-5kc-malta-di scsi-modules-5.10.0-28-5kc-malta-di scsi-nic-modules-5.10.0-28-5kc-malta-di loop-modules-5.10.0-28-5kc-malta-di btrfs-modules-5.10.0-28-5kc-malta-di ext4-modules-5.10.0-28-5kc-malta-di isofs-modules-5.10.0-28-5kc-malta-di jfs-modules-5.10.0-28-5kc-malta-di xfs-modules-5.10.0-28-5kc-malta-di fat-modules-5.10.0-28-5kc-malta-di affs-modules-5.10.0-28-5kc-malta-di minix-modules-5.10.0-28-5kc-malta-di squashfs-modules-5.10.0-28-5kc-malta-di udf-modules-5.10.0-28-5kc-malta-di fuse-modules-5.10.0-28-5kc-malta-di f2fs-modules-5.10.0-28-5kc-malta-di md-modules-5.10.0-28-5kc-malta-di multipath-modules-5.10.0-28-5kc-malta-di usb-modules-5.10.0-28-5kc-malta-di usb-storage-modules-5.10.0-28-5kc-malta-di fb-modules-5.10.0-28-5kc-malta-di input-modules-5.10.0-28-5kc-malta-di event-modules-5.10.0-28-5kc-malta-di mouse-modules-5.10.0-28-5kc-malta-di nic-usb-modules-5.10.0-28-5kc-malta-di sata-modules-5.10.0-28-5kc-malta-di i2c-modules-5.10.0-28-5kc-malta-di crc-modules-5.10.0-28-5kc-malta-di crypto-modules-5.10.0-28-5kc-malta-di crypto-dm-modules-5.10.0-28-5kc-malta-di ata-modules-5.10.0-28-5kc-malta-di mmc-core-modules-5.10.0-28-5kc-malta-di mmc-modules-5.10.0-28-5kc-malta-di nbd-modules-5.10.0-28-5kc-malta-di sound-modules-5.10.0-28-5kc-malta-di mtd-core-modules-5.10.0-28-5kc-malta-di kernel-image-5.10.0-28-loongson-3-di nic-modules-5.10.0-28-loongson-3-di nic-wireless-modules-5.10.0-28-loongson-3-di nic-shared-modules-5.10.0-28-loongson-3-di usb-serial-modules-5.10.0-28-loongson-3-di ppp-modules-5.10.0-28-loongson-3-di pata-modules-5.10.0-28-loongson-3-di cdrom-core-modules-5.10.0-28-loongson-3-di firewire-core-modules-5.10.0-28-loongson-3-di scsi-core-modules-5.10.0-28-loongson-3-di scsi-modules-5.10.0-28-loongson-3-di scsi-nic-modules-5.10.0-28-loongson-3-di loop-modules-5.10.0-28-loongson-3-di btrfs-modules-5.10.0-28-loongson-3-di ext4-modules-5.10.0-28-loongson-3-di isofs-modules-5.10.0-28-loongson-3-di jfs-modules-5.10.0-28-loongson-3-di xfs-modules-5.10.0-28-loongson-3-di fat-modules-5.10.0-28-loongson-3-di affs-modules-5.10.0-28-loongson-3-di minix-modules-5.10.0-28-loongson-3-di nfs-modules-5.10.0-28-loongson-3-di squashfs-modules-5.10.0-28-loongson-3-di udf-modules-5.10.0-28-loongson-3-di fuse-modules-5.10.0-28-loongson-3-di f2fs-modules-5.10.0-28-loongson-3-di md-modules-5.10.0-28-loongson-3-di multipath-modules-5.10.0-28-loongson-3-di usb-modules-5.10.0-28-loongson-3-di usb-storage-modules-5.10.0-28-loongson-3-di fb-modules-5.10.0-28-loongson-3-di input-modules-5.10.0-28-loongson-3-di event-modules-5.10.0-28-loongson-3-di nic-usb-modules-5.10.0-28-loongson-3-di sata-modules-5.10.0-28-loongson-3-di crc-modules-5.10.0-28-loongson-3-di crypto-modules-5.10.0-28-loongson-3-di crypto-dm-modules-5.10.0-28-loongson-3-di ata-modules-5.10.0-28-loongson-3-di nbd-modules-5.10.0-28-loongson-3-di speakup-modules-5.10.0-28-loongson-3-di sound-modules-5.10.0-28-loongson-3-di mtd-core-modules-5.10.0-28-loongson-3-di kernel-image-5.10.0-28-octeon-di nic-modules-5.10.0-28-octeon-di nic-wireless-modules-5.10.0-28-octeon-di nic-shared-modules-5.10.0-28-octeon-di usb-serial-modules-5.10.0-28-octeon-di ppp-modules-5.10.0-28-octeon-di pata-modules-5.10.0-28-octeon-di cdrom-core-modules-5.10.0-28-octeon-di scsi-core-modules-5.10.0-28-octeon-di scsi-modules-5.10.0-28-octeon-di scsi-nic-modules-5.10.0-28-octeon-di loop-modules-5.10.0-28-octeon-di btrfs-modules-5.10.0-28-octeon-di ext4-modules-5.10.0-28-octeon-di isofs-modules-5.10.0-28-octeon-di jfs-modules-5.10.0-28-octeon-di xfs-modules-5.10.0-28-octeon-di fat-modules-5.10.0-28-octeon-di affs-modules-5.10.0-28-octeon-di minix-modules-5.10.0-28-octeon-di squashfs-modules-5.10.0-28-octeon-di udf-modules-5.10.0-28-octeon-di fuse-modules-5.10.0-28-octeon-di f2fs-modules-5.10.0-28-octeon-di md-modules-5.10.0-28-octeon-di multipath-modules-5.10.0-28-octeon-di usb-modules-5.10.0-28-octeon-di usb-storage-modules-5.10.0-28-octeon-di input-modules-5.10.0-28-octeon-di event-modules-5.10.0-28-octeon-di nic-usb-modules-5.10.0-28-octeon-di sata-modules-5.10.0-28-octeon-di crc-modules-5.10.0-28-octeon-di crypto-modules-5.10.0-28-octeon-di crypto-dm-modules-5.10.0-28-octeon-di nbd-modules-5.10.0-28-octeon-di rtc-modules-5.10.0-28-octeon-di sound-modules-5.10.0-28-octeon-di' UDEB_UNSIGNED_TEST_BUILD=False +binary-arch_mips64el_none: binary-arch_mips64el_none_5kc-malta binary-arch_mips64el_none_loongson-3 binary-arch_mips64el_none_octeon binary-arch_mips64el_none_real +binary-arch_mips64el_none_5kc-malta: binary-arch_mips64el_none_5kc-malta_real +binary-arch_mips64el_none_5kc-malta_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='mips64el' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_mips64el_none_loongson-3: binary-arch_mips64el_none_loongson-3_real +binary-arch_mips64el_none_loongson-3_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='mips64el' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_mips64el_none_octeon: binary-arch_mips64el_none_octeon_real +binary-arch_mips64el_none_octeon_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='mips64el' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_mips64el_none_real: +binary-arch_mips64el_real:: setup_mips64el +binary-arch_mips64el_real:: + $(MAKE) -f debian/rules.real binary-arch-arch ABINAME='5.10.0-28' ARCH='mips64el' KERNEL_ARCH='mips' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_mips64r6:: binary-arch_mips64r6_none binary-arch_mips64r6_real +binary-arch_mips64r6:: + $(MAKE) -f debian/rules.real install-udeb_mips64r6 ABINAME='5.10.0-28' ARCH='mips64r6' KERNEL_ARCH='mips' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' PACKAGE_NAMES='kernel-image-5.10.0-28-mips64r6-di nic-shared-modules-5.10.0-28-mips64r6-di loop-modules-5.10.0-28-mips64r6-di btrfs-modules-5.10.0-28-mips64r6-di ext4-modules-5.10.0-28-mips64r6-di isofs-modules-5.10.0-28-mips64r6-di jfs-modules-5.10.0-28-mips64r6-di xfs-modules-5.10.0-28-mips64r6-di squashfs-modules-5.10.0-28-mips64r6-di udf-modules-5.10.0-28-mips64r6-di fuse-modules-5.10.0-28-mips64r6-di f2fs-modules-5.10.0-28-mips64r6-di md-modules-5.10.0-28-mips64r6-di multipath-modules-5.10.0-28-mips64r6-di crc-modules-5.10.0-28-mips64r6-di crypto-modules-5.10.0-28-mips64r6-di crypto-dm-modules-5.10.0-28-mips64r6-di nbd-modules-5.10.0-28-mips64r6-di' UDEB_UNSIGNED_TEST_BUILD=False +binary-arch_mips64r6_none: binary-arch_mips64r6_none_mips64r6 binary-arch_mips64r6_none_real +binary-arch_mips64r6_none_mips64r6: binary-arch_mips64r6_none_mips64r6_real +binary-arch_mips64r6_none_mips64r6_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='mips64r6' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='mips64r6' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-mips64r6' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-mips64r6\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_mips64r6_none_real: +binary-arch_mips64r6_real:: setup_mips64r6 +binary-arch_mips64r6_real:: + $(MAKE) -f debian/rules.real binary-arch-arch ABINAME='5.10.0-28' ARCH='mips64r6' KERNEL_ARCH='mips' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_mips64r6el:: binary-arch_mips64r6el_none binary-arch_mips64r6el_real +binary-arch_mips64r6el:: + $(MAKE) -f debian/rules.real install-udeb_mips64r6el ABINAME='5.10.0-28' ARCH='mips64r6el' KERNEL_ARCH='mips' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' PACKAGE_NAMES='kernel-image-5.10.0-28-mips64r6el-di nic-shared-modules-5.10.0-28-mips64r6el-di loop-modules-5.10.0-28-mips64r6el-di btrfs-modules-5.10.0-28-mips64r6el-di ext4-modules-5.10.0-28-mips64r6el-di isofs-modules-5.10.0-28-mips64r6el-di jfs-modules-5.10.0-28-mips64r6el-di xfs-modules-5.10.0-28-mips64r6el-di squashfs-modules-5.10.0-28-mips64r6el-di udf-modules-5.10.0-28-mips64r6el-di fuse-modules-5.10.0-28-mips64r6el-di f2fs-modules-5.10.0-28-mips64r6el-di md-modules-5.10.0-28-mips64r6el-di multipath-modules-5.10.0-28-mips64r6el-di crc-modules-5.10.0-28-mips64r6el-di crypto-modules-5.10.0-28-mips64r6el-di crypto-dm-modules-5.10.0-28-mips64r6el-di nbd-modules-5.10.0-28-mips64r6el-di' UDEB_UNSIGNED_TEST_BUILD=False +binary-arch_mips64r6el_none: binary-arch_mips64r6el_none_mips64r6el binary-arch_mips64r6el_none_real +binary-arch_mips64r6el_none_mips64r6el: binary-arch_mips64r6el_none_mips64r6el_real +binary-arch_mips64r6el_none_mips64r6el_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='mips64r6el' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_mips64r6el_none_real: +binary-arch_mips64r6el_real:: setup_mips64r6el +binary-arch_mips64r6el_real:: + $(MAKE) -f debian/rules.real binary-arch-arch ABINAME='5.10.0-28' ARCH='mips64r6el' KERNEL_ARCH='mips' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_mips_none: binary-arch_mips_none_4kc-malta binary-arch_mips_none_5kc-malta binary-arch_mips_none_octeon binary-arch_mips_none_real +binary-arch_mips_none_4kc-malta: binary-arch_mips_none_4kc-malta_real +binary-arch_mips_none_4kc-malta_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='mips' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_mips_none_5kc-malta: binary-arch_mips_none_5kc-malta_real +binary-arch_mips_none_5kc-malta_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='mips' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-5kc-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.mips64r2' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_mips_none_octeon: binary-arch_mips_none_octeon_real +binary-arch_mips_none_octeon_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='mips' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_mips_none_real: +binary-arch_mips_real:: setup_mips +binary-arch_mips_real:: + $(MAKE) -f debian/rules.real binary-arch-arch ABINAME='5.10.0-28' ARCH='mips' KERNEL_ARCH='mips' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_mipsel:: binary-arch_mipsel_none binary-arch_mipsel_real +binary-arch_mipsel:: + $(MAKE) -f debian/rules.real install-udeb_mipsel ABINAME='5.10.0-28' ARCH='mipsel' KERNEL_ARCH='mips' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' PACKAGE_NAMES='kernel-image-5.10.0-28-4kc-malta-di nic-modules-5.10.0-28-4kc-malta-di nic-wireless-modules-5.10.0-28-4kc-malta-di nic-shared-modules-5.10.0-28-4kc-malta-di usb-serial-modules-5.10.0-28-4kc-malta-di ppp-modules-5.10.0-28-4kc-malta-di pata-modules-5.10.0-28-4kc-malta-di cdrom-core-modules-5.10.0-28-4kc-malta-di scsi-core-modules-5.10.0-28-4kc-malta-di scsi-modules-5.10.0-28-4kc-malta-di scsi-nic-modules-5.10.0-28-4kc-malta-di loop-modules-5.10.0-28-4kc-malta-di btrfs-modules-5.10.0-28-4kc-malta-di ext4-modules-5.10.0-28-4kc-malta-di isofs-modules-5.10.0-28-4kc-malta-di jfs-modules-5.10.0-28-4kc-malta-di xfs-modules-5.10.0-28-4kc-malta-di fat-modules-5.10.0-28-4kc-malta-di affs-modules-5.10.0-28-4kc-malta-di minix-modules-5.10.0-28-4kc-malta-di squashfs-modules-5.10.0-28-4kc-malta-di udf-modules-5.10.0-28-4kc-malta-di fuse-modules-5.10.0-28-4kc-malta-di f2fs-modules-5.10.0-28-4kc-malta-di md-modules-5.10.0-28-4kc-malta-di multipath-modules-5.10.0-28-4kc-malta-di usb-modules-5.10.0-28-4kc-malta-di usb-storage-modules-5.10.0-28-4kc-malta-di fb-modules-5.10.0-28-4kc-malta-di input-modules-5.10.0-28-4kc-malta-di event-modules-5.10.0-28-4kc-malta-di mouse-modules-5.10.0-28-4kc-malta-di nic-usb-modules-5.10.0-28-4kc-malta-di sata-modules-5.10.0-28-4kc-malta-di i2c-modules-5.10.0-28-4kc-malta-di crc-modules-5.10.0-28-4kc-malta-di crypto-modules-5.10.0-28-4kc-malta-di crypto-dm-modules-5.10.0-28-4kc-malta-di ata-modules-5.10.0-28-4kc-malta-di mmc-core-modules-5.10.0-28-4kc-malta-di mmc-modules-5.10.0-28-4kc-malta-di nbd-modules-5.10.0-28-4kc-malta-di sound-modules-5.10.0-28-4kc-malta-di mtd-core-modules-5.10.0-28-4kc-malta-di kernel-image-5.10.0-28-loongson-3-di nic-modules-5.10.0-28-loongson-3-di nic-wireless-modules-5.10.0-28-loongson-3-di nic-shared-modules-5.10.0-28-loongson-3-di usb-serial-modules-5.10.0-28-loongson-3-di ppp-modules-5.10.0-28-loongson-3-di pata-modules-5.10.0-28-loongson-3-di cdrom-core-modules-5.10.0-28-loongson-3-di firewire-core-modules-5.10.0-28-loongson-3-di scsi-core-modules-5.10.0-28-loongson-3-di scsi-modules-5.10.0-28-loongson-3-di scsi-nic-modules-5.10.0-28-loongson-3-di loop-modules-5.10.0-28-loongson-3-di btrfs-modules-5.10.0-28-loongson-3-di ext4-modules-5.10.0-28-loongson-3-di isofs-modules-5.10.0-28-loongson-3-di jfs-modules-5.10.0-28-loongson-3-di xfs-modules-5.10.0-28-loongson-3-di fat-modules-5.10.0-28-loongson-3-di affs-modules-5.10.0-28-loongson-3-di minix-modules-5.10.0-28-loongson-3-di nfs-modules-5.10.0-28-loongson-3-di squashfs-modules-5.10.0-28-loongson-3-di udf-modules-5.10.0-28-loongson-3-di fuse-modules-5.10.0-28-loongson-3-di f2fs-modules-5.10.0-28-loongson-3-di md-modules-5.10.0-28-loongson-3-di multipath-modules-5.10.0-28-loongson-3-di usb-modules-5.10.0-28-loongson-3-di usb-storage-modules-5.10.0-28-loongson-3-di fb-modules-5.10.0-28-loongson-3-di input-modules-5.10.0-28-loongson-3-di event-modules-5.10.0-28-loongson-3-di nic-usb-modules-5.10.0-28-loongson-3-di sata-modules-5.10.0-28-loongson-3-di crc-modules-5.10.0-28-loongson-3-di crypto-modules-5.10.0-28-loongson-3-di crypto-dm-modules-5.10.0-28-loongson-3-di ata-modules-5.10.0-28-loongson-3-di nbd-modules-5.10.0-28-loongson-3-di speakup-modules-5.10.0-28-loongson-3-di sound-modules-5.10.0-28-loongson-3-di mtd-core-modules-5.10.0-28-loongson-3-di kernel-image-5.10.0-28-octeon-di nic-modules-5.10.0-28-octeon-di nic-wireless-modules-5.10.0-28-octeon-di nic-shared-modules-5.10.0-28-octeon-di usb-serial-modules-5.10.0-28-octeon-di ppp-modules-5.10.0-28-octeon-di pata-modules-5.10.0-28-octeon-di cdrom-core-modules-5.10.0-28-octeon-di scsi-core-modules-5.10.0-28-octeon-di scsi-modules-5.10.0-28-octeon-di scsi-nic-modules-5.10.0-28-octeon-di loop-modules-5.10.0-28-octeon-di btrfs-modules-5.10.0-28-octeon-di ext4-modules-5.10.0-28-octeon-di isofs-modules-5.10.0-28-octeon-di jfs-modules-5.10.0-28-octeon-di xfs-modules-5.10.0-28-octeon-di fat-modules-5.10.0-28-octeon-di affs-modules-5.10.0-28-octeon-di minix-modules-5.10.0-28-octeon-di squashfs-modules-5.10.0-28-octeon-di udf-modules-5.10.0-28-octeon-di fuse-modules-5.10.0-28-octeon-di f2fs-modules-5.10.0-28-octeon-di md-modules-5.10.0-28-octeon-di multipath-modules-5.10.0-28-octeon-di usb-modules-5.10.0-28-octeon-di usb-storage-modules-5.10.0-28-octeon-di input-modules-5.10.0-28-octeon-di event-modules-5.10.0-28-octeon-di nic-usb-modules-5.10.0-28-octeon-di sata-modules-5.10.0-28-octeon-di crc-modules-5.10.0-28-octeon-di crypto-modules-5.10.0-28-octeon-di crypto-dm-modules-5.10.0-28-octeon-di nbd-modules-5.10.0-28-octeon-di rtc-modules-5.10.0-28-octeon-di sound-modules-5.10.0-28-octeon-di' UDEB_UNSIGNED_TEST_BUILD=False +binary-arch_mipsel_none: binary-arch_mipsel_none_4kc-malta binary-arch_mipsel_none_5kc-malta binary-arch_mipsel_none_loongson-3 binary-arch_mipsel_none_octeon binary-arch_mipsel_none_real +binary-arch_mipsel_none_4kc-malta: binary-arch_mipsel_none_4kc-malta_real +binary-arch_mipsel_none_4kc-malta_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='mipsel' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_mipsel_none_5kc-malta: binary-arch_mipsel_none_5kc-malta_real +binary-arch_mipsel_none_5kc-malta_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='mipsel' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-5kc-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.mips64r2' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_mipsel_none_loongson-3: binary-arch_mipsel_none_loongson-3_real +binary-arch_mipsel_none_loongson-3_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='mipsel' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_mipsel_none_octeon: binary-arch_mipsel_none_octeon_real +binary-arch_mipsel_none_octeon_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='mipsel' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_mipsel_none_real: +binary-arch_mipsel_real:: setup_mipsel +binary-arch_mipsel_real:: + $(MAKE) -f debian/rules.real binary-arch-arch ABINAME='5.10.0-28' ARCH='mipsel' KERNEL_ARCH='mips' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_mipsn32: binary-arch_mipsn32_real +binary-arch_mipsn32_real:: setup_mipsn32 +binary-arch_mipsn32_real:: + $(MAKE) -f debian/rules.real binary-arch-arch ABINAME='5.10.0-28' ARCH='mipsn32' KERNEL_ARCH='mips' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_mipsn32el: binary-arch_mipsn32el_real +binary-arch_mipsn32el_real:: setup_mipsn32el +binary-arch_mipsn32el_real:: + $(MAKE) -f debian/rules.real binary-arch-arch ABINAME='5.10.0-28' ARCH='mipsn32el' KERNEL_ARCH='mips' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_mipsn32r6: binary-arch_mipsn32r6_real +binary-arch_mipsn32r6_real:: setup_mipsn32r6 +binary-arch_mipsn32r6_real:: + $(MAKE) -f debian/rules.real binary-arch-arch ABINAME='5.10.0-28' ARCH='mipsn32r6' KERNEL_ARCH='mips' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_mipsn32r6el: binary-arch_mipsn32r6el_real +binary-arch_mipsn32r6el_real:: setup_mipsn32r6el +binary-arch_mipsn32r6el_real:: + $(MAKE) -f debian/rules.real binary-arch-arch ABINAME='5.10.0-28' ARCH='mipsn32r6el' KERNEL_ARCH='mips' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_mipsr6:: binary-arch_mipsr6_none binary-arch_mipsr6_real +binary-arch_mipsr6:: + $(MAKE) -f debian/rules.real install-udeb_mipsr6 ABINAME='5.10.0-28' ARCH='mipsr6' KERNEL_ARCH='mips' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' PACKAGE_NAMES='kernel-image-5.10.0-28-mips32r6-di nic-shared-modules-5.10.0-28-mips32r6-di loop-modules-5.10.0-28-mips32r6-di btrfs-modules-5.10.0-28-mips32r6-di ext4-modules-5.10.0-28-mips32r6-di isofs-modules-5.10.0-28-mips32r6-di jfs-modules-5.10.0-28-mips32r6-di xfs-modules-5.10.0-28-mips32r6-di squashfs-modules-5.10.0-28-mips32r6-di udf-modules-5.10.0-28-mips32r6-di fuse-modules-5.10.0-28-mips32r6-di f2fs-modules-5.10.0-28-mips32r6-di md-modules-5.10.0-28-mips32r6-di multipath-modules-5.10.0-28-mips32r6-di crc-modules-5.10.0-28-mips32r6-di crypto-modules-5.10.0-28-mips32r6-di crypto-dm-modules-5.10.0-28-mips32r6-di nbd-modules-5.10.0-28-mips32r6-di' UDEB_UNSIGNED_TEST_BUILD=False +binary-arch_mipsr6_none: binary-arch_mipsr6_none_mips32r6 binary-arch_mipsr6_none_mips64r6 binary-arch_mipsr6_none_real +binary-arch_mipsr6_none_mips32r6: binary-arch_mipsr6_none_mips32r6_real +binary-arch_mipsr6_none_mips32r6_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='mipsr6' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='mips32r6' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-mips32r6' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsr6/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r6' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-mips32r6\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r6' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r6' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_mipsr6_none_mips64r6: binary-arch_mipsr6_none_mips64r6_real +binary-arch_mipsr6_none_mips64r6_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='mipsr6' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='mips64r6' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-mips64r6' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsr6/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-mips64r6\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_mipsr6_none_real: +binary-arch_mipsr6_real:: setup_mipsr6 +binary-arch_mipsr6_real:: + $(MAKE) -f debian/rules.real binary-arch-arch ABINAME='5.10.0-28' ARCH='mipsr6' KERNEL_ARCH='mips' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_mipsr6el:: binary-arch_mipsr6el_none binary-arch_mipsr6el_real +binary-arch_mipsr6el:: + $(MAKE) -f debian/rules.real install-udeb_mipsr6el ABINAME='5.10.0-28' ARCH='mipsr6el' KERNEL_ARCH='mips' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' PACKAGE_NAMES='kernel-image-5.10.0-28-mips32r6el-di nic-shared-modules-5.10.0-28-mips32r6el-di loop-modules-5.10.0-28-mips32r6el-di btrfs-modules-5.10.0-28-mips32r6el-di ext4-modules-5.10.0-28-mips32r6el-di isofs-modules-5.10.0-28-mips32r6el-di jfs-modules-5.10.0-28-mips32r6el-di xfs-modules-5.10.0-28-mips32r6el-di squashfs-modules-5.10.0-28-mips32r6el-di udf-modules-5.10.0-28-mips32r6el-di fuse-modules-5.10.0-28-mips32r6el-di f2fs-modules-5.10.0-28-mips32r6el-di md-modules-5.10.0-28-mips32r6el-di multipath-modules-5.10.0-28-mips32r6el-di crc-modules-5.10.0-28-mips32r6el-di crypto-modules-5.10.0-28-mips32r6el-di crypto-dm-modules-5.10.0-28-mips32r6el-di nbd-modules-5.10.0-28-mips32r6el-di' UDEB_UNSIGNED_TEST_BUILD=False +binary-arch_mipsr6el_none: binary-arch_mipsr6el_none_mips32r6el binary-arch_mipsr6el_none_mips64r6el binary-arch_mipsr6el_none_real +binary-arch_mipsr6el_none_mips32r6el: binary-arch_mipsr6el_none_mips32r6el_real +binary-arch_mipsr6el_none_mips32r6el_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='mipsr6el' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='mips32r6el' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-mips32r6el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsr6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r6' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-mips32r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r6el' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_mipsr6el_none_mips64r6el: binary-arch_mipsr6el_none_mips64r6el_real +binary-arch_mipsr6el_none_mips64r6el_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='mipsr6el' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-mips64r6el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsr6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_mipsr6el_none_real: +binary-arch_mipsr6el_real:: setup_mipsr6el +binary-arch_mipsr6el_real:: + $(MAKE) -f debian/rules.real binary-arch-arch ABINAME='5.10.0-28' ARCH='mipsr6el' KERNEL_ARCH='mips' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_powerpc:: binary-arch_powerpc_none binary-arch_powerpc_real +binary-arch_powerpc:: + $(MAKE) -f debian/rules.real install-udeb_powerpc ABINAME='5.10.0-28' ARCH='powerpc' KERNEL_ARCH='powerpc' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' PACKAGE_NAMES='kernel-image-5.10.0-28-powerpc-di nic-modules-5.10.0-28-powerpc-di nic-wireless-modules-5.10.0-28-powerpc-di nic-shared-modules-5.10.0-28-powerpc-di serial-modules-5.10.0-28-powerpc-di usb-serial-modules-5.10.0-28-powerpc-di ppp-modules-5.10.0-28-powerpc-di pata-modules-5.10.0-28-powerpc-di cdrom-core-modules-5.10.0-28-powerpc-di firewire-core-modules-5.10.0-28-powerpc-di scsi-core-modules-5.10.0-28-powerpc-di scsi-modules-5.10.0-28-powerpc-di scsi-nic-modules-5.10.0-28-powerpc-di loop-modules-5.10.0-28-powerpc-di btrfs-modules-5.10.0-28-powerpc-di ext4-modules-5.10.0-28-powerpc-di isofs-modules-5.10.0-28-powerpc-di jfs-modules-5.10.0-28-powerpc-di xfs-modules-5.10.0-28-powerpc-di fat-modules-5.10.0-28-powerpc-di hfs-modules-5.10.0-28-powerpc-di affs-modules-5.10.0-28-powerpc-di squashfs-modules-5.10.0-28-powerpc-di udf-modules-5.10.0-28-powerpc-di fuse-modules-5.10.0-28-powerpc-di f2fs-modules-5.10.0-28-powerpc-di md-modules-5.10.0-28-powerpc-di multipath-modules-5.10.0-28-powerpc-di usb-modules-5.10.0-28-powerpc-di usb-storage-modules-5.10.0-28-powerpc-di pcmcia-storage-modules-5.10.0-28-powerpc-di fb-modules-5.10.0-28-powerpc-di input-modules-5.10.0-28-powerpc-di event-modules-5.10.0-28-powerpc-di mouse-modules-5.10.0-28-powerpc-di nic-pcmcia-modules-5.10.0-28-powerpc-di pcmcia-modules-5.10.0-28-powerpc-di nic-usb-modules-5.10.0-28-powerpc-di sata-modules-5.10.0-28-powerpc-di crc-modules-5.10.0-28-powerpc-di crypto-modules-5.10.0-28-powerpc-di crypto-dm-modules-5.10.0-28-powerpc-di ata-modules-5.10.0-28-powerpc-di mmc-core-modules-5.10.0-28-powerpc-di nbd-modules-5.10.0-28-powerpc-di uinput-modules-5.10.0-28-powerpc-di kernel-image-5.10.0-28-powerpc64-di nic-modules-5.10.0-28-powerpc64-di nic-wireless-modules-5.10.0-28-powerpc64-di nic-shared-modules-5.10.0-28-powerpc64-di serial-modules-5.10.0-28-powerpc64-di usb-serial-modules-5.10.0-28-powerpc64-di ppp-modules-5.10.0-28-powerpc64-di pata-modules-5.10.0-28-powerpc64-di cdrom-core-modules-5.10.0-28-powerpc64-di firewire-core-modules-5.10.0-28-powerpc64-di scsi-core-modules-5.10.0-28-powerpc64-di scsi-modules-5.10.0-28-powerpc64-di scsi-nic-modules-5.10.0-28-powerpc64-di loop-modules-5.10.0-28-powerpc64-di btrfs-modules-5.10.0-28-powerpc64-di ext4-modules-5.10.0-28-powerpc64-di isofs-modules-5.10.0-28-powerpc64-di jfs-modules-5.10.0-28-powerpc64-di xfs-modules-5.10.0-28-powerpc64-di fat-modules-5.10.0-28-powerpc64-di hfs-modules-5.10.0-28-powerpc64-di affs-modules-5.10.0-28-powerpc64-di squashfs-modules-5.10.0-28-powerpc64-di udf-modules-5.10.0-28-powerpc64-di fuse-modules-5.10.0-28-powerpc64-di f2fs-modules-5.10.0-28-powerpc64-di md-modules-5.10.0-28-powerpc64-di multipath-modules-5.10.0-28-powerpc64-di usb-modules-5.10.0-28-powerpc64-di usb-storage-modules-5.10.0-28-powerpc64-di pcmcia-storage-modules-5.10.0-28-powerpc64-di fb-modules-5.10.0-28-powerpc64-di input-modules-5.10.0-28-powerpc64-di event-modules-5.10.0-28-powerpc64-di mouse-modules-5.10.0-28-powerpc64-di nic-pcmcia-modules-5.10.0-28-powerpc64-di pcmcia-modules-5.10.0-28-powerpc64-di nic-usb-modules-5.10.0-28-powerpc64-di sata-modules-5.10.0-28-powerpc64-di i2c-modules-5.10.0-28-powerpc64-di crc-modules-5.10.0-28-powerpc64-di crypto-modules-5.10.0-28-powerpc64-di crypto-dm-modules-5.10.0-28-powerpc64-di ata-modules-5.10.0-28-powerpc64-di mmc-core-modules-5.10.0-28-powerpc64-di nbd-modules-5.10.0-28-powerpc64-di uinput-modules-5.10.0-28-powerpc64-di mtd-core-modules-5.10.0-28-powerpc64-di hypervisor-modules-5.10.0-28-powerpc64-di fancontrol-modules-5.10.0-28-powerpc64-di' UDEB_UNSIGNED_TEST_BUILD=False +binary-arch_powerpc_none: binary-arch_powerpc_none_powerpc binary-arch_powerpc_none_powerpc-smp binary-arch_powerpc_none_powerpc64 binary-arch_powerpc_none_real +binary-arch_powerpc_none_powerpc: binary-arch_powerpc_none_powerpc_real +binary-arch_powerpc_none_powerpc-smp: binary-arch_powerpc_none_powerpc-smp_real +binary-arch_powerpc_none_powerpc-smp_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='powerpc' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +binary-arch_powerpc_none_powerpc64: binary-arch_powerpc_none_powerpc64_real +binary-arch_powerpc_none_powerpc64_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='powerpc' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +binary-arch_powerpc_none_powerpc_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='powerpc' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-powerpc' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +binary-arch_powerpc_none_real: +binary-arch_powerpc_real:: setup_powerpc +binary-arch_powerpc_real:: + $(MAKE) -f debian/rules.real binary-arch-arch ABINAME='5.10.0-28' ARCH='powerpc' KERNEL_ARCH='powerpc' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_ppc64:: binary-arch_ppc64_none binary-arch_ppc64_real +binary-arch_ppc64:: + $(MAKE) -f debian/rules.real install-udeb_ppc64 ABINAME='5.10.0-28' ARCH='ppc64' KERNEL_ARCH='powerpc' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' PACKAGE_NAMES='kernel-image-5.10.0-28-powerpc64-di nic-modules-5.10.0-28-powerpc64-di nic-wireless-modules-5.10.0-28-powerpc64-di nic-shared-modules-5.10.0-28-powerpc64-di serial-modules-5.10.0-28-powerpc64-di usb-serial-modules-5.10.0-28-powerpc64-di ppp-modules-5.10.0-28-powerpc64-di pata-modules-5.10.0-28-powerpc64-di cdrom-core-modules-5.10.0-28-powerpc64-di firewire-core-modules-5.10.0-28-powerpc64-di scsi-core-modules-5.10.0-28-powerpc64-di scsi-modules-5.10.0-28-powerpc64-di scsi-nic-modules-5.10.0-28-powerpc64-di loop-modules-5.10.0-28-powerpc64-di btrfs-modules-5.10.0-28-powerpc64-di ext4-modules-5.10.0-28-powerpc64-di isofs-modules-5.10.0-28-powerpc64-di jfs-modules-5.10.0-28-powerpc64-di xfs-modules-5.10.0-28-powerpc64-di fat-modules-5.10.0-28-powerpc64-di hfs-modules-5.10.0-28-powerpc64-di affs-modules-5.10.0-28-powerpc64-di squashfs-modules-5.10.0-28-powerpc64-di udf-modules-5.10.0-28-powerpc64-di fuse-modules-5.10.0-28-powerpc64-di f2fs-modules-5.10.0-28-powerpc64-di md-modules-5.10.0-28-powerpc64-di multipath-modules-5.10.0-28-powerpc64-di usb-modules-5.10.0-28-powerpc64-di usb-storage-modules-5.10.0-28-powerpc64-di pcmcia-storage-modules-5.10.0-28-powerpc64-di fb-modules-5.10.0-28-powerpc64-di input-modules-5.10.0-28-powerpc64-di event-modules-5.10.0-28-powerpc64-di mouse-modules-5.10.0-28-powerpc64-di nic-pcmcia-modules-5.10.0-28-powerpc64-di pcmcia-modules-5.10.0-28-powerpc64-di nic-usb-modules-5.10.0-28-powerpc64-di sata-modules-5.10.0-28-powerpc64-di i2c-modules-5.10.0-28-powerpc64-di crc-modules-5.10.0-28-powerpc64-di crypto-modules-5.10.0-28-powerpc64-di crypto-dm-modules-5.10.0-28-powerpc64-di ata-modules-5.10.0-28-powerpc64-di mmc-core-modules-5.10.0-28-powerpc64-di nbd-modules-5.10.0-28-powerpc64-di uinput-modules-5.10.0-28-powerpc64-di mtd-core-modules-5.10.0-28-powerpc64-di hypervisor-modules-5.10.0-28-powerpc64-di fancontrol-modules-5.10.0-28-powerpc64-di' UDEB_UNSIGNED_TEST_BUILD=False +binary-arch_ppc64_none: binary-arch_ppc64_none_powerpc64 binary-arch_ppc64_none_real +binary-arch_ppc64_none_powerpc64: binary-arch_ppc64_none_powerpc64_real +binary-arch_ppc64_none_powerpc64_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='ppc64' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +binary-arch_ppc64_none_real: +binary-arch_ppc64_real:: setup_ppc64 +binary-arch_ppc64_real:: + $(MAKE) -f debian/rules.real binary-arch-arch ABINAME='5.10.0-28' ARCH='ppc64' KERNEL_ARCH='powerpc' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_ppc64el:: binary-arch_ppc64el_none binary-arch_ppc64el_real +binary-arch_ppc64el:: + $(MAKE) -f debian/rules.real install-udeb_ppc64el ABINAME='5.10.0-28' ARCH='ppc64el' KERNEL_ARCH='powerpc' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' PACKAGE_NAMES='kernel-image-5.10.0-28-powerpc64le-di nic-modules-5.10.0-28-powerpc64le-di nic-wireless-modules-5.10.0-28-powerpc64le-di nic-shared-modules-5.10.0-28-powerpc64le-di serial-modules-5.10.0-28-powerpc64le-di usb-serial-modules-5.10.0-28-powerpc64le-di ppp-modules-5.10.0-28-powerpc64le-di cdrom-core-modules-5.10.0-28-powerpc64le-di firewire-core-modules-5.10.0-28-powerpc64le-di scsi-core-modules-5.10.0-28-powerpc64le-di scsi-modules-5.10.0-28-powerpc64le-di scsi-nic-modules-5.10.0-28-powerpc64le-di loop-modules-5.10.0-28-powerpc64le-di btrfs-modules-5.10.0-28-powerpc64le-di ext4-modules-5.10.0-28-powerpc64le-di isofs-modules-5.10.0-28-powerpc64le-di jfs-modules-5.10.0-28-powerpc64le-di xfs-modules-5.10.0-28-powerpc64le-di fat-modules-5.10.0-28-powerpc64le-di squashfs-modules-5.10.0-28-powerpc64le-di udf-modules-5.10.0-28-powerpc64le-di fuse-modules-5.10.0-28-powerpc64le-di f2fs-modules-5.10.0-28-powerpc64le-di md-modules-5.10.0-28-powerpc64le-di multipath-modules-5.10.0-28-powerpc64le-di usb-modules-5.10.0-28-powerpc64le-di usb-storage-modules-5.10.0-28-powerpc64le-di fb-modules-5.10.0-28-powerpc64le-di input-modules-5.10.0-28-powerpc64le-di event-modules-5.10.0-28-powerpc64le-di mouse-modules-5.10.0-28-powerpc64le-di nic-usb-modules-5.10.0-28-powerpc64le-di sata-modules-5.10.0-28-powerpc64le-di i2c-modules-5.10.0-28-powerpc64le-di crc-modules-5.10.0-28-powerpc64le-di crypto-modules-5.10.0-28-powerpc64le-di crypto-dm-modules-5.10.0-28-powerpc64le-di ata-modules-5.10.0-28-powerpc64le-di nbd-modules-5.10.0-28-powerpc64le-di uinput-modules-5.10.0-28-powerpc64le-di mtd-core-modules-5.10.0-28-powerpc64le-di hypervisor-modules-5.10.0-28-powerpc64le-di fancontrol-modules-5.10.0-28-powerpc64le-di' UDEB_UNSIGNED_TEST_BUILD=False +binary-arch_ppc64el_none: binary-arch_ppc64el_none_powerpc64le binary-arch_ppc64el_none_real +binary-arch_ppc64el_none_powerpc64le: binary-arch_ppc64el_none_powerpc64le_real +binary-arch_ppc64el_none_powerpc64le_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='ppc64el' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +binary-arch_ppc64el_none_real: +binary-arch_ppc64el_real:: setup_ppc64el +binary-arch_ppc64el_real:: + $(MAKE) -f debian/rules.real binary-arch-arch ABINAME='5.10.0-28' ARCH='ppc64el' KERNEL_ARCH='powerpc' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_riscv64:: binary-arch_riscv64_none binary-arch_riscv64_real +binary-arch_riscv64:: + $(MAKE) -f debian/rules.real install-udeb_riscv64 ABINAME='5.10.0-28' ARCH='riscv64' KERNEL_ARCH='riscv' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' PACKAGE_NAMES='kernel-image-5.10.0-28-riscv64-di nic-modules-5.10.0-28-riscv64-di nic-wireless-modules-5.10.0-28-riscv64-di nic-shared-modules-5.10.0-28-riscv64-di usb-serial-modules-5.10.0-28-riscv64-di ppp-modules-5.10.0-28-riscv64-di pata-modules-5.10.0-28-riscv64-di cdrom-core-modules-5.10.0-28-riscv64-di scsi-core-modules-5.10.0-28-riscv64-di scsi-modules-5.10.0-28-riscv64-di scsi-nic-modules-5.10.0-28-riscv64-di loop-modules-5.10.0-28-riscv64-di btrfs-modules-5.10.0-28-riscv64-di ext4-modules-5.10.0-28-riscv64-di isofs-modules-5.10.0-28-riscv64-di jfs-modules-5.10.0-28-riscv64-di fat-modules-5.10.0-28-riscv64-di squashfs-modules-5.10.0-28-riscv64-di udf-modules-5.10.0-28-riscv64-di fuse-modules-5.10.0-28-riscv64-di f2fs-modules-5.10.0-28-riscv64-di md-modules-5.10.0-28-riscv64-di multipath-modules-5.10.0-28-riscv64-di usb-modules-5.10.0-28-riscv64-di usb-storage-modules-5.10.0-28-riscv64-di fb-modules-5.10.0-28-riscv64-di input-modules-5.10.0-28-riscv64-di event-modules-5.10.0-28-riscv64-di nic-usb-modules-5.10.0-28-riscv64-di sata-modules-5.10.0-28-riscv64-di i2c-modules-5.10.0-28-riscv64-di crc-modules-5.10.0-28-riscv64-di crypto-modules-5.10.0-28-riscv64-di crypto-dm-modules-5.10.0-28-riscv64-di ata-modules-5.10.0-28-riscv64-di mmc-core-modules-5.10.0-28-riscv64-di mmc-modules-5.10.0-28-riscv64-di nbd-modules-5.10.0-28-riscv64-di mtd-modules-5.10.0-28-riscv64-di mtd-core-modules-5.10.0-28-riscv64-di' UDEB_UNSIGNED_TEST_BUILD=False +binary-arch_riscv64_none: binary-arch_riscv64_none_real binary-arch_riscv64_none_riscv64 +binary-arch_riscv64_none_real: +binary-arch_riscv64_none_riscv64: binary-arch_riscv64_none_riscv64_real +binary-arch_riscv64_none_riscv64_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='riscv64' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-riscv64' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +binary-arch_riscv64_real:: setup_riscv64 +binary-arch_riscv64_real:: + $(MAKE) -f debian/rules.real binary-arch-arch ABINAME='5.10.0-28' ARCH='riscv64' KERNEL_ARCH='riscv' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_s390: binary-arch_s390_extra binary-arch_s390_real +binary-arch_s390_extra:: + $(MAKE) -f debian/rules.real install-dummy ARCH='s390' DH_OPTIONS='-plinux-compiler-gcc-10-s390' +binary-arch_s390_real:: setup_s390 +binary-arch_s390_real:: + $(MAKE) -f debian/rules.real binary-arch-arch ABINAME='5.10.0-28' ARCH='s390' KERNEL_ARCH='s390' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_s390x:: binary-arch_s390x_extra binary-arch_s390x_none binary-arch_s390x_real +binary-arch_s390x:: + $(MAKE) -f debian/rules.real install-udeb_s390x ABINAME='5.10.0-28' ARCH='s390x' KERNEL_ARCH='s390' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' PACKAGE_NAMES='kernel-image-5.10.0-28-s390x-di nic-modules-5.10.0-28-s390x-di cdrom-core-modules-5.10.0-28-s390x-di scsi-core-modules-5.10.0-28-s390x-di scsi-modules-5.10.0-28-s390x-di loop-modules-5.10.0-28-s390x-di btrfs-modules-5.10.0-28-s390x-di ext4-modules-5.10.0-28-s390x-di isofs-modules-5.10.0-28-s390x-di xfs-modules-5.10.0-28-s390x-di fat-modules-5.10.0-28-s390x-di udf-modules-5.10.0-28-s390x-di fuse-modules-5.10.0-28-s390x-di f2fs-modules-5.10.0-28-s390x-di md-modules-5.10.0-28-s390x-di multipath-modules-5.10.0-28-s390x-di crc-modules-5.10.0-28-s390x-di crypto-modules-5.10.0-28-s390x-di crypto-dm-modules-5.10.0-28-s390x-di nbd-modules-5.10.0-28-s390x-di mtd-core-modules-5.10.0-28-s390x-di dasd-modules-5.10.0-28-s390x-di dasd-extra-modules-5.10.0-28-s390x-di' UDEB_UNSIGNED_TEST_BUILD=False +binary-arch_s390x_extra:: + $(MAKE) -f debian/rules.real install-dummy ARCH='s390x' DH_OPTIONS='-plinux-compiler-gcc-10-s390' +binary-arch_s390x_none: binary-arch_s390x_none_real binary-arch_s390x_none_s390x +binary-arch_s390x_none_real: +binary-arch_s390x_none_s390x: binary-arch_s390x_none_s390x_real +binary-arch_s390x_none_s390x_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='s390x' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-s390x' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +binary-arch_s390x_real:: setup_s390x +binary-arch_s390x_real:: + $(MAKE) -f debian/rules.real binary-arch-arch ABINAME='5.10.0-28' ARCH='s390x' KERNEL_ARCH='s390' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_sh3: binary-arch_sh3_real +binary-arch_sh3_real:: setup_sh3 +binary-arch_sh3_real:: + $(MAKE) -f debian/rules.real binary-arch-arch ABINAME='5.10.0-28' ARCH='sh3' KERNEL_ARCH='sh' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_sh4:: binary-arch_sh4_none binary-arch_sh4_real +binary-arch_sh4:: + $(MAKE) -f debian/rules.real install-udeb_sh4 ABINAME='5.10.0-28' ARCH='sh4' KERNEL_ARCH='sh' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' PACKAGE_NAMES='kernel-image-5.10.0-28-sh7751r-di nic-modules-5.10.0-28-sh7751r-di nic-shared-modules-5.10.0-28-sh7751r-di usb-serial-modules-5.10.0-28-sh7751r-di ppp-modules-5.10.0-28-sh7751r-di pata-modules-5.10.0-28-sh7751r-di cdrom-core-modules-5.10.0-28-sh7751r-di firewire-core-modules-5.10.0-28-sh7751r-di loop-modules-5.10.0-28-sh7751r-di btrfs-modules-5.10.0-28-sh7751r-di ext4-modules-5.10.0-28-sh7751r-di isofs-modules-5.10.0-28-sh7751r-di jfs-modules-5.10.0-28-sh7751r-di xfs-modules-5.10.0-28-sh7751r-di fat-modules-5.10.0-28-sh7751r-di minix-modules-5.10.0-28-sh7751r-di squashfs-modules-5.10.0-28-sh7751r-di udf-modules-5.10.0-28-sh7751r-di fuse-modules-5.10.0-28-sh7751r-di f2fs-modules-5.10.0-28-sh7751r-di md-modules-5.10.0-28-sh7751r-di multipath-modules-5.10.0-28-sh7751r-di usb-storage-modules-5.10.0-28-sh7751r-di nic-usb-modules-5.10.0-28-sh7751r-di sata-modules-5.10.0-28-sh7751r-di i2c-modules-5.10.0-28-sh7751r-di crc-modules-5.10.0-28-sh7751r-di crypto-modules-5.10.0-28-sh7751r-di crypto-dm-modules-5.10.0-28-sh7751r-di nbd-modules-5.10.0-28-sh7751r-di speakup-modules-5.10.0-28-sh7751r-di sound-modules-5.10.0-28-sh7751r-di kernel-image-5.10.0-28-sh7785lcr-di nic-modules-5.10.0-28-sh7785lcr-di nic-shared-modules-5.10.0-28-sh7785lcr-di usb-serial-modules-5.10.0-28-sh7785lcr-di ppp-modules-5.10.0-28-sh7785lcr-di pata-modules-5.10.0-28-sh7785lcr-di cdrom-core-modules-5.10.0-28-sh7785lcr-di firewire-core-modules-5.10.0-28-sh7785lcr-di loop-modules-5.10.0-28-sh7785lcr-di btrfs-modules-5.10.0-28-sh7785lcr-di ext4-modules-5.10.0-28-sh7785lcr-di isofs-modules-5.10.0-28-sh7785lcr-di jfs-modules-5.10.0-28-sh7785lcr-di xfs-modules-5.10.0-28-sh7785lcr-di fat-modules-5.10.0-28-sh7785lcr-di minix-modules-5.10.0-28-sh7785lcr-di squashfs-modules-5.10.0-28-sh7785lcr-di udf-modules-5.10.0-28-sh7785lcr-di fuse-modules-5.10.0-28-sh7785lcr-di f2fs-modules-5.10.0-28-sh7785lcr-di md-modules-5.10.0-28-sh7785lcr-di multipath-modules-5.10.0-28-sh7785lcr-di nic-usb-modules-5.10.0-28-sh7785lcr-di sata-modules-5.10.0-28-sh7785lcr-di crc-modules-5.10.0-28-sh7785lcr-di crypto-modules-5.10.0-28-sh7785lcr-di crypto-dm-modules-5.10.0-28-sh7785lcr-di nbd-modules-5.10.0-28-sh7785lcr-di speakup-modules-5.10.0-28-sh7785lcr-di sound-modules-5.10.0-28-sh7785lcr-di' UDEB_UNSIGNED_TEST_BUILD=False +binary-arch_sh4_none: binary-arch_sh4_none_real binary-arch_sh4_none_sh7751r binary-arch_sh4_none_sh7785lcr +binary-arch_sh4_none_real: +binary-arch_sh4_none_sh7751r: binary-arch_sh4_none_sh7751r_real +binary-arch_sh4_none_sh7751r_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='sh4' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-sh7751r' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_sh4_none_sh7785lcr: binary-arch_sh4_none_sh7785lcr_real +binary-arch_sh4_none_sh7785lcr_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='sh4' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-sh7785lcr' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_sh4_real:: setup_sh4 +binary-arch_sh4_real:: + $(MAKE) -f debian/rules.real binary-arch-arch ABINAME='5.10.0-28' ARCH='sh4' KERNEL_ARCH='sh' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_sparc: binary-arch_sparc_real +binary-arch_sparc64:: binary-arch_sparc64_none binary-arch_sparc64_real +binary-arch_sparc64:: + $(MAKE) -f debian/rules.real install-udeb_sparc64 ABINAME='5.10.0-28' ARCH='sparc64' KERNEL_ARCH='sparc' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' PACKAGE_NAMES='kernel-image-5.10.0-28-sparc64-di nic-modules-5.10.0-28-sparc64-di nic-shared-modules-5.10.0-28-sparc64-di usb-serial-modules-5.10.0-28-sparc64-di ppp-modules-5.10.0-28-sparc64-di pata-modules-5.10.0-28-sparc64-di cdrom-core-modules-5.10.0-28-sparc64-di scsi-core-modules-5.10.0-28-sparc64-di scsi-modules-5.10.0-28-sparc64-di btrfs-modules-5.10.0-28-sparc64-di ext4-modules-5.10.0-28-sparc64-di isofs-modules-5.10.0-28-sparc64-di jfs-modules-5.10.0-28-sparc64-di ufs-modules-5.10.0-28-sparc64-di xfs-modules-5.10.0-28-sparc64-di fat-modules-5.10.0-28-sparc64-di squashfs-modules-5.10.0-28-sparc64-di udf-modules-5.10.0-28-sparc64-di fuse-modules-5.10.0-28-sparc64-di f2fs-modules-5.10.0-28-sparc64-di md-modules-5.10.0-28-sparc64-di multipath-modules-5.10.0-28-sparc64-di usb-modules-5.10.0-28-sparc64-di usb-storage-modules-5.10.0-28-sparc64-di fb-modules-5.10.0-28-sparc64-di input-modules-5.10.0-28-sparc64-di nic-usb-modules-5.10.0-28-sparc64-di sata-modules-5.10.0-28-sparc64-di i2c-modules-5.10.0-28-sparc64-di crc-modules-5.10.0-28-sparc64-di crypto-modules-5.10.0-28-sparc64-di crypto-dm-modules-5.10.0-28-sparc64-di ata-modules-5.10.0-28-sparc64-di nbd-modules-5.10.0-28-sparc64-di' UDEB_UNSIGNED_TEST_BUILD=False +binary-arch_sparc64_none: binary-arch_sparc64_none_real binary-arch_sparc64_none_sparc64 binary-arch_sparc64_none_sparc64-smp +binary-arch_sparc64_none_real: +binary-arch_sparc64_none_sparc64: binary-arch_sparc64_none_sparc64_real +binary-arch_sparc64_none_sparc64-smp: binary-arch_sparc64_none_sparc64-smp_real +binary-arch_sparc64_none_sparc64-smp_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='sparc64' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-sparc64-smp' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_sparc64_none_sparc64_real:: + $(MAKE) -f debian/rules.real binary-arch-flavour ABINAME='5.10.0-28' ARCH='sparc64' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-sparc64' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_sparc64_real:: setup_sparc64 +binary-arch_sparc64_real:: + $(MAKE) -f debian/rules.real binary-arch-arch ABINAME='5.10.0-28' ARCH='sparc64' KERNEL_ARCH='sparc' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_sparc_real:: setup_sparc +binary-arch_sparc_real:: + $(MAKE) -f debian/rules.real binary-arch-arch ABINAME='5.10.0-28' ARCH='sparc' KERNEL_ARCH='sparc' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-arch_x32: binary-arch_x32_extra binary-arch_x32_real +binary-arch_x32_extra:: + $(MAKE) -f debian/rules.real install-dummy ARCH='x32' DH_OPTIONS='-plinux-compiler-gcc-10-x86' +binary-arch_x32_real:: setup_x32 +binary-arch_x32_real:: + $(MAKE) -f debian/rules.real binary-arch-arch ABINAME='5.10.0-28' ARCH='x32' KERNEL_ARCH='x86' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-indep:: binary-indep_none binary-indep_rt +binary-indep:: + $(MAKE) -f debian/rules.real binary-indep ABINAME='5.10.0-28' ALL_FEATURESETS='none rt' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-indep_none: binary-indep_none_real +binary-indep_none_real:: + $(MAKE) -f debian/rules.real binary-indep-featureset ABINAME='5.10.0-28' ALL_KERNEL_ARCHES='alpha arm arm64 ia64 m68k mips parisc powerpc riscv s390 sh sparc x86' FEATURESET='none' LOCALVERSION='' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +binary-indep_rt: binary-indep_rt_real +binary-indep_rt_real:: + $(MAKE) -f debian/rules.real binary-indep-featureset ABINAME='5.10.0-28' ALL_KERNEL_ARCHES='arm arm64 x86' FEATURESET='rt' LOCALVERSION='-rt' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch: build-arch_alpha build-arch_amd64 build-arch_arm64 build-arch_arm64ilp32 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_mips64r6 build-arch_mips64r6el build-arch_mipsel build-arch_mipsn32 build-arch_mipsn32el build-arch_mipsn32r6 build-arch_mipsn32r6el build-arch_mipsr6 build-arch_mipsr6el build-arch_powerpc build-arch_ppc64 build-arch_ppc64el build-arch_riscv64 build-arch_s390 build-arch_s390x build-arch_sh3 build-arch_sh4 build-arch_sparc build-arch_sparc64 build-arch_x32 +build-arch_alpha: build-arch_alpha_none build-arch_alpha_real +build-arch_alpha_none: build-arch_alpha_none_alpha-generic build-arch_alpha_none_alpha-smp build-arch_alpha_none_real +build-arch_alpha_none_alpha-generic: build-arch_alpha_none_alpha-generic_real +build-arch_alpha_none_alpha-generic_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='alpha' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-alpha-generic' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_alpha_none_alpha-smp: build-arch_alpha_none_alpha-smp_real +build-arch_alpha_none_alpha-smp_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='alpha' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-alpha-smp' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_alpha_none_real: +build-arch_alpha_real:: + $(MAKE) -f debian/rules.real build-arch-arch ABINAME='5.10.0-28' ARCH='alpha' KERNEL_ARCH='alpha' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_amd64: build-arch_amd64_none build-arch_amd64_real build-arch_amd64_rt +build-arch_amd64_none: build-arch_amd64_none_amd64 build-arch_amd64_none_cloud-amd64 build-arch_amd64_none_real +build-arch_amd64_none_amd64: build-arch_amd64_none_amd64_real +build-arch_amd64_none_amd64_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='amd64' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-amd64-unsigned' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o SECURITY_LOCKDOWN_LSM=y -o MODULE_SIG=y -o "BUILD_SALT=\"5.10.0-28-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +build-arch_amd64_none_cloud-amd64: build-arch_amd64_none_cloud-amd64_real +build-arch_amd64_none_cloud-amd64_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='amd64' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-cloud-amd64-unsigned' 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 DEBUG_INFO=y -o SECURITY_LOCKDOWN_LSM=y -o MODULE_SIG=y -o "BUILD_SALT=\"5.10.0-28-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +build-arch_amd64_none_real: +build-arch_amd64_real:: + $(MAKE) -f debian/rules.real build-arch-arch ABINAME='5.10.0-28' ARCH='amd64' KERNEL_ARCH='x86' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_amd64_rt: build-arch_amd64_rt_amd64 build-arch_amd64_rt_real +build-arch_amd64_rt_amd64: build-arch_amd64_rt_amd64_real +build-arch_amd64_rt_amd64_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='amd64' COMPILER='gcc-10' DEBUG='True' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-rt-amd64-unsigned' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o SECURITY_LOCKDOWN_LSM=y -o MODULE_SIG=y -o "BUILD_SALT=\"5.10.0-28-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +build-arch_amd64_rt_real: +build-arch_arm64: build-arch_arm64_none build-arch_arm64_real build-arch_arm64_rt +build-arch_arm64_none: build-arch_arm64_none_arm64 build-arch_arm64_none_cloud-arm64 build-arch_arm64_none_real +build-arch_arm64_none_arm64: build-arch_arm64_none_arm64_real +build-arch_arm64_none_arm64_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='arm64' COMPILER='gcc-10' CROSS_COMPILE_COMPAT='arm-linux-gnueabihf-' DEBUG='True' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-arm64-unsigned' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o SECURITY_LOCKDOWN_LSM=y -o MODULE_SIG=y -o "BUILD_SALT=\"5.10.0-28-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +build-arch_arm64_none_cloud-arm64: build-arch_arm64_none_cloud-arm64_real +build-arch_arm64_none_cloud-arm64_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='arm64' COMPILER='gcc-10' CROSS_COMPILE_COMPAT='arm-linux-gnueabihf-' DEBUG='True' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-cloud-arm64-unsigned' 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 DEBUG_INFO=y -o SECURITY_LOCKDOWN_LSM=y -o MODULE_SIG=y -o "BUILD_SALT=\"5.10.0-28-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +build-arch_arm64_none_real: +build-arch_arm64_real:: + $(MAKE) -f debian/rules.real build-arch-arch ABINAME='5.10.0-28' ARCH='arm64' KERNEL_ARCH='arm64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_arm64_rt: build-arch_arm64_rt_arm64 build-arch_arm64_rt_real +build-arch_arm64_rt_arm64: build-arch_arm64_rt_arm64_real +build-arch_arm64_rt_arm64_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='arm64' COMPILER='gcc-10' CROSS_COMPILE_COMPAT='arm-linux-gnueabihf-' DEBUG='True' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-rt-arm64-unsigned' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o SECURITY_LOCKDOWN_LSM=y -o MODULE_SIG=y -o "BUILD_SALT=\"5.10.0-28-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +build-arch_arm64_rt_real: +build-arch_arm64ilp32: build-arch_arm64ilp32_real +build-arch_arm64ilp32_real:: + $(MAKE) -f debian/rules.real build-arch-arch ABINAME='5.10.0-28' ARCH='arm64ilp32' KERNEL_ARCH='arm64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_armel: build-arch_armel_none build-arch_armel_real +build-arch_armel_none: build-arch_armel_none_marvell build-arch_armel_none_real build-arch_armel_none_rpi +build-arch_armel_none_marvell: build-arch_armel_none_marvell_real +build-arch_armel_none_marvell_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='armel' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='marvell' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-marvell' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.marvell' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-marvell\""' KERNEL_ARCH='arm' LOCALVERSION='-marvell' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-marvell' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_armel_none_real: +build-arch_armel_none_rpi: build-arch_armel_none_rpi_real +build-arch_armel_none_rpi_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='armel' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-rpi' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_armel_real:: + $(MAKE) -f debian/rules.real build-arch-arch ABINAME='5.10.0-28' ARCH='armel' KERNEL_ARCH='arm' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_armhf: build-arch_armhf_none build-arch_armhf_real build-arch_armhf_rt +build-arch_armhf_none: build-arch_armhf_none_armmp build-arch_armhf_none_armmp-lpae build-arch_armhf_none_real +build-arch_armhf_none_armmp: build-arch_armhf_none_armmp_real +build-arch_armhf_none_armmp-lpae: build-arch_armhf_none_armmp-lpae_real +build-arch_armhf_none_armmp-lpae_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='armhf' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-armmp-lpae' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +build-arch_armhf_none_armmp_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='armhf' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-armmp' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +build-arch_armhf_none_real: +build-arch_armhf_real:: + $(MAKE) -f debian/rules.real build-arch-arch ABINAME='5.10.0-28' ARCH='armhf' KERNEL_ARCH='arm' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_armhf_rt: build-arch_armhf_rt_armmp build-arch_armhf_rt_real +build-arch_armhf_rt_armmp: build-arch_armhf_rt_armmp_real +build-arch_armhf_rt_armmp_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='armhf' COMPILER='gcc-10' DEBUG='True' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-rt-armmp' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +build-arch_armhf_rt_real: +build-arch_hppa: build-arch_hppa_none build-arch_hppa_real +build-arch_hppa_none: build-arch_hppa_none_parisc build-arch_hppa_none_parisc64 build-arch_hppa_none_real +build-arch_hppa_none_parisc: build-arch_hppa_none_parisc_real +build-arch_hppa_none_parisc64: build-arch_hppa_none_parisc64_real +build-arch_hppa_none_parisc64_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='hppa' COMPILER='gcc-10' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-parisc64' KCFLAGS='-fno-cse-follow-jumps' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"5.10.0-28-parisc64\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' OVERRIDE_HOST_TYPE='hppa64-linux-gnu' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_hppa_none_parisc_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='hppa' COMPILER='gcc-10' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-parisc' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"5.10.0-28-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_hppa_none_real: +build-arch_hppa_real:: + $(MAKE) -f debian/rules.real build-arch-arch ABINAME='5.10.0-28' ARCH='hppa' KERNEL_ARCH='parisc' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_i386: build-arch_i386_none build-arch_i386_real build-arch_i386_rt +build-arch_i386_none: build-arch_i386_none_686 build-arch_i386_none_686-pae build-arch_i386_none_real +build-arch_i386_none_686: build-arch_i386_none_686_real +build-arch_i386_none_686-pae: build-arch_i386_none_686-pae_real +build-arch_i386_none_686-pae_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='i386' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-686-pae-unsigned' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o SECURITY_LOCKDOWN_LSM=y -o MODULE_SIG=y -o "BUILD_SALT=\"5.10.0-28-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +build-arch_i386_none_686_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='i386' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-686-unsigned' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o SECURITY_LOCKDOWN_LSM=y -o MODULE_SIG=y -o "BUILD_SALT=\"5.10.0-28-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +build-arch_i386_none_real: +build-arch_i386_real:: + $(MAKE) -f debian/rules.real build-arch-arch ABINAME='5.10.0-28' ARCH='i386' KERNEL_ARCH='x86' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_i386_rt: build-arch_i386_rt_686-pae build-arch_i386_rt_real +build-arch_i386_rt_686-pae: build-arch_i386_rt_686-pae_real +build-arch_i386_rt_686-pae_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='i386' COMPILER='gcc-10' DEBUG='True' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-rt-686-pae-unsigned' 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 DEBUG_INFO=y -o SECURITY_LOCKDOWN_LSM=y -o MODULE_SIG=y -o "BUILD_SALT=\"5.10.0-28-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +build-arch_i386_rt_real: +build-arch_ia64: build-arch_ia64_none build-arch_ia64_real +build-arch_ia64_none: build-arch_ia64_none_itanium build-arch_ia64_none_mckinley build-arch_ia64_none_real +build-arch_ia64_none_itanium: build-arch_ia64_none_itanium_real +build-arch_ia64_none_itanium_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='ia64' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='itanium' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-itanium' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.itanium' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-itanium\""' KERNEL_ARCH='ia64' LOCALVERSION='-itanium' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-itanium' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_ia64_none_mckinley: build-arch_ia64_none_mckinley_real +build-arch_ia64_none_mckinley_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='ia64' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='mckinley' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-mckinley' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.mckinley' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-mckinley\""' KERNEL_ARCH='ia64' LOCALVERSION='-mckinley' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mckinley' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_ia64_none_real: +build-arch_ia64_real:: + $(MAKE) -f debian/rules.real build-arch-arch ABINAME='5.10.0-28' ARCH='ia64' KERNEL_ARCH='ia64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_m68k: build-arch_m68k_none build-arch_m68k_real +build-arch_m68k_none: build-arch_m68k_none_m68k build-arch_m68k_none_real +build-arch_m68k_none_m68k: build-arch_m68k_none_m68k_real +build-arch_m68k_none_m68k_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='m68k' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-m68k' KCFLAGS='-ffreestanding' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_m68k_none_real: +build-arch_m68k_real:: + $(MAKE) -f debian/rules.real build-arch-arch ABINAME='5.10.0-28' ARCH='m68k' KERNEL_ARCH='m68k' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_mips: build-arch_mips_none build-arch_mips_real +build-arch_mips64: build-arch_mips64_none build-arch_mips64_real +build-arch_mips64_none: build-arch_mips64_none_5kc-malta build-arch_mips64_none_octeon build-arch_mips64_none_real +build-arch_mips64_none_5kc-malta: build-arch_mips64_none_5kc-malta_real +build-arch_mips64_none_5kc-malta_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='mips64' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_mips64_none_octeon: build-arch_mips64_none_octeon_real +build-arch_mips64_none_octeon_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='mips64' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_mips64_none_real: +build-arch_mips64_real:: + $(MAKE) -f debian/rules.real build-arch-arch ABINAME='5.10.0-28' ARCH='mips64' KERNEL_ARCH='mips' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_mips64el: build-arch_mips64el_none build-arch_mips64el_real +build-arch_mips64el_none: build-arch_mips64el_none_5kc-malta build-arch_mips64el_none_loongson-3 build-arch_mips64el_none_octeon build-arch_mips64el_none_real +build-arch_mips64el_none_5kc-malta: build-arch_mips64el_none_5kc-malta_real +build-arch_mips64el_none_5kc-malta_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='mips64el' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_mips64el_none_loongson-3: build-arch_mips64el_none_loongson-3_real +build-arch_mips64el_none_loongson-3_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='mips64el' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_mips64el_none_octeon: build-arch_mips64el_none_octeon_real +build-arch_mips64el_none_octeon_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='mips64el' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_mips64el_none_real: +build-arch_mips64el_real:: + $(MAKE) -f debian/rules.real build-arch-arch ABINAME='5.10.0-28' ARCH='mips64el' KERNEL_ARCH='mips' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_mips64r6: build-arch_mips64r6_none build-arch_mips64r6_real +build-arch_mips64r6_none: build-arch_mips64r6_none_mips64r6 build-arch_mips64r6_none_real +build-arch_mips64r6_none_mips64r6: build-arch_mips64r6_none_mips64r6_real +build-arch_mips64r6_none_mips64r6_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='mips64r6' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='mips64r6' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-mips64r6' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-mips64r6\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_mips64r6_none_real: +build-arch_mips64r6_real:: + $(MAKE) -f debian/rules.real build-arch-arch ABINAME='5.10.0-28' ARCH='mips64r6' KERNEL_ARCH='mips' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_mips64r6el: build-arch_mips64r6el_none build-arch_mips64r6el_real +build-arch_mips64r6el_none: build-arch_mips64r6el_none_mips64r6el build-arch_mips64r6el_none_real +build-arch_mips64r6el_none_mips64r6el: build-arch_mips64r6el_none_mips64r6el_real +build-arch_mips64r6el_none_mips64r6el_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='mips64r6el' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_mips64r6el_none_real: +build-arch_mips64r6el_real:: + $(MAKE) -f debian/rules.real build-arch-arch ABINAME='5.10.0-28' ARCH='mips64r6el' KERNEL_ARCH='mips' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_mips_none: build-arch_mips_none_4kc-malta build-arch_mips_none_5kc-malta build-arch_mips_none_octeon build-arch_mips_none_real +build-arch_mips_none_4kc-malta: build-arch_mips_none_4kc-malta_real +build-arch_mips_none_4kc-malta_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='mips' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_mips_none_5kc-malta: build-arch_mips_none_5kc-malta_real +build-arch_mips_none_5kc-malta_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='mips' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-5kc-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.mips64r2' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_mips_none_octeon: build-arch_mips_none_octeon_real +build-arch_mips_none_octeon_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='mips' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_mips_none_real: +build-arch_mips_real:: + $(MAKE) -f debian/rules.real build-arch-arch ABINAME='5.10.0-28' ARCH='mips' KERNEL_ARCH='mips' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_mipsel: build-arch_mipsel_none build-arch_mipsel_real +build-arch_mipsel_none: build-arch_mipsel_none_4kc-malta build-arch_mipsel_none_5kc-malta build-arch_mipsel_none_loongson-3 build-arch_mipsel_none_octeon build-arch_mipsel_none_real +build-arch_mipsel_none_4kc-malta: build-arch_mipsel_none_4kc-malta_real +build-arch_mipsel_none_4kc-malta_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='mipsel' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_mipsel_none_5kc-malta: build-arch_mipsel_none_5kc-malta_real +build-arch_mipsel_none_5kc-malta_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='mipsel' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-5kc-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.mips64r2' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_mipsel_none_loongson-3: build-arch_mipsel_none_loongson-3_real +build-arch_mipsel_none_loongson-3_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='mipsel' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_mipsel_none_octeon: build-arch_mipsel_none_octeon_real +build-arch_mipsel_none_octeon_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='mipsel' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_mipsel_none_real: +build-arch_mipsel_real:: + $(MAKE) -f debian/rules.real build-arch-arch ABINAME='5.10.0-28' ARCH='mipsel' KERNEL_ARCH='mips' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_mipsn32: build-arch_mipsn32_real +build-arch_mipsn32_real:: + $(MAKE) -f debian/rules.real build-arch-arch ABINAME='5.10.0-28' ARCH='mipsn32' KERNEL_ARCH='mips' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_mipsn32el: build-arch_mipsn32el_real +build-arch_mipsn32el_real:: + $(MAKE) -f debian/rules.real build-arch-arch ABINAME='5.10.0-28' ARCH='mipsn32el' KERNEL_ARCH='mips' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_mipsn32r6: build-arch_mipsn32r6_real +build-arch_mipsn32r6_real:: + $(MAKE) -f debian/rules.real build-arch-arch ABINAME='5.10.0-28' ARCH='mipsn32r6' KERNEL_ARCH='mips' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_mipsn32r6el: build-arch_mipsn32r6el_real +build-arch_mipsn32r6el_real:: + $(MAKE) -f debian/rules.real build-arch-arch ABINAME='5.10.0-28' ARCH='mipsn32r6el' KERNEL_ARCH='mips' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_mipsr6: build-arch_mipsr6_none build-arch_mipsr6_real +build-arch_mipsr6_none: build-arch_mipsr6_none_mips32r6 build-arch_mipsr6_none_mips64r6 build-arch_mipsr6_none_real +build-arch_mipsr6_none_mips32r6: build-arch_mipsr6_none_mips32r6_real +build-arch_mipsr6_none_mips32r6_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='mipsr6' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='mips32r6' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-mips32r6' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsr6/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r6' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-mips32r6\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r6' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r6' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_mipsr6_none_mips64r6: build-arch_mipsr6_none_mips64r6_real +build-arch_mipsr6_none_mips64r6_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='mipsr6' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='mips64r6' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-mips64r6' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsr6/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-mips64r6\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_mipsr6_none_real: +build-arch_mipsr6_real:: + $(MAKE) -f debian/rules.real build-arch-arch ABINAME='5.10.0-28' ARCH='mipsr6' KERNEL_ARCH='mips' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_mipsr6el: build-arch_mipsr6el_none build-arch_mipsr6el_real +build-arch_mipsr6el_none: build-arch_mipsr6el_none_mips32r6el build-arch_mipsr6el_none_mips64r6el build-arch_mipsr6el_none_real +build-arch_mipsr6el_none_mips32r6el: build-arch_mipsr6el_none_mips32r6el_real +build-arch_mipsr6el_none_mips32r6el_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='mipsr6el' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='mips32r6el' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-mips32r6el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsr6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r6' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-mips32r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r6el' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_mipsr6el_none_mips64r6el: build-arch_mipsr6el_none_mips64r6el_real +build-arch_mipsr6el_none_mips64r6el_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='mipsr6el' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-mips64r6el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsr6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_mipsr6el_none_real: +build-arch_mipsr6el_real:: + $(MAKE) -f debian/rules.real build-arch-arch ABINAME='5.10.0-28' ARCH='mipsr6el' KERNEL_ARCH='mips' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_powerpc: build-arch_powerpc_none build-arch_powerpc_real +build-arch_powerpc_none: build-arch_powerpc_none_powerpc build-arch_powerpc_none_powerpc-smp build-arch_powerpc_none_powerpc64 build-arch_powerpc_none_real +build-arch_powerpc_none_powerpc: build-arch_powerpc_none_powerpc_real +build-arch_powerpc_none_powerpc-smp: build-arch_powerpc_none_powerpc-smp_real +build-arch_powerpc_none_powerpc-smp_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='powerpc' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +build-arch_powerpc_none_powerpc64: build-arch_powerpc_none_powerpc64_real +build-arch_powerpc_none_powerpc64_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='powerpc' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +build-arch_powerpc_none_powerpc_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='powerpc' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-powerpc' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +build-arch_powerpc_none_real: +build-arch_powerpc_real:: + $(MAKE) -f debian/rules.real build-arch-arch ABINAME='5.10.0-28' ARCH='powerpc' KERNEL_ARCH='powerpc' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_ppc64: build-arch_ppc64_none build-arch_ppc64_real +build-arch_ppc64_none: build-arch_ppc64_none_powerpc64 build-arch_ppc64_none_real +build-arch_ppc64_none_powerpc64: build-arch_ppc64_none_powerpc64_real +build-arch_ppc64_none_powerpc64_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='ppc64' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +build-arch_ppc64_none_real: +build-arch_ppc64_real:: + $(MAKE) -f debian/rules.real build-arch-arch ABINAME='5.10.0-28' ARCH='ppc64' KERNEL_ARCH='powerpc' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_ppc64el: build-arch_ppc64el_none build-arch_ppc64el_real +build-arch_ppc64el_none: build-arch_ppc64el_none_powerpc64le build-arch_ppc64el_none_real +build-arch_ppc64el_none_powerpc64le: build-arch_ppc64el_none_powerpc64le_real +build-arch_ppc64el_none_powerpc64le_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='ppc64el' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +build-arch_ppc64el_none_real: +build-arch_ppc64el_real:: + $(MAKE) -f debian/rules.real build-arch-arch ABINAME='5.10.0-28' ARCH='ppc64el' KERNEL_ARCH='powerpc' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_riscv64: build-arch_riscv64_none build-arch_riscv64_real +build-arch_riscv64_none: build-arch_riscv64_none_real build-arch_riscv64_none_riscv64 +build-arch_riscv64_none_real: +build-arch_riscv64_none_riscv64: build-arch_riscv64_none_riscv64_real +build-arch_riscv64_none_riscv64_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='riscv64' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-riscv64' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +build-arch_riscv64_real:: + $(MAKE) -f debian/rules.real build-arch-arch ABINAME='5.10.0-28' ARCH='riscv64' KERNEL_ARCH='riscv' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_s390: build-arch_s390_real +build-arch_s390_real:: + $(MAKE) -f debian/rules.real build-arch-arch ABINAME='5.10.0-28' ARCH='s390' KERNEL_ARCH='s390' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_s390x: build-arch_s390x_none build-arch_s390x_real +build-arch_s390x_none: build-arch_s390x_none_real build-arch_s390x_none_s390x +build-arch_s390x_none_real: +build-arch_s390x_none_s390x: build-arch_s390x_none_s390x_real +build-arch_s390x_none_s390x_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='s390x' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-s390x' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +build-arch_s390x_real:: + $(MAKE) -f debian/rules.real build-arch-arch ABINAME='5.10.0-28' ARCH='s390x' KERNEL_ARCH='s390' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_sh3: build-arch_sh3_real +build-arch_sh3_real:: + $(MAKE) -f debian/rules.real build-arch-arch ABINAME='5.10.0-28' ARCH='sh3' KERNEL_ARCH='sh' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_sh4: build-arch_sh4_none build-arch_sh4_real +build-arch_sh4_none: build-arch_sh4_none_real build-arch_sh4_none_sh7751r build-arch_sh4_none_sh7785lcr +build-arch_sh4_none_real: +build-arch_sh4_none_sh7751r: build-arch_sh4_none_sh7751r_real +build-arch_sh4_none_sh7751r_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='sh4' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-sh7751r' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_sh4_none_sh7785lcr: build-arch_sh4_none_sh7785lcr_real +build-arch_sh4_none_sh7785lcr_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='sh4' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-sh7785lcr' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_sh4_real:: + $(MAKE) -f debian/rules.real build-arch-arch ABINAME='5.10.0-28' ARCH='sh4' KERNEL_ARCH='sh' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_sparc: build-arch_sparc_real +build-arch_sparc64: build-arch_sparc64_none build-arch_sparc64_real +build-arch_sparc64_none: build-arch_sparc64_none_real build-arch_sparc64_none_sparc64 build-arch_sparc64_none_sparc64-smp +build-arch_sparc64_none_real: +build-arch_sparc64_none_sparc64: build-arch_sparc64_none_sparc64_real +build-arch_sparc64_none_sparc64-smp: build-arch_sparc64_none_sparc64-smp_real +build-arch_sparc64_none_sparc64-smp_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='sparc64' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-sparc64-smp' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_sparc64_none_sparc64_real:: + $(MAKE) -f debian/rules.real build-arch-flavour ABINAME='5.10.0-28' ARCH='sparc64' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-sparc64' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_sparc64_real:: + $(MAKE) -f debian/rules.real build-arch-arch ABINAME='5.10.0-28' ARCH='sparc64' KERNEL_ARCH='sparc' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_sparc_real:: + $(MAKE) -f debian/rules.real build-arch-arch ABINAME='5.10.0-28' ARCH='sparc' KERNEL_ARCH='sparc' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-arch_x32: build-arch_x32_real +build-arch_x32_real:: + $(MAKE) -f debian/rules.real build-arch-arch ABINAME='5.10.0-28' ARCH='x32' KERNEL_ARCH='x86' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-indep:: build-indep_none build-indep_rt +build-indep:: + $(MAKE) -f debian/rules.real build-indep ABINAME='5.10.0-28' ALL_FEATURESETS='none rt' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +build-indep_none: build-indep_none_real +build-indep_none_real: +build-indep_rt: build-indep_rt_real +build-indep_rt_real: +debian/build/config.alpha_none_alpha-generic:: + $(MAKE) -f debian/rules.real debian/build/config.alpha_none_alpha-generic ABINAME='5.10.0-28' ARCH='alpha' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-alpha-generic' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +debian/build/config.alpha_none_alpha-smp:: + $(MAKE) -f debian/rules.real debian/build/config.alpha_none_alpha-smp ABINAME='5.10.0-28' ARCH='alpha' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-alpha-smp' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +debian/build/config.amd64_none_amd64:: + $(MAKE) -f debian/rules.real debian/build/config.amd64_none_amd64 ABINAME='5.10.0-28' ARCH='amd64' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-amd64-unsigned' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o SECURITY_LOCKDOWN_LSM=y -o MODULE_SIG=y -o "BUILD_SALT=\"5.10.0-28-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +debian/build/config.amd64_none_cloud-amd64:: + $(MAKE) -f debian/rules.real debian/build/config.amd64_none_cloud-amd64 ABINAME='5.10.0-28' ARCH='amd64' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-cloud-amd64-unsigned' 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 DEBUG_INFO=y -o SECURITY_LOCKDOWN_LSM=y -o MODULE_SIG=y -o "BUILD_SALT=\"5.10.0-28-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +debian/build/config.amd64_rt_amd64:: + $(MAKE) -f debian/rules.real debian/build/config.amd64_rt_amd64 ABINAME='5.10.0-28' ARCH='amd64' COMPILER='gcc-10' DEBUG='True' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-rt-amd64-unsigned' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o SECURITY_LOCKDOWN_LSM=y -o MODULE_SIG=y -o "BUILD_SALT=\"5.10.0-28-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +debian/build/config.arm64_none_arm64:: + $(MAKE) -f debian/rules.real debian/build/config.arm64_none_arm64 ABINAME='5.10.0-28' ARCH='arm64' COMPILER='gcc-10' CROSS_COMPILE_COMPAT='arm-linux-gnueabihf-' DEBUG='True' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-arm64-unsigned' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o SECURITY_LOCKDOWN_LSM=y -o MODULE_SIG=y -o "BUILD_SALT=\"5.10.0-28-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +debian/build/config.arm64_none_cloud-arm64:: + $(MAKE) -f debian/rules.real debian/build/config.arm64_none_cloud-arm64 ABINAME='5.10.0-28' ARCH='arm64' COMPILER='gcc-10' CROSS_COMPILE_COMPAT='arm-linux-gnueabihf-' DEBUG='True' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-cloud-arm64-unsigned' 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 DEBUG_INFO=y -o SECURITY_LOCKDOWN_LSM=y -o MODULE_SIG=y -o "BUILD_SALT=\"5.10.0-28-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +debian/build/config.arm64_rt_arm64:: + $(MAKE) -f debian/rules.real debian/build/config.arm64_rt_arm64 ABINAME='5.10.0-28' ARCH='arm64' COMPILER='gcc-10' CROSS_COMPILE_COMPAT='arm-linux-gnueabihf-' DEBUG='True' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-rt-arm64-unsigned' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o SECURITY_LOCKDOWN_LSM=y -o MODULE_SIG=y -o "BUILD_SALT=\"5.10.0-28-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +debian/build/config.armel_none_marvell:: + $(MAKE) -f debian/rules.real debian/build/config.armel_none_marvell ABINAME='5.10.0-28' ARCH='armel' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='marvell' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-marvell' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.marvell' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-marvell\""' KERNEL_ARCH='arm' LOCALVERSION='-marvell' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-marvell' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +debian/build/config.armel_none_rpi:: + $(MAKE) -f debian/rules.real debian/build/config.armel_none_rpi ABINAME='5.10.0-28' ARCH='armel' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-rpi' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +debian/build/config.armhf_none_armmp:: + $(MAKE) -f debian/rules.real debian/build/config.armhf_none_armmp ABINAME='5.10.0-28' ARCH='armhf' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-armmp' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +debian/build/config.armhf_none_armmp-lpae:: + $(MAKE) -f debian/rules.real debian/build/config.armhf_none_armmp-lpae ABINAME='5.10.0-28' ARCH='armhf' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-armmp-lpae' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +debian/build/config.armhf_rt_armmp:: + $(MAKE) -f debian/rules.real debian/build/config.armhf_rt_armmp ABINAME='5.10.0-28' ARCH='armhf' COMPILER='gcc-10' DEBUG='True' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-rt-armmp' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +debian/build/config.hppa_none_parisc:: + $(MAKE) -f debian/rules.real debian/build/config.hppa_none_parisc ABINAME='5.10.0-28' ARCH='hppa' COMPILER='gcc-10' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-parisc' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"5.10.0-28-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +debian/build/config.hppa_none_parisc64:: + $(MAKE) -f debian/rules.real debian/build/config.hppa_none_parisc64 ABINAME='5.10.0-28' ARCH='hppa' COMPILER='gcc-10' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-parisc64' KCFLAGS='-fno-cse-follow-jumps' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"5.10.0-28-parisc64\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' OVERRIDE_HOST_TYPE='hppa64-linux-gnu' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +debian/build/config.i386_none_686:: + $(MAKE) -f debian/rules.real debian/build/config.i386_none_686 ABINAME='5.10.0-28' ARCH='i386' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-686-unsigned' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o SECURITY_LOCKDOWN_LSM=y -o MODULE_SIG=y -o "BUILD_SALT=\"5.10.0-28-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +debian/build/config.i386_none_686-pae:: + $(MAKE) -f debian/rules.real debian/build/config.i386_none_686-pae ABINAME='5.10.0-28' ARCH='i386' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-686-pae-unsigned' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o SECURITY_LOCKDOWN_LSM=y -o MODULE_SIG=y -o "BUILD_SALT=\"5.10.0-28-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +debian/build/config.i386_rt_686-pae:: + $(MAKE) -f debian/rules.real debian/build/config.i386_rt_686-pae ABINAME='5.10.0-28' ARCH='i386' COMPILER='gcc-10' DEBUG='True' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-rt-686-pae-unsigned' 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 DEBUG_INFO=y -o SECURITY_LOCKDOWN_LSM=y -o MODULE_SIG=y -o "BUILD_SALT=\"5.10.0-28-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +debian/build/config.ia64_none_itanium:: + $(MAKE) -f debian/rules.real debian/build/config.ia64_none_itanium ABINAME='5.10.0-28' ARCH='ia64' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='itanium' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-itanium' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.itanium' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-itanium\""' KERNEL_ARCH='ia64' LOCALVERSION='-itanium' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-itanium' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +debian/build/config.ia64_none_mckinley:: + $(MAKE) -f debian/rules.real debian/build/config.ia64_none_mckinley ABINAME='5.10.0-28' ARCH='ia64' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='mckinley' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-mckinley' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.mckinley' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-mckinley\""' KERNEL_ARCH='ia64' LOCALVERSION='-mckinley' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mckinley' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +debian/build/config.m68k_none_m68k:: + $(MAKE) -f debian/rules.real debian/build/config.m68k_none_m68k ABINAME='5.10.0-28' ARCH='m68k' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-m68k' KCFLAGS='-ffreestanding' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +debian/build/config.mips64_none_5kc-malta:: + $(MAKE) -f debian/rules.real debian/build/config.mips64_none_5kc-malta ABINAME='5.10.0-28' ARCH='mips64' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +debian/build/config.mips64_none_octeon:: + $(MAKE) -f debian/rules.real debian/build/config.mips64_none_octeon ABINAME='5.10.0-28' ARCH='mips64' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +debian/build/config.mips64el_none_5kc-malta:: + $(MAKE) -f debian/rules.real debian/build/config.mips64el_none_5kc-malta ABINAME='5.10.0-28' ARCH='mips64el' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +debian/build/config.mips64el_none_loongson-3:: + $(MAKE) -f debian/rules.real debian/build/config.mips64el_none_loongson-3 ABINAME='5.10.0-28' ARCH='mips64el' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +debian/build/config.mips64el_none_octeon:: + $(MAKE) -f debian/rules.real debian/build/config.mips64el_none_octeon ABINAME='5.10.0-28' ARCH='mips64el' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +debian/build/config.mips64r6_none_mips64r6:: + $(MAKE) -f debian/rules.real debian/build/config.mips64r6_none_mips64r6 ABINAME='5.10.0-28' ARCH='mips64r6' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='mips64r6' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-mips64r6' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-mips64r6\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +debian/build/config.mips64r6el_none_mips64r6el:: + $(MAKE) -f debian/rules.real debian/build/config.mips64r6el_none_mips64r6el ABINAME='5.10.0-28' ARCH='mips64r6el' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +debian/build/config.mips_none_4kc-malta:: + $(MAKE) -f debian/rules.real debian/build/config.mips_none_4kc-malta ABINAME='5.10.0-28' ARCH='mips' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +debian/build/config.mips_none_5kc-malta:: + $(MAKE) -f debian/rules.real debian/build/config.mips_none_5kc-malta ABINAME='5.10.0-28' ARCH='mips' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-5kc-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.mips64r2' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +debian/build/config.mips_none_octeon:: + $(MAKE) -f debian/rules.real debian/build/config.mips_none_octeon ABINAME='5.10.0-28' ARCH='mips' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +debian/build/config.mipsel_none_4kc-malta:: + $(MAKE) -f debian/rules.real debian/build/config.mipsel_none_4kc-malta ABINAME='5.10.0-28' ARCH='mipsel' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +debian/build/config.mipsel_none_5kc-malta:: + $(MAKE) -f debian/rules.real debian/build/config.mipsel_none_5kc-malta ABINAME='5.10.0-28' ARCH='mipsel' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-5kc-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.mips64r2' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +debian/build/config.mipsel_none_loongson-3:: + $(MAKE) -f debian/rules.real debian/build/config.mipsel_none_loongson-3 ABINAME='5.10.0-28' ARCH='mipsel' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +debian/build/config.mipsel_none_octeon:: + $(MAKE) -f debian/rules.real debian/build/config.mipsel_none_octeon ABINAME='5.10.0-28' ARCH='mipsel' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +debian/build/config.mipsr6_none_mips32r6:: + $(MAKE) -f debian/rules.real debian/build/config.mipsr6_none_mips32r6 ABINAME='5.10.0-28' ARCH='mipsr6' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='mips32r6' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-mips32r6' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsr6/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r6' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-mips32r6\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r6' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r6' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +debian/build/config.mipsr6_none_mips64r6:: + $(MAKE) -f debian/rules.real debian/build/config.mipsr6_none_mips64r6 ABINAME='5.10.0-28' ARCH='mipsr6' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='mips64r6' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-mips64r6' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsr6/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-mips64r6\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +debian/build/config.mipsr6el_none_mips32r6el:: + $(MAKE) -f debian/rules.real debian/build/config.mipsr6el_none_mips32r6el ABINAME='5.10.0-28' ARCH='mipsr6el' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='mips32r6el' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-mips32r6el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsr6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r6' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-mips32r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r6el' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +debian/build/config.mipsr6el_none_mips64r6el:: + $(MAKE) -f debian/rules.real debian/build/config.mipsr6el_none_mips64r6el ABINAME='5.10.0-28' ARCH='mipsr6el' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-mips64r6el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsr6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +debian/build/config.powerpc_none_powerpc:: + $(MAKE) -f debian/rules.real debian/build/config.powerpc_none_powerpc ABINAME='5.10.0-28' ARCH='powerpc' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-powerpc' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +debian/build/config.powerpc_none_powerpc-smp:: + $(MAKE) -f debian/rules.real debian/build/config.powerpc_none_powerpc-smp ABINAME='5.10.0-28' ARCH='powerpc' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +debian/build/config.powerpc_none_powerpc64:: + $(MAKE) -f debian/rules.real debian/build/config.powerpc_none_powerpc64 ABINAME='5.10.0-28' ARCH='powerpc' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +debian/build/config.ppc64_none_powerpc64:: + $(MAKE) -f debian/rules.real debian/build/config.ppc64_none_powerpc64 ABINAME='5.10.0-28' ARCH='ppc64' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +debian/build/config.ppc64el_none_powerpc64le:: + $(MAKE) -f debian/rules.real debian/build/config.ppc64el_none_powerpc64le ABINAME='5.10.0-28' ARCH='ppc64el' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +debian/build/config.riscv64_none_riscv64:: + $(MAKE) -f debian/rules.real debian/build/config.riscv64_none_riscv64 ABINAME='5.10.0-28' ARCH='riscv64' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-riscv64' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +debian/build/config.s390x_none_s390x:: + $(MAKE) -f debian/rules.real debian/build/config.s390x_none_s390x ABINAME='5.10.0-28' ARCH='s390x' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-s390x' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +debian/build/config.sh4_none_sh7751r:: + $(MAKE) -f debian/rules.real debian/build/config.sh4_none_sh7751r ABINAME='5.10.0-28' ARCH='sh4' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-sh7751r' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +debian/build/config.sh4_none_sh7785lcr:: + $(MAKE) -f debian/rules.real debian/build/config.sh4_none_sh7785lcr ABINAME='5.10.0-28' ARCH='sh4' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-sh7785lcr' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +debian/build/config.sparc64_none_sparc64:: + $(MAKE) -f debian/rules.real debian/build/config.sparc64_none_sparc64 ABINAME='5.10.0-28' ARCH='sparc64' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-sparc64' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +debian/build/config.sparc64_none_sparc64-smp:: + $(MAKE) -f debian/rules.real debian/build/config.sparc64_none_sparc64-smp ABINAME='5.10.0-28' ARCH='sparc64' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-sparc64-smp' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +setup: setup_alpha setup_amd64 setup_arm64 setup_arm64ilp32 setup_armel setup_armhf setup_hppa setup_i386 setup_ia64 setup_m68k setup_mips setup_mips64 setup_mips64el setup_mips64r6 setup_mips64r6el setup_mipsel setup_mipsn32 setup_mipsn32el setup_mipsn32r6 setup_mipsn32r6el setup_mipsr6 setup_mipsr6el setup_none setup_powerpc setup_ppc64 setup_ppc64el setup_riscv64 setup_rt setup_s390 setup_s390x setup_sh3 setup_sh4 setup_sparc setup_sparc64 setup_x32 +setup_alpha: setup_alpha_none setup_alpha_real +setup_alpha_none: setup_alpha_none_alpha-generic setup_alpha_none_alpha-smp setup_alpha_none_real +setup_alpha_none_alpha-generic: setup_alpha_none_alpha-generic_real +setup_alpha_none_alpha-generic_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='alpha' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='alpha-generic' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-alpha-generic' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-generic' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-alpha-generic\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-generic' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-generic' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +setup_alpha_none_alpha-smp: setup_alpha_none_alpha-smp_real +setup_alpha_none_alpha-smp_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='alpha' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='alpha-smp' IMAGE_FILE='arch/alpha/boot/vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-alpha-smp' KCONFIG='debian/config/config debian/config/alpha/config debian/config/alpha/config.alpha-smp' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-alpha-smp\""' KERNEL_ARCH='alpha' LOCALVERSION='-alpha-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-alpha-smp' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +setup_alpha_none_real: +setup_alpha_real: +setup_amd64: setup_amd64_none setup_amd64_real setup_amd64_rt +setup_amd64_none: setup_amd64_none_amd64 setup_amd64_none_cloud-amd64 setup_amd64_none_real +setup_amd64_none_amd64: setup_amd64_none_amd64_real +setup_amd64_none_amd64_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='amd64' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-amd64-unsigned' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o SECURITY_LOCKDOWN_LSM=y -o MODULE_SIG=y -o "BUILD_SALT=\"5.10.0-28-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-amd64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +setup_amd64_none_cloud-amd64: setup_amd64_none_cloud-amd64_real +setup_amd64_none_cloud-amd64_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='amd64' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='cloud-amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-cloud-amd64-unsigned' 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 DEBUG_INFO=y -o SECURITY_LOCKDOWN_LSM=y -o MODULE_SIG=y -o "BUILD_SALT=\"5.10.0-28-cloud-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-cloud-amd64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-amd64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +setup_amd64_none_real: +setup_amd64_real: +setup_amd64_rt: setup_amd64_rt_amd64 setup_amd64_rt_real +setup_amd64_rt_amd64: setup_amd64_rt_amd64_real +setup_amd64_rt_amd64_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='amd64' COMPILER='gcc-10' DEBUG='True' FEATURESET='rt' FLAVOUR='amd64' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-rt-amd64-unsigned' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/amd64/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o SECURITY_LOCKDOWN_LSM=y -o MODULE_SIG=y -o "BUILD_SALT=\"5.10.0-28-rt-amd64\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-amd64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-amd64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +setup_amd64_rt_real: +setup_arm64: setup_arm64_none setup_arm64_real setup_arm64_rt +setup_arm64_none: setup_arm64_none_arm64 setup_arm64_none_cloud-arm64 setup_arm64_none_real +setup_arm64_none_arm64: setup_arm64_none_arm64_real +setup_arm64_none_arm64_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='arm64' COMPILER='gcc-10' CROSS_COMPILE_COMPAT='arm-linux-gnueabihf-' DEBUG='True' FEATURESET='none' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-arm64-unsigned' KCONFIG='debian/config/config debian/config/arm64/config' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o SECURITY_LOCKDOWN_LSM=y -o MODULE_SIG=y -o "BUILD_SALT=\"5.10.0-28-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-arm64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +setup_arm64_none_cloud-arm64: setup_arm64_none_cloud-arm64_real +setup_arm64_none_cloud-arm64_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='arm64' COMPILER='gcc-10' CROSS_COMPILE_COMPAT='arm-linux-gnueabihf-' DEBUG='True' FEATURESET='none' FLAVOUR='cloud-arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-cloud-arm64-unsigned' 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 DEBUG_INFO=y -o SECURITY_LOCKDOWN_LSM=y -o MODULE_SIG=y -o "BUILD_SALT=\"5.10.0-28-cloud-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-cloud-arm64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-cloud-arm64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +setup_arm64_none_real: +setup_arm64_real: +setup_arm64_rt: setup_arm64_rt_arm64 setup_arm64_rt_real +setup_arm64_rt_arm64: setup_arm64_rt_arm64_real +setup_arm64_rt_arm64_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='arm64' COMPILER='gcc-10' CROSS_COMPILE_COMPAT='arm-linux-gnueabihf-' DEBUG='True' FEATURESET='rt' FLAVOUR='arm64' IMAGE_FILE='arch/arm64/boot/Image' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-rt-arm64-unsigned' KCONFIG='debian/config/config debian/config/arm64/config debian/config/featureset-rt/config debian/config/arm64/rt/config' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o SECURITY_LOCKDOWN_LSM=y -o MODULE_SIG=y -o "BUILD_SALT=\"5.10.0-28-rt-arm64\""' KERNEL_ARCH='arm64' LOCALVERSION='-rt-arm64' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-arm64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +setup_arm64_rt_real: +setup_arm64ilp32: setup_arm64ilp32_real +setup_arm64ilp32_real: +setup_armel: setup_armel_none setup_armel_real +setup_armel_none: setup_armel_none_marvell setup_armel_none_real setup_armel_none_rpi +setup_armel_none_marvell: setup_armel_none_marvell_real +setup_armel_none_marvell_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='armel' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='marvell' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-marvell' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.marvell' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-marvell\""' KERNEL_ARCH='arm' LOCALVERSION='-marvell' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-marvell' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +setup_armel_none_real: +setup_armel_none_rpi: setup_armel_none_rpi_real +setup_armel_none_rpi_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='armel' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='rpi' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-rpi' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armel/config debian/config/armel/config.rpi' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-rpi\""' KERNEL_ARCH='arm' LOCALVERSION='-rpi' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-rpi' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +setup_armel_real: +setup_armhf: setup_armhf_none setup_armhf_real setup_armhf_rt +setup_armhf_none: setup_armhf_none_armmp setup_armhf_none_armmp-lpae setup_armhf_none_real +setup_armhf_none_armmp: setup_armhf_none_armmp_real +setup_armhf_none_armmp-lpae: setup_armhf_none_armmp-lpae_real +setup_armhf_none_armmp-lpae_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='armhf' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='armmp-lpae' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-armmp-lpae' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/armhf/config.armmp-lpae' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-armmp-lpae\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp-lpae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp-lpae' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +setup_armhf_none_armmp_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='armhf' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-armmp' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-armmp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-armmp' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +setup_armhf_none_real: +setup_armhf_real: +setup_armhf_rt: setup_armhf_rt_armmp setup_armhf_rt_real +setup_armhf_rt_armmp: setup_armhf_rt_armmp_real +setup_armhf_rt_armmp_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='armhf' COMPILER='gcc-10' DEBUG='True' FEATURESET='rt' FLAVOUR='armmp' IMAGE_FILE='arch/arm/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-rt-armmp' KCONFIG='debian/config/config debian/config/kernelarch-arm/config debian/config/armhf/config debian/config/featureset-rt/config' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-rt-armmp\""' KERNEL_ARCH='arm' LOCALVERSION='-rt-armmp' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-armmp' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +setup_armhf_rt_real: +setup_hppa: setup_hppa_none setup_hppa_real +setup_hppa_none: setup_hppa_none_parisc setup_hppa_none_parisc64 setup_hppa_none_real +setup_hppa_none_parisc: setup_hppa_none_parisc_real +setup_hppa_none_parisc64: setup_hppa_none_parisc64_real +setup_hppa_none_parisc64_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='hppa' COMPILER='gcc-10' FEATURESET='none' FLAVOUR='parisc64' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-parisc64' KCFLAGS='-fno-cse-follow-jumps' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc64' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"5.10.0-28-parisc64\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc64' OVERRIDE_HOST_TYPE='hppa64-linux-gnu' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +setup_hppa_none_parisc_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='hppa' COMPILER='gcc-10' FEATURESET='none' FLAVOUR='parisc' IMAGE_FILE='arch/parisc/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-parisc' KCONFIG='debian/config/config debian/config/hppa/config debian/config/hppa/config.parisc' KCONFIG_OPTIONS=' -o "BUILD_SALT=\"5.10.0-28-parisc\""' KERNEL_ARCH='parisc' LOCALVERSION='-parisc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-parisc' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +setup_hppa_none_real: +setup_hppa_real: +setup_i386: setup_i386_none setup_i386_real setup_i386_rt +setup_i386_none: setup_i386_none_686 setup_i386_none_686-pae setup_i386_none_real +setup_i386_none_686: setup_i386_none_686_real +setup_i386_none_686-pae: setup_i386_none_686-pae_real +setup_i386_none_686-pae_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='i386' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-686-pae-unsigned' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686-pae' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o SECURITY_LOCKDOWN_LSM=y -o MODULE_SIG=y -o "BUILD_SALT=\"5.10.0-28-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-686-pae' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686-pae' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +setup_i386_none_686_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='i386' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='686' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-686-unsigned' KCONFIG='debian/config/config debian/config/kernelarch-x86/config debian/config/i386/config debian/config/i386/config.686' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o SECURITY_LOCKDOWN_LSM=y -o MODULE_SIG=y -o "BUILD_SALT=\"5.10.0-28-686\""' KERNEL_ARCH='x86' LOCALVERSION='-686' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-686' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +setup_i386_none_real: +setup_i386_real: +setup_i386_rt: setup_i386_rt_686-pae setup_i386_rt_real +setup_i386_rt_686-pae: setup_i386_rt_686-pae_real +setup_i386_rt_686-pae_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='i386' COMPILER='gcc-10' DEBUG='True' FEATURESET='rt' FLAVOUR='686-pae' IMAGE_FILE='arch/x86/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-rt-686-pae-unsigned' 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 DEBUG_INFO=y -o SECURITY_LOCKDOWN_LSM=y -o MODULE_SIG=y -o "BUILD_SALT=\"5.10.0-28-rt-686-pae\""' KERNEL_ARCH='x86' LOCALVERSION='-rt-686-pae' LOCALVERSION_HEADERS='-rt' LOCALVERSION_IMAGE='-rt-686-pae' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +setup_i386_rt_real: +setup_ia64: setup_ia64_none setup_ia64_real +setup_ia64_none: setup_ia64_none_itanium setup_ia64_none_mckinley setup_ia64_none_real +setup_ia64_none_itanium: setup_ia64_none_itanium_real +setup_ia64_none_itanium_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='ia64' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='itanium' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-itanium' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.itanium' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-itanium\""' KERNEL_ARCH='ia64' LOCALVERSION='-itanium' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-itanium' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +setup_ia64_none_mckinley: setup_ia64_none_mckinley_real +setup_ia64_none_mckinley_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='ia64' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='mckinley' IMAGE_FILE='vmlinux.gz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-mckinley' KCONFIG='debian/config/config debian/config/ia64/config debian/config/ia64/config.mckinley' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-mckinley\""' KERNEL_ARCH='ia64' LOCALVERSION='-mckinley' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mckinley' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +setup_ia64_none_real: +setup_ia64_real: +setup_m68k: setup_m68k_none setup_m68k_real +setup_m68k_none: setup_m68k_none_m68k setup_m68k_none_real +setup_m68k_none_m68k: setup_m68k_none_m68k_real +setup_m68k_none_m68k_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='m68k' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='m68k' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-m68k' KCFLAGS='-ffreestanding' KCONFIG='debian/config/config debian/config/m68k/config' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-m68k\""' KERNEL_ARCH='m68k' LOCALVERSION='-m68k' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-m68k' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +setup_m68k_none_real: +setup_m68k_real: +setup_mips: setup_mips_none setup_mips_real +setup_mips64: setup_mips64_none setup_mips64_real +setup_mips64_none: setup_mips64_none_5kc-malta setup_mips64_none_octeon setup_mips64_none_real +setup_mips64_none_5kc-malta: setup_mips64_none_5kc-malta_real +setup_mips64_none_5kc-malta_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='mips64' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +setup_mips64_none_octeon: setup_mips64_none_octeon_real +setup_mips64_none_octeon_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='mips64' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +setup_mips64_none_real: +setup_mips64_real: +setup_mips64el: setup_mips64el_none setup_mips64el_real +setup_mips64el_none: setup_mips64el_none_5kc-malta setup_mips64el_none_loongson-3 setup_mips64el_none_octeon setup_mips64el_none_real +setup_mips64el_none_5kc-malta: setup_mips64el_none_5kc-malta_real +setup_mips64el_none_5kc-malta_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='mips64el' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +setup_mips64el_none_loongson-3: setup_mips64el_none_loongson-3_real +setup_mips64el_none_loongson-3_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='mips64el' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +setup_mips64el_none_octeon: setup_mips64el_none_octeon_real +setup_mips64el_none_octeon_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='mips64el' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64el/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +setup_mips64el_none_real: +setup_mips64el_real: +setup_mips64r6: setup_mips64r6_none setup_mips64r6_real +setup_mips64r6_none: setup_mips64r6_none_mips64r6 setup_mips64r6_none_real +setup_mips64r6_none_mips64r6: setup_mips64r6_none_mips64r6_real +setup_mips64r6_none_mips64r6_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='mips64r6' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='mips64r6' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-mips64r6' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips64r6/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-mips64r6\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +setup_mips64r6_none_real: +setup_mips64r6_real: +setup_mips64r6el: setup_mips64r6el_none setup_mips64r6el_real +setup_mips64r6el_none: setup_mips64r6el_none_mips64r6el setup_mips64r6el_none_real +setup_mips64r6el_none_mips64r6el: setup_mips64r6el_none_mips64r6el_real +setup_mips64r6el_none_mips64r6el_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='mips64r6el' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +setup_mips64r6el_none_real: +setup_mips64r6el_real: +setup_mips_none: setup_mips_none_4kc-malta setup_mips_none_5kc-malta setup_mips_none_octeon setup_mips_none_real +setup_mips_none_4kc-malta: setup_mips_none_4kc-malta_real +setup_mips_none_4kc-malta_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='mips' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +setup_mips_none_5kc-malta: setup_mips_none_5kc-malta_real +setup_mips_none_5kc-malta_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='mips' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-5kc-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.mips64r2' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +setup_mips_none_octeon: setup_mips_none_octeon_real +setup_mips_none_octeon_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='mips' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mips/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +setup_mips_none_real: +setup_mips_real: +setup_mipsel: setup_mipsel_none setup_mipsel_real +setup_mipsel_none: setup_mipsel_none_4kc-malta setup_mipsel_none_5kc-malta setup_mipsel_none_loongson-3 setup_mipsel_none_octeon setup_mipsel_none_real +setup_mipsel_none_4kc-malta: setup_mipsel_none_4kc-malta_real +setup_mipsel_none_4kc-malta_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='mipsel' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='4kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-4kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-4kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-4kc-malta' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +setup_mipsel_none_5kc-malta: setup_mipsel_none_5kc-malta_real +setup_mipsel_none_5kc-malta_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='mipsel' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='5kc-malta' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-5kc-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.mips64r2' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-5kc-malta\""' KERNEL_ARCH='mips' LOCALVERSION='-5kc-malta' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-5kc-malta' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +setup_mipsel_none_loongson-3: setup_mipsel_none_loongson-3_real +setup_mipsel_none_loongson-3_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='mipsel' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='loongson-3' IMAGE_FILE='vmlinuz' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-loongson-3\""' KERNEL_ARCH='mips' LOCALVERSION='-loongson-3' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-loongson-3' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +setup_mipsel_none_octeon: setup_mipsel_none_octeon_real +setup_mipsel_none_octeon_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='mipsel' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='octeon' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-octeon' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsel/config debian/config/kernelarch-mips/config.octeon' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-octeon\""' KERNEL_ARCH='mips' LOCALVERSION='-octeon' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-octeon' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +setup_mipsel_none_real: +setup_mipsel_real: +setup_mipsn32: setup_mipsn32_real +setup_mipsn32_real: +setup_mipsn32el: setup_mipsn32el_real +setup_mipsn32el_real: +setup_mipsn32r6: setup_mipsn32r6_real +setup_mipsn32r6_real: +setup_mipsn32r6el: setup_mipsn32r6el_real +setup_mipsn32r6el_real: +setup_mipsr6: setup_mipsr6_none setup_mipsr6_real +setup_mipsr6_none: setup_mipsr6_none_mips32r6 setup_mipsr6_none_mips64r6 setup_mipsr6_none_real +setup_mipsr6_none_mips32r6: setup_mipsr6_none_mips32r6_real +setup_mipsr6_none_mips32r6_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='mipsr6' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='mips32r6' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-mips32r6' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsr6/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r6' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-mips32r6\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r6' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r6' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +setup_mipsr6_none_mips64r6: setup_mipsr6_none_mips64r6_real +setup_mipsr6_none_mips64r6_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='mipsr6' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='mips64r6' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-mips64r6' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsr6/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-mips64r6\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +setup_mipsr6_none_real: +setup_mipsr6_real: +setup_mipsr6el: setup_mipsr6el_none setup_mipsr6el_real +setup_mipsr6el_none: setup_mipsr6el_none_mips32r6el setup_mipsr6el_none_mips64r6el setup_mipsr6el_none_real +setup_mipsr6el_none_mips32r6el: setup_mipsr6el_none_mips32r6el_real +setup_mipsr6el_none_mips32r6el_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='mipsr6el' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='mips32r6el' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-mips32r6el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsr6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips32r6' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-mips32r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips32r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips32r6el' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +setup_mipsr6el_none_mips64r6el: setup_mipsr6el_none_mips64r6el_real +setup_mipsr6el_none_mips64r6el_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='mipsr6el' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='mips64r6el' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-mips64r6el' KCONFIG='debian/config/config debian/config/kernelarch-mips/config debian/config/mipsr6el/config debian/config/kernelarch-mips/config.boston debian/config/kernelarch-mips/config.mips64r6' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-mips64r6el\""' KERNEL_ARCH='mips' LOCALVERSION='-mips64r6el' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-mips64r6el' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +setup_mipsr6el_none_real: +setup_mipsr6el_real: +setup_none: setup_none_real +setup_none_real: +setup_powerpc: setup_powerpc_none setup_powerpc_real +setup_powerpc_none: setup_powerpc_none_powerpc setup_powerpc_none_powerpc-smp setup_powerpc_none_powerpc64 setup_powerpc_none_real +setup_powerpc_none_powerpc: setup_powerpc_none_powerpc_real +setup_powerpc_none_powerpc-smp: setup_powerpc_none_powerpc-smp_real +setup_powerpc_none_powerpc-smp_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='powerpc' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='powerpc-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-powerpc-smp\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc-smp' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +setup_powerpc_none_powerpc64: setup_powerpc_none_powerpc64_real +setup_powerpc_none_powerpc64_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='powerpc' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +setup_powerpc_none_powerpc_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='powerpc' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='powerpc' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-powerpc' KCONFIG='debian/config/config debian/config/kernelarch-powerpc/config debian/config/powerpc/config.powerpc' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-powerpc\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +setup_powerpc_none_real: +setup_powerpc_real: +setup_ppc64: setup_ppc64_none setup_ppc64_real +setup_ppc64_none: setup_ppc64_none_powerpc64 setup_ppc64_none_real +setup_ppc64_none_powerpc64: setup_ppc64_none_powerpc64_real +setup_ppc64_none_powerpc64_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='ppc64' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='powerpc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-powerpc64\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +setup_ppc64_none_real: +setup_ppc64_real: +setup_ppc64el: setup_ppc64el_none setup_ppc64el_real +setup_ppc64el_none: setup_ppc64el_none_powerpc64le setup_ppc64el_none_real +setup_ppc64el_none_powerpc64le: setup_ppc64el_none_powerpc64le_real +setup_ppc64el_none_powerpc64le_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='ppc64el' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='powerpc64le' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-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 DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-powerpc64le\""' KERNEL_ARCH='powerpc' LOCALVERSION='-powerpc64le' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-powerpc64le' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +setup_ppc64el_none_real: +setup_ppc64el_real: +setup_riscv64: setup_riscv64_none setup_riscv64_real +setup_riscv64_none: setup_riscv64_none_real setup_riscv64_none_riscv64 +setup_riscv64_none_real: +setup_riscv64_none_riscv64: setup_riscv64_none_riscv64_real +setup_riscv64_none_riscv64_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='riscv64' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='riscv64' IMAGE_FILE='arch/riscv/boot/Image' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-riscv64' KCONFIG='debian/config/config debian/config/riscv64/config' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-riscv64\""' KERNEL_ARCH='riscv' LOCALVERSION='-riscv64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-riscv64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +setup_riscv64_real: +setup_rt: setup_rt_real +setup_rt_real: +setup_s390: setup_s390_real +setup_s390_real: +setup_s390x: setup_s390x_none setup_s390x_real +setup_s390x_none: setup_s390x_none_real setup_s390x_none_s390x +setup_s390x_none_real: +setup_s390x_none_s390x: setup_s390x_none_s390x_real +setup_s390x_none_s390x_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='s390x' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='s390x' IMAGE_FILE='arch/s390/boot/bzImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-s390x' KCONFIG='debian/config/config debian/config/s390x/config' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-s390x\""' KERNEL_ARCH='s390' LOCALVERSION='-s390x' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-s390x' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VDSO='True' VERSION='5.10' +setup_s390x_real: +setup_sh3: setup_sh3_real +setup_sh3_real: +setup_sh4: setup_sh4_none setup_sh4_real +setup_sh4_none: setup_sh4_none_real setup_sh4_none_sh7751r setup_sh4_none_sh7785lcr +setup_sh4_none_real: +setup_sh4_none_sh7751r: setup_sh4_none_sh7751r_real +setup_sh4_none_sh7751r_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='sh4' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='sh7751r' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-sh7751r' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7751r' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-sh7751r\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7751r' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7751r' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +setup_sh4_none_sh7785lcr: setup_sh4_none_sh7785lcr_real +setup_sh4_none_sh7785lcr_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='sh4' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='sh7785lcr' IMAGE_FILE='arch/sh/boot/zImage' IMAGE_INSTALL_STEM='vmlinuz' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-sh7785lcr' KCONFIG='debian/config/config debian/config/sh4/config debian/config/sh4/config.sh7785lcr' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-sh7785lcr\""' KERNEL_ARCH='sh' LOCALVERSION='-sh7785lcr' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sh7785lcr' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +setup_sh4_real: +setup_sparc: setup_sparc_real +setup_sparc64: setup_sparc64_none setup_sparc64_real +setup_sparc64_none: setup_sparc64_none_real setup_sparc64_none_sparc64 setup_sparc64_none_sparc64-smp +setup_sparc64_none_real: +setup_sparc64_none_sparc64: setup_sparc64_none_sparc64_real +setup_sparc64_none_sparc64-smp: setup_sparc64_none_sparc64-smp_real +setup_sparc64_none_sparc64-smp_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='sparc64' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='sparc64-smp' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-sparc64-smp' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-smp' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-sparc64-smp\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64-smp' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64-smp' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +setup_sparc64_none_sparc64_real:: + $(MAKE) -f debian/rules.real setup-arch-flavour ABINAME='5.10.0-28' ARCH='sparc64' COMPILER='gcc-10' DEBUG='True' FEATURESET='none' FLAVOUR='sparc64' IMAGE_FILE='vmlinux' IMAGE_INSTALL_STEM='vmlinux' IMAGE_PACKAGE_NAME='linux-image-5.10.0-28-sparc64' KCONFIG='debian/config/config debian/config/kernelarch-sparc/config debian/config/kernelarch-sparc/config-up' KCONFIG_OPTIONS=' -o DEBUG_INFO=y -o "BUILD_SALT=\"5.10.0-28-sparc64\""' KERNEL_ARCH='sparc' LOCALVERSION='-sparc64' LOCALVERSION_HEADERS='' LOCALVERSION_IMAGE='-sparc64' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +setup_sparc64_real: +setup_sparc_real: +setup_x32: setup_x32_real +setup_x32_real: +source: source_none source_rt +source_none: source_none_real +source_none_real:: + $(MAKE) -f debian/rules.real source-featureset ABINAME='5.10.0-28' FEATURESET='none' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' +source_rt: source_rt_real +source_rt_real:: + $(MAKE) -f debian/rules.real source-featureset ABINAME='5.10.0-28' FEATURESET='rt' SOURCEVERSION='5.10.209-2' SOURCE_BASENAME='linux' SOURCE_SUFFIX='' UPSTREAMVERSION='5.10' VERSION='5.10' diff --git a/debian/rules.real b/debian/rules.real new file mode 100644 index 000000000..5cc1ccdd1 --- /dev/null +++ b/debian/rules.real @@ -0,0 +1,894 @@ +# +# This Makefile executes the unpack/build/binary targets for a single +# subarch, which is passed in the subarch variable. Empty subarch +# variable means that we are building for an arch without the subarch. +# Additionally, variables version, abiname and ltver are +# expected to be available (need to be exported from the parent process). +# +SHELL := bash -e +MAINTAINER := $(shell sed -ne 's,^Maintainer: .[^<]*<\([^>]*\)>,\1,p' debian/control) +DISTRIBUTION := $(shell dpkg-parsechangelog -SDistribution) +SOURCE_DATE := $(shell dpkg-parsechangelog -SDate) +SOURCE_DATE_UTC_ISO := $(shell date -u -d '$(SOURCE_DATE)' +%Y-%m-%d) + +DISTRIBUTOR := $(shell lsb_release -is 2>/dev/null) +ifeq ($(DISTRIBUTOR),) +DISTRIBUTOR := Debian +endif + +include debian/rules.defs + +ifdef ARCH + ifneq ($(DEB_HOST_ARCH),$(ARCH)) + $(error Attempting to build a $(ARCH) target but host architecture is $(DEB_HOST_ARCH). Use dpkg-architecture to override the host architecture) + endif +endif + +ifdef OVERRIDE_HOST_TYPE + CROSS_COMPILE := $(OVERRIDE_HOST_TYPE)- +else ifneq ($(DEB_BUILD_ARCH),$(DEB_HOST_ARCH)) + CROSS_COMPILE := $(DEB_HOST_GNU_TYPE)- +else + CROSS_COMPILE := +endif +export CROSS_COMPILE + +export DH_OPTIONS +export DEB_HOST_ARCH DEB_HOST_GNU_TYPE DEB_BUILD_ARCH +export DEB_BUILD_PATH = $(CURDIR) # for dpkg-buildflags +export LC_ALL = C.UTF-8 +undefine LANGUAGE +export LINK_DOC_PACKAGE + +stamp = [ -d $(dir $@) ] || mkdir $(dir $@); touch $@ + +setup_env := env -u ABINAME -u ARCH -u FEATURESET -u FLAVOUR -u VERSION -u LOCALVERSION +setup_env += DISTRIBUTION_OFFICIAL_BUILD=1 DISTRIBUTOR="$(DISTRIBUTOR)" DISTRIBUTION_VERSION="$(SOURCEVERSION)" KBUILD_BUILD_TIMESTAMP="$(SOURCE_DATE)" KBUILD_BUILD_VERSION_TIMESTAMP="$(DISTRIBUTOR) $(SOURCEVERSION) ($(SOURCE_DATE_UTC_ISO))" KBUILD_BUILD_USER="$(word 1,$(subst @, ,$(MAINTAINER)))" KBUILD_BUILD_HOST="$(word 2,$(subst @, ,$(MAINTAINER)))" +setup_env += KBUILD_VERBOSE=$(if $(filter terse,$(DEB_BUILD_OPTIONS)),0,1) + +MAKE_CLEAN = $(setup_env) $(MAKE) KCFLAGS=-fdebug-prefix-map=$(CURDIR)/= +MAKE_SELF := $(MAKE) -f debian/rules.real $(MAKEOVERRIDES) +MAKEOVERRIDES = + +# +# Targets +# + +packages_enabled := $(shell dh_listpackages) +define if_package +$(if $(filter $(1),$(packages_enabled)),$(2)) +endef + +build-arch-arch: \ + $(call if_package, linux-kbuild-$(VERSION), build-kbuild) \ + $(call if_package, linux-perf-$(VERSION), build-perf) \ + $(call if_package, linux-bootwrapper-$(ABINAME), build-bootwrapper) \ + $(call if_package, bpftool, build-bpftool) \ + $(call if_package, usbip, build-usbip) \ + $(call if_package, linux-cpupower, build-cpupower) \ + $(call if_package, liblockdep-dev, build-liblockdep) \ + $(call if_package, hyperv-daemons, build-hyperv-daemons) +binary-arch-arch: \ + $(call if_package, $(SOURCE_BASENAME)-config-$(VERSION), install-config_$(ARCH)) \ + $(call if_package, linux-libc-dev, install-libc-dev_$(ARCH)) \ + $(call if_package, linux-kbuild-$(VERSION), install-kbuild) \ + $(call if_package, linux-perf-$(VERSION), install-perf) \ + $(if $(filter-out x-$(VERSION),x$(SOURCE_SUFFIX)), \ + $(call if_package, linux-perf$(SOURCE_SUFFIX), install-perf-meta)) \ + $(call if_package, linux-bootwrapper-$(ABINAME), install-bootwrapper) \ + $(call if_package, bpftool, install-bpftool) \ + $(call if_package, usbip, install-usbip) \ + $(call if_package, linux-cpupower, install-cpupower) \ + $(call if_package, liblockdep-dev, install-liblockdep) \ + $(call if_package, hyperv-daemons, install-hyperv-daemons) + +build-indep: \ + $(call if_package, $(SOURCE_BASENAME)-doc-$(VERSION), $(STAMPS_DIR)/build-doc) +binary-indep: \ + $(call if_package, $(SOURCE_BASENAME)-doc-$(VERSION), install-doc) \ + $(call if_package, $(SOURCE_BASENAME)-source-$(VERSION), install-source) \ + $(if $(filter-out x-$(VERSION),x$(SOURCE_SUFFIX)), \ + $(call if_package, $(SOURCE_BASENAME)-doc$(SOURCE_SUFFIX), install-doc-meta) \ + $(call if_package, $(SOURCE_BASENAME)-source$(SOURCE_SUFFIX), install-source-meta)) \ + $(call if_package, $(SOURCE_BASENAME)-support-$(ABINAME), install-support) \ + $(call if_package, lockdep, install-lockdep) + +binary-arch-flavour: \ + $(call if_package, $(IMAGE_PACKAGE_NAME), install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR)) \ + $(call if_package, linux-image$(SOURCE_SUFFIX)$(LOCALVERSION), install-image-meta_$(ARCH)_$(FEATURESET)_$(FLAVOUR)) \ + $(call if_package, linux-image-$(ABINAME)$(LOCALVERSION)-dbg, install-image-dbg_$(ARCH)_$(FEATURESET)_$(FLAVOUR)) \ + $(call if_package, linux-image$(SOURCE_SUFFIX)$(LOCALVERSION)-dbg, install-image-dbg-meta_$(ARCH)_$(FEATURESET)_$(FLAVOUR)) \ + $(call if_package, linux-headers-$(ABINAME)$(LOCALVERSION), install-headers_$(ARCH)_$(FEATURESET)_$(FLAVOUR)) \ + $(call if_package, linux-headers$(SOURCE_SUFFIX)$(LOCALVERSION), install-headers-meta_$(ARCH)_$(FEATURESET)_$(FLAVOUR)) + +binary-indep-featureset: \ + $(call if_package, linux-headers-$(ABINAME)-common$(LOCALVERSION), install-common-headers_$(FEATURESET)) + +build-arch-flavour: \ + $(call if_package, $(IMAGE_PACKAGE_NAME), $(STAMPS_DIR)/build_$(ARCH)_$(FEATURESET)_$(FLAVOUR)) + +setup-arch-flavour: \ + $(call if_package, $(IMAGE_PACKAGE_NAME), $(STAMPS_DIR)/setup_$(ARCH)_$(FEATURESET)_$(FLAVOUR)) + +source-featureset: $(STAMPS_DIR)/source_$(FEATURESET) + +$(BUILD_DIR)/config.$(ARCH)_$(FEATURESET)_$(FLAVOUR): $(KCONFIG) + mkdir -p '$(dir $@)' + debian/bin/kconfig.py '$@' $(KCONFIG) $(KCONFIG_OPTIONS) + +define copy_source +mkdir -p '$(1)' +cp -al $(filter-out debian .pc .svk .svn .git, $(wildcard * .[^.]*)) '$(1)' +endef + +$(BUILD_DIR)/$(SOURCE_BASENAME)-source-$(UPSTREAMVERSION).tar.xz: DIR = $(BUILD_DIR)/$(SOURCE_BASENAME)-source-$(UPSTREAMVERSION) +$(BUILD_DIR)/$(SOURCE_BASENAME)-source-$(UPSTREAMVERSION).tar.xz: $(STAMPS_DIR)/source + rm -rf '$@' '$(DIR)' + $(call copy_source,$(DIR)) + chmod -R u+rw,go=rX '$(DIR)' + find '$(DIR)' -depth -newermt '$(SOURCE_DATE)' -print0 | \ + xargs -0r touch --no-dereference --date='$(SOURCE_DATE)' + cd '$(BUILD_DIR)'; \ + find '$(SOURCE_BASENAME)-source-$(UPSTREAMVERSION)' \ + -name '*.pyc' -prune -o \ + -print0 | \ + sort -z | \ + tar --owner=root --group=root --numeric-owner \ + --no-recursion --null -T - -caf '$(SOURCE_BASENAME)-source-$(UPSTREAMVERSION).tar.xz' + rm -rf '$(DIR)' + +$(BUILD_DIR)/linux-patch-$(UPSTREAMVERSION)-%.patch.xz: $(STAMPS_DIR)/source_none $(STAMPS_DIR)/source_% + set -o pipefail; \ + (cd '$(BUILD_DIR)'; \ + set +e; \ + diff -urN -p -x debian -x .pc -x .svk -x .svn -x .git -x '*.pyc' source_none source_$*; \ + test $$? -eq 1) | \ + filterdiff --remove-timestamps --strip=1 --addoldprefix=a/ --addnewprefix=b/ | \ + xz -c >$@ || \ + (rm -f $@; exit 1) + +$(STAMPS_DIR)/source: + test -d .pc + set +e; QUILT_PC=.pc quilt unapplied --quiltrc - >/dev/null && echo 'Patch series not fully applied'; test $$? -eq 1 + @$(stamp) + +$(STAMPS_DIR)/source_%: SOURCE_DIR=$(BUILD_DIR)/source +$(STAMPS_DIR)/source_%: DIR=$(BUILD_DIR)/source_$* +$(STAMPS_DIR)/source_%: $(STAMPS_DIR)/source + mkdir -p '$(BUILD_DIR)' + rm -rf '$(DIR)' + $(call copy_source,$(DIR)) + cd '$(DIR)' && QUILT_PATCHES='$(CURDIR)/debian/patches-$*' QUILT_PC=.pc quilt push --quiltrc - -a -q --fuzz=0 + @$(stamp) +.PRECIOUS: $(STAMPS_DIR)/source_% + +$(STAMPS_DIR)/source_none: DIR=$(BUILD_DIR)/source_none +$(STAMPS_DIR)/source_none: $(STAMPS_DIR)/source + mkdir -p '$(BUILD_DIR)' + rm -f '$(DIR)' + ln -s '$(CURDIR)' '$(DIR)' + @$(stamp) + +$(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): $(STAMPS_DIR)/source_$(FEATURESET) $(BUILD_DIR)/config.$(ARCH)_$(FEATURESET)_$(FLAVOUR) + rm -rf '$(DIR)' + mkdir '$(DIR)' + cp '$(CONFIG)' '$(DIR)/.config' + echo 'override ARCH = $(KERNEL_ARCH)' >> '$(DIR)/.kernelvariables' + echo 'override KERNELRELEASE = $(ABINAME)$(LOCALVERSION_IMAGE)' >> '$(DIR)/.kernelvariables' + echo 'CCACHE = ccache' >> '$(DIR)/.kernelvariables' +ifeq (./,$(dir $(COMPILER))) + echo 'CC = $$(if $$(DEBIAN_KERNEL_USE_CCACHE),$$(CCACHE)) $$(CROSS_COMPILE)$(COMPILER)' >> '$(DIR)/.kernelvariables' +else +# To allow for cross-compiles, we want to split up the configured +# compiler filename and prepend the directory to $PATH. For a native +# compile, so long as the configured compiler is installed it should +# always be found first. +# However, $PATH changes don't work consistently in make (bug #895835). +# Instead we do the path lookup here and generate a new absolute +# 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? +ifdef OVERRIDE_HOST_TYPE + echo 'override CROSS_COMPILE = $(OVERRIDE_HOST_TYPE)-' >> '$(DIR)/.kernelvariables' +else + echo 'ifneq ($$(DEB_BUILD_ARCH),$$(DEB_HOST_ARCH))' >> '$(DIR)/.kernelvariables' + echo 'override CROSS_COMPILE = $$(DEB_HOST_GNU_TYPE)-' >> '$(DIR)/.kernelvariables' + echo 'endif' >> '$(DIR)/.kernelvariables' +endif +ifdef KCFLAGS + echo 'KCFLAGS += $(KCFLAGS)' >> '$(DIR)/.kernelvariables' +endif + +$(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): 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)' + debian/bin/buildcheck.py $(DIR) $(ARCH) $(FEATURESET) $(FLAVOUR) + @$(stamp) + +$(STAMPS_DIR)/build-doc: DIR=$(BUILD_DIR)/build-doc +# sphinx commands in /usr/bin are managed by the alternatives system. +# Change $PATH to make sure we consistently use the Python 3 version. +$(STAMPS_DIR)/build-doc: PATH:=/usr/share/sphinx/scripts/python3:$(PATH) +$(STAMPS_DIR)/build-doc: $(STAMPS_DIR)/source +ifeq (,$(filter nodoc,$(DEB_BUILD_PROFILES))) + mkdir -p '$(BUILD_DIR)' + rm -rf '$(DIR)' + $(call copy_source,$(DIR)) + +$(MAKE_CLEAN) -C '$(DIR)' PYTHON=python3 xmldocs + +$(MAKE_CLEAN) -C '$(DIR)' PYTHON=python3 htmldocs +endif + @$(stamp) + +install-base: +ifeq (,$(filter nodoc,$(DEB_BUILD_PROFILES))) + dh_installdocs $(if $(LINK_DOC_PACKAGE),--link-doc=$(LINK_DOC_PACKAGE)) +endif + dh_installchangelogs + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol -- $(GENCONTROL_ARGS) + dh_md5sums + dh_builddeb -- -Zxz $(BUILDDEB_ARGS) + +install-dummy: + dh_testdir + dh_testroot + dh_prep + +$(MAKE_SELF) install-base + +install-doc: PACKAGE_NAME = $(SOURCE_BASENAME)-doc-$(VERSION) +install-doc: DIR = $(BUILD_DIR)/build-doc +install-doc: PACKAGE_DIR = debian/$(PACKAGE_NAME) +install-doc: OUT_DIR = $(PACKAGE_DIR)/usr/share/doc/$(PACKAGE_NAME) +install-doc: DH_OPTIONS = -p$(PACKAGE_NAME) +install-doc: $(STAMPS_DIR)/build-doc + dh_prep +ifeq (,$(filter nodoc,$(DEB_BUILD_PROFILES))) + mkdir -p $(OUT_DIR) + set -o pipefail; \ + find CREDITS MAINTAINERS README Documentation \ + -name '.gitignore' -prune -o -name DocBook -prune -o \ + -path Documentation/media -prune -o \ + -path Documentation/sphinx -prune -o \ + -name 'Makefile*' -prune -o \ + -print | \ + cpio -pd --preserve-modification-time '$(CURDIR)/$(OUT_DIR)' + set -o pipefail; \ + cd $(DIR)/Documentation/output; \ + find * -name '*.rst' -prune -o -name objects.inv -prune \ + -o -name xml -prune -o -print | \ + cpio -pd --preserve-modification-time '$(CURDIR)/$(OUT_DIR)/html' + find $(OUT_DIR)/Documentation -type f | xargs gzip -9n +# Fix up symlinks to gzipped docs + cd $(OUT_DIR)/Documentation; \ + find -type l | while read link; do \ + dest="$$(readlink -f "$$link")"; \ + if [ -f "$$dest.gz" ]; then \ + rm -f "$$link"; \ + ln -sr "$$dest.gz" "$$link.gz"; \ + fi; \ + done +endif + +$(MAKE_SELF) install-base + +install-doc-meta: PACKAGE_NAME = $(SOURCE_BASENAME)-doc$(SOURCE_SUFFIX) +install-doc-meta: PACKAGE_DIR = debian/$(PACKAGE_NAME) +install-doc-meta: DH_OPTIONS = -p$(PACKAGE_NAME) +install-doc-meta: LINK_DOC_PACKAGE = $(SOURCE_BASENAME)-doc-$(VERSION) +install-doc-meta: + dh_testdir + dh_prep + +$(MAKE_SELF) install-base + +install-common-headers_$(FEATURESET): PACKAGE_NAME = linux-headers-$(ABINAME)-common$(LOCALVERSION) +install-common-headers_$(FEATURESET): PACKAGE_NAME_KBUILD = linux-kbuild-$(VERSION) +install-common-headers_$(FEATURESET): DH_OPTIONS = -p$(PACKAGE_NAME) +install-common-headers_$(FEATURESET): BASE_DIR = /usr/src/$(PACKAGE_NAME) +install-common-headers_$(FEATURESET): SOURCE_DIR = $(BUILD_DIR)/source_$(FEATURESET) +install-common-headers_$(FEATURESET): DIR = debian/$(PACKAGE_NAME)/$(BASE_DIR) +install-common-headers_$(FEATURESET): $(STAMPS_DIR)/source_$(FEATURESET) + dh_testdir + dh_testroot + dh_prep + + set -o pipefail; \ + cd $(SOURCE_DIR); \ + ( \ + echo Makefile; \ + for arch in $(ALL_KERNEL_ARCHES); do \ + find arch/$$arch -maxdepth 1 -name 'Makefile*' -print; \ + find arch/$$arch \( -name 'Kbuild.platforms' -o -name 'Platform' \) -print; \ + find $$(find arch/$$arch \( -name include -o -name scripts \) -type d -print) -print; \ + done; \ + find include -print; \ + ) \ + | \ + cpio -pd --preserve-modification-time '$(CURDIR)/$(DIR)' + + dh_link /usr/lib/$(PACKAGE_NAME_KBUILD)/scripts $(BASE_DIR)/scripts + dh_link /usr/lib/$(PACKAGE_NAME_KBUILD)/tools $(BASE_DIR)/tools + + +$(MAKE_SELF) install-base + +install-headers_$(ARCH)_$(FEATURESET)_$(FLAVOUR): REAL_VERSION = $(ABINAME)$(LOCALVERSION) +install-headers_$(ARCH)_$(FEATURESET)_$(FLAVOUR): PACKAGE_NAME = linux-headers-$(REAL_VERSION) +install-headers_$(ARCH)_$(FEATURESET)_$(FLAVOUR): PACKAGE_NAME_COMMON = linux-headers-$(ABINAME)-common$(LOCALVERSION_HEADERS) +install-headers_$(ARCH)_$(FEATURESET)_$(FLAVOUR): PACKAGE_NAME_KBUILD = linux-kbuild-$(VERSION) +install-headers_$(ARCH)_$(FEATURESET)_$(FLAVOUR): DH_OPTIONS = -p$(PACKAGE_NAME) +install-headers_$(ARCH)_$(FEATURESET)_$(FLAVOUR): BASE_DIR = /usr/src/$(PACKAGE_NAME) +install-headers_$(ARCH)_$(FEATURESET)_$(FLAVOUR): BASE_DIR_COMMON = /usr/src/$(PACKAGE_NAME_COMMON) +install-headers_$(ARCH)_$(FEATURESET)_$(FLAVOUR): SOURCE_DIR = $(BUILD_DIR)/build_$(ARCH)_$(FEATURESET)_$(FLAVOUR) +install-headers_$(ARCH)_$(FEATURESET)_$(FLAVOUR): REF_DIR = $(BUILD_DIR)/source_$(FEATURESET) +install-headers_$(ARCH)_$(FEATURESET)_$(FLAVOUR): PACKAGE_DIR = debian/$(PACKAGE_NAME) +install-headers_$(ARCH)_$(FEATURESET)_$(FLAVOUR): DIR = $(PACKAGE_DIR)/$(BASE_DIR) +install-headers_$(ARCH)_$(FEATURESET)_$(FLAVOUR): $(STAMPS_DIR)/build_$(ARCH)_$(FEATURESET)_$(FLAVOUR) + dh_testdir + dh_testroot + dh_prep + + mkdir -p $(DIR)/arch/$(KERNEL_ARCH)/kernel + cp -a $(SOURCE_DIR)/{.config,.kernel*,Module.symvers,include} $(DIR) + cp -a $(SOURCE_DIR)/arch/$(KERNEL_ARCH)/include $(DIR)/arch/$(KERNEL_ARCH) + find $(DIR) -name '*.cmd' -delete + + if [ -f $(SOURCE_DIR)/arch/$(KERNEL_ARCH)/lib/crtsavres.o ]; then \ + mkdir $(DIR)/arch/$(KERNEL_ARCH)/lib; \ + cp -a $(SOURCE_DIR)/arch/$(KERNEL_ARCH)/lib/crtsavres.o $(DIR)/arch/$(KERNEL_ARCH)/lib; \ + fi + + cp -a $(SOURCE_DIR)/scripts/module.lds $(DIR)/arch/$(KERNEL_ARCH) + + @echo 'include $(BASE_DIR_COMMON)/Makefile' >> $(DIR)/Makefile + + dh_link /usr/lib/$(PACKAGE_NAME_KBUILD)/scripts $(BASE_DIR)/scripts + dh_link /usr/lib/$(PACKAGE_NAME_KBUILD)/tools $(BASE_DIR)/tools + + mkdir -p $(PACKAGE_DIR)/lib/modules/$(REAL_VERSION) + ln -s /usr/src/$(PACKAGE_NAME) $(PACKAGE_DIR)/lib/modules/$(REAL_VERSION)/build + ln -s /usr/src/$(PACKAGE_NAME_COMMON) $(PACKAGE_DIR)/lib/modules/$(REAL_VERSION)/source + + +$(MAKE_SELF) install-base + +install-headers-meta_$(ARCH)_$(FEATURESET)_$(FLAVOUR): PACKAGE_NAME = linux-headers$(SOURCE_SUFFIX)$(LOCALVERSION) +install-headers-meta_$(ARCH)_$(FEATURESET)_$(FLAVOUR): DH_OPTIONS = -p$(PACKAGE_NAME) +install-headers-meta_$(ARCH)_$(FEATURESET)_$(FLAVOUR): LINK_DOC_PACKAGE = linux-headers-$(ABINAME)$(LOCALVERSION) +install-headers-meta_$(ARCH)_$(FEATURESET)_$(FLAVOUR): + dh_testdir + dh_prep + +$(MAKE_SELF) install-base + +install-libc-dev_$(ARCH): PACKAGE_NAME = linux-libc-dev +install-libc-dev_$(ARCH): DH_OPTIONS = -p$(PACKAGE_NAME) +install-libc-dev_$(ARCH): DIR = $(BUILD_DIR)/build-libc-dev +install-libc-dev_$(ARCH): OUT_DIR = debian/$(PACKAGE_NAME)/usr +install-libc-dev_$(ARCH): + dh_testdir + dh_testroot + dh_prep + rm -rf '$(DIR)' + mkdir -p $(DIR) + +$(MAKE_CLEAN) O='$(CURDIR)/$(DIR)' headers_check ARCH=$(KERNEL_ARCH) + +$(MAKE_CLEAN) O='$(CURDIR)/$(DIR)' headers_install ARCH=$(KERNEL_ARCH) INSTALL_HDR_PATH='$(CURDIR)'/$(OUT_DIR) + + rm -rf $(OUT_DIR)/include/drm $(OUT_DIR)/include/scsi + find $(OUT_DIR)/include \( -name .install -o -name ..install.cmd \) -execdir rm {} + + +# Move include/asm to arch-specific directory + mkdir -p $(OUT_DIR)/include/$(DEB_HOST_MULTIARCH) + mv $(OUT_DIR)/include/asm $(OUT_DIR)/include/$(DEB_HOST_MULTIARCH)/ + test ! -d $(OUT_DIR)/include/arch || \ + mv $(OUT_DIR)/include/arch $(OUT_DIR)/include/$(DEB_HOST_MULTIARCH)/ + + +$(MAKE_SELF) install-base + +install-support: PACKAGE_NAME = $(SOURCE_BASENAME)-support-$(ABINAME) +install-support: DH_OPTIONS = -p$(PACKAGE_NAME) +install-support: PACKAGE_DIR = debian/$(PACKAGE_NAME) +install-support: PACKAGE_ROOT = /usr/share/$(PACKAGE_NAME) +install-support: + dh_testdir + dh_testroot + dh_prep + dh_installdirs $(PACKAGE_ROOT)/lib/python/debian_linux $(PACKAGE_ROOT)/modules + cp debian/config.defines.dump $(PACKAGE_DIR)$(PACKAGE_ROOT) + cp -R debian/installer $(PACKAGE_DIR)$(PACKAGE_ROOT)/installer + cp debian/lib/python/debian_linux/*.py $(PACKAGE_DIR)$(PACKAGE_ROOT)/lib/python/debian_linux + dh_python3 + dh_link $(PACKAGE_ROOT) /usr/src/$(PACKAGE_NAME) + +$(MAKE_SELF) install-base + +install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR): REAL_VERSION = $(ABINAME)$(LOCALVERSION) +install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR): PACKAGE_NAME = $(IMAGE_PACKAGE_NAME) +install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR): PACKAGE_DIR = debian/$(PACKAGE_NAME) +install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR): INSTALL_DIR = $(PACKAGE_DIR)/boot +install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR): DIR = $(BUILD_DIR)/build_$(ARCH)_$(FEATURESET)_$(FLAVOUR) +install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR): DH_OPTIONS = -p$(PACKAGE_NAME) +install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR): $(STAMPS_DIR)/build_$(ARCH)_$(FEATURESET)_$(FLAVOUR) + +install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR): + dh_testdir + dh_testroot + dh_prep + dh_installdirs 'boot' +ifeq ($(IMAGE_FILE),vmlinux) +# This is the unprocessed ELF image, so we need to strip debug symbols + $(CROSS_COMPILE)objcopy --strip-debug '$(DIR)/vmlinux' $(INSTALL_DIR)/$(IMAGE_INSTALL_STEM)-$(REAL_VERSION) +else + install -m644 '$(DIR)/$(IMAGE_FILE)' $(INSTALL_DIR)/$(IMAGE_INSTALL_STEM)-$(REAL_VERSION) +endif + +$(MAKE_SELF) \ + install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_dt \ + DIR='$(DIR)' PACKAGE_DIR='$(PACKAGE_DIR)' REAL_VERSION='$(REAL_VERSION)' + +$(MAKE_CLEAN) -C $(DIR) modules_install DEPMOD='$(CURDIR)/debian/bin/no-depmod' INSTALL_MOD_PATH='$(CURDIR)'/$(PACKAGE_DIR) INSTALL_MOD_STRIP=1 +ifeq ($(DEBUG),True) + set -o pipefail; \ + find $(PACKAGE_DIR) -name '*.ko' | sed 's|$(PACKAGE_DIR)/lib/modules/$(REAL_VERSION)/kernel/||' | while read module ; do \ + $(CROSS_COMPILE)objcopy --add-gnu-debuglink=$(DIR)/$$module $(PACKAGE_DIR)/lib/modules/$(REAL_VERSION)/kernel/$$module || exit; \ + done +# stripping the modules removes signatures as well - if automated signing is enabled with +# an ephemeral key, re-do the sign step + +if grep -qs '^CONFIG_MODULE_SIG_ALL=y' $(DIR)/.config; then \ + $(MAKE_CLEAN) -C $(DIR) modules_sign INSTALL_MOD_PATH='$(CURDIR)'/$(PACKAGE_DIR); \ + fi +endif + cp $(DIR)/.config $(PACKAGE_DIR)/boot/config-$(REAL_VERSION) + echo "ffffffffffffffff B The real System.map is in the linux-image-<version>-dbg package" \ + > $(PACKAGE_DIR)/boot/System.map-$(REAL_VERSION) + rm -f $(PACKAGE_DIR)/lib/modules/$(REAL_VERSION)/build + rm -f $(PACKAGE_DIR)/lib/modules/$(REAL_VERSION)/source + rm $(PACKAGE_DIR)/lib/firmware -rf + +$(MAKE_SELF) \ + install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_bug \ + PACKAGE_DIR='$(PACKAGE_DIR)' PACKAGE_NAME='$(PACKAGE_NAME)' REAL_VERSION='$(REAL_VERSION)' + dh_strip --no-automatic-dbgsym -Xvmlinux -Xvmlinuz + ln -sf linux-image.NEWS debian/$(PACKAGE_NAME).NEWS + +$(MAKE_SELF) install-base + +install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_dt: DT_INSTALL_DIR = $(PACKAGE_DIR)/usr/lib/linux-image-$(REAL_VERSION) +install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_dt: +ifneq ($(filter arm64 armel armhf mipsr6 mipsr6el mips64r6 mips64r6el riscv64,$(ARCH)),) + +$(MAKE_CLEAN) -C $(DIR) dtbs + +$(MAKE_CLEAN) -C $(DIR) dtbs_install INSTALL_DTBS_PATH=$(CURDIR)/$(DT_INSTALL_DIR) +endif +ifneq ($(filter powerpc ppc64,$(ARCH)),) +# Install wrapper code and DT source, but not the wrapper script or +# the executables it calls. Kbuild will always build these executable +# as native code, which is wrong for a cross-built package. Install +# symlinks to the versions in the linux-bootwrapper package instead. + rm -rf '$(BUILD_DIR)/bootwrapper_$(ARCH)_$(FEATURESET)_$(FLAVOUR)' + +$(MAKE_CLEAN) -C '$(DIR)' bootwrapper_install \ + WRAPPER_OBJDIR='$(CURDIR)/$(DT_INSTALL_DIR)' \ + WRAPPER_DTSDIR='$(CURDIR)/$(DT_INSTALL_DIR)/dts' \ + WRAPPER_BINDIR='$(CURDIR)/$(BUILD_DIR)/bootwrapper_$(ARCH)_$(FEATURESET)_$(FLAVOUR)' + for prog in '$(BUILD_DIR)/bootwrapper_$(ARCH)_$(FEATURESET)_$(FLAVOUR)'/*; do \ + prog="$$(basename $$prog)"; \ + ln -s ../linux-bootwrapper-$(ABINAME)/$$prog \ + '$(DT_INSTALL_DIR)'/$$prog; \ + done +endif + +install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_bug: + dh_installdirs usr/share/bug/$(PACKAGE_NAME) + dh_install debian/templates/image.bug/* usr/share/bug/$(PACKAGE_NAME) + chmod 755 $(PACKAGE_DIR)/usr/share/bug/$(PACKAGE_NAME)/script + printf "RELEASE='$(REAL_VERSION)'\nDISTRIBUTOR='$(DISTRIBUTOR)'\nSOURCEVERSION='$(SOURCEVERSION)'\nPACKAGE_NAME='$(PACKAGE_NAME)'\nPACKAGE_VERSION='$(SOURCEVERSION)'" > $(PACKAGE_DIR)/usr/share/bug/$(PACKAGE_NAME)/info + +install-image-meta_$(ARCH)_$(FEATURESET)_$(FLAVOUR): PACKAGE_NAME = linux-image$(SOURCE_SUFFIX)$(LOCALVERSION) +install-image-meta_$(ARCH)_$(FEATURESET)_$(FLAVOUR): DH_OPTIONS = -p$(PACKAGE_NAME) +install-image-meta_$(ARCH)_$(FEATURESET)_$(FLAVOUR): LINK_DOC_PACKAGE = linux-image-$(ABINAME)$(LOCALVERSION) +install-image-meta_$(ARCH)_$(FEATURESET)_$(FLAVOUR): + dh_testdir + dh_prep + dh_bugfiles + +$(MAKE_SELF) install-base + +install-image-dbg_$(ARCH)_$(FEATURESET)_$(FLAVOUR): REAL_VERSION = $(ABINAME)$(LOCALVERSION) +install-image-dbg_$(ARCH)_$(FEATURESET)_$(FLAVOUR): PACKAGE_NAME = linux-image-$(REAL_VERSION)-dbg +install-image-dbg_$(ARCH)_$(FEATURESET)_$(FLAVOUR): PACKAGE_DIR = debian/$(PACKAGE_NAME) +install-image-dbg_$(ARCH)_$(FEATURESET)_$(FLAVOUR): DEBUG_DIR = $(PACKAGE_DIR)/usr/lib/debug +install-image-dbg_$(ARCH)_$(FEATURESET)_$(FLAVOUR): DIR = $(BUILD_DIR)/build_$(ARCH)_$(FEATURESET)_$(FLAVOUR) +install-image-dbg_$(ARCH)_$(FEATURESET)_$(FLAVOUR): DH_OPTIONS = -p$(PACKAGE_NAME) +install-image-dbg_$(ARCH)_$(FEATURESET)_$(FLAVOUR): $(STAMPS_DIR)/build_$(ARCH)_$(FEATURESET)_$(FLAVOUR) + dh_testdir + dh_testroot + dh_prep + dh_installdirs usr/lib/debug usr/lib/debug/boot usr/share/lintian/overrides/ + dh_lintian + install -m644 $(DIR)/vmlinux $(DEBUG_DIR)/boot/vmlinux-$(REAL_VERSION) + install -m644 $(DIR)/System.map $(DEBUG_DIR)/boot/System.map-$(REAL_VERSION) + +$(MAKE_CLEAN) -C $(DIR) modules_install DEPMOD='$(CURDIR)/debian/bin/no-depmod' INSTALL_MOD_PATH='$(CURDIR)'/$(DEBUG_DIR) + find $(DEBUG_DIR)/lib/modules/$(REAL_VERSION)/ -mindepth 1 -maxdepth 1 \! -name kernel -exec rm {} \+ + rm $(DEBUG_DIR)/lib/firmware -rf +ifeq ($(VDSO),True) + +$(MAKE_CLEAN) -C $(DIR) vdso_install INSTALL_MOD_PATH='$(CURDIR)'/$(DEBUG_DIR) +# Create .build-id links. Some architectures already do so, but in the +# wrong place, so delete those first. + rm -rf $(DEBUG_DIR)/lib/modules/$(REAL_VERSION)/vdso/.build-id + find $(DEBUG_DIR)/lib/modules/$(REAL_VERSION)/vdso/ -type f | while read vdso; do \ + if buildid="$$(readelf -n "$$vdso" | sed -rne 's/^\s+Build ID: (.*)$$/\1/p')" && [ "$$buildid" ]; then \ + mkdir -p "$(DEBUG_DIR)/.build-id/$${buildid:0:2}"; \ + ln -s -r "$$vdso" "$(DEBUG_DIR)/.build-id/$${buildid:0:2}/$${buildid:2}.debug"; \ + fi; \ + done +endif +# Add symlinks to vmlinux from the locations expected by kdump-tools, +# systemtap and others + ln -s boot/vmlinux-$(REAL_VERSION) $(DEBUG_DIR)/ + mkdir -p $(DEBUG_DIR)/lib/modules/$(REAL_VERSION) + ln -s ../../../boot/vmlinux-$(REAL_VERSION) $(DEBUG_DIR)/lib/modules/$(REAL_VERSION)/vmlinux + +$(MAKE_SELF) install-base + +install-image-dbg-meta_$(ARCH)_$(FEATURESET)_$(FLAVOUR): PACKAGE_NAME = linux-image$(SOURCE_SUFFIX)$(LOCALVERSION)-dbg +install-image-dbg-meta_$(ARCH)_$(FEATURESET)_$(FLAVOUR): DH_OPTIONS = -p$(PACKAGE_NAME) +install-image-dbg-meta_$(ARCH)_$(FEATURESET)_$(FLAVOUR): LINK_DOC_PACKAGE = linux-image-$(ABINAME)$(LOCALVERSION)-dbg +install-image-dbg-meta_$(ARCH)_$(FEATURESET)_$(FLAVOUR): + dh_testdir + dh_prep + dh_lintian + +$(MAKE_SELF) install-base + +install-signed-template_$(ARCH): PACKAGE_NAME = linux-image-$(ARCH)-signed-template +install-signed-template_$(ARCH): DH_OPTIONS = -p$(PACKAGE_NAME) +install-signed-template_$(ARCH): PACKAGE_DIR = debian/$(PACKAGE_NAME) +install-signed-template_$(ARCH): CODE_SIGNING_DIR = $(PACKAGE_DIR)/usr/share/code-signing/$(PACKAGE_NAME) +install-signed-template_$(ARCH): +ifneq (,$(filter linux-image-$(ARCH)-signed-template,$(packages_enabled))) + dh_testdir + dh_testroot + dh_prep + rm -rf $(CODE_SIGNING_DIR) + mkdir -p $(CODE_SIGNING_DIR) + PYTHONHASHSEED=0 debian/bin/gencontrol_signed.py $(ARCH) + cp -R debian/copyright \ + debian/linux-image.NEWS \ + debian/signing_templates/README.source \ + debian/signing_templates/rules \ + debian/signing_templates/rules.real \ + debian/signing_templates/source \ + $(CODE_SIGNING_DIR)/source-template/debian/ + +$(MAKE_SELF) install-base +endif # enabled + +install-udeb_$(ARCH): export KW_DEFCONFIG_DIR=debian/installer +install-udeb_$(ARCH): export KW_CONFIG_DIR=debian/installer +install-udeb_$(ARCH): DH_OPTIONS=$(PACKAGE_NAMES:%=-p%) +ifeq ($(UDEB_UNSIGNED_TEST_BUILD),True) +install-udeb_$(ARCH): export DEB_BUILD_PROFILES+=pkg.linux.udeb-unsigned-test-build +endif +install-udeb_$(ARCH): +# Logically we should check for %-di here, but that would break test builds +ifeq (,$(filter noudeb,$(DEB_BUILD_PROFILES))) +ifneq (,$(filter linux-image-%,$(packages_enabled))) + dh_testdir + dh_prep + kernel-wedge install-files $(ABINAME) + kernel-wedge check $(PACKAGE_NAMES) + dh_fixperms +ifeq ($(UDEB_UNSIGNED_TEST_BUILD),False) + dh_gencontrol + dh_builddeb +endif +endif # enabled +endif # noudeb + +install-source: PACKAGE_NAME = $(SOURCE_BASENAME)-source-$(VERSION) +install-source: DH_OPTIONS = -p$(PACKAGE_NAME) +install-source: $(BUILD_DIR)/$(SOURCE_BASENAME)-source-$(UPSTREAMVERSION).tar.xz $(foreach FEATURESET,$(filter-out none,$(ALL_FEATURESETS)),$(BUILD_DIR)/linux-patch-$(UPSTREAMVERSION)-$(FEATURESET).patch.xz) + dh_testdir + dh_testroot + dh_install $^ /usr/src +# We don't want to recompress, but -Znone is not compatible with older +# tools and is currently rejected by dak. -Zgzip -z0 (uncompressed +# data.tar.gz!) makes dpkg and dak happy, but is incomaptible with +# other things (#725492). So use the fastest real gzip mode. + +$(MAKE_SELF) install-base BUILDDEB_ARGS='-Zgzip -z1' + +install-source-meta: PACKAGE_NAME = $(SOURCE_BASENAME)-source$(SOURCE_SUFFIX) +install-source-meta: DH_OPTIONS = -p$(PACKAGE_NAME) +install-source-meta: LINK_DOC_PACKAGE = $(SOURCE_BASENAME)-source-$(VERSION) +install-source-meta: + dh_testdir + dh_prep + +$(MAKE_SELF) install-base + +install-config_$(ARCH): PACKAGE_NAME = $(SOURCE_BASENAME)-config-$(VERSION) +install-config_$(ARCH): DH_OPTIONS = -p$(PACKAGE_NAME) +install-config_$(ARCH): TRIPLETS = $(subst $(BUILD_DIR)/build_,,$(wildcard $(BUILD_DIR)/build_$(ARCH)_*_*)) +install-config_$(ARCH): + dh_testdir + dh_testroot + dh_installdirs /usr/src/linux-config-$(UPSTREAMVERSION) +# Fix the module signing configuration to work for custom kernels. Also delete +# CONFIG_BUILD_SALT which makes no sense for custom kernels. + for triplet in $(TRIPLETS); do \ + sed '/CONFIG_\(MODULE_SIG_\(ALL\|KEY\)\|SYSTEM_TRUSTED_KEYS\|BUILD_SALT\)[ =]/d' $(BUILD_DIR)/build_$$triplet/.config | xz -c >debian/$(PACKAGE_NAME)/usr/src/linux-config-$(UPSTREAMVERSION)/config.$$triplet.xz; \ + done + +$(MAKE_SELF) install-base + +define make-tools ++mkdir -p $(BUILD_DIR)/build-tools/$(1) && $(MAKE_CLEAN) -C $(BUILD_DIR)/build-tools/$(1) -f $(CURDIR)/debian/rules.d/$(1)/Makefile top_srcdir=$(CURDIR) top_rulesdir=$(CURDIR)/debian/rules.d OUTDIR=$(1) VERSION=$(VERSION) KERNEL_ARCH=$(KERNEL_ARCH) +endef + +$(STAMPS_DIR)/build-tools-headers: + mkdir -p $(BUILD_DIR)/build-tools/headers-tools + $(MAKE) ARCH=$(KERNEL_ARCH) O=$(BUILD_DIR)/build-tools/headers-tools \ + INSTALL_HDR_PATH=$(CURDIR)/$(BUILD_DIR)/build-tools \ + headers_install + @$(stamp) + +build-bpftool: $(STAMPS_DIR)/build-tools-headers + $(call make-tools,tools/bpf/bpftool) + +install-bpftool: PACKAGE_NAME = bpftool +install-bpftool: DH_OPTIONS = -p$(PACKAGE_NAME) +install-bpftool: DIR = $(CURDIR)/debian/$(PACKAGE_NAME) +install-bpftool: build-bpftool + dh_testdir + dh_testroot + dh_prep + $(call make-tools,tools/bpf/bpftool) install DESTDIR=$(DIR) + dh_installchangelogs +ifeq (,$(filter nodoc,$(DEB_BUILD_PROFILES))) + dh_installdocs +endif + dh_lintian + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +build-kbuild: $(STAMPS_DIR)/build-tools-headers + $(call make-tools,scripts) + $(call make-tools,tools/objtool) + +install-kbuild: PACKAGE_NAME = linux-kbuild-$(VERSION) +install-kbuild: DH_OPTIONS = -p$(PACKAGE_NAME) +install-kbuild: PREFIX_DIR = /usr/lib/$(PACKAGE_NAME) +install-kbuild: DIR = $(CURDIR)/debian/$(PACKAGE_NAME) +install-kbuild: build-kbuild + dh_testdir + dh_testroot + dh_prep + $(call make-tools,scripts) install DESTDIR=$(DIR) prefix=$(PREFIX_DIR) + $(call make-tools,tools/objtool) install DESTDIR=$(DIR) prefix=$(PREFIX_DIR) + dh_link $(PREFIX_DIR) /usr/src/$(PACKAGE_NAME) + dh_installchangelogs +ifeq (,$(filter nodoc,$(DEB_BUILD_PROFILES))) + dh_installdocs +endif + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +build-cpupower: $(STAMPS_DIR)/build-tools-headers + $(call make-tools,tools/power/cpupower) +ifneq ($(filter i386 amd64 x32,$(DEB_HOST_ARCH)),) + $(call make-tools,tools/power/x86) +endif + +install-cpupower: DH_OPTIONS = -plinux-cpupower $(addprefix -p,$(filter libcpupower%,$(packages_enabled))) +install-cpupower: DIR = $(CURDIR)/debian/cpupower-tmp +install-cpupower: build-cpupower + dh_testdir + dh_testroot + dh_prep + $(call make-tools,tools/power/cpupower) install DESTDIR=$(DIR) +ifneq ($(filter i386 amd64 x32,$(DEB_HOST_ARCH)),) + $(call make-tools,tools/power/x86) install DESTDIR=$(DIR) + echo >> debian/linux-cpupower.substvars 'cpupower:Arch-Description='\ +'The turbostat command reports topology, frequency, idle power-state$${Newline}'\ +'statistics, temperature and power consumption information as provided$${Newline}'\ +'by the CPU.$${Newline}'\ +'$${Newline}'\ +'The x86_energy_perf_policy command sets a general policy on some Intel$${Newline}'\ +'CPU models for the relative importance of performance versus energy$${Newline}'\ +'savings.' +endif + dh_install --sourcedir=$(DIR) + dh_installchangelogs +ifeq (,$(filter nodoc,$(DEB_BUILD_PROFILES))) + dh_installdocs + dh_installman +endif + dh_strip + dh_compress + dh_fixperms + dh_makeshlibs + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +build-perf: $(STAMPS_DIR)/build-tools-headers + $(call make-tools,tools/perf) + +install-perf: PACKAGE_NAME = linux-perf-$(VERSION) +install-perf: DH_OPTIONS = -p$(PACKAGE_NAME) +install-perf: DIR = $(CURDIR)/debian/$(PACKAGE_NAME) +install-perf: build-perf + dh_testdir + dh_testroot + dh_prep + $(call make-tools,tools/perf) install DESTDIR=$(DIR) + # do not ship python2 script + rm -f $(DIR)/usr/lib/perf_$(VERSION)-core/scripts/python/call-graph-from-sql.py + dh_perl /usr/lib/perf_$(VERSION)-core/scripts/perl/Perf-Trace-Util/lib/ + dh_python3 /usr/lib/perf_$(VERSION)-core/scripts/python/Perf-Trace-Util/lib/ + dh_installchangelogs +ifeq (,$(filter nodoc,$(DEB_BUILD_PROFILES))) + dh_installdocs +endif + dh_lintian + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps -Xperf-read-vdso + dh_gencontrol + dh_md5sums + dh_builddeb + +install-perf-meta: PACKAGE_NAME = linux-perf$(SOURCE_SUFFIX) +install-perf-meta: DH_OPTIONS = -p$(PACKAGE_NAME) +install-perf-meta: LINK_DOC_PACKAGE = linux-perf-$(VERSION) +install-perf-meta: + dh_testdir + dh_prep + +$(MAKE_SELF) install-base + +build-usbip: $(STAMPS_DIR)/build-tools-headers + $(call make-tools,tools/usb/usbip) + +install-usbip: DH_OPTIONS = -pusbip +install-usbip: DIR = $(CURDIR)/debian/usbip-tmp +install-usbip: build-usbip + dh_testdir + dh_testroot + dh_prep + $(call make-tools,tools/usb/usbip) install DESTDIR=$(DIR) + dh_install --sourcedir=$(DIR) + dh_installchangelogs +ifeq (,$(filter nodoc,$(DEB_BUILD_PROFILES))) + dh_installdocs + dh_installman +endif + dh_lintian + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + VERSION=$$(sed -ne 's,^#define PACKAGE_VERSION "\(.*\)"$$,\1,p' $(BUILD_DIR)/build-tools/tools/usb/usbip/config.h) && \ + test -n "$$VERSION" -a -n "$(DEB_VERSION)" && \ + dh_gencontrol -- -v$$VERSION+$(DEB_VERSION) + dh_md5sums + dh_builddeb + +build-hyperv-daemons: $(STAMPS_DIR)/build-tools-headers + $(call make-tools,tools/hv) + +install-hyperv-daemons: PACKAGE_NAME = hyperv-daemons +install-hyperv-daemons: DH_OPTIONS = -p$(PACKAGE_NAME) +install-hyperv-daemons: DIR = $(CURDIR)/debian/$(PACKAGE_NAME) +install-hyperv-daemons: build-hyperv-daemons + dh_testdir + dh_testroot + dh_prep + $(call make-tools,tools/hv) install DESTDIR=$(DIR) + dh_install + dh_installchangelogs +ifeq (,$(filter nodoc,$(DEB_BUILD_PROFILES))) + dh_installdocs +endif + for service in fcopy kvp vss; do \ + dh_installsystemd --name hv-$$service-daemon --no-enable --no-start \ + || break; \ + dh_installinit --name hv-$$service-daemon \ + || break; \ + done + dh_installudev + dh_lintian + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +build-liblockdep: $(STAMPS_DIR)/build-tools-headers + $(call make-tools,tools/lib/lockdep) + +install-liblockdep: DH_OPTIONS = -pliblockdep$(VERSION) -pliblockdep-dev +install-liblockdep: DIR = $(CURDIR)/debian/liblockdep-tmp +install-liblockdep: build-liblockdep + dh_testdir + dh_testroot + dh_prep + $(call make-tools,tools/lib/lockdep) install DESTDIR=$(DIR) + env -u DH_OPTIONS dh_install -pliblockdep$(VERSION) --sourcedir=$(DIR) \ + 'usr/lib/*/liblockdep.so.*' + dh_install --sourcedir=$(DIR) + dh_installchangelogs +ifeq (,$(filter nodoc,$(DEB_BUILD_PROFILES))) + dh_installdocs +endif + dh_strip + dh_compress + dh_fixperms + env -u DH_OPTIONS dh_makeshlibs -pliblockdep$(VERSION) \ + liblockdep$(VERSION) + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +install-lockdep: PACKAGE_NAME = lockdep +install-lockdep: DH_OPTIONS = -p$(PACKAGE_NAME) +install-lockdep: DIR = $(CURDIR)/debian/$(PACKAGE_NAME) +install-lockdep: + dh_testdir + dh_testroot + dh_prep + dh_installdirs +# Upstream lockdep preload script is not suitable for installation + sed 's/@VERSION@/$(VERSION)/' debian/rules.d/tools/lib/lockdep/lockdep.in \ + > $(DIR)/usr/bin/lockdep + chmod 755 $(DIR)/usr/bin/lockdep + dh_installchangelogs +ifeq (,$(filter nodoc,$(DEB_BUILD_PROFILES))) + dh_installdocs +endif + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +build-bootwrapper: $(STAMPS_DIR)/build-tools-headers + $(call make-tools,arch/powerpc/boot) + +install-bootwrapper: PACKAGE_NAME = linux-bootwrapper-$(ABINAME) +install-bootwrapper: DH_OPTIONS = -p$(PACKAGE_NAME) +install-bootwrapper: DIR = $(CURDIR)/debian/$(PACKAGE_NAME) +install-bootwrapper: build-bootwrapper + dh_testdir + dh_testroot + dh_prep + $(call make-tools,arch/powerpc/boot) install DESTDIR=$(DIR) installdir=/usr/lib/$(PACKAGE_NAME) + dh_installchangelogs + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +.PHONY: binary-% build-% install-% setup-% source-% + +# vim: filetype=make |