5f068dd3bc
linux-buildinfo packages are now externally compared by swm, with results approving or rejecting updates based on the stable tracker. Those checks also allow hints and overrides to accept intentional changes. Also these are done on the correct pair-wise comparisons, especially when two streams are being cranked. The above eliminates the need to identify previous build abi, download, extract it, vendor it in, and assert it at build time. Signed-off-by: Dimitri John Ledkov <dimitri.ledkov@canonical.com>
19 lines
623 B
Makefile
19 lines
623 B
Makefile
# Check the signature of staging modules
|
|
module-signature-check-%: $(stampdir)/stamp-install-%
|
|
@echo Debug: $@
|
|
$(DROOT)/scripts/checks/module-signature-check "$*" \
|
|
"$(DROOT)/$(mods_pkg_name)-$*" \
|
|
"$(DROOT)/$(mods_extra_pkg_name)-$*" \
|
|
$(do_skip_checks)
|
|
|
|
checks-%: module-signature-check-%
|
|
@echo Debug: $@
|
|
|
|
# Check the config against the known options list.
|
|
config-prepare-check-%: $(stampdir)/stamp-prepare-tree-%
|
|
@echo Debug: $@
|
|
ifneq ($(do_skip_checks),true)
|
|
python3 $(DROOT)/scripts/misc/annotations -f $(commonconfdir)/annotations \
|
|
--arch $(arch) --flavour $* --check $(builddir)/build-$*/.config
|
|
endif
|