From 886440c535fdd0b39568a3acdcace677827d9f0f Mon Sep 17 00:00:00 2001 From: Joshua Lock Date: Fri, 2 Sep 2011 14:30:43 -0700 Subject: scripts/hob: update to match recent hob changes hob now uses both a pre and post file, update the wrapper script to generate and use both of these. Addresses [YOCTO #1281] (From OE-Core rev: b68f90b765e7c8923033ee7ff7746f39a2e91ff7) Signed-off-by: Joshua Lock Signed-off-by: Richard Purdie --- scripts/hob | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) (limited to 'scripts/hob') diff --git a/scripts/hob b/scripts/hob index 19930bab32..bb88a76135 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 -- cgit v1.2.3-54-g00ecf