summaryrefslogtreecommitdiff
path: root/mk/linux.mk
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2016-07-11 22:47:23 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2016-07-11 22:49:45 +0200
commitd5ca856aa5e2db0d6461200dc3bf9f2b2dc63b48 (patch)
treee807e58e9ce67d2861e8e118beba5b60b6940342 /mk/linux.mk
parente869cd4db42fd9ccafc4bef35cd15c341375f600 (diff)
rework kernel patches for rpi/imx6
Instead of trying to recreate patchsets for newer kernels just use upstream non-official kernel trees. Working on the patchsets does take to much time. You can choose between hardware specific github tree and defconfig or upstream kernel and OpenADK miniconfig.
Diffstat (limited to 'mk/linux.mk')
-rw-r--r--mk/linux.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/linux.mk b/mk/linux.mk
index dabdc37ef..e6b1ffaca 100644
--- a/mk/linux.mk
+++ b/mk/linux.mk
@@ -3,11 +3,11 @@
PKG_NAME:= linux
PKG_RELEASE:= $(KERNEL_RELEASE)
-ifeq ($(ADK_TARGET_KERNEL_VERSION_GIT),y)
+ifeq ($(ADK_TARGET_KERNEL_VERSION_GIT)$(ADK_TARGET_KERNEL_VERSION_RPI)$(ADK_TARGET_KERNEL_VERSION_FSLC),y)
ifneq ($(ADK_TARGET_KERNEL_HASH),)
PKG_VERSION:= $(ADK_TARGET_KERNEL_HASH)
else
-PKG_VERSION:= git
+PKG_VERSION:= $(ADK_KERNEL_GITVER)
endif
PKG_SITES:= $(ADK_TARGET_KERNEL_REPO)
else