summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/hob18
1 files changed, 18 insertions, 0 deletions
diff --git a/scripts/hob b/scripts/hob
new file mode 100755
index 0000000000..19930bab32
--- /dev/null
+++ b/scripts/hob
@@ -0,0 +1,18 @@
1#!/usr/bin/env bash
2if ! (test -r "$BUILDDIR/conf/hob.local.conf"); then
3 cat <<EOM
4You had no conf/hob.local.conf file. An initial version of this configuration
5file has therefore been created for you. This file will be used to store any
6configuration values you set in hob.
7
8EOM
9(cat <<EOF
10INHERIT += "image_types"
11EOF
12) > conf/hob.local.conf
13fi
14
15bitbake -R conf/hob.local.conf -t xmlrpc -u hob
16
17ret=$?
18exit $ret