diff options
Diffstat (limited to 'meta/classes/kernel.bbclass')
| -rw-r--r-- | meta/classes/kernel.bbclass | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass index 59de148cc8..2ae2dcbe5c 100644 --- a/meta/classes/kernel.bbclass +++ b/meta/classes/kernel.bbclass | |||
| @@ -188,8 +188,12 @@ sysroot_stage_all_append() { | |||
| 188 | sysroot_stage_dir ${D}/kernel ${SYSROOT_DESTDIR}/kernel | 188 | sysroot_stage_dir ${D}/kernel ${SYSROOT_DESTDIR}/kernel |
| 189 | } | 189 | } |
| 190 | 190 | ||
| 191 | |||
| 192 | kernel_do_configure() { | 191 | kernel_do_configure() { |
| 192 | # Copy defconfig to .config if .config does not exist. This allows | ||
| 193 | # recipes to manage the .config themselves in do_configure_prepend(). | ||
| 194 | if [ -f "${WORKDIR}/defconfig" ] && [ ! -f "${S}/.config" ]; then | ||
| 195 | cp "${WORKDIR}/defconfig" "${S}/.config" | ||
| 196 | fi | ||
| 193 | yes '' | oe_runmake oldconfig | 197 | yes '' | oe_runmake oldconfig |
| 194 | } | 198 | } |
| 195 | 199 | ||
