From 1501b22dccd94023163092bebd5d52b85ba13fa1 Mon Sep 17 00:00:00 2001 From: Koen Kooi Date: Tue, 1 Feb 2011 16:03:31 +0100 Subject: [PATCH] multi-kernel.inc: the current fetcher2 in yocto started having a glitch, so fix it up When the glitch has been fixed this can get removed Signed-off-by: Koen Kooi --- recipes-bsp/linux/multi-kernel.inc | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/recipes-bsp/linux/multi-kernel.inc b/recipes-bsp/linux/multi-kernel.inc index 9f5a0a0..d34994f 100644 --- a/recipes-bsp/linux/multi-kernel.inc +++ b/recipes-bsp/linux/multi-kernel.inc @@ -23,11 +23,20 @@ EXTRA_OEMAKE = "${PARALLEL_MAKE} " do_compileconfigs () { + # fixup for fetcher change + if [ -e ${WORKDIR}/configs/configs ] ; then + if [ -e ${WORKDIR}/configs/configs/.empty ] ; then + mv ${WORKDIR}/configs/configs/.empty ${WORKDIR}/configs/ + fi + mv ${WORKDIR}/configs/configs/* ${WORKDIR}/configs/ + rm -rf ${WORKDIR}/configs/configs + fi + # Compile and Install additional kernel configs if found if [ -e ${WORKDIR}/configs/.empty ] ; then echo "No configs found in configs/ directory, skipping to regular build" else - echo "Multiple configs found, building those first" + echo "Multiple configs found, building those first" # Context Save the regular 'defconfig' cp ${WORKDIR}/defconfig ${WORKDIR}/defconfig.save -- 2.26.2