linux-source: Compress with gzip -1 (Closes: #725492)

svn path=/dists/sid/linux/; revision=20894
This commit is contained in:
Ben Hutchings 2013-12-19 11:19:47 +00:00
parent 6f9eb577a6
commit ffc25b2105
2 changed files with 5 additions and 3 deletions

1
debian/changelog vendored
View File

@ -51,6 +51,7 @@ linux (3.12.5-1) UNRELEASED; urgency=medium
* firmware: Improve logging of success/failure for direct file loading
* media: az6007: support Technisat Cablestar Combo HDCI (minus remote)
(Closes: #732106)
* linux-source: Compress with gzip -1 (Closes: #725492)
[ Ian Campbell ]
* [armel/kirkwood+orion] Reenable MARVELL_PHY (Closes: #723177)

7
debian/rules.real vendored
View File

@ -471,8 +471,9 @@ install-source: $(BUILD_DIR)/linux-source-$(UPSTREAMVERSION).tar.xz $(foreach FE
xz -c $(BUILD_DIR)/build_$$triplet/.config >debian/$(PACKAGE_NAME)/usr/src/linux-config-$(UPSTREAMVERSION)/config.$$triplet.xz; \
done
# We don't want to recompress, but -Znone is not compatible with older
# tools and is currently rejected by dak. -Zgzip -z0 has almost the
# same effect.
+$(MAKE_SELF) install-base BUILDDEB_ARGS='-Zgzip -z0'
# 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'
# vim: filetype=make