aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/hob
blob: 19930bab32beb20354a573f62314496f335352c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env bash
if ! (test -r "$BUILDDIR/conf/hob.local.conf"); then
    cat <<EOM
You had no conf/hob.local.conf file. An initial version of this configuration
file has therefore been created for you. This file will be used to store any
configuration values you set in hob.

EOM
(cat <<EOF
INHERIT += "image_types"
EOF
) > conf/hob.local.conf
fi

bitbake -R conf/hob.local.conf -t xmlrpc -u hob

ret=$?
exit $ret