Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
114 changes: 114 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,114 @@
#
# NOTE! Don't add files that are generated in specific
# subdirectories here. Add them in the ".gitignore" file
# in that subdirectory instead.
#
# NOTE! Please use 'git ls-files -i --exclude-standard'
# command after changing this file, to see if there are
# any tracked files which get ignored after the change.
#
# Normal rules
#
.*
*.o
*.o.*
*.a
*.s
*.ko
*.so
*.so.dbg
*.mod.c
*.i
*.lst
*.symtypes
*.order
*.elf
*.bin
*.tar
*.gz
*.bz2
*.lzma
*.xz
*.lz4
*.lzo
*.patch
*.gcno
modules.builtin
Module.symvers
*.dwo
*.su

#
# Top-level generic files
#
/tags
/TAGS
/linux
/vmlinux
/vmlinux.32
/vmlinux-gdb.py
/vmlinuz
/System.map
/Module.markers

#
# Debian directory (make deb-pkg)
#
/debian/

#
# tar directory (make tar*-pkg)
#
/tar-install/

#
# git files that we don't want to ignore even it they are dot-files
#
!.gitignore
!.mailmap

#
# Generated include files
#
include/config
include/generated
arch/*/include/generated

# stgit generated dirs
patches-*

# quilt's files
patches
series

# cscope files
cscope.*
ncscope.*

# gnu global files
GPATH
GRTAGS
GSYMS
GTAGS

# id-utils files
ID

*.orig
*~
\#*#

#
# Leavings from module signing
#
extra_certificates
signing_key.pem
signing_key.priv
signing_key.x509
x509.genkey

# Kconfig presets
all.config

# Kdevelop4
*.kdev4
20 changes: 10 additions & 10 deletions misc/.Xmodmap
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
keycode 191 = XF86Launch0
keycode 192 = XF86Launch1
keycode 193 = XF86Launch2
keycode 194 = XF86Launch3
keycode 195 = XF86Launch4
keycode 196 = XF86Launch5
keycode 197 = XF86Launch6
keycode 198 = XF86Launch7
keycode 199 = XF86Launch8
keycode 200 = XF86Launch9
keycode 156 = XF86Launch0
keycode 157 = XF86Launch1
keycode 210 = XF86Launch2
keycode 211 = XF86Launch3
keycode 192 = XF86Launch4
keycode 193 = XF86Launch5
keycode 194 = XF86Launch6
keycode 195 = XF86Launch7
keycode 196 = XF86Launch8
keycode 128 = XF86Launch9
2 changes: 1 addition & 1 deletion src/kernel/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ build:
clean:
make -C $(KDIR) M=$(PWD) clean
install:
make -C $(KDIR) M=$(PWD) modules_install
make -C $(KDIR) M=$(PWD) modules_install
5 changes: 2 additions & 3 deletions src/kernel/dkms.conf
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
BUILT_MODULE_NAME=hid-lg-g710-plus
PACKAGE_NAME=hid-lg-g710-plus
PACKAGE_VERSION=0.1
MAKE="make"
CLEAN="make clean"
MAKE="make KVERSION=$kernelver"
CLEAN="make clean KVERSION=$kernelver"
DEST_MODULE_LOCATION="/updates"
REMAKE_INITRD=yes
AUTOINSTALL="yes"
Loading