Fix makefile, bump versions of modules/deb

* The Makefile configuration was using kernel macros instead of obj-m,
so it wasn't building properly.
* Bump gasket and apex module versions for better DKMS installs.
* Bump Debian package version.
This commit is contained in:
Michael Brooks
2021-06-11 07:54:18 -07:00
parent e1d5647f02
commit 2faefe1e9f
4 changed files with 10 additions and 4 deletions

6
debian/changelog vendored
View File

@@ -1,3 +1,9 @@
gasket-dkms (1.0-16) unstable; urgency=low
* Bump module versions for Gasket and Apex
-- Coral <coral-support@google.com> Fri, 11 Jun 2021 07:53:18 -0700
gasket-dkms (1.0-15) unstable; urgency=low
* Switch include of rwlock to spinlock (rwlock.h isn't intended to be

View File

@@ -2,8 +2,8 @@
# Makefile for Gasket framework and dependent drivers.
#
obj-$(CONFIG_STAGING_GASKET_FRAMEWORK) += gasket.o
obj-$(CONFIG_STAGING_APEX_DRIVER) += apex.o
obj-m += gasket.o
obj-m += apex.o
gasket-objs := gasket_core.o gasket_ioctl.o gasket_interrupt.o gasket_page_table.o gasket_sysfs.o
apex-objs := apex_driver.o

View File

@@ -29,7 +29,7 @@
/* Constants */
#define APEX_DEVICE_NAME "Apex"
#define APEX_DRIVER_VERSION "1.1"
#define APEX_DRIVER_VERSION "1.2"
/* CSRs are in BAR 2. */
#define APEX_BAR_INDEX 2

View File

@@ -3,7 +3,7 @@
#ifndef __GASKET_CONSTANTS_H__
#define __GASKET_CONSTANTS_H__
#define GASKET_FRAMEWORK_VERSION "1.1.3"
#define GASKET_FRAMEWORK_VERSION "1.1.4"
/*
* The maximum number of simultaneous device types supported by the framework.