From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga11.intel.com ([192.55.52.93]) by linuxtogo.org with esmtp (Exim 4.72) (envelope-from ) id 1SkSql-0002IT-1G for openembedded-core@lists.openembedded.org; Fri, 29 Jun 2012 06:30:32 +0200 Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga102.fm.intel.com with ESMTP; 28 Jun 2012 21:19:34 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.71,315,1320652800"; d="scan'208";a="186443126" Received: from unknown (HELO localhost) ([10.255.12.71]) by fmsmga002.fm.intel.com with ESMTP; 28 Jun 2012 21:19:33 -0700 From: Darren Hart To: Poky , openembedded-core@lists.openembedded.org Date: Thu, 28 Jun 2012 21:17:59 -0700 Message-Id: <4263ffefaa6f3b0069bc41c0f7578d36717edcfc.1340942930.git.dvhart@linux.intel.com> X-Mailer: git-send-email 1.7.10.2 In-Reply-To: References: Cc: Darren Hart Subject: [PATCH 1/4] linux-libc-headers-yocto: Do not include linux-yocto X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.11 Precedence: list Reply-To: Patches and discussions about the oe-core layer List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Jun 2012 04:30:32 -0000 The only bit we seem to need from the linux-yocto include is the SRCREV_FORMAT. If we define this explicitly, we can avoid including the linux-yocto include. This is desirable so that linux-yocto can require kernel and simplify the PR update process of all the linux-yocto* recipes. Pulling in kernel to the linux-libc-headers-yocto recipes causes build failures by pulling in "update-modules-nativesdk". Signed-off-by: Darren Hart CC: Bruce Ashfield CC: Tom Zanussi --- .../linux-libc-headers/linux-libc-headers-yocto_git.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta-yocto/recipes-kernel/linux-libc-headers/linux-libc-headers-yocto_git.bb b/meta-yocto/recipes-kernel/linux-libc-headers/linux-libc-headers-yocto_git.bb index b4222f1..8ab4fb1 100644 --- a/meta-yocto/recipes-kernel/linux-libc-headers/linux-libc-headers-yocto_git.bb +++ b/meta-yocto/recipes-kernel/linux-libc-headers/linux-libc-headers-yocto_git.bb @@ -1,5 +1,4 @@ require recipes-kernel/linux-libc-headers/linux-libc-headers.inc -include recipes-kernel/linux/linux-yocto.inc B = "${S}" @@ -13,6 +12,8 @@ SRCREV = "a1cdb60720c452c3965eaec3ec2cd10f06261cc5" PV = "3.4+git-${SRCPV}" PR = "r6" +SRCREV_FORMAT ?= "meta_machine" + SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.4.git;protocol=git;nocheckout=1;branch=${KBRANCH},meta;name=machine,meta" # force this to empty to prevent installation failures, we aren't -- 1.7.10.2