From 561f2a80b98c0eba3fc22cda320db6a5abca804c Mon Sep 17 00:00:00 2001 From: Romain Perier Date: Thu, 25 Aug 2016 19:51:48 +0200 Subject: [PATCH] machine: Replace KERNEL_DEFCONFIG by KBUILD_DEFCONFIG KBUILD_DEFCONFIG already existed in the yocto project. When it is used with the kernel-yocto bbclass, it specifies an "in-tree" kernel configuration file for use during a kernel build. So instead of use our own variable we use the standard variable designed for that purpose Signed-off-by: Romain Perier --- conf/machine/include/rk3066.inc | 2 +- conf/machine/include/rk3288.inc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/conf/machine/include/rk3066.inc b/conf/machine/include/rk3066.inc index bdc9ede..d43a88c 100644 --- a/conf/machine/include/rk3066.inc +++ b/conf/machine/include/rk3066.inc @@ -19,5 +19,5 @@ KERNEL_IMAGETYPE = "zImage" IMAGE_FSTYPES += "ext4" SERIAL_CONSOLES ?= "115200;ttyFIQ0" -KERNEL_DEFCONFIG = "multi_v7_defconfig" +KBUILD_DEFCONFIG = "multi_v7_defconfig" diff --git a/conf/machine/include/rk3288.inc b/conf/machine/include/rk3288.inc index 088fad0..e6c19a2 100644 --- a/conf/machine/include/rk3288.inc +++ b/conf/machine/include/rk3288.inc @@ -7,4 +7,4 @@ DEFAULTTUNE="cortexa17-neon" PREFERRED_PROVIDER_virtual/kernel = "linux" SERIAL_CONSOLES = "115200;ttyS2" KERNEL_IMAGETYPE = "zImage" -KERNEL_DEFCONFIG = "multi_v7_defconfig" +KBUILD_DEFCONFIG = "multi_v7_defconfig"