mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-05-08 20:40:20 +00:00
f2b5ea5d01
If you are not building a TI machine then KERNEL_BASE_CLASS is not defined and you get a parse error. Move the default setting out of ti-soc.inc and into ti-kernel.inc. Signed-off-by: Ryan Eatmon <reatmon@ti.com>
16 lines
417 B
PHP
16 lines
417 B
PHP
KERNEL_GIT_URI ?= "git://git.ti.com/git/ti-linux-kernel/ti-linux-kernel.git"
|
|
KERNEL_GIT_PROTOCOL ?= "https"
|
|
KERNEL_GIT_BRANCH ?= "branch=${BRANCH}"
|
|
|
|
KERNEL_DEFCONFIG ?= "file://defconfig"
|
|
|
|
KERNEL_BASE_CLASS ?= "kernel"
|
|
|
|
KERNEL_REPRODUCIBILITY_PATCHES ?= ""
|
|
|
|
SRC_URI = " \
|
|
${KERNEL_GIT_URI};protocol=${KERNEL_GIT_PROTOCOL};${KERNEL_GIT_BRANCH} \
|
|
${KERNEL_DEFCONFIG} \
|
|
${KERNEL_REPRODUCIBILITY_PATCHES} \
|
|
"
|