linux-intel: Seperate SRC_URI into Kernel and Config

This allows for setting a different kernel config URI without having
to completely reset the main SRC_URI for the kernel also.

Signed-off-by: Saul Wold <sgw@linux.intel.com>
This commit is contained in:
Saul Wold 2017-08-25 09:50:00 -07:00
parent e6d3676b59
commit b03fee4378

View File

@ -2,8 +2,13 @@ require recipes-kernel/linux/linux-yocto.inc
FILESEXTRAPATHS_prepend := "${THISDIR}/linux-intel:" FILESEXTRAPATHS_prepend := "${THISDIR}/linux-intel:"
SRC_URI = "git://github.com/01org/linux-intel-4.9.git;protocol=https;name=machine;branch=${KBRANCH}; \ KERNEL_CONFIG_URI ?= " \
git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-4.9;destsuffix=${KMETA}" git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-4.9;destsuffix=${KMETA} \
"
SRC_URI = " \
git://github.com/01org/linux-intel-4.9.git;protocol=https;name=machine;branch=${KBRANCH}; \
${KERNEL_CONFIG_URI} \
"
SRC_URI_append_core2-32-intel-common = " file://disable_skylake_sound.cfg" SRC_URI_append_core2-32-intel-common = " file://disable_skylake_sound.cfg"