Update version & changelog

Plus.. suppress output from sed when building. Note, sed is only
used for packaging and otherwise irrelevant. However, it should not
look like an error.
This commit is contained in:
Christoffer Sandberg 2020-05-19 16:06:57 +02:00
parent 5ba78bacad
commit b8a4dc18e3
No known key found for this signature in database
GPG key ID: BF563F71B6C7A96D
6 changed files with 11 additions and 5 deletions

2
.gitignore vendored
View file

@ -15,6 +15,8 @@ modules.order
Module.symvers
Mkfile.old
*.mk
.vscode/
# Packaging

View file

@ -31,8 +31,8 @@ install:
make -C $(KDIR) M=$(PWD) modules_install
# Package version and name from dkms.conf
VER := $(shell sed -n 's/^PACKAGE_VERSION=\([^\n]*\)/\1/p' dkms.conf)
MODULE_NAME := $(shell sed -n 's/^PACKAGE_NAME=\([^\n]*\)/\1/p' dkms.conf)
VER := $(shell sed -n 's/^PACKAGE_VERSION=\([^\n]*\)/\1/p' dkms.conf 2>&1 /dev/null)
MODULE_NAME := $(shell sed -n 's/^PACKAGE_NAME=\([^\n]*\)/\1/p' dkms.conf 2>&1 /dev/null)
dkmsinstall:
cp -R . /usr/src/$(MODULE_NAME)-$(VER)
@ -99,7 +99,7 @@ package-deb-clean:
RPM_PACKAGE_NAME := $(MODULE_NAME)-$(VER)
RPM_PACKAGE_SRC := rpm/SOURCES/$(RPM_PACKAGE_NAME)
RPM_SPEC := rpm/SPECS/$(MODULE_NAME).spec
RELEASE := 0
RELEASE := 1
package-rpm:
# Create folder source structure according to current version

View file

@ -1,5 +1,5 @@
PACKAGE_NAME=tuxedo-keyboard
PACKAGE_VERSION=2.0.2
PACKAGE_VERSION=2.0.3
DEST_MODULE_LOCATION[0]="/kernel/lib/"
BUILT_MODULE_NAME[0]="tuxedo_keyboard"

View file

@ -36,7 +36,7 @@
MODULE_AUTHOR("TUXEDO Computers GmbH <tux@tuxedocomputers.com>");
MODULE_DESCRIPTION("TUXEDO Computers Keyboard & Backlight Driver");
MODULE_LICENSE("GPL");
MODULE_VERSION("2.0.2");
MODULE_VERSION("2.0.3");
MODULE_ALIAS("wmi:" CLEVO_EVENT_GUID);
MODULE_ALIAS("wmi:" CLEVO_GET_GUID);

View file

@ -100,6 +100,10 @@ exit 0
%changelog
* Tue May 19 2020 C Sandberg <tux@tuxedocomputers.com> 2.0.3-1
- General key event mapping support
- Events added for backlight and touchpad
- Fix not removing module on rpm update
* Tue Apr 14 2020 C Sandberg <tux@tuxedocomputers.com> 2.0.2-0
- Mark old named packages as conflicting and obsolete
- Fix not restoring state on resume