From 61bcd59babd5729b240881142869c38ebe6f58fa Mon Sep 17 00:00:00 2001 From: Leonid Lobachev Date: Wed, 15 May 2019 14:16:18 -0700 Subject: [PATCH] Add dkms wrapper for gasket driver Change-Id: If6cf050e0b88e8393926a251a2937d9ba4f6e1de Signed-off-by: Leonid Lobachev --- debian/changelog | 23 +++++++++++++++++++++++ debian/compat | 1 + debian/control | 9 +++++++++ debian/rules | 18 ++++++++++++++++++ 4 files changed, 51 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100755 debian/rules diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..d16a3ac --- /dev/null +++ b/debian/changelog @@ -0,0 +1,23 @@ +gasket-dkms (1.0-4) unstable; urgency=low + + * Add thermal sysfs nodes. + + -- Coral Wed, 15 May 2019 21:09:24 -0700 + +gasket-dkms (1.0-3) unstable; urgency=low + + * Fix pci remove/rescan + + -- Coral Fri, 25 Mar 2019 17:54:48 -0700 + +gasket-dkms (1.0-2) unstable; urgency=low + + * Pull in fixes + + -- Coral Fri, 22 Mar 2019 15:14:39 -0700 + +gasket-dkms (1.0-1) unstable; urgency=low + + * Initial release. + + -- Coral Wed, 04 Mar 2019 16:12:55 +0000 \ No newline at end of file diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..f11c82a --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 \ No newline at end of file diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..b0b409e --- /dev/null +++ b/debian/control @@ -0,0 +1,9 @@ +Source: gasket-dkms +Maintainer: Coral +Build-Depends: debhelper (>= 9), dkms +Homepage: https://coral.withgoogle.com/ + +Package: gasket-dkms +Architecture: all +Depends: dkms (>= 1.95), linux-headers, ${misc:Depends} +Description: DKMS source for the gasket driver \ No newline at end of file diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..ddbe65c --- /dev/null +++ b/debian/rules @@ -0,0 +1,18 @@ +#!/usr/bin/make -f + +include /usr/share/dpkg/pkg-info.mk + +%: + dh $@ --with dkms + +override_dh_install: + dh_install src/* usr/src/gasket-$(DEB_VERSION_UPSTREAM)/ + +override_dh_dkms: + dh_dkms -V $(DEB_VERSION_UPSTREAM) + +override_dh_auto_configure: +override_dh_auto_build: +override_dh_auto_test: +override_dh_auto_install: +override_dh_auto_clean: \ No newline at end of file