Merge pull request #309 from tmn505/dkms_fix

dkms: fix modules build with more kernel versions
This commit is contained in:
Simon Fels 2017-06-07 17:14:05 +02:00 committed by GitHub
commit 18a79306cd
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
PACKAGE_NAME="anbox-ashmem"
PACKAGE_VERSION="1"
CLEAN="make clean"
MAKE[0]="make all KVERSION=$kernelver"
MAKE[0]="make all KERNEL_SRC=/lib/modules/$kernelver/build"
BUILT_MODULE_NAME[0]="ashmem_linux"
DEST_MODULE_LOCATION[0]="/updates"
AUTOINSTALL="yes"

View file

@ -1,7 +1,7 @@
PACKAGE_NAME="anbox-binder"
PACKAGE_VERSION="1"
CLEAN="make clean"
MAKE[0]="make all KVERSION=$kernelver"
MAKE[0]="make all KERNEL_SRC=/lib/modules/$kernelver/build"
BUILT_MODULE_NAME[0]="binder_linux"
DEST_MODULE_LOCATION[0]="/updates"
AUTOINSTALL="yes"