Re: [yocto] in-tree defconfig

2015-12-10 Thread Bruce Ashfield
On 12/09/2015 06:43 PM, Robert Berger wrote: Hi, This seems to do the trick: https://github.com/RobertBerger/meta-mainline/blob/jethro-training-v4.1.x/multi-v7-ml/recipes-kernel/linux/linux-yocto-custom.inc That's what I would have suggested. Set the kconfig mode so that in tree config

[yocto] in-tree defconfig

2015-12-09 Thread Robert Berger
Hi, What I wanted to do is to start from an in-tree defconfig like multi_v7_defconfig instead of a defconfig file in a kernel recipe (which works). Maybe we have a different definition of an in-tree defconfig file, but what I mean is the output of make multi_v7_defconfig, I guess what you mean

Re: [yocto] in-tree defconfig

2015-12-09 Thread Robert Berger
Hi, This seems to do the trick: https://github.com/RobertBerger/meta-mainline/blob/jethro-training-v4.1.x/multi-v7-ml/recipes-kernel/linux/linux-yocto-custom.inc Regards, Robert ..."The scientific name for an animal that doesn't either run from or fight its enemies is lunch." - Michael

Re: [yocto] in-tree defconfig

2015-12-09 Thread Daniel.
Hey Robert, I've done this by prepending kernel configure task. It just copies the *_defconfig file to WORKDIR as defconfig. do_configure_prepend() { cp ${S}/arch/arm/configs/my_defconfig ${WORKDIR}/defconfig } Regards, - dhs 2015-12-09 21:43 GMT-02:00 Robert Berger