hob 418 B

123456789101112131415161718
  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. EOM
  8. (cat <<EOF
  9. INHERIT += "image_types"
  10. EOF
  11. ) > conf/hob.local.conf
  12. fi
  13. bitbake -R conf/hob.local.conf -t xmlrpc -u hob
  14. ret=$?
  15. exit $ret