~ubuntu-branches/debian/sid/open-vm-tools/sid

« back to all changes in this revision

Viewing changes to debian/patches/0001-kvers.patch

  • Committer: Package Import Robot
  • Author(s): Bernd Zeimetz, Bernd Zeimetz, Norbert Lange
  • Date: 2014-09-20 17:21:27 UTC
  • Revision ID: package-import@ubuntu.com-20140920172127-36w0utnlo1n7oplb
Tags: 2:9.4.6-1770165-3
[ Bernd Zeimetz ]
* [b04735fa] Ensure LINUX_BACKPORT is defined in patches/kuid_t-kgid_t-fix-for-3.12.

[ Norbert Lange ]
* [01aaa407] Fix initramfs hook for the vmxnet module
* [5279fa17] Move the dkms module location patch before otehr patches
   changing the dkms.conf file. this eases adding or removing those patches
* [b1db2b5c] Move files belonging to modules in dkms package.
  Call update-initramfs for the dkms package. Otherwise the initrd wont
  contain the vmxnet module if you installed the dkms package after the
  tools package. Move the module scripts to the dmks package.
  The modules in the dkms package should work without the tools now.

[ Bernd Zeimetz ]
* [d0ccee4f] Run #DEBHELPER# first in open-vm-tools-dkms.postinst.
  Otherwise dkms was not called and the module is not built yet.
* [f680b4fa] Run update-initramfs in open-vm-tools-dkms.postrm.
  Otherwise a removed module stays in the initrd.
* [ef4bd019] Remove unused DEPRECATED define.
  The dkms module ftbfs with 3.16 as DEPRECATED is define in the kernel
  source already.
  Thanks to Benjamin Kaduk (Closes: #761924)
* [5389dd1f] Some more fixes to make dkms build on 3.16
* [4c1f5fa7] Drop dkms.conf patches.
  Ship the dkms.conf file in debian/local instead.
* [805ccb06] Tidying patches.
  - Removing those for kernel modules we don't build anymore
  - Taking fixes for current issues from Arch
  - Sorting patches into from_fedora / from_arch / debian directories.
  This will break backports to wheezy.
* [519191ff] Fix dh_dkms call for new dkms.conf

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Author: Cyril Brulebois <cyril.brulebois@enst-bretagne.fr>
2
 
Description: Replacing uname call with KVERS, overwriting seemed not to work.
3
 
 
4
 
--- a/modules/linux/vmblock/Makefile
5
 
+++ b/modules/linux/vmblock/Makefile
6
 
@@ -43,7 +43,7 @@ INCLUDE      += -I$(SRCROOT)/shared
7
 
 endif
8
 
 
9
 
 
10
 
-VM_UNAME = $(shell uname -r)
11
 
+VM_UNAME = $(KVERS)
12
 
 
13
 
 # Header directory for the running kernel
14
 
 ifdef LINUXINCLUDE
15
 
--- a/modules/linux/vmci/Makefile
16
 
+++ b/modules/linux/vmci/Makefile
17
 
@@ -43,7 +43,7 @@ INCLUDE      += -I$(SRCROOT)/shared
18
 
 endif
19
 
 
20
 
 
21
 
-VM_UNAME = $(shell uname -r)
22
 
+VM_UNAME = $(KVERS)
23
 
 
24
 
 # Header directory for the running kernel
25
 
 ifdef LINUXINCLUDE
26
 
--- a/modules/linux/vmhgfs/Makefile
27
 
+++ b/modules/linux/vmhgfs/Makefile
28
 
@@ -43,7 +43,7 @@ INCLUDE      += -I$(SRCROOT)/shared
29
 
 endif
30
 
 
31
 
 
32
 
-VM_UNAME = $(shell uname -r)
33
 
+VM_UNAME = $(KVERS)
34
 
 
35
 
 # Header directory for the running kernel
36
 
 ifdef LINUXINCLUDE
37
 
--- a/modules/linux/vmsync/Makefile
38
 
+++ b/modules/linux/vmsync/Makefile
39
 
@@ -43,7 +43,7 @@ INCLUDE      += -I$(SRCROOT)/shared
40
 
 endif
41
 
 
42
 
 
43
 
-VM_UNAME = $(shell uname -r)
44
 
+VM_UNAME = $(KVERS)
45
 
 
46
 
 # Header directory for the running kernel
47
 
 ifdef LINUXINCLUDE
48
 
--- a/modules/linux/vmxnet/Makefile
49
 
+++ b/modules/linux/vmxnet/Makefile
50
 
@@ -43,7 +43,7 @@ INCLUDE      += -I$(SRCROOT)/shared
51
 
 endif
52
 
 
53
 
 
54
 
-VM_UNAME = $(shell uname -r)
55
 
+VM_UNAME = $(KVERS)
56
 
 
57
 
 # Header directory for the running kernel
58
 
 ifdef LINUXINCLUDE
59
 
--- a/modules/linux/vsock/Makefile
60
 
+++ b/modules/linux/vsock/Makefile
61
 
@@ -43,7 +43,7 @@ INCLUDE      += -I$(SRCROOT)/shared
62
 
 endif
63
 
 
64
 
 
65
 
-VM_UNAME = $(shell uname -r)
66
 
+VM_UNAME = $(KVERS)
67
 
 
68
 
 # Header directory for the running kernel
69
 
 ifdef LINUXINCLUDE