]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blobdiff - debian/rules.d/2-binary-arch.mk
UBUNTU: [debian] support for ship_extras_package=false
[mirror_ubuntu-artful-kernel.git] / debian / rules.d / 2-binary-arch.mk
index 6987a62595bd2058d9131a2964b8a21ca4f3559d..c262e2fdc75ff1daa605bedf900771e774ea8fad 100644 (file)
@@ -456,6 +456,7 @@ endif
 endif
 
 binary-%: pkgimg = $(bin_pkg_name)-$*
+binary-%: pkgdir_ex = $(CURDIR)/debian/$(extra_pkg_name)-$*
 binary-%: pkgimg_ex = $(extra_pkg_name)-$*
 binary-%: pkghdr = $(hdrs_pkg_name)-$*
 binary-%: dbgpkg = $(bin_pkg_name)-$*-dbgsym
@@ -480,6 +481,14 @@ binary-%: install-%
        dh_builddeb -p$(pkgimg)
 
 ifeq ($(do_extras_package),true)
+  ifeq ($(ship_extras_package),false)
+       # If $(ship_extras_package) is explicitly set to false, then do not
+       # construct the linux-image-extra package; instead just log all of the
+       # "extra" modules which were pointlessly built yet won't be shipped.
+       find $(pkgdir_ex) -name '*.ko' | sort \
+               | sed 's|^$(pkgdir_ex)/|NOT-SHIPPED |' \
+               | tee -a $(target_flavour).not-shipped.log;
+  else
        if [ -f $(DEBIAN)/control.d/$(target_flavour).inclusion-list ] ; then \
                dh_installchangelogs -p$(pkgimg_ex); \
                dh_installdocs -p$(pkgimg_ex); \
@@ -491,6 +500,7 @@ ifeq ($(do_extras_package),true)
                dh_md5sums -p$(pkgimg_ex); \
                dh_builddeb -p$(pkgimg_ex); \
        fi
+  endif
 endif
 
        dh_installchangelogs -p$(pkghdr)