diff options
author | Duy Dang <duy.dang.yw@renesas.com> | 2019-07-26 11:23:52 +0700 |
---|---|---|
committer | Khang Nguyen <khang.nguyen.xw@renesas.com> | 2019-12-24 15:24:23 +0700 |
commit | 2fc563b1979b272c68c59005ed5a1717871034b5 (patch) | |
tree | 0aa05fbdb7ca0b6d9b36091b5b8121e3dfd9f2e6 /meta-rcar-gen3/recipes-kernel/linux/linux-renesas_4.14.bb | |
parent | 9e5f83fa5cb784ce0e148e63619686e9f8375ff2 (diff) |
rcar-gen3: linux-renesas: Generate defconfig automatically
KCONFIG_MODE helps to select defconfig and generate it automatically,
there is no need to have an external defconfig file.
Change-Id: Ibedbaa95476d8b2bbd7c5950ae95d21bb617068e
Signed-off-by: Duy Dang <duy.dang.yw@renesas.com>
Signed-off-by: Takamitsu Honda <takamitsu.honda.pv@renesas.com>
Diffstat (limited to 'meta-rcar-gen3/recipes-kernel/linux/linux-renesas_4.14.bb')
-rw-r--r-- | meta-rcar-gen3/recipes-kernel/linux/linux-renesas_4.14.bb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta-rcar-gen3/recipes-kernel/linux/linux-renesas_4.14.bb b/meta-rcar-gen3/recipes-kernel/linux/linux-renesas_4.14.bb index 2f2f779..27705e3 100644 --- a/meta-rcar-gen3/recipes-kernel/linux/linux-renesas_4.14.bb +++ b/meta-rcar-gen3/recipes-kernel/linux/linux-renesas_4.14.bb @@ -20,8 +20,11 @@ LINUX_VERSION ?= "4.14.75" PV = "${LINUX_VERSION}+git${SRCPV}" PR = "r1" +# For generating defconfig +KCONFIG_MODE = "--alldefconfig" +KBUILD_DEFCONFIG = "defconfig" + SRC_URI_append = " \ - file://defconfig \ file://touch.cfg \ ${@oe.utils.conditional("USE_AVB", "1", " file://usb-video-class.cfg", "", d)} \ " |