69 lines
2.6 KiB
Diff
69 lines
2.6 KiB
Diff
diff --git a/debian/rules b/debian/rules
|
|
index 0f238b32..d96c732e 100755
|
|
--- a/debian/rules
|
|
+++ b/debian/rules
|
|
@@ -122,12 +122,19 @@ clean: debian/control debian/canonical-certs.pem debian/canonical-revoked-certs.
|
|
dh_testroot
|
|
dh_clean
|
|
|
|
+ # d-i stuff
|
|
+ rm -rf $(DEBIAN)/d-i-$(arch)
|
|
+ # Generated on the fly.
|
|
+ rm -f $(DEBIAN)/d-i/firmware/$(arch)/kernel-image
|
|
+
|
|
# normal build junk
|
|
rm -rf $(DEBIAN)/abi
|
|
rm -rf $(builddir)
|
|
rm -f $(stampdir)/stamp-*
|
|
rm -rf $(DEBIAN)/linux-*
|
|
|
|
+ # This gets rid of the d-i packages in control
|
|
+ cp -f $(DEBIAN)/control.stub $(DROOT)/control
|
|
cp $(DEBIAN)/changelog debian/changelog
|
|
|
|
# Install the copyright information.
|
|
@@ -184,7 +191,6 @@
|
|
$(DROOT)/scripts/control-create \
|
|
$(control_files) \
|
|
debian/canonical-revoked-certs.pem \
|
|
- $(DROOT)/control.d/flavour-module.stub \
|
|
$(DEBIAN)/changelog \
|
|
$(wildcard $(DEBIAN)/control.d/* $(DEBIAN)/sub-flavours/*.vars)
|
|
for i in $(control_files); do \
|
|
@@ -210,7 +216,13 @@
|
|
|
|
.PHONY: debian/control
|
|
debian/control: $(DEBIAN)/control.stub
|
|
+ echo "# placebo control.stub for kernel-wedge flow change" >debian/control.stub
|
|
cp $(DEBIAN)/control.stub debian/control
|
|
+ export KW_DEFCONFIG_DIR=$(DEBIAN)/d-i && \
|
|
+ export KW_CONFIG_DIR=$(DEBIAN)/d-i && \
|
|
+ LANG=C kernel-wedge gen-control $(release)-$(abinum) | \
|
|
+ grep-dctrl -FArchitecture $(arch) \
|
|
+ >>$(CURDIR)/debian/control
|
|
|
|
debian/canonical-certs.pem: $(wildcard $(DROOT)/certs/*-all.pem) $(wildcard $(DROOT)/certs/*-$(arch).pem) $(wildcard $(DEBIAN)/certs/*-all.pem) $(wildcard $(DEBIAN)/certs/*-$(arch).pem)
|
|
for cert in $(sort $(notdir $^)); \
|
|
--- a/debian/rules.d/2-binary-arch.mk 2023-02-10 11:40:38.000000000 -0600
|
|
+++ b/debian/rules.d/2-binary-arch.mk 2023-02-10 11:57:00.107737218 -0600
|
|
@@ -178,12 +178,14 @@
|
|
$(pkgdir)/boot/config-$(abi_release)-$*
|
|
install -m600 $(builddir)/build-$*/System.map \
|
|
$(pkgdir)/boot/System.map-$(abi_release)-$*
|
|
-
|
|
-ifeq ($(do_dtbs),true)
|
|
- $(build_cd) $(kmake) $(build_O) $(conc_level) dtbs_install \
|
|
- INSTALL_DTBS_PATH=$(pkgdir)/lib/firmware/$(abi_release)-$*/device-tree
|
|
-endif
|
|
-
|
|
+ if [ "$(filter true,$(do_dtbs))" ]; then \
|
|
+ $(build_cd) $(kmake) $(build_O) $(conc_level) dtbs_install \
|
|
+ INSTALL_DTBS_PATH=$(pkgdir)/lib/firmware/$(abi_release)-$*/device-tree; \
|
|
+ ( cd $(pkgdir)/lib/firmware/$(abi_release)-$*/ && find device-tree -print ) | \
|
|
+ while read dtb_file; do \
|
|
+ echo "$$dtb_file ?" >> $(DEBIAN)/d-i/firmware/$(arch)/kernel-image; \
|
|
+ done; \
|
|
+ fi
|
|
ifeq ($(no_dumpfile),)
|
|
makedumpfile -g $(pkgdir)/boot/vmcoreinfo-$(abi_release)-$* \
|
|
-x $(builddir)/build-$*/vmlinux
|