summaryrefslogtreecommitdiffstats
path: root/common/recipes-kernel/iwlwifi/backport-iwlwifi_git.bb
diff options
context:
space:
mode:
authorSaul Wold <sgw@linux.intel.com>2017-09-28 11:33:50 -0700
committerSaul Wold <sgw@linux.intel.com>2017-09-28 11:33:50 -0700
commit9f9b61b91f0901dc63aa0fcfd36f1152b5661b55 (patch)
tree987f4e13232461ea6cf7a1f2196a3cf4ee2a0d77 /common/recipes-kernel/iwlwifi/backport-iwlwifi_git.bb
parenta1518230dcf8d1f59e981e874e38ab293db0e60f (diff)
downloadmeta-intel-9f9b61b91f0901dc63aa0fcfd36f1152b5661b55.tar.gz
backport-iwlwifi: Fix version check for Intel Production Kernel
This patch is only used with the Intel Production kernel as it has a back port of the HRTimer code which iwlwifi uses so modify the kernel version check. Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'common/recipes-kernel/iwlwifi/backport-iwlwifi_git.bb')
-rw-r--r--common/recipes-kernel/iwlwifi/backport-iwlwifi_git.bb12
1 files changed, 9 insertions, 3 deletions
diff --git a/common/recipes-kernel/iwlwifi/backport-iwlwifi_git.bb b/common/recipes-kernel/iwlwifi/backport-iwlwifi_git.bb
index 7c756a9a..d391045f 100644
--- a/common/recipes-kernel/iwlwifi/backport-iwlwifi_git.bb
+++ b/common/recipes-kernel/iwlwifi/backport-iwlwifi_git.bb
@@ -20,9 +20,15 @@ inherit module
20PV = "30" 20PV = "30"
21SRCREV = "b31221a99488021300e7f89d2ecf9bdd2bc52dd2" 21SRCREV = "b31221a99488021300e7f89d2ecf9bdd2bc52dd2"
22 22
23SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/backport-iwlwifi;branch=release/LinuxCore${PV}" 23# Add a patch for Intel's Production Kernel as it's got a backport of HRTimers
24SRC_URI += "file://0001-Makefile.real-skip-host-install-scripts.patch" 24PK_PATCH = "${@bb.utils.contains('PREFERRED_PROVIDER_virtual/kernel','linux-intel','file://0001-hrtimer-fix-version-numbers-because-production-kerne.patch','',d)}"
25SRC_URI += "file://iwlwifi.conf" 25
26SRC_URI = " \
27 git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/backport-iwlwifi;branch=release/LinuxCore${PV} \
28 file://0001-Makefile.real-skip-host-install-scripts.patch \
29 ${PK_PATCH} \
30 file://iwlwifi.conf \
31 "
26 32
27S = "${WORKDIR}/git" 33S = "${WORKDIR}/git"
28 34