[oe-commits] Darren Hart : kernel: move menuconfig task after configure

git version control git at git.openembedded.org
Fri Jul 15 16:26:36 UTC 2011


Module: meta-openembedded.git
Branch: master
Commit: 5196b842f73e9e36d315e6eb2441eeb63696da85
URL:    http://git.openembedded.org/?p=meta-openembedded.git&a=commit;h=5196b842f73e9e36d315e6eb2441eeb63696da85

Author: Darren Hart <dvhart at linux.intel.com>
Date:   Wed Jun 29 12:16:07 2011 -0700

kernel: move menuconfig task after configure

Fixes [YOCTO 1136]

linux-yocto adds some configure steps that are necessary to prepare the source
tree after the do_patch task. This causes a "-c menuconfig" to fail in a clean
build tree. Typical use of menuconfig should be to modify the config provided
by the recipe being built. It therefor makes sense for the menuconfig task to
come after the configure task. This also happens to fix the issue seen with the
linux-yocto kernel recipe.

Signed-off-by: Darren Hart <dvhart at linux.intel.com>
Signed-off-by: Koen Kooi <koen at dominion.thruhere.net>

---

 meta-oe/classes/kernel.bbclass |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta-oe/classes/kernel.bbclass b/meta-oe/classes/kernel.bbclass
index 7e594e4..349c752 100644
--- a/meta-oe/classes/kernel.bbclass
+++ b/meta-oe/classes/kernel.bbclass
@@ -217,7 +217,7 @@ do_menuconfig() {
 	fi
 }
 do_menuconfig[nostamp] = "1"
-addtask menuconfig after do_patch
+addtask menuconfig after do_configure
 
 pkg_postinst_kernel () {
 	cd /${KERNEL_IMAGEDEST}; update-alternatives --install /${KERNEL_IMAGEDEST}/${KERNEL_IMAGETYPE} ${KERNEL_IMAGETYPE} ${KERNEL_IMAGETYPE}-${KERNEL_VERSION} ${KERNEL_PRIORITY} || true





More information about the Openembedded-commits mailing list