[linux-tools] branch wheezy-backports updated (bbc32c3 -> 5074748)
debian-kernel at lists.debian.org
debian-kernel at lists.debian.org
Wed Feb 3 03:42:59 UTC 2016
This is an automated email from the git hooks/post-receive script.
benh pushed a change to branch wheezy-backports
in repository linux-tools.
from bbc32c3 linux-tools: Fix build configuration to avoid linking perf with libbfd (Closes: #763002)
adds 5e54999 linux-tools: Fix build configuration to avoid linking perf with libbfd (Closes: #763002)
adds 3c43bbc linux-tools: Split up MAKE_PERF definition some more
adds 1458163 [armel,armhf] linux-tools: Enable use of libunwind
adds 9ad41e0 [arm64] Enable building linux-tools, thanks to Steve Capper
adds 8a9aa24 Add bug number for arm64
adds 3ca51a2 Revert "[armel,armhf] linux-tools: Enable use of libunwind"
adds ff40662 [arm64] Build perf with libunwind, even though we don't on armel and armhf
adds e09c8c1 Revert addition of libc-bin to dependencies, as it is an essential package
adds ad1d978 Prepare to release linux-tools (3.16-3).
adds d4b4a3d rules.real: Only install tools/perf into linux-tools-$(VERSION)
adds 876dea7 Add hyperv-daemons package
adds bfb1259 Add credit to Hideki Yamane for hyperv-daemons
adds 968bc27 Rename README.Debian.hyperv-daemon so dh_installdocs finds it
adds d17e90d hyperv-daemons: Rewrite description
adds aa7ad74 hyperv-daemons: Only attempt to build package on i386, amd64 (fixes FTBFS on other architectures)
adds 7db5d24 [x86] hyperv-daemons: Apply upstream bug fixes up to Linux 4.1 inclusive
adds b80078d Add .gitignore files based on svn:ignore properties
adds 489cf98 Update Vcs-* fields to point to git
adds 5c1c5d5 debian/rules: Exclude .git from maintainerclean rule
adds a67cddb Add .gitignore files to debian/build
adds 270bd0f debian/lib/python/debian_linux/debian.py: Change package version regexp to match linux package
adds 44349dc Update to 3.16.7-ckt18
adds 40dcabc Update to 3.16.7-ckt20
adds ac40ac3 Prepare to release linux-tools (3.16.7-ckt20-1).
new 4186453 Merge tag 'debian/3.16.7-ckt20-1' into wheezy-backports
new bccd7c2 hyperv-daemons: Add symlinks to ensure new kernel headers are used
new 4c8a1d9 hyperv-daemons: Remove use of dh-systemd
new 5074748 hyperv-daemons: Add init scripts
The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
debian/.gitignore | 17 ++
debian/build/.gitignore | 3 +
debian/build/scripts/.gitignore | 7 +
debian/build/scripts/basic/.gitignore | 2 +
debian/build/scripts/genksyms/.gitignore | 1 +
debian/build/scripts/kconfig/.gitignore | 1 +
debian/build/scripts/mod/.gitignore | 4 +
debian/build/tools/Makefile | 1 +
debian/build/tools/hv/.gitignore | 2 +
debian/build/tools/hv/Makefile | 17 ++
debian/build/tools/hv/check-hyperv.c | 103 +++++++++++
debian/build/tools/hv/linux/connector.h | 1 +
debian/build/tools/hv/linux/hyperv.h | 1 +
debian/build/tools/hv/linux/uuid.h | 1 +
debian/build/tools/perf/Makefile | 13 +-
debian/changelog | 51 ++++++
debian/copyright | 19 ++
debian/hyperv-daemons.README.Debian | 14 ++
debian/hyperv-daemons.hv-fcopy-daemon.init | 110 +++++++++++
debian/hyperv-daemons.hv-fcopy-daemon.service | 10 +
debian/hyperv-daemons.hv-kvp-daemon.init | 109 +++++++++++
debian/hyperv-daemons.hv-kvp-daemon.service | 9 +
debian/hyperv-daemons.hv-vss-daemon.init | 109 +++++++++++
debian/hyperv-daemons.hv-vss-daemon.service | 9 +
debian/hyperv-daemons.install | 1 +
debian/lib/python/debian_linux/debian.py | 20 +-
...v-fix-file-overwriting-of-hv_fcopy_daemon.patch | 30 +++
...sdaemon-ignore-the-EBUSY-on-multiple-free.patch | 123 +++++++++++++
...003-tools-hv-introduce-n-no-daemon-option.patch | 202 +++++++++++++++++++++
...4-Tools-hv-vssdaemon-report-freeze-errors.patch | 70 +++++++
...sdaemon-skip-all-filesystems-mounted-read.patch | 30 +++
...nore-ENOBUFS-and-ENOMEM-in-the-KVP-daemon.patch | 58 ++++++
...-Makefile-Add-hv_fcopy_daemon-to-Makefile.patch | 30 +++
...-kvp_daemon-make-IPv6-only-injection-work.patch | 52 ++++++
...move-unused-bytes_written-from-kvp_update.patch | 41 +++++
...dress-compiler-warnings-for-hv_kvp_daemon.patch | 116 ++++++++++++
...dress-compiler-warnings-for-hv_fcopy_daem.patch | 39 ++++
...hv-do-not-add-redundant-in-hv_start_fcopy.patch | 32 ++++
...opy_daemon-support-2GB-files-for-x86_32-g.patch | 33 ++++
...sd-call-endmntent-before-call-setmntent-a.patch | 58 ++++++
debian/patches/gitignore.patch | 14 ++
.../patches/perf-tools-fix-arm64-build-error.patch | 39 ++++
debian/patches/series | 16 ++
debian/rules | 2 +-
debian/rules.real | 40 +++-
debian/templates/control.main.in | 20 +-
debian/templates/control.source.in | 6 +-
47 files changed, 1671 insertions(+), 15 deletions(-)
create mode 100644 debian/.gitignore
create mode 100644 debian/build/.gitignore
create mode 100644 debian/build/scripts/.gitignore
create mode 100644 debian/build/scripts/basic/.gitignore
create mode 100644 debian/build/scripts/genksyms/.gitignore
create mode 100644 debian/build/scripts/kconfig/.gitignore
create mode 100644 debian/build/scripts/mod/.gitignore
create mode 100644 debian/build/tools/hv/.gitignore
create mode 100644 debian/build/tools/hv/Makefile
create mode 100644 debian/build/tools/hv/check-hyperv.c
create mode 120000 debian/build/tools/hv/linux/connector.h
create mode 120000 debian/build/tools/hv/linux/hyperv.h
create mode 120000 debian/build/tools/hv/linux/uuid.h
create mode 100644 debian/hyperv-daemons.README.Debian
create mode 100755 debian/hyperv-daemons.hv-fcopy-daemon.init
create mode 100644 debian/hyperv-daemons.hv-fcopy-daemon.service
create mode 100755 debian/hyperv-daemons.hv-kvp-daemon.init
create mode 100644 debian/hyperv-daemons.hv-kvp-daemon.service
create mode 100755 debian/hyperv-daemons.hv-vss-daemon.init
create mode 100644 debian/hyperv-daemons.hv-vss-daemon.service
create mode 100644 debian/hyperv-daemons.install
create mode 100644 debian/patches/0001-Tools-hv-fix-file-overwriting-of-hv_fcopy_daemon.patch
create mode 100644 debian/patches/0002-Tools-hv-vssdaemon-ignore-the-EBUSY-on-multiple-free.patch
create mode 100644 debian/patches/0003-tools-hv-introduce-n-no-daemon-option.patch
create mode 100644 debian/patches/0004-Tools-hv-vssdaemon-report-freeze-errors.patch
create mode 100644 debian/patches/0005-Tools-hv-vssdaemon-skip-all-filesystems-mounted-read.patch
create mode 100644 debian/patches/0006-tools-hv-ignore-ENOBUFS-and-ENOMEM-in-the-KVP-daemon.patch
create mode 100644 debian/patches/0007-tools-hv-Makefile-Add-hv_fcopy_daemon-to-Makefile.patch
create mode 100644 debian/patches/0008-tools-hv-kvp_daemon-make-IPv6-only-injection-work.patch
create mode 100644 debian/patches/0009-Tools-hv-remove-unused-bytes_written-from-kvp_update.patch
create mode 100644 debian/patches/0010-Tools-hv-address-compiler-warnings-for-hv_kvp_daemon.patch
create mode 100644 debian/patches/0011-Tools-hv-address-compiler-warnings-for-hv_fcopy_daem.patch
create mode 100644 debian/patches/0012-Tools-hv-do-not-add-redundant-in-hv_start_fcopy.patch
create mode 100644 debian/patches/0013-tools-hv-fcopy_daemon-support-2GB-files-for-x86_32-g.patch
create mode 100644 debian/patches/0014-hv-hypervvssd-call-endmntent-before-call-setmntent-a.patch
create mode 100644 debian/patches/gitignore.patch
create mode 100644 debian/patches/perf-tools-fix-arm64-build-error.patch
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/kernel/linux-tools.git
More information about the Kernel-svn-changes
mailing list