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

EOM
touch conf/hob-pre.conf
fi

if ! (test -r "$BUILDDIR/conf/hob-post.conf"); then
    cat <<EOM
You had no conf/hob-post.conf file. An initial version of this configuration
file has therefore been created for you. This file will be used to store
configuration values you set in hob.

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

bitbake -r conf/hob-pre.conf -R conf/hob-post.conf -u hob

ret=$?
exit $ret
OpenPOWER on IntegriCloud