Difference between revisions of "BitBake (dev)"

From Openembedded.org
Jump to: navigation, search
(Bitbake)
Line 2: Line 2:
  
 
* First , RTFM ;-) : http://bitbake.berlios.de/manual/
 
* First , RTFM ;-) : http://bitbake.berlios.de/manual/
Best documentation for source is via python documentation system.
+
* Don't forget mailinglist :
 +
** https://lists.berlios.de/pipermail/bitbake-dev/
 +
** https://lists.berlios.de/pipermail/bitbake-commit/
 +
* Best documentation for source is via python documentation system.
  
 
= Helloworld using lib bb =
 
= Helloworld using lib bb =

Revision as of 09:01, 1 October 2008

Where are all bitbake hot information !!

Helloworld using lib bb

#!/usr/bin/env python
# ex:ts=4:sw=4:sts=4:et
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-

import bb

version = bb.__version__
bb.msg.note(1, 0, "Hello from helloworld using lib bb v%s." % ( version ))