Hi,
I want to modify linux source that is unpacked to tmp directory when building yocto and keep it in a separated folder. Next time when I want to build yocto, I need this separated linux source to be builded with it. I followed this guideline and I modified the source meta-digi/meta-digi-arm/recipes-kernel/linux/linux-dey.inc according to the guideline:
SRC_URI := "
file://defconfig
${KERNEL_CFG_FRAGS}
"
INHERIT += “externalsrc”
EXTERNALSRC_pn-myrecipe = “/home/user/Documents/linux-3.14”
However, when I rebuild yocto, I get this this error:
ERROR: Task 71 (/home/user/Documents/dey-1.6/sources/meta-digi/meta-digi-arm/recipes-kernel/linux/linux-dey_3.10.bb, do_configure) failed with exit code ‘1’
How can I resolve this problem?
Thanks.