Fix regression: mainline defconfig files are not used

Mainline defconfig files from recipes-kernel/linux/linux-mainline
directories are not merged into the final kernel config.

As a result, build ends up with some default ARM kernel
w/o Allwinner support.

Signed-off-by: Sergey Matyukevich <geomatsi@gmail.com>
pull/222/head
Sergey Matyukevich 2018-06-19 21:29:24 +03:00
parent df468d72d7
commit 19eb07a9f6
1 changed files with 3 additions and 0 deletions

View File

@ -111,6 +111,9 @@ do_configure_prepend() {
kernel_conf_variable CMDLINE \"${CMDLINE_NFSROOT_USB} ${CMDLINE_DEBUG}\"
fi
sed -e "${CONF_SED_SCRIPT}" \
< '${WORKDIR}/defconfig' >>'${B}/.config'
yes '' | oe_runmake -C ${S} O=${B} oldconfig
}