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 1Qze23-00005l-8E for openembedded-core@lists.openembedded.org; Sat, 03 Sep 2011 02:24:23 +0200 Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga102.fm.intel.com with ESMTP; 02 Sep 2011 17:19:24 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.68,321,1312182000"; d="scan'208";a="48351285" Received: from unknown (HELO scimitar.amr.corp.intel.com) ([10.255.14.9]) by fmsmga002.fm.intel.com with ESMTP; 02 Sep 2011 17:19:24 -0700 From: Joshua Lock To: openembedded-core@lists.openembedded.org Date: Fri, 2 Sep 2011 17:19:17 -0700 Message-Id: X-Mailer: git-send-email 1.7.6 In-Reply-To: References: In-Reply-To: References: Subject: [PATCH 1/2] scripts/hob: update to match recent hob changes 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: Sat, 03 Sep 2011 00:24:23 -0000 hob now uses both a pre and post file, update the wrapper script to generate and use both of these. Addresses [YOCTO #1281] Signed-off-by: Joshua Lock --- scripts/hob | 20 +++++++++++++++----- 1 files changed, 15 insertions(+), 5 deletions(-) diff --git a/scripts/hob b/scripts/hob index 19930ba..bb88a76 100755 --- a/scripts/hob +++ b/scripts/hob @@ -1,18 +1,28 @@ #!/usr/bin/env bash -if ! (test -r "$BUILDDIR/conf/hob.local.conf"); then +if ! (test -r "$BUILDDIR/conf/hob-pre.conf"); then cat < conf/hob.local.conf +) > conf/hob-post.conf fi -bitbake -R conf/hob.local.conf -t xmlrpc -u hob +bitbake -r conf/hob-pre.conf -R conf/hob-post.conf -u hob ret=$? exit $ret -- 1.7.6