| Submitter | Saul Wold |
|---|---|
| Date | July 19, 2011, 6:50 a.m. |
| Message ID | <9355999b8d7e8f344282426b2399110e0a3e7353.1311058024.git.sgw@linux.intel.com> |
| Download | mbox | patch |
| Permalink | /patch/7845/ |
| State | New, archived |
| Headers | show |
Comments
Patch
diff --git a/scripts/hob b/scripts/hob new file mode 100755 index 0000000..19930ba --- /dev/null +++ b/scripts/hob @@ -0,0 +1,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