We use the merge_config.sh to generate the final kernel config file, but this file only exist in the kernel source directory and so do for the config files. So we need to change to kernel source directory first.
Signed-off-by: Kevin Hao kexin.hao@windriver.com --- meta-linaro/recipes-kernel/linux/linux-linaro-aarch64.bb | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/meta-linaro/recipes-kernel/linux/linux-linaro-aarch64.bb b/meta-linaro/recipes-kernel/linux/linux-linaro-aarch64.bb index 6e181a777672..6e027d395b11 100644 --- a/meta-linaro/recipes-kernel/linux/linux-linaro-aarch64.bb +++ b/meta-linaro/recipes-kernel/linux/linux-linaro-aarch64.bb @@ -18,5 +18,7 @@ BOOTARGS_COMMON = "console=ttyAMA0 mem=2048M devtmpfs.mount=1 earlyprintk=pl011,
do_configure_prepend() { . ../ubuntu-ci/configs/vexpress64.cfg + cd ${S} ARCH=arm64 scripts/kconfig/merge_config.sh -m $linaro_base_config_frags $ubuntu_config_frag $board_config_frags + cd ${B} }