diff options
Diffstat (limited to 'scripts/hob')
-rwxr-xr-x | scripts/hob | 18 |
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 | ||
2 | if ! (test -r "$BUILDDIR/conf/hob.local.conf"); then | ||
3 | cat <<EOM | ||
4 | You had no conf/hob.local.conf file. An initial version of this configuration | ||
5 | file has therefore been created for you. This file will be used to store any | ||
6 | configuration values you set in hob. | ||
7 | |||
8 | EOM | ||
9 | (cat <<EOF | ||
10 | INHERIT += "image_types" | ||
11 | EOF | ||
12 | ) > conf/hob.local.conf | ||
13 | fi | ||
14 | |||
15 | bitbake -R conf/hob.local.conf -t xmlrpc -u hob | ||
16 | |||
17 | ret=$? | ||
18 | exit $ret | ||