BitBake

From Openmoko

(Difference between revisions)
Jump to: navigation, search
(-cat)
 
(12 intermediate revisions by 5 users not shown)
Line 1: Line 1:
 
{{Languages|BitBake}}
 
{{Languages|BitBake}}
BitBake is the build tool used by [[OpenEmbedded]]. BitBake recipes are simple, declarative files. Here is an example for the openmoko-calculator2 application:
+
BitBake is the build tool used by [[OpenEmbedded]] and was originally used by the OpenHandhelds and OpenZaurus communities.  
  
DESCRIPTION = "A Calculator for OpenMoko"
+
[[BitBake recipe]]s are simple, declarative files.
SECTION = "openmoko/tools"
+
DEPENDS = "libmokoui2"
+
PV = "0.1.0+svnr${SRCREV}"
+
PR = "r0"
+
 
+
inherit openmoko2
+
 
+
The user manual is available at the [http://bitbake.berlios.de/manual/ BitBake berlios page].
+
  
 
[[Category:Application Developer]]
 
[[Category:Application Developer]]

Latest revision as of 17:41, 10 July 2009

BitBake is the build tool used by OpenEmbedded and was originally used by the OpenHandhelds and OpenZaurus communities.

BitBake recipes are simple, declarative files.

Personal tools

BitBake is the build tool used by OpenEmbedded. BitBake recipes are simple, declarative files. Here is an example for the openmoko-calculator2 application:

DESCRIPTION = "A Calculator for OpenMoko"
SECTION = "openmoko/tools"
DEPENDS = "libmokoui2"
PV = "0.1.0+svnr${SRCREV}"
PR = "r0"
inherit openmoko2

The user manual is available at the BitBake berlios page.