mirror of
https://github.com/wessel-novacustom/clevo-keyboard.git
synced 2024-11-15 03:34:01 +01:00
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:
parent
5ba78bacad
commit
b8a4dc18e3
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -15,6 +15,8 @@ modules.order
|
|||
Module.symvers
|
||||
Mkfile.old
|
||||
|
||||
*.mk
|
||||
|
||||
.vscode/
|
||||
|
||||
# Packaging
|
||||
|
|
6
Makefile
6
Makefile
|
@ -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
|
||||
|
|
Binary file not shown.
|
@ -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"
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue