Closed imyller closed 10 years ago
One solution is to call merge_config.sh like this:
( cd ${S} && ${S}/scripts/kconfig/merge_config.sh -m -r ${S}/.config ${KERNEL_CONFIG_FRAGMENTS} 1>&2 )
Works for both 3.8 and 3.14 kernels.
Another option would be to backport the -O thing to 3.8. I don't have a preference for any solution, could you make a pull request with the one you think is best?
The change committed in 2dac0fc7184ce0abbbc21d6845822a8a165e9058 uses
-O
parameter formerge_config.sh
.This parameter was introduced in 3.9 kernel.
Maybe the
-O
could be replaced with a simplecp ${WORKDIR}/.config ${S}/.config
?